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
|
2013-03-18 05:06:52 +08:00
|
|
|
import shlex
|
2013-04-12 20:26:21 +08:00
|
|
|
import sys
|
2013-07-06 03:14:11 +08:00
|
|
|
import traceback
|
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-03-18 05:06:52 +08:00
|
|
|
|
2013-03-18 06:18:22 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
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-07-06 03:14:11 +08:00
|
|
|
def setupLogging(appname, debug_stdout, do_quiet, cli_app=True):
|
2013-03-18 05:06:52 +08:00
|
|
|
global quiet
|
|
|
|
quiet = do_quiet
|
|
|
|
|
2013-07-06 03:14:11 +08:00
|
|
|
dirname = "~/.virtinst"
|
|
|
|
if appname == "virt-manager":
|
|
|
|
dirname = "~/.virt-manager"
|
|
|
|
|
|
|
|
vi_dir = os.path.expanduser(dirname)
|
2013-03-18 05:06:52 +08:00
|
|
|
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)
|
2013-07-06 03:14:11 +08:00
|
|
|
if debug_stdout:
|
2013-03-18 05:06:52 +08:00
|
|
|
streamHandler.setLevel(logging.DEBUG)
|
|
|
|
streamHandler.setFormatter(logging.Formatter(fileFormat,
|
|
|
|
dateFormat))
|
2013-07-06 03:14:11 +08:00
|
|
|
elif not cli_app:
|
|
|
|
streamHandler = None
|
2013-03-18 05:06:52 +08:00
|
|
|
else:
|
|
|
|
if quiet:
|
|
|
|
level = logging.ERROR
|
|
|
|
else:
|
|
|
|
level = logging.WARN
|
|
|
|
streamHandler.setLevel(level)
|
|
|
|
streamHandler.setFormatter(logging.Formatter(streamErrorFormat))
|
2013-07-06 03:14:11 +08:00
|
|
|
|
|
|
|
if streamHandler:
|
|
|
|
rootLogger.addHandler(streamHandler)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
# 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)
|
|
|
|
|
2013-07-06 03:14:11 +08:00
|
|
|
# Log uncaught exceptions
|
2013-04-12 20:26:21 +08:00
|
|
|
def exception_log(typ, val, tb):
|
2013-07-06 03:14:11 +08:00
|
|
|
logging.debug("Uncaught exception:\n%s",
|
|
|
|
"".join(traceback.format_exception(typ, val, tb)))
|
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
|
2013-07-06 03:14:11 +08:00
|
|
|
logging.debug("Launched with command line: %s", " ".join(sys.argv))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
#######################################
|
|
|
|
# Libvirt connection helpers #
|
|
|
|
#######################################
|
|
|
|
|
|
|
|
def getConnection(uri):
|
|
|
|
logging.debug("Requesting libvirt URI %s", (uri or "default"))
|
2013-07-05 20:59:58 +08:00
|
|
|
conn = virtinst.VirtualConnection(uri)
|
|
|
|
conn.open(_do_creds_authname)
|
2013-07-08 04:38:11 +08:00
|
|
|
conn.cache_object_fetch = True
|
2013-07-06 08:36:28 +08:00
|
|
|
logging.debug("Received libvirt URI %s", conn.uri)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
return conn
|
|
|
|
|
|
|
|
|
|
|
|
# SASL username/pass auth
|
|
|
|
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:
|
2013-07-05 20:59:58 +08:00
|
|
|
raise RuntimeError("Unknown auth type in creds callback: %d" %
|
|
|
|
credtype)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
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)
|
|
|
|
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):
|
2013-07-06 08:36:28 +08:00
|
|
|
return ("virsh --connect %s start %s" % (guest.conn.uri, guest.name))
|
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 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
|
|
|
#######################
|
|
|
|
# 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
|
|
|
|
|
2013-09-04 23:57:26 +08:00
|
|
|
tvalues = ["y", "yes", "1", "true", "t", "on"]
|
|
|
|
fvalues = ["n", "no", "0", "false", "f", "off"]
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
s = s.lower()
|
2013-09-04 23:57:26 +08:00
|
|
|
if s in tvalues:
|
2013-03-18 05:06:52 +08:00
|
|
|
return True
|
2013-09-04 23:57:26 +08:00
|
|
|
elif s in fvalues:
|
2013-03-18 05:06:52 +08:00
|
|
|
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
|
2013-07-13 22:09:00 +08:00
|
|
|
(origdev.get_vol_install() or
|
|
|
|
origdev.get_vol_object() or
|
2013-03-18 05:06:52 +08:00
|
|
|
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
|
|
|
|
"""
|
2013-07-08 04:34:46 +08:00
|
|
|
names = dev.is_conflict_disk(conn)
|
|
|
|
if not names:
|
2013-03-18 05:06:52 +08:00
|
|
|
return False
|
|
|
|
|
2013-07-08 04:34:46 +08:00
|
|
|
msg = (_("Disk %s is already in use by other guests %s." %
|
|
|
|
(dev.path, names)))
|
2013-03-18 05:06:52 +08:00
|
|
|
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)
|
2013-09-28 08:16:35 +08:00
|
|
|
path_exists = virtinst.VirtualDisk.path_exists(conn, path)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
# Get storage size
|
|
|
|
didfail, size = prompt_size(path, origsize, path_exists)
|
|
|
|
if didfail:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Build disk object for validation
|
|
|
|
try:
|
|
|
|
if origdev:
|
|
|
|
dev = origdev
|
2013-07-13 22:09:00 +08:00
|
|
|
if path is not None and path != dev.path:
|
2013-03-18 05:06:52 +08:00
|
|
|
dev.path = path
|
2013-07-13 22:09:00 +08:00
|
|
|
if size is not None and size != dev.get_size():
|
|
|
|
dev.set_create_storage(size=size, sparse=origsparse)
|
2013-03-18 05:06:52 +08:00
|
|
|
else:
|
2013-09-28 08:16:35 +08:00
|
|
|
dev = virtinst.VirtualDisk(conn)
|
2013-07-13 22:09:00 +08:00
|
|
|
dev.path = path
|
|
|
|
dev.set_create_storage(size=size, sparse=origsparse)
|
|
|
|
dev.validate()
|
2013-03-18 05:06:52 +08:00
|
|
|
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-09-28 04:52:41 +08:00
|
|
|
def get_name(guest, name):
|
2013-03-18 05:06:52 +08:00
|
|
|
prompt_txt = _("What is the name of your virtual machine?")
|
|
|
|
err_txt = name_missing
|
|
|
|
prompt_loop(prompt_txt, err_txt, name, guest, "name")
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
def get_memory(guest, memory):
|
2013-03-18 05:06:52 +08:00
|
|
|
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)
|
2013-07-14 11:07:01 +08:00
|
|
|
guest.memory = mem * 1024
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
prompt_loop(prompt_txt, err_txt, memory, guest, "memory",
|
|
|
|
func=check_memory)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
def get_uuid(guest, uuid):
|
|
|
|
if not uuid:
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
guest.uuid = uuid
|
|
|
|
except ValueError, e:
|
|
|
|
fail(e)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
def get_vcpus(guest, vcpus, check_cpu):
|
2013-03-18 05:06:52 +08:00
|
|
|
if vcpus is None:
|
2013-09-28 04:52:41 +08:00
|
|
|
vcpus = ""
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
parse_vcpu(guest, vcpus)
|
|
|
|
if not check_cpu:
|
|
|
|
return
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
hostinfo = guest.conn.getInfo()
|
|
|
|
pcpus = hostinfo[4] * hostinfo[5] * hostinfo[6] * hostinfo[7]
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
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)")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
if not prompt_for_yes_or_no(msg, askmsg):
|
|
|
|
nice_exit()
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
def get_cpuset(guest, cpuset):
|
|
|
|
memory = guest.memory
|
2013-03-18 05:06:52 +08:00
|
|
|
conn = guest.conn
|
|
|
|
if cpuset and cpuset != "auto":
|
|
|
|
guest.cpuset = cpuset
|
|
|
|
|
|
|
|
elif cpuset == "auto":
|
|
|
|
tmpset = None
|
|
|
|
try:
|
2013-08-10 03:05:37 +08:00
|
|
|
tmpset = virtinst.DomainNumatune.generate_cpuset(conn, memory)
|
2013-03-18 05:06:52 +08:00
|
|
|
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 = ""
|
2013-07-06 08:36:28 +08:00
|
|
|
if (guest.conn.is_qemu_session() or guest.conn.is_test()):
|
2013-07-03 09:17:07 +08:00
|
|
|
opts = "user"
|
|
|
|
else:
|
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])
|
|
|
|
return opts
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def convert_old_networks(guest, options, number_of_default_nics):
|
|
|
|
macs = util.listify(options.mac)
|
|
|
|
networks = util.listify(options.network)
|
|
|
|
bridges = util.listify(options.bridge)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
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):
|
2013-09-28 08:16:35 +08:00
|
|
|
l = util.listify(l)
|
2013-03-18 05:06:52 +08:00
|
|
|
l.extend((padsize - len(l)) * [None])
|
|
|
|
return l
|
|
|
|
|
|
|
|
# If a plain mac is specified, have it imply a default network
|
2013-09-28 08:16:35 +08:00
|
|
|
networks = padlist(networks, max(len(macs), number_of_default_nics))
|
2013-03-18 05:06:52 +08:00
|
|
|
macs = padlist(macs, len(networks))
|
|
|
|
|
|
|
|
for idx in range(len(networks)):
|
|
|
|
if networks[idx] is None:
|
|
|
|
networks[idx] = _default_network_opts(guest)
|
2013-09-28 08:16:35 +08:00
|
|
|
if macs[idx]:
|
|
|
|
networks[idx] += ",mac=%s" % macs[idx]
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
# Handle old format of bridge:foo instead of bridge=foo
|
|
|
|
for prefix in ["network", "bridge"]:
|
|
|
|
if networks[idx].startswith(prefix + ":"):
|
|
|
|
networks[idx] = networks[idx].replace(prefix + ":",
|
|
|
|
prefix + "=")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
options.network = networks
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def _determine_default_graphics(guest, default_override):
|
|
|
|
# If no graphics specified, choose a default
|
|
|
|
if default_override is True:
|
|
|
|
return cliconfig.default_graphics
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
if default_override is False:
|
|
|
|
return "none"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
if guest.os.is_container():
|
|
|
|
logging.debug("Container guest, defaulting to nographics")
|
|
|
|
return "none"
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
if "DISPLAY" not in os.environ.keys():
|
|
|
|
logging.debug("DISPLAY is not set: defaulting to nographics.")
|
|
|
|
return "none"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
logging.debug("DISPLAY is set: looking for pre-configured graphics")
|
|
|
|
if cliconfig.default_graphics:
|
|
|
|
logging.debug("Defaulting graphics to pre-configured %s",
|
|
|
|
cliconfig.default_graphics.upper())
|
|
|
|
return cliconfig.default_graphics
|
2013-08-11 06:48:43 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
logging.debug("No valid pre-configured graphics found, defaulting to VNC")
|
|
|
|
return "vnc"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def convert_old_graphics(guest, options, default_override=None):
|
2013-03-18 05:06:52 +08:00
|
|
|
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"))
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
if options.graphics:
|
|
|
|
return
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
if optnum == 0:
|
2013-09-28 08:16:35 +08:00
|
|
|
options.graphics = [_determine_default_graphics(guest,
|
|
|
|
default_override)]
|
|
|
|
return
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
# 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)
|
2013-09-28 08:16:35 +08:00
|
|
|
options.graphics = [optstr]
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def set_os_variant(obj, distro_type, distro_variant):
|
|
|
|
# This is used for both Guest and virtconv VM, so be careful
|
|
|
|
if (not distro_type and
|
|
|
|
not distro_variant and
|
|
|
|
hasattr(obj, "os_autodetect")):
|
|
|
|
# Default to distro autodetection
|
|
|
|
obj.os_autodetect = True
|
|
|
|
return
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
distro_variant = distro_variant and str(distro_variant).lower() or None
|
|
|
|
distro_type = distro_type and str(distro_type).lower() or None
|
|
|
|
distkey = distro_variant or distro_type
|
|
|
|
if not distkey or distkey == "none":
|
2013-03-18 05:06:52 +08:00
|
|
|
return
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
obj.os_variant = distkey
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
#############################
|
|
|
|
# Common CLI option/group #
|
|
|
|
#############################
|
|
|
|
|
|
|
|
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"
|
2013-08-28 23:36:25 +08:00
|
|
|
"--network network=mynet,model=virtio,mac=00:11...\n"
|
|
|
|
"--network network=mynet,filterref=clean-traffic,model=virtio"))
|
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_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"))
|
2013-09-28 04:52:41 +08:00
|
|
|
devg.add_option("", "--soundhw", dest="sound", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
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-09-18 21:29:29 +08:00
|
|
|
devg.add_option("", "--rng", dest="rng", action="append",
|
|
|
|
help=_("Configure a guest RNG device. Ex:\n"
|
2013-09-26 04:15:24 +08:00
|
|
|
"--rng /dev/random\n"
|
2013-09-18 21:29:29 +08:00
|
|
|
"--rng type=egd,host=localhost,service=708"))
|
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"))
|
|
|
|
|
2013-07-31 02:26:53 +08:00
|
|
|
|
2013-08-11 06:17:37 +08:00
|
|
|
def add_distro_options(g):
|
|
|
|
# Way back when, we required specifying both --os-type and --os-variant
|
|
|
|
# Nowadays the distinction is pointless, so hide the less useful
|
|
|
|
# --os-type option.
|
|
|
|
g.add_option("", "--os-type", dest="distro_type",
|
|
|
|
help=optparse.SUPPRESS_HELP)
|
|
|
|
g.add_option("", "--os-variant", dest="distro_variant",
|
|
|
|
help=_("The OS variant being installed guests, "
|
|
|
|
"e.g. 'fedora18', 'rhel6', 'winxp', etc."))
|
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
#############################################
|
|
|
|
# CLI complex parsing helpers #
|
|
|
|
# (for options like --disk, --network, etc. #
|
|
|
|
#############################################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def _handle_dev_opts(devclass, cb, guest, opts):
|
|
|
|
for optstr in util.listify(opts):
|
|
|
|
devtype = devclass.virtual_device_type
|
2013-09-28 04:52:41 +08:00
|
|
|
try:
|
2013-09-28 08:16:35 +08:00
|
|
|
dev = devclass(guest.conn)
|
|
|
|
devs = cb(guest, optstr, dev)
|
|
|
|
for dev in util.listify(devs):
|
|
|
|
dev.validate()
|
2013-09-28 04:52:41 +08:00
|
|
|
guest.add_device(dev)
|
|
|
|
except Exception, e:
|
|
|
|
logging.debug("Exception parsing devtype=%s optstr=%s",
|
|
|
|
devtype, optstr, exc_info=True)
|
|
|
|
fail(_("Error in %(devtype)s device parameters: %(err)s") %
|
|
|
|
{"devtype": devtype, "err": str(e)})
|
|
|
|
|
|
|
|
|
|
|
|
def _make_handler(devtype, parsefunc):
|
|
|
|
return lambda *args, **kwargs: _handle_dev_opts(devtype, parsefunc,
|
|
|
|
*args, **kwargs)
|
|
|
|
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def get_opt_param(opts, key):
|
|
|
|
if key not in opts:
|
|
|
|
return None
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
val = opts[key]
|
|
|
|
del(opts[key])
|
2013-03-18 05:06:52 +08:00
|
|
|
return val
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_CLI_UNSET = "__virtinst_cli_unset__"
|
|
|
|
|
|
|
|
|
|
|
|
def _build_set_param(inst, opts, support_cb=None):
|
|
|
|
def _set_param(paramname, keyname, convert_cb=None):
|
|
|
|
val = get_opt_param(opts, keyname)
|
2013-04-14 02:34:52 +08:00
|
|
|
if val is None:
|
2013-03-18 05:06:52 +08:00
|
|
|
return
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
if support_cb:
|
|
|
|
support_cb(inst, paramname, keyname)
|
|
|
|
|
|
|
|
if convert_cb:
|
|
|
|
val = convert_cb(val)
|
|
|
|
if val == _CLI_UNSET:
|
|
|
|
return
|
|
|
|
|
|
|
|
if type(paramname) is not str:
|
|
|
|
paramname(val)
|
|
|
|
else:
|
|
|
|
setattr(inst, paramname, val)
|
2013-03-18 05:06:52 +08:00
|
|
|
return _set_param
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def _check_leftover_opts(opts):
|
|
|
|
if not opts:
|
|
|
|
return
|
|
|
|
raise ValueError(_("Unknown options %s") % opts.keys())
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
######################
|
|
|
|
# --numatune parsing #
|
|
|
|
######################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_numatune(guest, optstr):
|
|
|
|
opts = parse_optstr(optstr, remove_first="nodeset", compress_first=True)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
set_param = _build_set_param(guest.numatune, opts)
|
|
|
|
|
|
|
|
set_param("memory_nodeset", "nodeset")
|
|
|
|
set_param("memory_mode", "mode")
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-31 02:26:53 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
##################
|
|
|
|
# --vcpu parsing #
|
|
|
|
##################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_vcpu(guest, optstr):
|
|
|
|
if not optstr:
|
2013-03-18 05:06:52 +08:00
|
|
|
return
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
opts = parse_optstr(optstr, remove_first="vcpus")
|
2013-03-18 05:06:52 +08:00
|
|
|
set_param = _build_set_param(guest, opts)
|
|
|
|
set_cpu_param = _build_set_param(guest.cpu, opts)
|
2013-07-18 05:58:24 +08:00
|
|
|
has_max = ("maxvcpus" in opts)
|
|
|
|
has_vcpus = ("vcpus" in opts) or has_max
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-18 05:58:24 +08:00
|
|
|
set_param(has_max and "curvcpus" or "vcpus", "vcpus")
|
|
|
|
set_param("vcpus", "maxvcpus")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
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()
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-31 02:26:53 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
#################
|
|
|
|
# --cpu parsing #
|
|
|
|
#################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_cpu(guest, optstr):
|
2013-03-18 05:06:52 +08:00
|
|
|
default_dict = {
|
|
|
|
"force": [],
|
|
|
|
"require": [],
|
|
|
|
"optional": [],
|
|
|
|
"disable": [],
|
|
|
|
"forbid": [],
|
2013-04-14 02:34:52 +08:00
|
|
|
}
|
2013-09-28 08:16:35 +08:00
|
|
|
opts = parse_optstr(optstr,
|
2013-03-18 05:06:52 +08:00
|
|
|
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")
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-31 02:26:53 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
##################
|
|
|
|
# --boot parsing #
|
|
|
|
##################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_boot(guest, optstr):
|
2013-03-18 05:06:52 +08:00
|
|
|
"""
|
|
|
|
Helper to parse --boot string
|
|
|
|
"""
|
2013-09-28 08:16:35 +08:00
|
|
|
opts = parse_optstr(optstr)
|
|
|
|
set_param = _build_set_param(guest.os, opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def convert_menu(val):
|
|
|
|
val = yes_or_no_convert(val)
|
|
|
|
if val is not None:
|
|
|
|
return val
|
|
|
|
fail(_("--boot menu must be 'on' or 'off'"))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def convert_useserial(val):
|
|
|
|
val = yes_or_no_convert(val)
|
|
|
|
if val is not None:
|
|
|
|
return val
|
|
|
|
fail(_("--boot useserial must be 'on' or 'off'"))
|
2013-09-04 23:57:26 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param("useserial", "useserial", convert_cb=convert_useserial)
|
|
|
|
set_param("enable_bootmenu", "menu", convert_cb=convert_menu)
|
2013-03-18 05:06:52 +08:00
|
|
|
set_param("kernel", "kernel")
|
|
|
|
set_param("initrd", "initrd")
|
2013-08-17 07:25:26 +08:00
|
|
|
set_param("dtb", "dtb")
|
2013-03-18 05:06:52 +08:00
|
|
|
set_param("loader", "loader")
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param("kernel_args", "extra_args")
|
|
|
|
set_param("kernel_args", "kernel_args")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
# Build boot order
|
|
|
|
if opts:
|
2013-09-28 08:16:35 +08:00
|
|
|
optlist = [x[0] for x in parse_optstr_tuples(optstr)]
|
2013-03-18 05:06:52 +08:00
|
|
|
boot_order = []
|
|
|
|
for boot_dev in optlist:
|
2013-07-17 19:53:47 +08:00
|
|
|
if not boot_dev in guest.os.boot_devices:
|
2013-03-18 05:06:52 +08:00
|
|
|
continue
|
|
|
|
|
|
|
|
del(opts[boot_dev])
|
|
|
|
if boot_dev not in boot_order:
|
|
|
|
boot_order.append(boot_dev)
|
|
|
|
|
2013-07-17 19:53:47 +08:00
|
|
|
guest.os.bootorder = boot_order
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-31 02:26:53 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
######################
|
|
|
|
# --security parsing #
|
|
|
|
######################
|
|
|
|
|
|
|
|
def parse_security(guest, security):
|
2013-09-28 08:16:35 +08:00
|
|
|
seclist = util.listify(security)
|
2013-03-18 05:06:52 +08:00
|
|
|
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:
|
2013-07-17 00:30:43 +08:00
|
|
|
mode = secmodel.TYPE_STATIC
|
2013-03-18 05:06:52 +08:00
|
|
|
if mode:
|
|
|
|
secmodel.type = mode
|
|
|
|
|
|
|
|
if relabel:
|
|
|
|
secmodel.relabel = relabel
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
# 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)
|
2013-09-20 08:18:12 +08:00
|
|
|
if os.path.dirname(abspath) == "/var/lib/libvirt/images":
|
|
|
|
virtinst.StoragePool.build_default_pool(guest.conn)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
elif pool:
|
|
|
|
if not size:
|
|
|
|
raise ValueError(_("Size must be specified with all 'pool='"))
|
2013-09-20 08:18:12 +08:00
|
|
|
if pool == "default":
|
|
|
|
virtinst.StoragePool.build_default_pool(guest.conn)
|
2013-07-26 04:21:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
poolobj = guest.conn.storagePoolLookupByName(pool)
|
2013-09-20 08:18:12 +08:00
|
|
|
vname = virtinst.StorageVolume.find_free_name(conn=guest.conn,
|
2013-07-26 04:21:30 +08:00
|
|
|
pool_object=poolobj,
|
2013-03-18 05:06:52 +08:00
|
|
|
name=guest.name,
|
|
|
|
suffix=".img",
|
|
|
|
start_num=_disk_counter.next())
|
2013-07-26 04:21:30 +08:00
|
|
|
|
|
|
|
volinst = virtinst.VirtualDisk.build_vol_install(
|
|
|
|
guest.conn, vname, poolobj, size, sparse)
|
2013-03-18 05:06:52 +08:00
|
|
|
if fmt:
|
2013-09-20 08:18:12 +08:00
|
|
|
if not volinst.supports_property("format"):
|
2013-03-18 05:06:52 +08:00
|
|
|
raise ValueError(_("Format attribute not supported for this "
|
|
|
|
"volume type"))
|
2013-09-20 08:18:12 +08:00
|
|
|
volinst.format = fmt
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
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])
|
2013-09-20 08:18:12 +08:00
|
|
|
if voltuple[0] == "default":
|
|
|
|
virtinst.StoragePool.build_default_pool(guest.conn)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
volobj = virtinst.VirtualDisk.lookup_vol_object(guest.conn, voltuple)
|
|
|
|
|
|
|
|
return abspath, volinst, volobj
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_disk(guest, optstr, dev=None, validate=True):
|
2013-03-18 05:06:52 +08:00
|
|
|
"""
|
|
|
|
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
|
|
|
|
|
2013-07-13 22:09:00 +08:00
|
|
|
if not dev:
|
|
|
|
dev = virtinst.VirtualDisk(guest.conn)
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
# Parse out comma separated options
|
|
|
|
opts = parse_optstr(optstr, remove_first="path")
|
|
|
|
|
|
|
|
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"))
|
|
|
|
|
|
|
|
abspath, volinst, volobj = _parse_disk_source(guest, path, pool, vol,
|
|
|
|
size, fmt, sparse)
|
|
|
|
|
2013-07-15 02:50:07 +08:00
|
|
|
dev.path = volobj and volobj.path() or abspath
|
2013-07-13 22:09:00 +08:00
|
|
|
dev.read_only = ro
|
|
|
|
dev.shareable = shared
|
|
|
|
dev.set_create_storage(size=size, fmt=fmt, sparse=sparse,
|
|
|
|
vol_install=volinst)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
2013-07-13 22:09:00 +08:00
|
|
|
set_param("device", "device")
|
2013-03-18 05:06:52 +08:00
|
|
|
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")
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
|
|
|
if validate:
|
|
|
|
dev.validate()
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev, size
|
|
|
|
|
2013-07-13 22:09:00 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
#####################
|
|
|
|
# --network parsing #
|
|
|
|
#####################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_network(guest, optstr, dev):
|
|
|
|
ignore = guest
|
|
|
|
opts = parse_optstr(optstr, remove_first="type")
|
|
|
|
set_param = _build_set_param(dev, opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
if "type" not in opts:
|
|
|
|
if "network" in opts:
|
|
|
|
opts["type"] = virtinst.VirtualNetworkInterface.TYPE_VIRTUAL
|
|
|
|
elif "bridge" in opts:
|
|
|
|
opts["type"] = virtinst.VirtualNetworkInterface.TYPE_BRIDGE
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def convert_mac(val):
|
|
|
|
if val == "RANDOM":
|
|
|
|
return None
|
|
|
|
return val
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param("type", "type")
|
2013-09-24 22:00:01 +08:00
|
|
|
set_param("source", "network")
|
|
|
|
set_param("source", "bridge")
|
2013-03-18 05:06:52 +08:00
|
|
|
set_param("model", "model")
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param("macaddr", "mac", convert_cb=convert_mac)
|
2013-08-28 23:36:25 +08:00
|
|
|
set_param("filterref", "filterref")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_networks = _make_handler(virtinst.VirtualNetworkInterface, parse_network)
|
|
|
|
|
2013-07-16 00:36:57 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
######################
|
|
|
|
# --graphics parsing #
|
|
|
|
######################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_graphics(guest, optstr, dev):
|
|
|
|
ignore = guest
|
|
|
|
opts = parse_optstr(optstr, remove_first="type")
|
|
|
|
if opts.get("type") == "none":
|
|
|
|
return None
|
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
|
|
|
def convert_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-09-28 08:16:35 +08:00
|
|
|
return virtinst.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
|
|
|
|
|
|
|
|
set_param("type", "type")
|
|
|
|
set_param("port", "port")
|
|
|
|
set_param("tlsPort", "tlsport")
|
|
|
|
set_param("listen", "listen")
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param("keymap", "keymap", convert_cb=convert_keymap)
|
2013-03-18 05:06:52 +08:00
|
|
|
set_param("passwd", "password")
|
|
|
|
set_param("passwdValidTo", "passwordvalidto")
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_graphics = _make_handler(virtinst.VirtualGraphics, parse_graphics)
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-16 00:36:57 +08:00
|
|
|
########################
|
|
|
|
# --controller parsing #
|
|
|
|
########################
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_controller(guest, optstr, dev):
|
|
|
|
if optstr == "usb2":
|
|
|
|
return virtinst.VirtualController.get_usb2_controllers(guest.conn)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
opts = parse_optstr(optstr, remove_first="type")
|
2013-03-18 05:06:52 +08:00
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
2013-07-16 09:52:18 +08:00
|
|
|
set_param("type", "type")
|
2013-03-18 05:06:52 +08:00
|
|
|
set_param("model", "model")
|
|
|
|
set_param("index", "index")
|
2013-07-16 09:52:18 +08:00
|
|
|
set_param("master_startport", "master")
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param(dev.address.set_addrstr, "address")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_controllers = _make_handler(virtinst.VirtualController, parse_controller)
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2013-07-16 00:36:57 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
#######################
|
|
|
|
# --smartcard parsing #
|
|
|
|
#######################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_smartcard(guest, optstr, dev=None):
|
|
|
|
ignore = guest
|
|
|
|
opts = parse_optstr(optstr, remove_first="mode")
|
2013-03-18 05:06:52 +08:00
|
|
|
if opts.get("mode") == "none":
|
|
|
|
return None
|
|
|
|
|
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
set_param("mode", "mode")
|
|
|
|
set_param("type", "type")
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_smartcards = _make_handler(virtinst.VirtualSmartCardDevice, parse_smartcard)
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2013-07-16 00:36:57 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
######################
|
|
|
|
# --redirdev parsing #
|
|
|
|
######################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_redirdev(guest, optstr, dev):
|
|
|
|
ignore = guest
|
|
|
|
opts = parse_optstr(optstr, remove_first="bus")
|
2013-07-16 00:57:37 +08:00
|
|
|
if opts.get("bus") == "none":
|
2013-03-18 05:06:52 +08:00
|
|
|
return None
|
|
|
|
|
2013-07-16 00:57:37 +08:00
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
set_param("bus", "bus")
|
|
|
|
set_param("type", "type")
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param(dev.parse_friendly_server, "server")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_redirdevs = _make_handler(virtinst.VirtualRedirDevice, parse_redirdev)
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2013-06-26 09:45:07 +08:00
|
|
|
|
2013-07-16 00:36:57 +08:00
|
|
|
#################
|
|
|
|
# --tpm parsing #
|
|
|
|
#################
|
2013-06-26 09:45:07 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_tpm(guest, optstr, dev=None):
|
|
|
|
ignore = guest
|
|
|
|
if optstr == "none":
|
2013-06-26 09:45:07 +08:00
|
|
|
return None
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
opts = parse_optstr(optstr, remove_first="type")
|
2013-06-26 09:45:07 +08:00
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
|
|
|
set_param("type", "type")
|
2013-07-16 00:18:23 +08:00
|
|
|
set_param("model", "model")
|
2013-06-26 09:45:07 +08:00
|
|
|
set_param("path", "path")
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-06-26 09:45:07 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_tpms = _make_handler(virtinst.VirtualTPMDevice, parse_tpm)
|
2013-07-16 00:36:57 +08:00
|
|
|
|
2013-09-18 21:29:29 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
#################
|
|
|
|
# --rng parsing #
|
|
|
|
#################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_rng(guest, optstr, dev):
|
|
|
|
ignore = guest
|
|
|
|
if optstr == "none":
|
2013-09-18 21:29:29 +08:00
|
|
|
return None
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
opts = parse_optstr(optstr, remove_first="type")
|
2013-09-18 21:29:29 +08:00
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
if opts.get("type", "").startswith("/"):
|
2013-09-26 04:15:24 +08:00
|
|
|
# if the provided type begins with '/' then assume it is the name of
|
|
|
|
# the RNG device and that its type is "random".
|
2013-09-28 08:16:35 +08:00
|
|
|
dev.device = opts.pop("type")
|
2013-09-26 04:15:24 +08:00
|
|
|
dev.type = "random"
|
|
|
|
else:
|
|
|
|
set_param("type", "type")
|
2013-09-28 08:16:35 +08:00
|
|
|
|
|
|
|
set_param("backend_source_host", "backend_host")
|
|
|
|
set_param("backend_source_service", "backend_service")
|
|
|
|
set_param("backend_source_mode", "backend_mode")
|
|
|
|
set_param("backend_type", "backend_type")
|
|
|
|
set_param("device", "device")
|
|
|
|
set_param("model", "model")
|
|
|
|
set_param("rate_bytes", "rate_bytes")
|
|
|
|
set_param("rate_period", "rate_period")
|
2013-09-18 21:29:29 +08:00
|
|
|
|
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_rngs = _make_handler(virtinst.VirtualRNGDevice, parse_rng)
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2013-09-18 21:29:29 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
######################
|
|
|
|
# --watchdog parsing #
|
|
|
|
######################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_watchdog(guest, optstr, dev):
|
|
|
|
ignore = guest
|
|
|
|
opts = parse_optstr(optstr, remove_first="model")
|
|
|
|
set_param = _build_set_param(dev, opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
set_param("model", "model")
|
|
|
|
set_param("action", "action")
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_watchdogs = _make_handler(virtinst.VirtualWatchdog, parse_watchdog)
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2013-07-16 00:36:57 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
########################
|
|
|
|
# --memballoon parsing #
|
|
|
|
########################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_memballoon(guest, optstr, dev):
|
|
|
|
ignore = guest
|
|
|
|
opts = parse_optstr(optstr, remove_first="model")
|
|
|
|
set_param = _build_set_param(dev, opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param("model", "model")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_memballoons = _make_handler(virtinst.VirtualMemballoon, parse_memballoon)
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
######################################################
|
|
|
|
# --serial, --parallel, --channel, --console parsing #
|
|
|
|
######################################################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def _parse_char(guest, optstr, dev):
|
2013-03-18 05:06:52 +08:00
|
|
|
"""
|
|
|
|
Helper to parse --serial/--parallel options
|
|
|
|
"""
|
2013-09-28 08:16:35 +08:00
|
|
|
ignore = guest
|
|
|
|
dev_type = dev.virtual_device_type
|
|
|
|
opts = parse_optstr(optstr, remove_first="char_type")
|
2013-07-16 21:14:37 +08:00
|
|
|
ctype = opts.get("char_type")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def support_check(dev, paramname, dictname):
|
|
|
|
if type(paramname) is not str:
|
2013-03-18 05:06:52 +08:00
|
|
|
return
|
|
|
|
if not dev.supports_property(paramname):
|
|
|
|
raise ValueError(_("%(devtype)s type '%(chartype)s' does not "
|
2013-09-28 08:16:35 +08:00
|
|
|
"support '%(optname)s' option.") %
|
|
|
|
{"devtype" : dev_type, "chartype": ctype,
|
|
|
|
"optname" : dictname})
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_host(val):
|
|
|
|
host, ignore, port = (val or "").partition(":")
|
2013-03-18 05:06:52 +08:00
|
|
|
return host or None, port or None
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def set_host(hostparam, portparam, val):
|
|
|
|
host, port = parse_host(val)
|
|
|
|
if host:
|
|
|
|
setattr(dev, hostparam, host)
|
|
|
|
if port:
|
|
|
|
setattr(dev, portparam, port)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param = _build_set_param(dev, opts, support_cb=support_check)
|
2013-07-16 21:14:37 +08:00
|
|
|
set_param("type", "char_type")
|
2013-03-18 05:06:52 +08:00
|
|
|
set_param("source_path", "path")
|
|
|
|
set_param("source_mode", "mode")
|
|
|
|
set_param("protocol", "protocol")
|
|
|
|
set_param("target_type", "target_type")
|
|
|
|
set_param("target_name", "name")
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param(lambda v: set_host("source_host", "source_port", v), "host")
|
|
|
|
set_param(lambda v: set_host("bind_host", "bind_port", v), "bind_host")
|
|
|
|
set_param(lambda v: set_host("target_address", "target_port", v),
|
|
|
|
"target_address")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_serials = _make_handler(virtinst.VirtualSerialDevice, _parse_char)
|
|
|
|
get_parallels = _make_handler(virtinst.VirtualParallelDevice, _parse_char)
|
|
|
|
get_channels = _make_handler(virtinst.VirtualChannelDevice, _parse_char)
|
|
|
|
get_consoles = _make_handler(virtinst.VirtualConsoleDevice, _parse_char)
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
########################
|
|
|
|
# --filesystem parsing #
|
|
|
|
########################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_filesystem(guest, optstr, dev):
|
|
|
|
ignore = guest
|
|
|
|
opts = parse_optstr(optstr, remove_first=["source", "target"])
|
|
|
|
set_param = _build_set_param(dev, opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
set_param("type", "type")
|
|
|
|
set_param("mode", "mode")
|
|
|
|
set_param("source", "source")
|
|
|
|
set_param("target", "target")
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_filesystems = _make_handler(virtinst.VirtualFilesystem, parse_filesystem)
|
|
|
|
|
2013-07-16 00:36:57 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
###################
|
|
|
|
# --video parsing #
|
|
|
|
###################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_video(guest, optstr, dev):
|
|
|
|
ignore = guest
|
|
|
|
opts = parse_optstr(optstr, remove_first="model")
|
2013-03-18 05:06:52 +08:00
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def convert_model(val):
|
|
|
|
if val == "default":
|
|
|
|
return _CLI_UNSET
|
|
|
|
return val
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param("model", "model", convert_cb=convert_model)
|
|
|
|
|
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_videos = _make_handler(virtinst.VirtualVideoDevice, parse_video)
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2013-07-16 00:36:57 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
#####################
|
|
|
|
# --soundhw parsing #
|
|
|
|
#####################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_sound(guest, optstr, dev):
|
|
|
|
ignore = guest
|
|
|
|
opts = parse_optstr(optstr, remove_first="model")
|
|
|
|
set_param = _build_set_param(dev, opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def convert_model(val):
|
|
|
|
if val == "default":
|
|
|
|
return _CLI_UNSET
|
|
|
|
return val
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
set_param("model", "model", convert_cb=convert_model)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
return dev
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_sounds = _make_handler(virtinst.VirtualAudio, parse_sound)
|
|
|
|
|
2013-07-16 00:36:57 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
#####################
|
|
|
|
# --hostdev parsing #
|
|
|
|
#####################
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def parse_hostdev(guest, optstr, dev):
|
|
|
|
ignore = guest
|
|
|
|
opts = parse_optstr(optstr, remove_first="name")
|
|
|
|
set_param = _build_set_param(dev, opts)
|
|
|
|
|
|
|
|
def convert_name(val):
|
|
|
|
return virtinst.NodeDevice.lookupNodeName(guest.conn, val)
|
|
|
|
|
|
|
|
set_param(dev.set_from_nodedev, "name", convert_cb=convert_name)
|
2013-09-28 06:06:39 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
_check_leftover_opts(opts)
|
2013-09-28 06:06:39 +08:00
|
|
|
return dev
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
get_hostdevs = _make_handler(virtinst.VirtualHostDevice, parse_hostdev)
|