2013-03-18 05:06:52 +08:00
|
|
|
#
|
|
|
|
# Utility functions for the command line drivers
|
|
|
|
#
|
|
|
|
# Copyright 2006-2007, 2013 Red Hat, Inc.
|
|
|
|
# Jeremy Katz <katzj@redhat.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.
|
|
|
|
|
2013-04-12 20:26:21 +08:00
|
|
|
import itertools
|
|
|
|
import locale
|
2013-03-18 05:06:52 +08:00
|
|
|
import logging
|
|
|
|
import logging.handlers
|
|
|
|
import optparse
|
2013-04-12 20:26:21 +08:00
|
|
|
import os
|
|
|
|
import re
|
2013-03-18 05:06:52 +08:00
|
|
|
import shlex
|
2013-04-12 20:26:21 +08:00
|
|
|
import sys
|
|
|
|
import tempfile
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
import libvirt
|
|
|
|
|
2013-03-18 06:18:22 +08:00
|
|
|
from virtcli import cliconfig
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
import virtinst
|
2013-04-11 22:27:02 +08:00
|
|
|
from virtinst import util
|
2013-04-11 07:48:07 +08:00
|
|
|
from virtinst.util import listify
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
from virtinst import Guest
|
|
|
|
from virtinst import VirtualNetworkInterface
|
|
|
|
from virtinst import VirtualGraphics
|
|
|
|
from virtinst import VirtualAudio
|
|
|
|
from virtinst import VirtualDisk
|
|
|
|
from virtinst import VirtualCharDevice
|
|
|
|
from virtinst import User
|
|
|
|
|
2013-03-18 06:18:22 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
DEFAULT_POOL_PATH = "/var/lib/libvirt/images"
|
|
|
|
DEFAULT_POOL_NAME = "default"
|
|
|
|
|
|
|
|
MIN_RAM = 64
|
|
|
|
force = False
|
|
|
|
quiet = False
|
|
|
|
doprompt = True
|
|
|
|
|
|
|
|
|
|
|
|
####################
|
|
|
|
# CLI init helpers #
|
|
|
|
####################
|
|
|
|
|
|
|
|
class VirtStreamHandler(logging.StreamHandler):
|
|
|
|
|
|
|
|
def emit(self, record):
|
|
|
|
"""
|
|
|
|
Based on the StreamHandler code from python 2.6: ripping out all
|
|
|
|
the unicode handling and just uncoditionally logging seems to fix
|
|
|
|
logging backtraces with unicode locales (for me at least).
|
|
|
|
|
|
|
|
No doubt this is atrocious, but it WORKSFORME!
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
msg = self.format(record)
|
|
|
|
stream = self.stream
|
|
|
|
fs = "%s\n"
|
|
|
|
|
|
|
|
stream.write(fs % msg)
|
|
|
|
|
|
|
|
self.flush()
|
|
|
|
except (KeyboardInterrupt, SystemExit):
|
|
|
|
raise
|
|
|
|
except:
|
|
|
|
self.handleError(record)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
class VirtOptionParser(optparse.OptionParser):
|
|
|
|
'''Subclass to get print_help to work properly with non-ascii text'''
|
|
|
|
|
|
|
|
def _get_encoding(self, f):
|
|
|
|
encoding = getattr(f, "encoding", None)
|
|
|
|
if not encoding:
|
2013-04-12 20:26:21 +08:00
|
|
|
encoding = locale.getlocale()[1]
|
2013-03-18 05:06:52 +08:00
|
|
|
if not encoding:
|
|
|
|
encoding = "UTF-8"
|
|
|
|
return encoding
|
|
|
|
|
|
|
|
def print_help(self, file=None):
|
2013-04-12 20:26:21 +08:00
|
|
|
# pylint: disable=W0622
|
|
|
|
# Redefining built in type 'file'
|
2013-03-18 05:06:52 +08:00
|
|
|
if file is None:
|
|
|
|
file = sys.stdout
|
|
|
|
|
|
|
|
encoding = self._get_encoding(file)
|
|
|
|
helpstr = self.format_help()
|
|
|
|
try:
|
|
|
|
encodedhelp = helpstr.encode(encoding, "replace")
|
|
|
|
except UnicodeError:
|
|
|
|
# I don't know why the above fails hard, unicode makes my head
|
|
|
|
# spin. Just printing the format_help() output seems to work
|
|
|
|
# quite fine, with the occasional character ?.
|
|
|
|
encodedhelp = helpstr
|
|
|
|
|
|
|
|
file.write(encodedhelp)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
class VirtHelpFormatter(optparse.IndentedHelpFormatter):
|
|
|
|
"""
|
|
|
|
Subclass the default help formatter to allow printing newline characters
|
|
|
|
in --help output. The way we do this is a huge hack :(
|
|
|
|
|
|
|
|
Inspiration: http://groups.google.com/group/comp.lang.python/browse_thread/thread/6df6e6b541a15bc2/09f28e26af0699b1
|
|
|
|
"""
|
|
|
|
oldwrap = None
|
|
|
|
|
|
|
|
def format_option(self, option):
|
|
|
|
self.oldwrap = optparse.textwrap.wrap
|
|
|
|
ret = []
|
|
|
|
try:
|
|
|
|
optparse.textwrap.wrap = self._textwrap_wrapper
|
|
|
|
ret = optparse.IndentedHelpFormatter.format_option(self, option)
|
|
|
|
finally:
|
|
|
|
optparse.textwrap.wrap = self.oldwrap
|
|
|
|
return ret
|
|
|
|
|
|
|
|
def _textwrap_wrapper(self, text, width):
|
|
|
|
ret = []
|
|
|
|
for line in text.split("\n"):
|
|
|
|
ret.extend(self.oldwrap(line, width))
|
|
|
|
return ret
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-07-01 03:03:53 +08:00
|
|
|
def setupParser(usage, description):
|
2013-03-18 05:06:52 +08:00
|
|
|
parse_class = VirtOptionParser
|
|
|
|
|
2013-07-01 03:03:53 +08:00
|
|
|
parser = parse_class(usage=usage, description=description,
|
2013-03-18 05:06:52 +08:00
|
|
|
formatter=VirtHelpFormatter(),
|
2013-03-18 06:18:22 +08:00
|
|
|
version=cliconfig.__version__)
|
2013-07-01 03:03:53 +08:00
|
|
|
|
|
|
|
parser.epilog = _("See man page for examples and full option syntax.")
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
return parser
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def earlyLogging():
|
|
|
|
logging.basicConfig(level=logging.DEBUG, format='%(message)s')
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def setupLogging(appname, debug=False, do_quiet=False):
|
|
|
|
global quiet
|
|
|
|
quiet = do_quiet
|
|
|
|
|
|
|
|
vi_dir = os.path.expanduser("~/.virtinst")
|
|
|
|
if not os.access(vi_dir, os.W_OK):
|
|
|
|
if os.path.exists(vi_dir):
|
|
|
|
raise RuntimeError("No write access to directory %s" % vi_dir)
|
|
|
|
|
|
|
|
try:
|
|
|
|
os.mkdir(vi_dir, 0751)
|
|
|
|
except IOError, e:
|
|
|
|
raise RuntimeError("Could not create directory %s: %s" %
|
|
|
|
(vi_dir, e))
|
|
|
|
|
|
|
|
|
|
|
|
dateFormat = "%a, %d %b %Y %H:%M:%S"
|
|
|
|
fileFormat = ("[%(asctime)s " + appname + " %(process)d] "
|
|
|
|
"%(levelname)s (%(module)s:%(lineno)d) %(message)s")
|
|
|
|
streamErrorFormat = "%(levelname)-8s %(message)s"
|
|
|
|
filename = os.path.join(vi_dir, appname + ".log")
|
|
|
|
|
|
|
|
rootLogger = logging.getLogger()
|
|
|
|
|
|
|
|
# Undo early logging
|
|
|
|
for handler in rootLogger.handlers:
|
|
|
|
rootLogger.removeHandler(handler)
|
|
|
|
|
|
|
|
rootLogger.setLevel(logging.DEBUG)
|
|
|
|
fileHandler = logging.handlers.RotatingFileHandler(filename, "ae",
|
|
|
|
1024 * 1024, 5)
|
|
|
|
|
|
|
|
fileHandler.setFormatter(logging.Formatter(fileFormat,
|
|
|
|
dateFormat))
|
|
|
|
rootLogger.addHandler(fileHandler)
|
|
|
|
|
|
|
|
streamHandler = VirtStreamHandler(sys.stderr)
|
|
|
|
if debug:
|
|
|
|
streamHandler.setLevel(logging.DEBUG)
|
|
|
|
streamHandler.setFormatter(logging.Formatter(fileFormat,
|
|
|
|
dateFormat))
|
|
|
|
else:
|
|
|
|
if quiet:
|
|
|
|
level = logging.ERROR
|
|
|
|
else:
|
|
|
|
level = logging.WARN
|
|
|
|
streamHandler.setLevel(level)
|
|
|
|
streamHandler.setFormatter(logging.Formatter(streamErrorFormat))
|
|
|
|
rootLogger.addHandler(streamHandler)
|
|
|
|
|
|
|
|
# Register libvirt handler
|
|
|
|
def libvirt_callback(ignore, err):
|
|
|
|
if err[3] != libvirt.VIR_ERR_ERROR:
|
|
|
|
# Don't log libvirt errors: global error handler will do that
|
|
|
|
logging.warn("Non-error from libvirt: '%s'", err[2])
|
|
|
|
libvirt.registerErrorHandler(f=libvirt_callback, ctx=None)
|
|
|
|
|
|
|
|
# Register python error handler to log exceptions
|
2013-04-12 20:26:21 +08:00
|
|
|
def exception_log(typ, val, tb):
|
2013-03-18 05:06:52 +08:00
|
|
|
import traceback
|
2013-04-12 20:26:21 +08:00
|
|
|
s = traceback.format_exception(typ, val, tb)
|
2013-03-18 05:06:52 +08:00
|
|
|
logging.exception("".join(s))
|
2013-04-12 20:26:21 +08:00
|
|
|
sys.__excepthook__(typ, val, tb)
|
2013-03-18 05:06:52 +08:00
|
|
|
sys.excepthook = exception_log
|
|
|
|
|
|
|
|
# Log the app command string
|
|
|
|
logging.debug("Launched with command line:\n%s", " ".join(sys.argv))
|
|
|
|
|
|
|
|
|
|
|
|
#######################################
|
|
|
|
# Libvirt connection helpers #
|
|
|
|
#######################################
|
|
|
|
|
|
|
|
_virtinst_uri_magic = "__virtinst_test__"
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-04-12 21:51:26 +08:00
|
|
|
def is_virtinst_test_uri(uri):
|
2013-03-18 05:06:52 +08:00
|
|
|
return uri and uri.startswith(_virtinst_uri_magic)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-04-12 21:51:26 +08:00
|
|
|
def open_test_uri(uri):
|
2013-03-18 05:06:52 +08:00
|
|
|
"""
|
|
|
|
This hack allows us to fake various drivers via passing a magic
|
|
|
|
URI string to virt-*. Helps with testing
|
|
|
|
"""
|
|
|
|
uri = uri.replace(_virtinst_uri_magic, "")
|
|
|
|
ret = uri.split(",", 1)
|
|
|
|
uri = ret[0]
|
|
|
|
opts = parse_optstr(len(ret) > 1 and ret[1] or "")
|
|
|
|
|
|
|
|
conn = open_connection(uri)
|
|
|
|
|
|
|
|
def sanitize_xml(xml):
|
2013-04-12 20:26:21 +08:00
|
|
|
import difflib
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
orig = xml
|
|
|
|
xml = re.sub("arch='.*'", "arch='i686'", xml)
|
|
|
|
xml = re.sub("domain type='.*'", "domain type='test'", xml)
|
|
|
|
xml = re.sub("machine type='.*'", "", xml)
|
|
|
|
xml = re.sub(">exe<", ">hvm<", xml)
|
|
|
|
|
|
|
|
logging.debug("virtinst test sanitizing diff\n:%s",
|
|
|
|
"\n".join(difflib.unified_diff(orig.split("\n"),
|
|
|
|
xml.split("\n"))))
|
|
|
|
return xml
|
|
|
|
|
|
|
|
# Need tmpfile names to be deterministic
|
|
|
|
if "predictable" in opts:
|
|
|
|
setattr(conn, "_virtinst__fake_conn_predictable", True)
|
|
|
|
|
|
|
|
def fakemkstemp(prefix, *args, **kwargs):
|
|
|
|
ignore = args
|
|
|
|
ignore = kwargs
|
|
|
|
filename = os.path.join(".", prefix)
|
|
|
|
return os.open(filename, os.O_RDWR | os.O_CREAT), filename
|
|
|
|
tempfile.mkstemp = fakemkstemp
|
|
|
|
|
|
|
|
# Fake remote status
|
|
|
|
if "remote" in opts:
|
|
|
|
setattr(conn, "_virtinst__fake_conn_remote", True)
|
|
|
|
|
|
|
|
# Fake capabilities
|
|
|
|
if "caps" in opts:
|
|
|
|
capsxml = file(opts["caps"]).read()
|
|
|
|
conn.getCapabilities = lambda: capsxml
|
|
|
|
|
|
|
|
if ("qemu" in opts) or ("xen" in opts) or ("lxc" in opts):
|
|
|
|
conn.getVersion = lambda: 10000000000
|
|
|
|
|
|
|
|
origcreate = conn.createLinux
|
|
|
|
origdefine = conn.defineXML
|
|
|
|
def newcreate(xml, flags):
|
|
|
|
xml = sanitize_xml(xml)
|
|
|
|
return origcreate(xml, flags)
|
|
|
|
def newdefine(xml):
|
|
|
|
xml = sanitize_xml(xml)
|
|
|
|
return origdefine(xml)
|
|
|
|
conn.createLinux = newcreate
|
|
|
|
conn.defineXML = newdefine
|
|
|
|
|
|
|
|
if "qemu" in opts:
|
|
|
|
conn.getURI = lambda: "qemu+abc:///system"
|
|
|
|
if "xen" in opts:
|
|
|
|
conn.getURI = lambda: "xen+abc:///"
|
|
|
|
if "lxc" in opts:
|
|
|
|
conn.getURI = lambda: "lxc+abc:///"
|
|
|
|
|
|
|
|
# These need to come after the HV setter, since that sets a default
|
|
|
|
# conn version
|
|
|
|
if "connver" in opts:
|
|
|
|
ver = int(opts["connver"])
|
|
|
|
def newconnversion():
|
|
|
|
return ver
|
|
|
|
conn.getVersion = newconnversion
|
|
|
|
|
|
|
|
if "libver" in opts:
|
|
|
|
ver = int(opts["libver"])
|
|
|
|
def newlibversion(drv=None):
|
|
|
|
if drv:
|
|
|
|
return (ver, ver)
|
|
|
|
return ver
|
|
|
|
libvirt.getVersion = newlibversion
|
|
|
|
|
|
|
|
setattr(conn, "_virtinst__fake_conn", True)
|
|
|
|
|
|
|
|
return conn
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def getConnection(uri):
|
|
|
|
if (uri and not User.current().has_priv(User.PRIV_CREATE_DOMAIN, uri)):
|
|
|
|
fail(_("Must be root to create Xen guests"))
|
|
|
|
|
|
|
|
# Hack to facilitate virtinst unit testing
|
2013-04-12 21:51:26 +08:00
|
|
|
if is_virtinst_test_uri(uri):
|
|
|
|
return open_test_uri(uri)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
logging.debug("Requesting libvirt URI %s", (uri or "default"))
|
|
|
|
conn = open_connection(uri)
|
|
|
|
logging.debug("Received libvirt URI %s", conn.getURI())
|
|
|
|
|
|
|
|
return conn
|
|
|
|
|
|
|
|
|
|
|
|
def open_connection(uri):
|
|
|
|
open_flags = 0
|
|
|
|
valid_auth_options = [libvirt.VIR_CRED_AUTHNAME,
|
|
|
|
libvirt.VIR_CRED_PASSPHRASE,
|
|
|
|
libvirt.VIR_CRED_EXTERNAL]
|
|
|
|
authcb = do_creds
|
|
|
|
authcb_data = None
|
|
|
|
|
|
|
|
return libvirt.openAuth(uri, [valid_auth_options, authcb, authcb_data],
|
|
|
|
open_flags)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def do_creds(creds, cbdata):
|
|
|
|
try:
|
|
|
|
return _do_creds(creds, cbdata)
|
|
|
|
except:
|
|
|
|
logging.debug("Error in creds callback.", exc_info=True)
|
|
|
|
raise
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _do_creds(creds, cbdata_ignore):
|
|
|
|
|
|
|
|
if (len(creds) == 1 and
|
|
|
|
creds[0][0] == libvirt.VIR_CRED_EXTERNAL and
|
|
|
|
creds[0][2] == "PolicyKit"):
|
|
|
|
return _do_creds_polkit(creds[0][1])
|
|
|
|
|
|
|
|
for cred in creds:
|
|
|
|
if cred[0] == libvirt.VIR_CRED_EXTERNAL:
|
|
|
|
return -1
|
|
|
|
|
|
|
|
return _do_creds_authname(creds)
|
|
|
|
|
|
|
|
# PolicyKit auth
|
2013-04-14 02:34:52 +08:00
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _do_creds_polkit(action):
|
|
|
|
if os.getuid() == 0:
|
|
|
|
logging.debug("Skipping policykit check as root")
|
2013-04-14 02:34:52 +08:00
|
|
|
return 0 # Success
|
2013-03-18 05:06:52 +08:00
|
|
|
logging.debug("Doing policykit for %s", action)
|
|
|
|
|
|
|
|
import subprocess
|
|
|
|
import commands
|
|
|
|
|
|
|
|
bin_path = "/usr/bin/polkit-auth"
|
|
|
|
|
|
|
|
if not os.path.exists(bin_path):
|
|
|
|
logging.debug("%s not present, skipping polkit auth.", bin_path)
|
|
|
|
return 0
|
|
|
|
|
|
|
|
cmdstr = "%s %s" % (bin_path, "--explicit")
|
|
|
|
output = commands.getstatusoutput(cmdstr)
|
|
|
|
if output[1].count(action):
|
|
|
|
logging.debug("User already authorized for %s.", action)
|
|
|
|
# Hide spurious output from polkit-auth
|
|
|
|
popen_stdout = subprocess.PIPE
|
|
|
|
popen_stderr = subprocess.PIPE
|
|
|
|
else:
|
|
|
|
popen_stdout = None
|
|
|
|
popen_stderr = None
|
|
|
|
|
|
|
|
# Force polkit prompting to be text mode. Not strictly required, but
|
|
|
|
# launching a dialog is overkill.
|
|
|
|
env = os.environ.copy()
|
|
|
|
env["POLKIT_AUTH_FORCE_TEXT"] = "set"
|
|
|
|
|
|
|
|
cmd = [bin_path, "--obtain", action]
|
|
|
|
proc = subprocess.Popen(cmd, env=env, stdout=popen_stdout,
|
|
|
|
stderr=popen_stderr)
|
|
|
|
out, err = proc.communicate()
|
|
|
|
|
|
|
|
if out and popen_stdout:
|
|
|
|
logging.debug("polkit-auth stdout: %s", out)
|
|
|
|
if err and popen_stderr:
|
|
|
|
logging.debug("polkit-auth stderr: %s", err)
|
|
|
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
# SASL username/pass auth
|
2013-04-14 02:34:52 +08:00
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _do_creds_authname(creds):
|
|
|
|
retindex = 4
|
|
|
|
|
|
|
|
for cred in creds:
|
|
|
|
credtype, prompt, ignore, ignore, ignore = cred
|
|
|
|
prompt += ": "
|
|
|
|
|
|
|
|
res = cred[retindex]
|
|
|
|
if credtype == libvirt.VIR_CRED_AUTHNAME:
|
|
|
|
res = raw_input(prompt)
|
|
|
|
elif credtype == libvirt.VIR_CRED_PASSPHRASE:
|
|
|
|
import getpass
|
|
|
|
res = getpass.getpass(prompt)
|
|
|
|
else:
|
|
|
|
logging.debug("Unknown auth type in creds callback: %d", credtype)
|
|
|
|
return -1
|
|
|
|
|
|
|
|
cred[retindex] = res
|
|
|
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
##############################
|
|
|
|
# Misc CLI utility functions #
|
|
|
|
##############################
|
|
|
|
|
|
|
|
def fail(msg, do_exit=True):
|
|
|
|
"""
|
|
|
|
Convenience function when failing in cli app
|
|
|
|
"""
|
|
|
|
logging.error(msg)
|
|
|
|
import traceback
|
|
|
|
if traceback.format_exc().strip() != "None":
|
|
|
|
logging.debug("", exc_info=True)
|
|
|
|
if do_exit:
|
|
|
|
_fail_exit()
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def print_stdout(msg, do_force=False):
|
|
|
|
if do_force or not quiet:
|
|
|
|
print msg
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def print_stderr(msg):
|
|
|
|
logging.debug(msg)
|
|
|
|
print >> sys.stderr, msg
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _fail_exit():
|
|
|
|
sys.exit(1)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def nice_exit():
|
|
|
|
print_stdout(_("Exiting at user request."))
|
|
|
|
sys.exit(0)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def virsh_start_cmd(guest):
|
|
|
|
return ("virsh --connect %s start %s" % (guest.get_uri(), guest.name))
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def install_fail(guest):
|
|
|
|
virshcmd = virsh_start_cmd(guest)
|
|
|
|
|
|
|
|
print_stderr(
|
|
|
|
_("Domain installation does not appear to have been successful.\n"
|
|
|
|
"If it was, you can restart your domain by running:\n"
|
|
|
|
" %s\n"
|
|
|
|
"otherwise, please restart your installation.") % virshcmd)
|
|
|
|
sys.exit(1)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def build_default_pool(guest):
|
|
|
|
|
|
|
|
if not virtinst.util.is_storage_capable(guest.conn):
|
|
|
|
# VirtualDisk will raise an error for us
|
|
|
|
return
|
|
|
|
pool = None
|
|
|
|
try:
|
|
|
|
pool = guest.conn.storagePoolLookupByName(DEFAULT_POOL_NAME)
|
|
|
|
except libvirt.libvirtError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
if pool:
|
|
|
|
return
|
|
|
|
|
|
|
|
try:
|
|
|
|
logging.debug("Attempting to build default pool with target '%s'",
|
|
|
|
DEFAULT_POOL_PATH)
|
|
|
|
defpool = virtinst.Storage.DirectoryPool(conn=guest.conn,
|
|
|
|
name=DEFAULT_POOL_NAME,
|
|
|
|
target_path=DEFAULT_POOL_PATH)
|
|
|
|
defpool.install(build=True, create=True, autostart=True)
|
|
|
|
except Exception, e:
|
|
|
|
raise RuntimeError(_("Couldn't create default storage pool '%s': %s") %
|
|
|
|
(DEFAULT_POOL_PATH, str(e)))
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def partition(string, sep):
|
|
|
|
if not string:
|
|
|
|
return (None, None, None)
|
|
|
|
|
|
|
|
if string.count(sep):
|
|
|
|
splitres = string.split(sep, 1)
|
|
|
|
ret = (splitres[0], sep, splitres[1])
|
|
|
|
else:
|
|
|
|
ret = (string, None, None)
|
|
|
|
return ret
|
|
|
|
|
|
|
|
|
|
|
|
#######################
|
|
|
|
# CLI Prompting utils #
|
|
|
|
#######################
|
|
|
|
|
|
|
|
def set_force(val=True):
|
|
|
|
global force
|
|
|
|
force = val
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def set_prompt(prompt=True):
|
|
|
|
# Set whether we allow prompts, or fail if a prompt pops up
|
|
|
|
global doprompt
|
|
|
|
doprompt = prompt
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def is_prompt():
|
|
|
|
return doprompt
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def yes_or_no_convert(s):
|
|
|
|
if s is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
s = s.lower()
|
|
|
|
if s in ("y", "yes", "1", "true", "t"):
|
|
|
|
return True
|
|
|
|
elif s in ("n", "no", "0", "false", "f"):
|
|
|
|
return False
|
|
|
|
return None
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def yes_or_no(s):
|
|
|
|
ret = yes_or_no_convert(s)
|
2013-04-14 02:34:52 +08:00
|
|
|
if ret is None:
|
2013-03-18 05:06:52 +08:00
|
|
|
raise ValueError(_("A yes or no response is required"))
|
|
|
|
return ret
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def prompt_for_input(noprompt_err, prompt="", val=None, failed=False):
|
|
|
|
if val is not None:
|
|
|
|
return val
|
|
|
|
|
|
|
|
if force or not is_prompt():
|
|
|
|
if failed:
|
|
|
|
# We already failed validation in a previous function, just exit
|
|
|
|
_fail_exit()
|
|
|
|
|
|
|
|
fail(noprompt_err)
|
|
|
|
|
|
|
|
print_stdout(prompt + " ", do_force=True)
|
|
|
|
sys.stdout.flush()
|
|
|
|
return sys.stdin.readline().strip()
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def prompt_for_yes_or_no(warning, question):
|
|
|
|
"""catches yes_or_no errors and ensures a valid bool return"""
|
|
|
|
if force:
|
|
|
|
logging.debug("Forcing return value of True to prompt '%s'")
|
|
|
|
return True
|
|
|
|
|
|
|
|
errmsg = warning + _(" (Use --prompt or --force to override)")
|
|
|
|
|
|
|
|
while 1:
|
|
|
|
msg = warning
|
|
|
|
if question:
|
|
|
|
msg += ("\n" + question)
|
|
|
|
|
|
|
|
inp = prompt_for_input(errmsg, msg, None)
|
|
|
|
try:
|
|
|
|
res = yes_or_no(inp)
|
|
|
|
break
|
|
|
|
except ValueError, e:
|
|
|
|
logging.error(e)
|
|
|
|
continue
|
|
|
|
return res
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def prompt_loop(prompt_txt, noprompt_err, passed_val, obj, param_name,
|
|
|
|
err_txt="%s", func=None):
|
|
|
|
"""
|
|
|
|
Prompt the user with 'prompt_txt' for a value. Set 'obj'.'param_name'
|
|
|
|
to the entered value. If it errors, use 'err_txt' to print a error
|
|
|
|
message, and then re prompt.
|
|
|
|
"""
|
|
|
|
|
|
|
|
failed = False
|
|
|
|
while True:
|
|
|
|
passed_val = prompt_for_input(noprompt_err, prompt_txt, passed_val,
|
|
|
|
failed)
|
|
|
|
try:
|
|
|
|
if func:
|
|
|
|
return func(passed_val)
|
|
|
|
setattr(obj, param_name, passed_val)
|
|
|
|
break
|
|
|
|
except (ValueError, RuntimeError), e:
|
|
|
|
logging.error(err_txt, e)
|
|
|
|
passed_val = None
|
|
|
|
failed = True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Specific function for disk prompting. Returns a validated VirtualDisk
|
|
|
|
# device.
|
|
|
|
#
|
|
|
|
def disk_prompt(conn, origpath, origsize, origsparse,
|
|
|
|
prompt_txt=None,
|
|
|
|
warn_overwrite=False, check_size=True,
|
|
|
|
path_to_clone=None, origdev=None):
|
|
|
|
|
|
|
|
askmsg = _("Do you really want to use this disk (yes or no)")
|
|
|
|
retry_path = True
|
|
|
|
|
|
|
|
no_path_needed = (origdev and
|
|
|
|
(origdev.vol_install or
|
|
|
|
origdev.vol_object or
|
|
|
|
origdev.can_be_empty()))
|
|
|
|
|
|
|
|
def prompt_path(chkpath, chksize):
|
|
|
|
"""
|
2013-07-01 02:33:01 +08:00
|
|
|
Prompt for disk path if nec
|
2013-03-18 05:06:52 +08:00
|
|
|
"""
|
|
|
|
msg = None
|
|
|
|
patherr = _("A disk path must be specified.")
|
|
|
|
if path_to_clone:
|
|
|
|
patherr = (_("A disk path must be specified to clone '%s'.") %
|
|
|
|
path_to_clone)
|
|
|
|
|
|
|
|
if not prompt_txt:
|
|
|
|
msg = _("What would you like to use as the disk (file path)?")
|
|
|
|
if not chksize is None:
|
|
|
|
msg = _("Please enter the path to the file you would like to "
|
|
|
|
"use for storage. It will have size %sGB.") % chksize
|
|
|
|
|
|
|
|
if not no_path_needed:
|
|
|
|
path = prompt_for_input(patherr, prompt_txt or msg, chkpath)
|
|
|
|
else:
|
|
|
|
path = None
|
|
|
|
|
|
|
|
return path
|
|
|
|
|
|
|
|
def prompt_size(chkpath, chksize, path_exists):
|
|
|
|
"""
|
2013-07-01 02:33:01 +08:00
|
|
|
Prompt for disk size if nec.
|
2013-03-18 05:06:52 +08:00
|
|
|
"""
|
|
|
|
sizeerr = _("A size must be specified for non-existent disks.")
|
|
|
|
size_prompt = _("How large would you like the disk (%s) to "
|
|
|
|
"be (in gigabytes)?") % chkpath
|
|
|
|
|
|
|
|
if (not chkpath or
|
|
|
|
path_exists or
|
|
|
|
chksize is not None or
|
|
|
|
not check_size):
|
|
|
|
return False, chksize
|
|
|
|
|
|
|
|
try:
|
|
|
|
chksize = prompt_loop(size_prompt, sizeerr, chksize, None, None,
|
|
|
|
func=float)
|
|
|
|
return False, chksize
|
|
|
|
except Exception, e:
|
|
|
|
# Path is probably bogus, raise the error
|
|
|
|
fail(str(e), do_exit=not is_prompt())
|
|
|
|
return True, chksize
|
|
|
|
|
|
|
|
def prompt_path_exists(dev):
|
|
|
|
"""
|
|
|
|
Prompt if disk file already exists and preserve mode is not used
|
|
|
|
"""
|
|
|
|
does_collide = (path_exists and
|
|
|
|
dev.type == dev.TYPE_FILE and
|
|
|
|
dev.device == dev.DEVICE_DISK)
|
|
|
|
msg = (_("This will overwrite the existing path '%s'" % dev.path))
|
|
|
|
|
|
|
|
if not does_collide:
|
|
|
|
return False
|
|
|
|
|
|
|
|
if warn_overwrite or is_prompt():
|
|
|
|
return not prompt_for_yes_or_no(msg, askmsg)
|
|
|
|
return False
|
|
|
|
|
|
|
|
def prompt_inuse_conflict(dev):
|
|
|
|
"""
|
|
|
|
Check if disk is inuse by another guest
|
|
|
|
"""
|
|
|
|
msg = (_("Disk %s is already in use by another guest" % dev.path))
|
|
|
|
|
|
|
|
if not dev.is_conflict_disk(conn):
|
|
|
|
return False
|
|
|
|
|
|
|
|
return not prompt_for_yes_or_no(msg, askmsg)
|
|
|
|
|
|
|
|
def prompt_size_conflict(dev):
|
|
|
|
"""
|
|
|
|
Check if specified size exceeds available storage
|
|
|
|
"""
|
|
|
|
isfatal, errmsg = dev.is_size_conflict()
|
|
|
|
if isfatal:
|
|
|
|
fail(errmsg, do_exit=not is_prompt())
|
|
|
|
return True
|
|
|
|
|
|
|
|
if errmsg:
|
|
|
|
return not prompt_for_yes_or_no(errmsg, askmsg)
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
while 1:
|
|
|
|
# If we fail within the loop, reprompt for size and path
|
|
|
|
if not retry_path:
|
|
|
|
origpath = None
|
|
|
|
if not path_to_clone:
|
|
|
|
origsize = None
|
|
|
|
retry_path = False
|
|
|
|
|
|
|
|
# Get disk path
|
|
|
|
path = prompt_path(origpath, origsize)
|
|
|
|
path_exists = VirtualDisk.path_exists(conn, path)
|
|
|
|
|
|
|
|
# Get storage size
|
|
|
|
didfail, size = prompt_size(path, origsize, path_exists)
|
|
|
|
if didfail:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Build disk object for validation
|
|
|
|
try:
|
|
|
|
if origdev:
|
|
|
|
dev = origdev
|
|
|
|
if path is not None:
|
|
|
|
dev.path = path
|
|
|
|
if size is not None:
|
|
|
|
dev.size = size
|
|
|
|
else:
|
|
|
|
dev = VirtualDisk(conn=conn, path=path, size=size,
|
|
|
|
sparse=origsparse)
|
|
|
|
except ValueError, e:
|
|
|
|
if is_prompt():
|
|
|
|
logging.error(e)
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
fail(_("Error with storage parameters: %s" % str(e)))
|
|
|
|
|
|
|
|
# Check if path exists
|
|
|
|
if prompt_path_exists(dev):
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Check disk in use by other guests
|
|
|
|
if prompt_inuse_conflict(dev):
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Check if disk exceeds available storage
|
|
|
|
if prompt_size_conflict(dev):
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Passed all validation, return disk instance
|
|
|
|
return dev
|
|
|
|
|
|
|
|
|
|
|
|
#######################
|
|
|
|
# Validation wrappers #
|
|
|
|
#######################
|
|
|
|
|
|
|
|
name_missing = _("--name is required")
|
|
|
|
ram_missing = _("--ram amount in MB is required")
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_name(name, guest, image_name=None):
|
|
|
|
prompt_txt = _("What is the name of your virtual machine?")
|
|
|
|
err_txt = name_missing
|
|
|
|
|
|
|
|
if name is None:
|
|
|
|
name = image_name
|
|
|
|
prompt_loop(prompt_txt, err_txt, name, guest, "name")
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_memory(memory, guest, image_memory=None):
|
|
|
|
prompt_txt = _("How much RAM should be allocated (in megabytes)?")
|
|
|
|
err_txt = ram_missing
|
|
|
|
|
|
|
|
def check_memory(mem):
|
|
|
|
mem = int(mem)
|
|
|
|
if mem < MIN_RAM:
|
|
|
|
raise ValueError(_("Installs currently require %d megs "
|
|
|
|
"of RAM.") % MIN_RAM)
|
|
|
|
guest.memory = mem
|
|
|
|
|
|
|
|
if memory is None and image_memory is not None:
|
|
|
|
memory = int(image_memory) / 1024
|
|
|
|
prompt_loop(prompt_txt, err_txt, memory, guest, "memory",
|
|
|
|
func=check_memory)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_uuid(uuid, guest):
|
|
|
|
if uuid:
|
|
|
|
try:
|
|
|
|
guest.uuid = uuid
|
|
|
|
except ValueError, e:
|
|
|
|
fail(e)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_vcpus(guest, vcpus, check_cpu, image_vcpus=None):
|
|
|
|
"""
|
|
|
|
@param vcpus: value of the option '--vcpus' (str or None)
|
|
|
|
@param check_cpu: Whether to check that the number virtual cpus requested
|
|
|
|
does not exceed physical CPUs (bool)
|
|
|
|
@param guest: virtinst.Guest instance (object)
|
|
|
|
@param image_vcpus: ? (It's not used currently and should be None.)
|
|
|
|
"""
|
|
|
|
if vcpus is None:
|
|
|
|
if image_vcpus is not None:
|
|
|
|
vcpus = image_vcpus
|
|
|
|
else:
|
|
|
|
vcpus = ""
|
|
|
|
|
|
|
|
parse_vcpu(guest, vcpus, image_vcpus)
|
|
|
|
|
|
|
|
if check_cpu:
|
|
|
|
hostinfo = guest.conn.getInfo()
|
|
|
|
pcpus = hostinfo[4] * hostinfo[5] * hostinfo[6] * hostinfo[7]
|
|
|
|
|
|
|
|
if guest.vcpus > pcpus:
|
|
|
|
msg = _("You have asked for more virtual CPUs (%d) than there "
|
|
|
|
"are physical CPUs (%d) on the host. This will work, "
|
|
|
|
"but performance will be poor. ") % (guest.vcpus, pcpus)
|
|
|
|
askmsg = _("Are you sure? (yes or no)")
|
|
|
|
|
|
|
|
if not prompt_for_yes_or_no(msg, askmsg):
|
|
|
|
nice_exit()
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_cpuset(guest, cpuset, memory):
|
|
|
|
conn = guest.conn
|
|
|
|
if cpuset and cpuset != "auto":
|
|
|
|
guest.cpuset = cpuset
|
|
|
|
|
|
|
|
elif cpuset == "auto":
|
|
|
|
tmpset = None
|
|
|
|
try:
|
|
|
|
tmpset = Guest.generate_cpuset(conn, memory)
|
|
|
|
except Exception, e:
|
|
|
|
logging.debug("Not setting cpuset: %s", str(e))
|
|
|
|
|
|
|
|
if tmpset:
|
|
|
|
logging.debug("Auto cpuset is: %s", tmpset)
|
|
|
|
guest.cpuset = tmpset
|
|
|
|
|
|
|
|
return
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _default_network_opts(guest):
|
|
|
|
opts = ""
|
|
|
|
if User.current().has_priv(User.PRIV_CREATE_NETWORK, guest.get_uri()):
|
2013-04-11 22:27:02 +08:00
|
|
|
net = util.default_network(guest.conn)
|
2013-03-18 05:06:52 +08:00
|
|
|
opts = "%s=%s" % (net[0], net[1])
|
|
|
|
else:
|
|
|
|
opts = "user"
|
|
|
|
|
|
|
|
return opts
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def digest_networks(guest, options, numnics=1):
|
|
|
|
macs = listify(options.mac)
|
|
|
|
networks = listify(options.network)
|
|
|
|
bridges = listify(options.bridge)
|
|
|
|
|
|
|
|
if bridges and networks:
|
|
|
|
fail(_("Cannot mix both --bridge and --network arguments"))
|
|
|
|
|
|
|
|
if bridges:
|
|
|
|
# Convert old --bridges to --networks
|
2013-04-12 04:32:00 +08:00
|
|
|
networks = ["bridge:" + b for b in bridges]
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
def padlist(l, padsize):
|
|
|
|
l = listify(l)
|
|
|
|
l.extend((padsize - len(l)) * [None])
|
|
|
|
return l
|
|
|
|
|
|
|
|
# If a plain mac is specified, have it imply a default network
|
|
|
|
networks = padlist(networks, max(len(macs), numnics))
|
|
|
|
macs = padlist(macs, len(networks))
|
|
|
|
|
|
|
|
for idx in range(len(networks)):
|
|
|
|
if networks[idx] is None:
|
|
|
|
networks[idx] = _default_network_opts(guest)
|
|
|
|
|
|
|
|
return networks, macs
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_networks(guest, networks, macs):
|
|
|
|
for idx in range(len(networks)):
|
|
|
|
mac = macs[idx]
|
|
|
|
netstr = networks[idx]
|
|
|
|
|
|
|
|
try:
|
|
|
|
dev = parse_network(guest, netstr, mac=mac)
|
|
|
|
guest.add_device(dev)
|
|
|
|
except Exception, e:
|
|
|
|
fail(_("Error in network device parameters: %s") % str(e))
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def set_os_variant(guest, distro_type, distro_variant):
|
|
|
|
if not distro_type and not distro_variant:
|
|
|
|
# Default to distro autodetection
|
|
|
|
guest.set_os_autodetect(True)
|
|
|
|
return
|
|
|
|
|
|
|
|
if (distro_type and str(distro_type).lower() != "none"):
|
|
|
|
guest.set_os_type(distro_type)
|
|
|
|
|
|
|
|
if (distro_variant and str(distro_variant).lower() != "none"):
|
|
|
|
guest.set_os_variant(distro_variant)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def digest_graphics(guest, options, default_override=None):
|
|
|
|
vnc = options.vnc
|
|
|
|
vncport = options.vncport
|
|
|
|
vnclisten = options.vnclisten
|
|
|
|
nographics = options.nographics
|
|
|
|
sdl = options.sdl
|
|
|
|
keymap = options.keymap
|
|
|
|
graphics = options.graphics
|
|
|
|
|
|
|
|
if graphics and (vnc or sdl or keymap or vncport or vnclisten):
|
|
|
|
fail(_("Cannot mix --graphics and old style graphical options"))
|
|
|
|
|
2013-04-12 04:32:00 +08:00
|
|
|
optnum = sum([bool(g) for g in [vnc, nographics, sdl, graphics]])
|
2013-03-18 05:06:52 +08:00
|
|
|
if optnum > 1:
|
|
|
|
raise ValueError(_("Can't specify more than one of VNC, SDL, "
|
|
|
|
"--graphics or --nographics"))
|
|
|
|
|
|
|
|
if graphics:
|
|
|
|
return graphics
|
|
|
|
|
|
|
|
if optnum == 0:
|
|
|
|
# If no graphics specified, choose a default
|
|
|
|
if default_override is True:
|
|
|
|
vnc = True
|
|
|
|
elif default_override is False:
|
|
|
|
nographics = True
|
|
|
|
else:
|
|
|
|
if guest.installer.is_container():
|
|
|
|
logging.debug("Container guest, defaulting to nographics")
|
|
|
|
nographics = True
|
|
|
|
elif "DISPLAY" in os.environ.keys():
|
|
|
|
logging.debug("DISPLAY is set: graphics defaulting to VNC.")
|
|
|
|
vnc = True
|
|
|
|
else:
|
|
|
|
logging.debug("DISPLAY is not set: defaulting to nographics.")
|
|
|
|
nographics = True
|
|
|
|
|
|
|
|
|
|
|
|
# Build a --graphics command line from old style opts
|
|
|
|
optstr = ((vnc and "vnc") or
|
|
|
|
(sdl and "sdl") or
|
|
|
|
(nographics and ("none")))
|
|
|
|
if vnclisten:
|
|
|
|
optstr += ",listen=%s" % vnclisten
|
|
|
|
if vncport:
|
|
|
|
optstr += ",port=%s" % vncport
|
|
|
|
if keymap:
|
|
|
|
optstr += ",keymap=%s" % keymap
|
|
|
|
|
|
|
|
logging.debug("--graphics compat generated: %s", optstr)
|
|
|
|
return [optstr]
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_graphics(guest, graphics):
|
|
|
|
for optstr in graphics:
|
|
|
|
try:
|
|
|
|
dev = parse_graphics(guest, optstr)
|
|
|
|
except Exception, e:
|
|
|
|
fail(_("Error in graphics device parameters: %s") % str(e))
|
|
|
|
|
|
|
|
if dev:
|
|
|
|
guest.add_device(dev)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_video(guest, video_models=None):
|
|
|
|
video_models = video_models or []
|
|
|
|
|
2013-04-11 07:48:07 +08:00
|
|
|
if guest.get_devices(VirtualGraphics.VIRTUAL_DEV_GRAPHICS):
|
2013-03-18 05:06:52 +08:00
|
|
|
if not video_models:
|
|
|
|
video_models.append(None)
|
|
|
|
|
|
|
|
for model in video_models:
|
|
|
|
guest.add_device(parse_video(guest, model))
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_sound(old_sound_bool, sound_opts, guest):
|
|
|
|
if not sound_opts:
|
|
|
|
if old_sound_bool:
|
2013-04-12 21:39:34 +08:00
|
|
|
guest.add_device(VirtualAudio(conn=guest.conn))
|
2013-03-18 05:06:52 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
for opts in listify(sound_opts):
|
|
|
|
guest.add_device(parse_sound(guest, opts))
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_hostdevs(hostdevs, guest):
|
|
|
|
if not hostdevs:
|
|
|
|
return
|
|
|
|
|
|
|
|
for devname in hostdevs:
|
|
|
|
guest.add_device(parse_hostdev(guest, devname))
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_smartcard(guest, sc_opts):
|
|
|
|
for sc in listify(sc_opts):
|
|
|
|
try:
|
|
|
|
dev = parse_smartcard(guest, sc)
|
|
|
|
except Exception, e:
|
|
|
|
fail(_("Error in smartcard device parameters: %s") % str(e))
|
|
|
|
|
|
|
|
if dev:
|
|
|
|
guest.add_device(dev)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-06-26 09:45:07 +08:00
|
|
|
def get_tpm(guest, tpm_opts):
|
|
|
|
for tpm in listify(tpm_opts):
|
|
|
|
try:
|
|
|
|
dev = parse_tpm(guest, tpm)
|
|
|
|
except Exception, e:
|
|
|
|
fail(_("Error in TPM device parameters: %s") % str(e))
|
|
|
|
|
|
|
|
if dev:
|
|
|
|
guest.add_device(dev)
|
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_controller(guest, sc_opts):
|
|
|
|
for sc in listify(sc_opts):
|
|
|
|
try:
|
|
|
|
dev = parse_controller(guest, sc)
|
|
|
|
except Exception, e:
|
|
|
|
fail(_("Error in controller device parameters: %s") % str(e))
|
|
|
|
|
|
|
|
if dev:
|
|
|
|
guest.add_device(dev)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_redirdev(guest, sc_opts):
|
|
|
|
for sc in listify(sc_opts):
|
|
|
|
try:
|
|
|
|
dev = parse_redirdev(guest, sc)
|
|
|
|
except Exception, e:
|
|
|
|
fail(_("Error in redirdev device parameters: %s") % str(e))
|
|
|
|
|
|
|
|
if dev:
|
|
|
|
guest.add_device(dev)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_memballoon(guest, sc_opts):
|
|
|
|
for sc in listify(sc_opts):
|
|
|
|
try:
|
|
|
|
dev = parse_memballoon(guest, sc)
|
|
|
|
except Exception, e:
|
|
|
|
fail(_("Error in memballoon device parameters: %s") % str(e))
|
|
|
|
|
|
|
|
if dev:
|
|
|
|
guest.add_device(dev)
|
|
|
|
|
|
|
|
#############################
|
|
|
|
# Common CLI option/group #
|
|
|
|
#############################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def add_connect_option(parser):
|
|
|
|
parser.add_option("", "--connect", metavar="URI", dest="connect",
|
|
|
|
help=_("Connect to hypervisor with libvirt URI"))
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def vcpu_cli_options(grp, backcompat=True):
|
|
|
|
grp.add_option("", "--vcpus", dest="vcpus",
|
|
|
|
help=_("Number of vcpus to configure for your guest. Ex:\n"
|
|
|
|
"--vcpus 5\n"
|
|
|
|
"--vcpus 5,maxcpus=10\n"
|
|
|
|
"--vcpus sockets=2,cores=4,threads=2"))
|
|
|
|
grp.add_option("", "--cpuset", dest="cpuset",
|
|
|
|
help=_("Set which physical CPUs domain can use."))
|
|
|
|
grp.add_option("", "--cpu", dest="cpu",
|
|
|
|
help=_("CPU model and features. Ex: --cpu coreduo,+x2apic"))
|
|
|
|
|
|
|
|
if backcompat:
|
|
|
|
grp.add_option("", "--check-cpu", action="store_true",
|
|
|
|
dest="check_cpu", help=optparse.SUPPRESS_HELP)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def graphics_option_group(parser):
|
|
|
|
"""
|
|
|
|
Register vnc + sdl options for virt-install and virt-image
|
|
|
|
"""
|
|
|
|
|
|
|
|
vncg = optparse.OptionGroup(parser, _("Graphics Configuration"))
|
|
|
|
add_gfx_option(vncg)
|
|
|
|
vncg.add_option("", "--vnc", action="store_true", dest="vnc",
|
|
|
|
help=optparse.SUPPRESS_HELP)
|
|
|
|
vncg.add_option("", "--vncport", type="int", dest="vncport",
|
|
|
|
help=optparse.SUPPRESS_HELP)
|
|
|
|
vncg.add_option("", "--vnclisten", dest="vnclisten",
|
|
|
|
help=optparse.SUPPRESS_HELP)
|
|
|
|
vncg.add_option("-k", "--keymap", dest="keymap",
|
|
|
|
help=optparse.SUPPRESS_HELP)
|
|
|
|
vncg.add_option("", "--sdl", action="store_true", dest="sdl",
|
|
|
|
help=optparse.SUPPRESS_HELP)
|
|
|
|
vncg.add_option("", "--nographics", action="store_true",
|
|
|
|
help=optparse.SUPPRESS_HELP)
|
|
|
|
return vncg
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def network_option_group(parser):
|
|
|
|
"""
|
|
|
|
Register common network options for virt-install and virt-image
|
|
|
|
"""
|
|
|
|
netg = optparse.OptionGroup(parser, _("Networking Configuration"))
|
|
|
|
|
|
|
|
add_net_option(netg)
|
|
|
|
|
|
|
|
# Deprecated net options
|
|
|
|
netg.add_option("-b", "--bridge", dest="bridge", action="append",
|
|
|
|
help=optparse.SUPPRESS_HELP)
|
|
|
|
netg.add_option("-m", "--mac", dest="mac", action="append",
|
|
|
|
help=optparse.SUPPRESS_HELP)
|
|
|
|
|
|
|
|
return netg
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def add_net_option(devg):
|
|
|
|
devg.add_option("-w", "--network", dest="network", action="append",
|
|
|
|
help=_("Configure a guest network interface. Ex:\n"
|
|
|
|
"--network bridge=mybr0\n"
|
|
|
|
"--network network=my_libvirt_virtual_net\n"
|
|
|
|
"--network network=mynet,model=virtio,mac=00:11..."))
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def add_device_options(devg):
|
|
|
|
devg.add_option("", "--controller", dest="controller", action="append",
|
|
|
|
help=_("Configure a guest controller device. Ex:\n"
|
|
|
|
"--controller type=usb,model=ich9-ehci1"))
|
|
|
|
devg.add_option("", "--serial", dest="serials", action="append",
|
|
|
|
help=_("Configure a guest serial device"))
|
|
|
|
devg.add_option("", "--parallel", dest="parallels", action="append",
|
|
|
|
help=_("Configure a guest parallel device"))
|
|
|
|
devg.add_option("", "--channel", dest="channels", action="append",
|
|
|
|
help=_("Configure a guest communication channel"))
|
|
|
|
devg.add_option("", "--console", dest="consoles", action="append",
|
|
|
|
help=_("Configure a text console connection between "
|
|
|
|
"the guest and host"))
|
|
|
|
devg.add_option("", "--host-device", dest="hostdevs", action="append",
|
|
|
|
help=_("Configure physical host devices attached to the "
|
|
|
|
"guest"))
|
|
|
|
devg.add_option("", "--soundhw", dest="soundhw", action="append",
|
|
|
|
help=_("Configure guest sound device emulation"))
|
|
|
|
devg.add_option("", "--watchdog", dest="watchdog", action="append",
|
|
|
|
help=_("Configure a guest watchdog device"))
|
|
|
|
devg.add_option("", "--video", dest="video", action="append",
|
|
|
|
help=_("Configure guest video hardware."))
|
|
|
|
devg.add_option("", "--smartcard", dest="smartcard", action="append",
|
|
|
|
help=_("Configure a guest smartcard device. Ex:\n"
|
|
|
|
"--smartcard mode=passthrough"))
|
|
|
|
devg.add_option("", "--redirdev", dest="redirdev", action="append",
|
|
|
|
help=_("Configure a guest redirection device. Ex:\n"
|
|
|
|
"--redirdev usb,type=tcp,server=192.168.1.1:4000"))
|
|
|
|
devg.add_option("", "--memballoon", dest="memballoon", action="append",
|
|
|
|
help=_("Configure a guest memballoon device. Ex:\n"
|
|
|
|
"--memballoon model=virtio"))
|
2013-06-26 09:45:07 +08:00
|
|
|
devg.add_option("", "--tpm", dest="tpm", action="append",
|
|
|
|
help=_("Configure a guest TPM device. Ex:\n"
|
|
|
|
"--tpm type=passthrough"))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def add_gfx_option(devg):
|
|
|
|
devg.add_option("", "--graphics", dest="graphics", action="append",
|
|
|
|
help=_("Configure guest display settings. Ex:\n"
|
|
|
|
"--graphics vnc\n"
|
|
|
|
"--graphics spice,port=5901,tlsport=5902\n"
|
|
|
|
"--graphics none\n"
|
|
|
|
"--graphics vnc,password=foobar,port=5910,keymap=ja"))
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def add_fs_option(devg):
|
|
|
|
devg.add_option("", "--filesystem", dest="filesystems", action="append",
|
|
|
|
help=_("Pass host directory to the guest. Ex: \n"
|
|
|
|
"--filesystem /my/source/dir,/dir/in/guest\n"
|
|
|
|
"--filesystem template_name,/,type=template"))
|
|
|
|
|
|
|
|
#############################################
|
|
|
|
# CLI complex parsing helpers #
|
|
|
|
# (for options like --disk, --network, etc. #
|
|
|
|
#############################################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def get_opt_param(opts, dictnames, val=None):
|
|
|
|
if type(dictnames) is not list:
|
|
|
|
dictnames = [dictnames]
|
|
|
|
|
|
|
|
for key in dictnames:
|
|
|
|
if key in opts:
|
2013-04-14 02:34:52 +08:00
|
|
|
if val is None:
|
2013-03-18 05:06:52 +08:00
|
|
|
val = opts[key]
|
|
|
|
del(opts[key])
|
|
|
|
|
|
|
|
return val
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _build_set_param(inst, opts):
|
|
|
|
def _set_param(paramname, keyname, val=None):
|
|
|
|
val = get_opt_param(opts, keyname, val)
|
2013-04-14 02:34:52 +08:00
|
|
|
if val is None:
|
2013-03-18 05:06:52 +08:00
|
|
|
return
|
|
|
|
setattr(inst, paramname, val)
|
|
|
|
|
|
|
|
return _set_param
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_optstr_tuples(optstr, compress_first=False):
|
|
|
|
"""
|
|
|
|
Parse optstr into a list of ordered tuples
|
|
|
|
"""
|
|
|
|
optstr = str(optstr or "")
|
|
|
|
optlist = []
|
|
|
|
|
|
|
|
if compress_first and optstr and not optstr.count("="):
|
|
|
|
return [(optstr, None)]
|
|
|
|
|
|
|
|
argsplitter = shlex.shlex(optstr, posix=True)
|
|
|
|
argsplitter.commenters = ""
|
|
|
|
argsplitter.whitespace = ","
|
|
|
|
argsplitter.whitespace_split = True
|
|
|
|
|
|
|
|
for opt in list(argsplitter):
|
|
|
|
if not opt:
|
|
|
|
continue
|
|
|
|
|
|
|
|
opt_type = None
|
|
|
|
opt_val = None
|
|
|
|
if opt.count("="):
|
|
|
|
opt_type, opt_val = opt.split("=", 1)
|
|
|
|
optlist.append((opt_type, opt_val))
|
|
|
|
else:
|
|
|
|
optlist.append((opt, None))
|
|
|
|
|
|
|
|
return optlist
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_optstr(optstr, basedict=None, remove_first=None,
|
|
|
|
compress_first=False):
|
|
|
|
"""
|
|
|
|
Helper function for parsing opt strings of the form
|
|
|
|
opt1=val1,opt2=val2,...
|
|
|
|
|
|
|
|
@param basedict: starting dictionary, so the caller can easily set
|
|
|
|
default values, etc.
|
|
|
|
@param remove_first: List or parameters to peel off the front of
|
|
|
|
option string, and store in the returned dict.
|
|
|
|
remove_first=["char_type"] for --serial pty,foo=bar
|
|
|
|
returns {"char_type", "pty", "foo" : "bar"}
|
|
|
|
@param compress_first: If there are no options of the form opt1=opt2,
|
|
|
|
compress the string to a single option
|
|
|
|
@returns: a dictionary of {'opt1': 'val1', 'opt2': 'val2'}
|
|
|
|
"""
|
|
|
|
optlist = parse_optstr_tuples(optstr, compress_first=compress_first)
|
|
|
|
optdict = basedict or {}
|
|
|
|
|
|
|
|
paramlist = remove_first
|
|
|
|
if type(paramlist) is not list:
|
|
|
|
paramlist = paramlist and [paramlist] or []
|
|
|
|
|
|
|
|
for idx in range(len(paramlist)):
|
|
|
|
if len(optlist) < len(paramlist):
|
|
|
|
break
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
if optlist[idx][1] is None:
|
2013-03-18 05:06:52 +08:00
|
|
|
optlist[idx] = (paramlist[idx], optlist[idx][0])
|
|
|
|
|
|
|
|
for opt, val in optlist:
|
|
|
|
if type(optdict.get(opt)) is list:
|
|
|
|
optdict[opt].append(val)
|
|
|
|
else:
|
|
|
|
optdict[opt] = val
|
|
|
|
|
|
|
|
return optdict
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#######################
|
|
|
|
# Guest param parsing #
|
|
|
|
#######################
|
|
|
|
|
|
|
|
######################
|
|
|
|
# --numatune parsing #
|
|
|
|
######################
|
|
|
|
|
|
|
|
def parse_numatune(guest, optstring):
|
|
|
|
"""
|
|
|
|
Helper to parse --numatune string
|
|
|
|
|
|
|
|
@param guest: virtinst.Guest instanct (object)
|
|
|
|
@param optstring: value of the option '--numatune' (str)
|
|
|
|
"""
|
|
|
|
opts = parse_optstr(optstring, remove_first="nodeset", compress_first=True)
|
|
|
|
|
|
|
|
set_param = _build_set_param(guest.numatune, opts)
|
|
|
|
|
|
|
|
set_param("memory_nodeset", "nodeset")
|
|
|
|
set_param("memory_mode", "mode")
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
##################
|
|
|
|
# --vcpu parsing #
|
|
|
|
##################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_vcpu(guest, optstring, default_vcpus=None):
|
|
|
|
"""
|
|
|
|
Helper to parse --vcpu string
|
|
|
|
|
|
|
|
@param guest: virtinst.Guest instance (object)
|
|
|
|
@param optstring: value of the option '--vcpus' (str)
|
|
|
|
@param default_vcpus: ? (it should be None at present.)
|
|
|
|
"""
|
|
|
|
if not optstring:
|
|
|
|
return
|
|
|
|
|
|
|
|
opts = parse_optstr(optstring, remove_first="vcpus")
|
|
|
|
vcpus = opts.get("vcpus") or default_vcpus
|
|
|
|
if vcpus is not None:
|
|
|
|
opts["vcpus"] = vcpus
|
|
|
|
|
|
|
|
set_param = _build_set_param(guest, opts)
|
|
|
|
set_cpu_param = _build_set_param(guest.cpu, opts)
|
|
|
|
has_vcpus = ("vcpus" in opts or (vcpus is not None))
|
|
|
|
|
|
|
|
set_param("vcpus", "vcpus")
|
|
|
|
set_param("maxvcpus", "maxvcpus")
|
|
|
|
|
|
|
|
set_cpu_param("sockets", "sockets")
|
|
|
|
set_cpu_param("cores", "cores")
|
|
|
|
set_cpu_param("threads", "threads")
|
|
|
|
|
|
|
|
if not has_vcpus:
|
|
|
|
guest.vcpus = guest.cpu.vcpus_from_topology()
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
#################
|
|
|
|
# --cpu parsing #
|
|
|
|
#################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_cpu(guest, optstring):
|
|
|
|
default_dict = {
|
|
|
|
"force": [],
|
|
|
|
"require": [],
|
|
|
|
"optional": [],
|
|
|
|
"disable": [],
|
|
|
|
"forbid": [],
|
2013-04-14 02:34:52 +08:00
|
|
|
}
|
2013-03-18 05:06:52 +08:00
|
|
|
opts = parse_optstr(optstring,
|
|
|
|
basedict=default_dict,
|
|
|
|
remove_first="model")
|
|
|
|
|
|
|
|
# Convert +feature, -feature into expected format
|
|
|
|
for key, value in opts.items():
|
|
|
|
policy = None
|
|
|
|
if value or len(key) == 1:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if key.startswith("+"):
|
|
|
|
policy = "force"
|
|
|
|
elif key.startswith("-"):
|
|
|
|
policy = "disable"
|
|
|
|
|
|
|
|
if policy:
|
|
|
|
del(opts[key])
|
|
|
|
opts[policy].append(key[1:])
|
|
|
|
|
|
|
|
set_param = _build_set_param(guest.cpu, opts)
|
|
|
|
def set_features(policy):
|
|
|
|
for name in opts.get(policy):
|
|
|
|
guest.cpu.add_feature(name, policy)
|
|
|
|
del(opts[policy])
|
|
|
|
|
|
|
|
if opts.get("model") == "host":
|
|
|
|
guest.cpu.copy_host_cpu()
|
|
|
|
del(opts["model"])
|
|
|
|
|
|
|
|
set_param("model", "model")
|
|
|
|
set_param("match", "match")
|
|
|
|
set_param("vendor", "vendor")
|
|
|
|
|
|
|
|
set_features("force")
|
|
|
|
set_features("require")
|
|
|
|
set_features("optional")
|
|
|
|
set_features("disable")
|
|
|
|
set_features("forbid")
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
##################
|
|
|
|
# --boot parsing #
|
|
|
|
##################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_boot(guest, optstring):
|
|
|
|
"""
|
|
|
|
Helper to parse --boot string
|
|
|
|
"""
|
|
|
|
opts = parse_optstr(optstring)
|
2013-04-12 04:32:00 +08:00
|
|
|
optlist = [x[0] for x in parse_optstr_tuples(optstring)]
|
2013-03-18 05:06:52 +08:00
|
|
|
menu = None
|
|
|
|
|
|
|
|
def set_param(paramname, dictname, val=None):
|
|
|
|
val = get_opt_param(opts, dictname, val)
|
2013-04-14 02:34:52 +08:00
|
|
|
if val is None:
|
2013-03-18 05:06:52 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
if paramname == "loader":
|
|
|
|
guest.installer.loader = val
|
|
|
|
else:
|
|
|
|
setattr(guest.installer.bootconfig, paramname, val)
|
|
|
|
|
|
|
|
# Convert menu= value
|
|
|
|
if "menu" in opts:
|
|
|
|
menustr = opts["menu"]
|
|
|
|
menu = None
|
|
|
|
|
|
|
|
if menustr.lower() == "on":
|
|
|
|
menu = True
|
|
|
|
elif menustr.lower() == "off":
|
|
|
|
menu = False
|
|
|
|
else:
|
|
|
|
menu = yes_or_no_convert(menustr)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
if menu is None:
|
2013-03-18 05:06:52 +08:00
|
|
|
fail(_("--boot menu must be 'on' or 'off'"))
|
|
|
|
|
|
|
|
set_param("enable_bootmenu", "menu", menu)
|
|
|
|
set_param("kernel", "kernel")
|
|
|
|
set_param("initrd", "initrd")
|
|
|
|
set_param("loader", "loader")
|
|
|
|
set_param("kernel_args", ["kernel_args", "extra_args"])
|
|
|
|
|
|
|
|
# Build boot order
|
|
|
|
if opts:
|
|
|
|
boot_order = []
|
|
|
|
for boot_dev in optlist:
|
|
|
|
if not boot_dev in guest.installer.bootconfig.boot_devices:
|
|
|
|
continue
|
|
|
|
|
|
|
|
del(opts[boot_dev])
|
|
|
|
if boot_dev not in boot_order:
|
|
|
|
boot_order.append(boot_dev)
|
|
|
|
|
|
|
|
guest.installer.bootconfig.bootorder = boot_order
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
######################
|
|
|
|
# --security parsing #
|
|
|
|
######################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_security(guest, security):
|
|
|
|
seclist = listify(security)
|
|
|
|
secopts = seclist and seclist[0] or None
|
|
|
|
if not secopts:
|
|
|
|
return
|
|
|
|
|
|
|
|
# Parse security opts
|
|
|
|
opts = parse_optstr(secopts)
|
|
|
|
arglist = secopts.split(",")
|
|
|
|
secmodel = guest.seclabel
|
|
|
|
|
|
|
|
# Beware, adding boolean options here could upset label comma handling
|
|
|
|
mode = get_opt_param(opts, "type")
|
|
|
|
label = get_opt_param(opts, "label")
|
|
|
|
relabel = yes_or_no_convert(get_opt_param(opts, "relabel"))
|
|
|
|
|
|
|
|
# Try to fix up label if it contained commas
|
|
|
|
if label:
|
|
|
|
tmparglist = arglist[:]
|
|
|
|
for idx in range(len(tmparglist)):
|
|
|
|
arg = tmparglist[idx]
|
|
|
|
if not arg.split("=")[0] == "label":
|
|
|
|
continue
|
|
|
|
|
|
|
|
for arg in tmparglist[idx + 1:]:
|
|
|
|
if arg.count("="):
|
|
|
|
break
|
|
|
|
|
|
|
|
if arg:
|
|
|
|
label += "," + arg
|
|
|
|
del(opts[arg])
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
if label:
|
|
|
|
secmodel.label = label
|
|
|
|
if not mode:
|
|
|
|
mode = secmodel.SECLABEL_TYPE_STATIC
|
|
|
|
if mode:
|
|
|
|
secmodel.type = mode
|
|
|
|
|
|
|
|
if relabel:
|
|
|
|
secmodel.relabel = relabel
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
# Run for validation purposes
|
|
|
|
secmodel.get_xml_config()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
##########################
|
|
|
|
# Guest <device> parsing #
|
|
|
|
##########################
|
|
|
|
|
|
|
|
|
|
|
|
##################
|
|
|
|
# --disk parsing #
|
|
|
|
##################
|
|
|
|
|
|
|
|
_disk_counter = itertools.count()
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _parse_disk_source(guest, path, pool, vol, size, fmt, sparse):
|
|
|
|
abspath = None
|
|
|
|
volinst = None
|
|
|
|
volobj = None
|
|
|
|
|
|
|
|
# Strip media type
|
2013-04-12 04:32:00 +08:00
|
|
|
if sum([bool(p) for p in [path, pool, vol]]) > 1:
|
2013-03-18 05:06:52 +08:00
|
|
|
fail(_("Cannot specify more than 1 storage path"))
|
|
|
|
|
|
|
|
if path:
|
|
|
|
abspath = os.path.abspath(path)
|
|
|
|
if os.path.dirname(abspath) == DEFAULT_POOL_PATH:
|
|
|
|
build_default_pool(guest)
|
|
|
|
|
|
|
|
elif pool:
|
|
|
|
if not size:
|
|
|
|
raise ValueError(_("Size must be specified with all 'pool='"))
|
|
|
|
if pool == DEFAULT_POOL_NAME:
|
|
|
|
build_default_pool(guest)
|
|
|
|
vc = virtinst.Storage.StorageVolume.get_volume_for_pool(pool_name=pool,
|
|
|
|
conn=guest.conn)
|
|
|
|
vname = virtinst.Storage.StorageVolume.find_free_name(conn=guest.conn,
|
|
|
|
pool_name=pool,
|
|
|
|
name=guest.name,
|
|
|
|
suffix=".img",
|
|
|
|
start_num=_disk_counter.next())
|
|
|
|
volinst = vc(pool_name=pool, name=vname, conn=guest.conn,
|
|
|
|
allocation=0, capacity=(size and
|
|
|
|
size * 1024 * 1024 * 1024))
|
|
|
|
if fmt:
|
|
|
|
if not hasattr(volinst, "format"):
|
|
|
|
raise ValueError(_("Format attribute not supported for this "
|
|
|
|
"volume type"))
|
|
|
|
setattr(volinst, "format", fmt)
|
|
|
|
|
|
|
|
if not sparse:
|
|
|
|
volinst.allocation = volinst.capacity
|
|
|
|
|
|
|
|
elif vol:
|
|
|
|
if not vol.count("/"):
|
|
|
|
raise ValueError(_("Storage volume must be specified as "
|
|
|
|
"vol=poolname/volname"))
|
|
|
|
vollist = vol.split("/")
|
|
|
|
voltuple = (vollist[0], vollist[1])
|
|
|
|
logging.debug("Parsed volume: as pool='%s' vol='%s'",
|
|
|
|
voltuple[0], voltuple[1])
|
|
|
|
if voltuple[0] == DEFAULT_POOL_NAME:
|
|
|
|
build_default_pool(guest)
|
|
|
|
|
|
|
|
volobj = virtinst.VirtualDisk.lookup_vol_object(guest.conn, voltuple)
|
|
|
|
|
|
|
|
return abspath, volinst, volobj
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_disk(guest, optstr, dev=None):
|
|
|
|
"""
|
|
|
|
helper to properly parse --disk options
|
|
|
|
"""
|
|
|
|
def parse_perms(val):
|
|
|
|
ro = False
|
|
|
|
shared = False
|
|
|
|
if val is not None:
|
|
|
|
if val == "ro":
|
|
|
|
ro = True
|
|
|
|
elif val == "sh":
|
|
|
|
shared = True
|
|
|
|
elif val == "rw":
|
|
|
|
# It's default. Nothing to do.
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
fail(_("Unknown '%s' value '%s'" % ("perms", val)))
|
|
|
|
|
|
|
|
return ro, shared
|
|
|
|
|
|
|
|
def parse_size(val):
|
|
|
|
newsize = None
|
|
|
|
if val is not None:
|
|
|
|
try:
|
|
|
|
newsize = float(val)
|
|
|
|
except Exception, e:
|
|
|
|
fail(_("Improper value for 'size': %s" % str(e)))
|
|
|
|
|
|
|
|
return newsize
|
|
|
|
|
|
|
|
def parse_sparse(val):
|
|
|
|
sparse = True
|
|
|
|
if val is not None:
|
|
|
|
val = str(val).lower()
|
|
|
|
if val in ["true", "yes"]:
|
|
|
|
sparse = True
|
|
|
|
elif val in ["false", "no"]:
|
|
|
|
sparse = False
|
|
|
|
else:
|
|
|
|
fail(_("Unknown '%s' value '%s'") % ("sparse", val))
|
|
|
|
|
|
|
|
return sparse
|
|
|
|
|
|
|
|
def opt_get(key):
|
|
|
|
val = None
|
|
|
|
if key in opts:
|
|
|
|
val = opts.get(key)
|
|
|
|
del(opts[key])
|
|
|
|
|
|
|
|
return val
|
|
|
|
|
|
|
|
# Parse out comma separated options
|
|
|
|
opts = parse_optstr(optstr, remove_first="path")
|
|
|
|
|
|
|
|
# We annoyingly need these params ahead of time to deal with
|
|
|
|
# VirtualDisk validation
|
|
|
|
path = opt_get("path")
|
|
|
|
pool = opt_get("pool")
|
|
|
|
vol = opt_get("vol")
|
|
|
|
size = parse_size(opt_get("size"))
|
|
|
|
fmt = opt_get("format")
|
|
|
|
sparse = parse_sparse(opt_get("sparse"))
|
|
|
|
ro, shared = parse_perms(opt_get("perms"))
|
|
|
|
device = opt_get("device")
|
|
|
|
|
|
|
|
abspath, volinst, volobj = _parse_disk_source(guest, path, pool, vol,
|
|
|
|
size, fmt, sparse)
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
# Build a stub device that should always validate cleanly
|
|
|
|
dev = virtinst.VirtualDisk(conn=guest.conn,
|
|
|
|
path=abspath,
|
|
|
|
volObject=volobj,
|
|
|
|
volInstall=volinst,
|
|
|
|
size=size,
|
|
|
|
readOnly=ro,
|
|
|
|
sparse=sparse,
|
|
|
|
shareable=shared,
|
|
|
|
device=device,
|
|
|
|
format=fmt)
|
|
|
|
|
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
|
|
|
set_param("path", "path", abspath)
|
|
|
|
set_param("vol", "vol_object", volobj)
|
|
|
|
set_param("pool", "vol_install", volinst)
|
|
|
|
set_param("size", "size", size)
|
|
|
|
set_param("format", "format", fmt)
|
|
|
|
set_param("sparse", "sparse", sparse)
|
|
|
|
set_param("read_only", "perms", ro)
|
|
|
|
set_param("shareable", "perms", shared)
|
|
|
|
set_param("device", "device", device)
|
|
|
|
|
|
|
|
set_param("bus", "bus")
|
|
|
|
set_param("driver_cache", "cache")
|
|
|
|
set_param("driver_name", "driver_name")
|
|
|
|
set_param("driver_type", "driver_type")
|
|
|
|
set_param("driver_io", "io")
|
|
|
|
set_param("error_policy", "error_policy")
|
|
|
|
set_param("serial", "serial")
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
fail(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
return dev, size
|
|
|
|
|
|
|
|
#####################
|
|
|
|
# --network parsing #
|
|
|
|
#####################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_network(guest, optstring, dev=None, mac=None):
|
|
|
|
# Handle old format of bridge:foo instead of bridge=foo
|
|
|
|
for prefix in ["network", "bridge"]:
|
|
|
|
if optstring.startswith(prefix + ":"):
|
|
|
|
optstring = optstring.replace(prefix + ":", prefix + "=")
|
|
|
|
|
|
|
|
opts = parse_optstr(optstring, remove_first="type")
|
|
|
|
|
|
|
|
# Determine device type
|
|
|
|
net_type = opts.get("type")
|
|
|
|
if "network" in opts:
|
|
|
|
net_type = VirtualNetworkInterface.TYPE_VIRTUAL
|
|
|
|
elif "bridge" in opts:
|
|
|
|
net_type = VirtualNetworkInterface.TYPE_BRIDGE
|
|
|
|
|
|
|
|
# Build initial device
|
|
|
|
if not dev:
|
|
|
|
dev = VirtualNetworkInterface(conn=guest.conn,
|
|
|
|
type=net_type,
|
|
|
|
network=opts.get("network"),
|
|
|
|
bridge=opts.get("bridge"))
|
|
|
|
|
|
|
|
if mac and not "mac" in opts:
|
|
|
|
opts["mac"] = mac
|
|
|
|
if "mac" in opts:
|
|
|
|
if opts["mac"] == "RANDOM":
|
|
|
|
opts["mac"] = None
|
|
|
|
|
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
|
|
|
set_param("type", "type", net_type)
|
|
|
|
set_param("network", "network")
|
|
|
|
set_param("bridge", "bridge")
|
|
|
|
set_param("model", "model")
|
|
|
|
set_param("macaddr", "mac")
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
return dev
|
|
|
|
|
|
|
|
######################
|
|
|
|
# --graphics parsing #
|
|
|
|
######################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_graphics(guest, optstring, dev=None):
|
|
|
|
if optstring is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def sanitize_keymap(keymap):
|
2013-04-14 04:31:13 +08:00
|
|
|
from virtinst import hostkeymap
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
if not keymap:
|
|
|
|
return None
|
|
|
|
if keymap.lower() == "local":
|
2013-04-11 07:48:07 +08:00
|
|
|
return VirtualGraphics.KEYMAP_LOCAL
|
2013-03-18 05:06:52 +08:00
|
|
|
if keymap.lower() == "none":
|
|
|
|
return None
|
|
|
|
|
2013-04-14 04:31:13 +08:00
|
|
|
use_keymap = hostkeymap.sanitize_keymap(keymap)
|
2013-03-18 05:06:52 +08:00
|
|
|
if not use_keymap:
|
|
|
|
raise ValueError(
|
|
|
|
_("Didn't match keymap '%s' in keytable!") % keymap)
|
|
|
|
return use_keymap
|
|
|
|
|
|
|
|
# Peel the model type off the front
|
|
|
|
opts = parse_optstr(optstring, remove_first="type")
|
|
|
|
if opts.get("type") == "none":
|
|
|
|
return None
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
dev = VirtualGraphics(conn=guest.conn)
|
|
|
|
|
|
|
|
def set_param(paramname, dictname, val=None):
|
|
|
|
val = get_opt_param(opts, dictname, val)
|
2013-04-14 02:34:52 +08:00
|
|
|
if val is None:
|
2013-03-18 05:06:52 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
if paramname == "keymap":
|
|
|
|
val = sanitize_keymap(val)
|
|
|
|
setattr(dev, paramname, val)
|
|
|
|
|
|
|
|
set_param("type", "type")
|
|
|
|
set_param("port", "port")
|
|
|
|
set_param("tlsPort", "tlsport")
|
|
|
|
set_param("listen", "listen")
|
|
|
|
set_param("keymap", "keymap")
|
|
|
|
set_param("passwd", "password")
|
|
|
|
set_param("passwdValidTo", "passwordvalidto")
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
return dev
|
|
|
|
|
|
|
|
#######################
|
|
|
|
# --controller parsing #
|
|
|
|
#######################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_controller(guest, optstring, dev=None):
|
|
|
|
if optstring is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
if optstring == "usb2":
|
|
|
|
guest.add_usb_ich9_controllers()
|
|
|
|
return None
|
|
|
|
|
|
|
|
# Peel the mode off the front
|
|
|
|
opts = parse_optstr(optstring, remove_first="type")
|
|
|
|
ctrltype = get_opt_param(opts, "type")
|
|
|
|
address = get_opt_param(opts, "address")
|
|
|
|
master = get_opt_param(opts, "master")
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
cl = virtinst.VirtualController.get_class_for_type(ctrltype)
|
|
|
|
dev = cl(guest.conn, model=opts.get("model"))
|
|
|
|
|
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
|
|
|
set_param("model", "model")
|
|
|
|
set_param("index", "index")
|
|
|
|
dev.set_address(address)
|
|
|
|
if master:
|
|
|
|
dev.set_master(master)
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
return dev
|
|
|
|
|
|
|
|
#######################
|
|
|
|
# --smartcard parsing #
|
|
|
|
#######################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_smartcard(guest, optstring, dev=None):
|
|
|
|
if optstring is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# Peel the mode off the front
|
|
|
|
opts = parse_optstr(optstring, remove_first="mode")
|
|
|
|
if opts.get("mode") == "none":
|
|
|
|
return None
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
dev = virtinst.VirtualSmartCardDevice(guest.conn, opts.get("mode"))
|
|
|
|
|
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
|
|
|
set_param("mode", "mode")
|
|
|
|
set_param("type", "type")
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
return dev
|
|
|
|
|
|
|
|
######################
|
|
|
|
# --redirdev parsing #
|
|
|
|
######################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_redirdev(guest, optstring, dev=None):
|
|
|
|
if optstring is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# Peel the mode off the front
|
|
|
|
opts = parse_optstr(optstring, remove_first="bus")
|
|
|
|
bus = get_opt_param(opts, "bus")
|
|
|
|
stype = get_opt_param(opts, "type")
|
|
|
|
server = get_opt_param(opts, "server")
|
|
|
|
|
|
|
|
if bus == "none":
|
|
|
|
return None
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
dev = virtinst.VirtualRedirDevice(bus=bus,
|
|
|
|
stype=stype,
|
|
|
|
conn=guest.conn)
|
|
|
|
|
|
|
|
if stype == "spicevmc" and server:
|
|
|
|
raise ValueError(_("The server option is invalid with spicevmc redirection"))
|
|
|
|
|
|
|
|
if stype == "tcp" and not server:
|
|
|
|
raise ValueError(_("The server option is missing for TCP redirection"))
|
|
|
|
|
|
|
|
if server:
|
|
|
|
dev.parse_friendly_server(server)
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
return dev
|
|
|
|
|
2013-06-26 09:45:07 +08:00
|
|
|
#######################
|
|
|
|
# --tpm parsing #
|
|
|
|
#######################
|
|
|
|
|
|
|
|
|
|
|
|
def parse_tpm(guest, optstring, dev=None):
|
|
|
|
if optstring is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# Peel the type off the front
|
|
|
|
opts = parse_optstr(optstring, remove_first="type")
|
|
|
|
if opts.get("type") == "none":
|
|
|
|
return None
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
dev = virtinst.VirtualTPMDevice(guest.conn, opts.get("type"))
|
|
|
|
|
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
|
|
|
set_param("model", "model")
|
|
|
|
set_param("type", "type")
|
|
|
|
set_param("path", "path")
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
return dev
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
######################
|
|
|
|
# --watchdog parsing #
|
|
|
|
######################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_watchdog(guest, optstring, dev=None):
|
|
|
|
# Peel the model type off the front
|
|
|
|
opts = parse_optstr(optstring, remove_first="model")
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
dev = virtinst.VirtualWatchdog(guest.conn)
|
|
|
|
|
|
|
|
def set_param(paramname, dictname, val=None):
|
|
|
|
val = get_opt_param(opts, dictname, val)
|
2013-04-14 02:34:52 +08:00
|
|
|
if val is None:
|
2013-03-18 05:06:52 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
setattr(dev, paramname, val)
|
|
|
|
|
|
|
|
set_param("model", "model")
|
|
|
|
set_param("action", "action")
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
return dev
|
|
|
|
|
|
|
|
########################
|
|
|
|
# --memballoon parsing #
|
|
|
|
########################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_memballoon(guest, optstring, dev=None):
|
|
|
|
if optstring is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# Peel the mode off the front
|
|
|
|
opts = parse_optstr(optstring, remove_first="model")
|
|
|
|
model = get_opt_param(opts, "model")
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
dev = virtinst.VirtualMemballoon(model=model,
|
|
|
|
conn=guest.conn)
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
return dev
|
|
|
|
|
|
|
|
|
|
|
|
######################################################
|
|
|
|
# --serial, --parallel, --channel, --console parsing #
|
|
|
|
######################################################
|
|
|
|
|
|
|
|
def parse_serial(guest, optstring, dev=None):
|
|
|
|
return _parse_char(guest, optstring, "serial", dev)
|
2013-04-14 02:34:52 +08:00
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_parallel(guest, optstring, dev=None):
|
|
|
|
return _parse_char(guest, optstring, "parallel", dev)
|
2013-04-14 02:34:52 +08:00
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_console(guest, optstring, dev=None):
|
|
|
|
return _parse_char(guest, optstring, "console", dev)
|
2013-04-14 02:34:52 +08:00
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_channel(guest, optstring, dev=None):
|
|
|
|
return _parse_char(guest, optstring, "channel", dev)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def _parse_char(guest, optstring, dev_type, dev=None):
|
|
|
|
"""
|
|
|
|
Helper to parse --serial/--parallel options
|
|
|
|
"""
|
|
|
|
# Peel the char type off the front
|
|
|
|
opts = parse_optstr(optstring, remove_first="char_type")
|
|
|
|
char_type = opts.get("char_type")
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
dev = VirtualCharDevice.get_dev_instance(guest.conn,
|
|
|
|
dev_type, char_type)
|
|
|
|
|
|
|
|
def set_param(paramname, dictname, val=None):
|
|
|
|
val = get_opt_param(opts, dictname, val)
|
2013-04-14 02:34:52 +08:00
|
|
|
if val is None:
|
2013-03-18 05:06:52 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
if not dev.supports_property(paramname):
|
|
|
|
raise ValueError(_("%(devtype)s type '%(chartype)s' does not "
|
|
|
|
"support '%(optname)s' option.") %
|
|
|
|
{"devtype" : dev_type, "chartype": char_type,
|
2013-04-14 02:34:52 +08:00
|
|
|
"optname" : dictname})
|
2013-03-18 05:06:52 +08:00
|
|
|
setattr(dev, paramname, val)
|
|
|
|
|
|
|
|
def parse_host(key):
|
|
|
|
host, ignore, port = partition(opts.get(key), ":")
|
|
|
|
if key in opts:
|
|
|
|
del(opts[key])
|
|
|
|
|
|
|
|
return host or None, port or None
|
|
|
|
|
|
|
|
host, port = parse_host("host")
|
|
|
|
bind_host, bind_port = parse_host("bind_host")
|
|
|
|
target_addr, target_port = parse_host("target_address")
|
|
|
|
|
|
|
|
set_param("char_type", "char_type")
|
|
|
|
set_param("source_path", "path")
|
|
|
|
set_param("source_mode", "mode")
|
|
|
|
set_param("protocol", "protocol")
|
|
|
|
set_param("source_host", "host", host)
|
|
|
|
set_param("source_port", "host", port)
|
|
|
|
set_param("bind_host", "bind_host", bind_host)
|
|
|
|
set_param("bind_port", "bind_host", bind_port)
|
|
|
|
set_param("target_type", "target_type")
|
|
|
|
set_param("target_name", "name")
|
|
|
|
set_param("target_address", "target_address", target_addr)
|
|
|
|
set_param("target_port", "target_address", target_port)
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
# Try to generate dev XML to perform upfront validation
|
|
|
|
dev.get_xml_config()
|
|
|
|
|
|
|
|
return dev
|
|
|
|
|
|
|
|
|
|
|
|
########################
|
|
|
|
# --filesystem parsing #
|
|
|
|
########################
|
|
|
|
|
|
|
|
def parse_filesystem(guest, optstring, dev=None):
|
|
|
|
opts = parse_optstr(optstring, remove_first=["source", "target"])
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
dev = virtinst.VirtualFilesystem(guest.conn)
|
|
|
|
|
|
|
|
def set_param(paramname, dictname, val=None):
|
|
|
|
val = get_opt_param(opts, dictname, val)
|
2013-04-14 02:34:52 +08:00
|
|
|
if val is None:
|
2013-03-18 05:06:52 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
setattr(dev, paramname, val)
|
|
|
|
|
|
|
|
set_param("type", "type")
|
|
|
|
set_param("mode", "mode")
|
|
|
|
set_param("source", "source")
|
|
|
|
set_param("target", "target")
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
return dev
|
|
|
|
|
|
|
|
###################
|
|
|
|
# --video parsing #
|
|
|
|
###################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_video(guest, optstr, dev=None):
|
|
|
|
opts = {"model" : optstr}
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
dev = virtinst.VirtualVideoDevice(conn=guest.conn)
|
|
|
|
|
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
|
|
|
set_param("model_type", "model")
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
return dev
|
|
|
|
|
|
|
|
#####################
|
|
|
|
# --soundhw parsing #
|
|
|
|
#####################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_sound(guest, optstr, dev=None):
|
|
|
|
opts = {"model" : optstr}
|
|
|
|
|
|
|
|
if not dev:
|
|
|
|
dev = virtinst.VirtualAudio(conn=guest.conn)
|
|
|
|
|
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
|
|
|
set_param("model", "model")
|
|
|
|
|
|
|
|
if opts:
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
return dev
|
|
|
|
|
|
|
|
#####################
|
|
|
|
# --hostdev parsing #
|
|
|
|
#####################
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def parse_hostdev(guest, optstr, dev=None):
|
|
|
|
ignore = dev
|
|
|
|
return virtinst.VirtualHostDevice.device_from_node(conn=guest.conn,
|
|
|
|
name=optstr)
|