2013-03-18 05:06:52 +08:00
|
|
|
#
|
|
|
|
# Utility functions for the command line drivers
|
|
|
|
#
|
2014-01-20 20:58:17 +08:00
|
|
|
# Copyright 2006-2007, 2013, 2014 Red Hat, Inc.
|
2013-03-18 05:06:52 +08:00
|
|
|
# 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
|
2013-10-28 04:59:47 +08:00
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
2013-03-18 05:06:52 +08:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
import argparse
|
2013-03-18 05:06:52 +08:00
|
|
|
import logging
|
|
|
|
import logging.handlers
|
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
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
class VirtHelpFormatter(argparse.HelpFormatter):
|
|
|
|
'''
|
2013-03-18 05:06:52 +08:00
|
|
|
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
|
2014-01-19 06:01:43 +08:00
|
|
|
'''
|
2013-03-18 05:06:52 +08:00
|
|
|
oldwrap = None
|
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
def _split_lines(self, *args, **kwargs):
|
|
|
|
def return_default():
|
|
|
|
return argparse.HelpFormatter._split_lines(self, *args, **kwargs)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
if len(kwargs) != 0 and len(args) != 2:
|
|
|
|
return return_default()
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
try:
|
|
|
|
text = args[0]
|
|
|
|
if "\n" in text:
|
|
|
|
return text.splitlines()
|
|
|
|
return return_default()
|
|
|
|
except:
|
|
|
|
return return_default()
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
def setupParser(usage, description):
|
|
|
|
epilog = _("See man page for examples and full option syntax.")
|
2013-07-01 03:03:53 +08:00
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
usage=usage, description=description,
|
|
|
|
formatter_class=VirtHelpFormatter,
|
|
|
|
epilog=epilog)
|
|
|
|
parser.add_argument('--version', action='version',
|
|
|
|
version=cliconfig.__version__)
|
2013-07-01 03:03:53 +08:00
|
|
|
|
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-10-01 22:12:56 +08:00
|
|
|
vi_dir = None
|
|
|
|
if not "VIRTINST_TEST_SUITE" in os.environ:
|
|
|
|
vi_dir = util.get_cache_dir()
|
|
|
|
|
|
|
|
if vi_dir and not os.access(vi_dir, os.W_OK):
|
2013-03-18 05:06:52 +08:00
|
|
|
if os.path.exists(vi_dir):
|
|
|
|
raise RuntimeError("No write access to directory %s" % vi_dir)
|
|
|
|
|
|
|
|
try:
|
2013-11-01 20:26:24 +08:00
|
|
|
os.makedirs(vi_dir, 0751)
|
2013-03-18 05:06:52 +08:00
|
|
|
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"
|
|
|
|
|
|
|
|
rootLogger = logging.getLogger()
|
|
|
|
|
|
|
|
# Undo early logging
|
|
|
|
for handler in rootLogger.handlers:
|
|
|
|
rootLogger.removeHandler(handler)
|
|
|
|
|
|
|
|
rootLogger.setLevel(logging.DEBUG)
|
2013-10-01 22:12:56 +08:00
|
|
|
if vi_dir:
|
|
|
|
filename = os.path.join(vi_dir, appname + ".log")
|
|
|
|
fileHandler = logging.handlers.RotatingFileHandler(filename, "ae",
|
|
|
|
1024 * 1024, 5)
|
|
|
|
fileHandler.setFormatter(logging.Formatter(fileFormat,
|
|
|
|
dateFormat))
|
|
|
|
rootLogger.addHandler(fileHandler)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
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-09-28 23:34:03 +08:00
|
|
|
def set_prompt(prompt):
|
2013-03-18 05:06:52 +08:00
|
|
|
# Set whether we allow prompts, or fail if a prompt pops up
|
|
|
|
global doprompt
|
|
|
|
doprompt = prompt
|
2013-09-28 23:34:03 +08:00
|
|
|
if prompt:
|
|
|
|
logging.warning("--prompt mode is barely supported and likely to "
|
|
|
|
"be removed in a future release.\n")
|
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 is_prompt():
|
|
|
|
return doprompt
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 22:06:52 +08:00
|
|
|
def _yes_no_convert(s):
|
2013-09-04 23:57:26 +08:00
|
|
|
tvalues = ["y", "yes", "1", "true", "t", "on"]
|
|
|
|
fvalues = ["n", "no", "0", "false", "f", "off"]
|
|
|
|
|
2013-09-28 22:58:27 +08:00
|
|
|
s = (s or "").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-09-28 22:58:27 +08:00
|
|
|
def _on_off_convert(key, val):
|
2014-01-20 02:56:06 +08:00
|
|
|
if val is None:
|
|
|
|
return None
|
|
|
|
|
2013-09-28 22:58:27 +08:00
|
|
|
val = _yes_no_convert(val)
|
|
|
|
if val is not None:
|
|
|
|
return val
|
|
|
|
raise fail(_("%(key)s must be 'yes' or 'no'") % {"key": key})
|
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 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-09-28 22:06:52 +08:00
|
|
|
def prompt_for_yes_no(warning, question):
|
|
|
|
"""catches yes_no errors and ensures a valid bool return"""
|
2013-03-18 05:06:52 +08:00
|
|
|
if force:
|
|
|
|
logging.debug("Forcing return value of True to prompt '%s'")
|
|
|
|
return True
|
|
|
|
|
2013-09-28 23:34:03 +08:00
|
|
|
errmsg = warning + _(" (Use --force to override)")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
while 1:
|
|
|
|
msg = warning
|
|
|
|
if question:
|
|
|
|
msg += ("\n" + question)
|
|
|
|
|
|
|
|
inp = prompt_for_input(errmsg, msg, None)
|
|
|
|
try:
|
2013-09-28 22:58:27 +08:00
|
|
|
res = _yes_no_convert(inp)
|
|
|
|
if res is None:
|
|
|
|
raise ValueError(_("A yes or no response is required"))
|
2013-03-18 05:06:52 +08:00
|
|
|
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
|
|
|
|
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():
|
2013-09-28 22:06:52 +08:00
|
|
|
return not prompt_for_yes_no(msg, askmsg)
|
2013-03-18 05:06:52 +08:00
|
|
|
return False
|
|
|
|
|
|
|
|
def prompt_inuse_conflict(dev):
|
|
|
|
"""
|
|
|
|
Check if disk is inuse by another guest
|
|
|
|
"""
|
2014-01-15 06:11:51 +08:00
|
|
|
names = dev.is_conflict_disk()
|
2013-07-08 04:34:46 +08:00
|
|
|
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-09-28 22:06:52 +08:00
|
|
|
return not prompt_for_yes_no(msg, askmsg)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
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:
|
2013-09-28 22:06:52 +08:00
|
|
|
return not prompt_for_yes_no(errmsg, askmsg)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
2014-01-22 04:24:46 +08:00
|
|
|
def convert_old_cpuset(options):
|
|
|
|
if not options.cpuset:
|
|
|
|
return
|
|
|
|
if not options.vcpus:
|
|
|
|
options.vcpus = ""
|
|
|
|
options.vcpus += ",cpuset=%s" % options.cpuset
|
|
|
|
logging.debug("Generated compat cpuset: --vcpus %s", options.vcpus)
|
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 _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 default_override is True:
|
2013-10-03 06:06:52 +08:00
|
|
|
return "default"
|
|
|
|
elif default_override is False:
|
2013-09-28 08:16:35 +08:00
|
|
|
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-10-03 06:06:52 +08:00
|
|
|
logging.debug("DISPLAY is set: using default graphics")
|
|
|
|
return "default"
|
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 21:36:11 +08:00
|
|
|
def convert_old_features(options):
|
|
|
|
if getattr(options, "features", None):
|
|
|
|
return
|
|
|
|
|
|
|
|
opts = ""
|
|
|
|
if options.noacpi:
|
|
|
|
opts += "acpi=off"
|
|
|
|
if options.noapic:
|
|
|
|
if opts:
|
|
|
|
opts += ","
|
|
|
|
opts += "apic=off"
|
|
|
|
options.features = opts or None
|
|
|
|
|
|
|
|
|
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):
|
2014-01-21 07:04:23 +08:00
|
|
|
parser.add_argument("--connect", metavar="URI",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Connect to hypervisor with libvirt URI"))
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-09-28 23:27:26 +08:00
|
|
|
def add_misc_options(grp, prompt=False, replace=False,
|
|
|
|
printxml=False, printstep=False,
|
|
|
|
noreboot=False, dryrun=False):
|
|
|
|
if prompt:
|
2014-01-21 07:04:23 +08:00
|
|
|
grp.add_argument("--prompt", action="store_true",
|
2014-01-19 06:01:43 +08:00
|
|
|
default=False, help=argparse.SUPPRESS)
|
2014-01-21 07:04:23 +08:00
|
|
|
grp.add_argument("--force", action="store_true",
|
2014-01-19 06:01:43 +08:00
|
|
|
default=False, help=argparse.SUPPRESS)
|
2013-09-28 23:27:26 +08:00
|
|
|
|
|
|
|
if noreboot:
|
2014-01-21 07:04:23 +08:00
|
|
|
grp.add_argument("--noreboot", action="store_true",
|
2013-09-28 23:27:26 +08:00
|
|
|
help=_("Don't boot guest after completing install."))
|
|
|
|
|
|
|
|
if replace:
|
2014-01-21 07:04:23 +08:00
|
|
|
grp.add_argument("--replace", action="store_true",
|
2013-09-28 23:27:26 +08:00
|
|
|
help=_("Don't check name collision, overwrite any guest "
|
|
|
|
"with the same name."))
|
|
|
|
|
|
|
|
if printxml:
|
2014-01-19 06:01:43 +08:00
|
|
|
grp.add_argument("--print-xml", action="store_true", dest="xmlonly",
|
2013-09-28 23:27:26 +08:00
|
|
|
help=_("Print the generated domain XML rather than define "
|
|
|
|
"and clone the guest."))
|
|
|
|
if printstep:
|
2014-01-19 06:01:43 +08:00
|
|
|
grp.add_argument("--print-step", dest="xmlstep",
|
2013-09-28 23:27:26 +08:00
|
|
|
help=_("Print XML of a specific install step "
|
|
|
|
"(1, 2, 3, all) rather than define the guest."))
|
|
|
|
|
|
|
|
if dryrun:
|
2014-01-19 06:01:43 +08:00
|
|
|
grp.add_argument("--dry-run", action="store_true", dest="dry",
|
2013-09-28 23:27:26 +08:00
|
|
|
help=_("Run through install process, but do not "
|
|
|
|
"create devices or define the guest."))
|
|
|
|
|
2014-01-21 07:04:23 +08:00
|
|
|
grp.add_argument("-q", "--quiet", action="store_true",
|
2013-09-28 23:27:26 +08:00
|
|
|
help=_("Suppress non-error output"))
|
2014-01-21 07:04:23 +08:00
|
|
|
grp.add_argument("-d", "--debug", action="store_true",
|
2013-09-28 23:27:26 +08:00
|
|
|
help=_("Print debugging information"))
|
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def vcpu_cli_options(grp, backcompat=True):
|
2014-01-21 07:04:23 +08:00
|
|
|
grp.add_argument("--vcpus",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Number of vcpus to configure for your guest. Ex:\n"
|
|
|
|
"--vcpus 5\n"
|
2014-01-22 04:24:46 +08:00
|
|
|
"--vcpus 5,maxcpus=10,cpuset=1-4,6,8\n"
|
|
|
|
"--vcpus sockets=2,cores=4,threads=2,"))
|
2014-01-21 07:04:23 +08:00
|
|
|
grp.add_argument("--cpu",
|
2014-01-22 05:28:07 +08:00
|
|
|
help=_("CPU model and features. Ex:\n"
|
|
|
|
"--cpu coreduo,+x2apic\n"
|
|
|
|
"--cpu host"))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
if backcompat:
|
2014-01-19 06:01:43 +08:00
|
|
|
grp.add_argument("--check-cpu", action="store_true",
|
2014-01-21 07:04:23 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2014-01-22 04:24:46 +08:00
|
|
|
grp.add_argument("--cpuset", help=argparse.SUPPRESS)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2014-01-22 05:26:35 +08:00
|
|
|
def add_gfx_option(devg):
|
|
|
|
devg.add_argument("--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-03-18 05:06:52 +08:00
|
|
|
def graphics_option_group(parser):
|
|
|
|
"""
|
|
|
|
Register vnc + sdl options for virt-install and virt-image
|
|
|
|
"""
|
2014-01-19 06:01:43 +08:00
|
|
|
vncg = parser.add_argument_group(_("Graphics Configuration"))
|
2013-03-18 05:06:52 +08:00
|
|
|
add_gfx_option(vncg)
|
2014-01-21 07:04:23 +08:00
|
|
|
vncg.add_argument("--vnc", action="store_true",
|
2014-01-19 06:01:43 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2014-01-21 07:04:23 +08:00
|
|
|
vncg.add_argument("--vncport", type=int,
|
2014-01-19 06:01:43 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2014-01-21 07:04:23 +08:00
|
|
|
vncg.add_argument("--vnclisten",
|
2014-01-19 06:01:43 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2014-01-21 07:04:23 +08:00
|
|
|
vncg.add_argument("-k", "--keymap",
|
2014-01-19 06:01:43 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2014-01-21 07:04:23 +08:00
|
|
|
vncg.add_argument("--sdl", action="store_true",
|
2014-01-19 06:01:43 +08:00
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
vncg.add_argument("--nographics", action="store_true",
|
|
|
|
help=argparse.SUPPRESS)
|
2013-03-18 05:06:52 +08:00
|
|
|
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
|
|
|
|
"""
|
2014-01-19 06:01:43 +08:00
|
|
|
netg = parser.add_argument_group(_("Networking Configuration"))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
add_net_option(netg)
|
|
|
|
|
|
|
|
# Deprecated net options
|
2014-01-21 07:04:23 +08:00
|
|
|
netg.add_argument("-b", "--bridge", action="append",
|
2014-01-19 06:01:43 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2014-01-21 07:04:23 +08:00
|
|
|
netg.add_argument("-m", "--mac", action="append",
|
2014-01-19 06:01:43 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
return netg
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def add_net_option(devg):
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("-w", "--network", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
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):
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--controller", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure a guest controller device. Ex:\n"
|
|
|
|
"--controller type=usb,model=ich9-ehci1"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--serial", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure a guest serial device"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--parallel", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure a guest parallel device"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--channel", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure a guest communication channel"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--console", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure a text console connection between "
|
|
|
|
"the guest and host"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--host-device", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure physical host devices attached to the "
|
|
|
|
"guest"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--soundhw", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure guest sound device emulation"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--watchdog", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure a guest watchdog device"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--video", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure guest video hardware."))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--smartcard", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure a guest smartcard device. Ex:\n"
|
|
|
|
"--smartcard mode=passthrough"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--redirdev", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure a guest redirection device. Ex:\n"
|
|
|
|
"--redirdev usb,type=tcp,server=192.168.1.1:4000"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--memballoon", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Configure a guest memballoon device. Ex:\n"
|
|
|
|
"--memballoon model=virtio"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--tpm", action="append",
|
2013-06-26 09:45:07 +08:00
|
|
|
help=_("Configure a guest TPM device. Ex:\n"
|
2013-09-28 22:28:04 +08:00
|
|
|
"--tpm /dev/tpm"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--rng", action="append",
|
2013-09-18 21:29:29 +08:00
|
|
|
help=_("Configure a guest RNG device. Ex:\n"
|
2013-09-26 04:15:24 +08:00
|
|
|
"--rng /dev/random\n"
|
2013-10-25 23:13:27 +08:00
|
|
|
"--rng egd,backend_host=localhost,backend_service=708,backend_type=tcp"))
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--panic", action="append",
|
2014-01-22 17:44:38 +08:00
|
|
|
help=_("Configure a guest panic device. Ex:\n"
|
|
|
|
"--panic default"))
|
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_fs_option(devg):
|
2014-01-21 07:04:23 +08:00
|
|
|
devg.add_argument("--filesystem", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
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.
|
2014-01-19 06:01:43 +08:00
|
|
|
g.add_argument("--os-type", dest="distro_type",
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
g.add_argument("--os-variant", dest="distro_variant",
|
2013-08-11 06:17:37 +08:00
|
|
|
help=_("The OS variant being installed guests, "
|
|
|
|
"e.g. 'fedora18', 'rhel6', 'winxp', etc."))
|
|
|
|
|
|
|
|
|
2013-09-28 21:36:11 +08:00
|
|
|
def add_old_feature_options(optg):
|
2014-01-21 07:04:23 +08:00
|
|
|
optg.add_argument("--noapic", action="store_true",
|
2014-01-19 06:01:43 +08:00
|
|
|
default=False, help=argparse.SUPPRESS)
|
2014-01-21 07:04:23 +08:00
|
|
|
optg.add_argument("--noacpi", action="store_true",
|
2014-01-19 06:01:43 +08:00
|
|
|
default=False, help=argparse.SUPPRESS)
|
2013-09-28 21:36:11 +08:00
|
|
|
|
|
|
|
|
2014-01-22 05:26:35 +08:00
|
|
|
def add_guest_xml_options(geng):
|
|
|
|
geng.add_argument("--security",
|
|
|
|
help=_("Set domain security driver configuration."))
|
|
|
|
geng.add_argument("--numatune",
|
|
|
|
help=_("Tune NUMA policy for the domain process."))
|
|
|
|
geng.add_argument("--features",
|
|
|
|
help=_("Set domain <features> XML. Ex:\n"
|
|
|
|
"--features acpi=off\n"
|
|
|
|
"--features apic=on,eoi=on"))
|
|
|
|
geng.add_argument("--clock",
|
|
|
|
help=_("Set domain <clock> XML. Ex:\n"
|
|
|
|
"--clock offset=localtime,rtc_tickpolicy=catchup"))
|
|
|
|
|
|
|
|
|
|
|
|
def add_boot_option(insg):
|
|
|
|
insg.add_argument("--boot",
|
|
|
|
help=_("Optionally configure post-install boot order, "
|
|
|
|
"menu, permanent kernel boot, etc. Ex:\n"
|
|
|
|
"--boot hd,cdrom,menu=on\n"
|
|
|
|
"--boot init=/sbin/init (for containers)"))
|
|
|
|
|
|
|
|
|
|
|
|
def add_disk_option(stog):
|
|
|
|
stog.add_argument("--disk", action="append",
|
|
|
|
help=_("Specify storage with various options. Ex.\n"
|
|
|
|
"--disk path=/my/existing/disk\n"
|
|
|
|
"--disk path=/my/new/disk,size=5 (in gigabytes)\n"
|
|
|
|
"--disk vol=poolname/volname,device=cdrom,bus=scsi,..."))
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
#############################################
|
|
|
|
# CLI complex parsing helpers #
|
|
|
|
# (for options like --disk, --network, etc. #
|
|
|
|
#############################################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class _VirtCLIArgument(object):
|
|
|
|
def __init__(self, attrname, cliname,
|
|
|
|
setter_cb=None, ignore_default=False,
|
|
|
|
can_comma=False, is_list=False, is_onoff=False):
|
|
|
|
"""
|
|
|
|
A single subargument passed to compound command lines like --disk,
|
|
|
|
--network, etc.
|
|
|
|
|
|
|
|
@attrname: The virtinst API attribute name the cliargument maps to.
|
|
|
|
If this is a virtinst object method, it will be called.
|
|
|
|
@cliname: The command line option name, 'path' for path=FOO
|
|
|
|
|
|
|
|
@setter_cb: Rather than set an attribute directly on the virtinst
|
|
|
|
object, (opts, inst, cliname, val) to this callback to handle it.
|
|
|
|
@ignore_default: If the value passed on the cli is 'default', don't
|
|
|
|
do anything.
|
|
|
|
@can_comma: If True, this option is expected to have embedded commas.
|
|
|
|
After the parser sees this option, it will iterate over the
|
|
|
|
option string until it finds another known argument name:
|
|
|
|
everything prior to that argument name is considered part of
|
|
|
|
the value of this option. Should be used sparingly.
|
|
|
|
@is_list: This value should be stored as a list, so multiple instances
|
|
|
|
are appended.
|
|
|
|
@is_onoff: The value expected on the cli is on/off or yes/no, convert
|
|
|
|
it to true/false.
|
|
|
|
"""
|
|
|
|
self.attrname = attrname
|
|
|
|
self.cliname = cliname
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.setter_cb = setter_cb
|
|
|
|
self.can_comma = can_comma
|
|
|
|
self.is_list = is_list
|
|
|
|
self.is_onoff = is_onoff
|
|
|
|
self.ignore_default = ignore_default
|
2013-09-28 04:52:41 +08:00
|
|
|
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def parse(self, opts, inst, support_cb=None):
|
|
|
|
val = opts.get_opt_param(self.cliname)
|
|
|
|
if val is None:
|
|
|
|
return
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
if support_cb:
|
|
|
|
support_cb(inst, self.attrname, self.cliname)
|
|
|
|
if self.is_onoff:
|
|
|
|
val = _on_off_convert(self.cliname, val)
|
|
|
|
if val == "default" and self.ignore_default:
|
|
|
|
return
|
|
|
|
|
|
|
|
attr = None
|
|
|
|
try:
|
|
|
|
if self.setter_cb:
|
|
|
|
attr = None
|
|
|
|
elif callable(self.attrname):
|
|
|
|
attr = self.attrname
|
|
|
|
else:
|
|
|
|
attr = eval("inst." + self.attrname)
|
|
|
|
except AttributeError:
|
|
|
|
raise RuntimeError("programming error: obj=%s does not have "
|
|
|
|
"member=%s" % (inst, self.attrname))
|
|
|
|
|
|
|
|
if self.setter_cb:
|
|
|
|
self.setter_cb(opts, inst, self.cliname, val)
|
|
|
|
elif callable(attr):
|
|
|
|
attr(val)
|
|
|
|
else:
|
|
|
|
exec("inst." + self.attrname + " = val") # pylint: disable=W0122
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class VirtOptionString(object):
|
|
|
|
def __init__(self, optstr, virtargs, remove_first=None):
|
|
|
|
"""
|
|
|
|
Helper class for parsing opt strings of the form
|
|
|
|
opt1=val1,opt2=val2,...
|
|
|
|
|
|
|
|
@optstr: The full option string
|
|
|
|
@virtargs: A list of VirtCLIArguments
|
|
|
|
@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
|
|
|
|
maps to {"char_type", "pty", "foo" : "bar"}
|
|
|
|
"""
|
|
|
|
self.fullopts = optstr
|
2013-09-28 08:16:35 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
virtargmap = dict((arg.cliname, arg) for arg in virtargs)
|
2013-09-28 08:16:35 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
# @opts: A dictionary of the mapping {cliname: val}
|
|
|
|
# @orderedopts: A list of tuples (cliname: val), in the order
|
|
|
|
# they appeared on the CLI.
|
|
|
|
self.opts, self.orderedopts = self._parse_optstr(
|
|
|
|
virtargmap, remove_first)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def get_opt_param(self, key):
|
|
|
|
return self.opts.pop(key, None)
|
2013-09-28 08:16:35 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def check_leftover_opts(self):
|
|
|
|
if not self.opts:
|
2013-10-03 06:06:52 +08:00
|
|
|
return
|
2014-01-20 02:56:06 +08:00
|
|
|
raise fail(_("Unknown options %s") % self.opts.keys())
|
2013-09-28 08:16:35 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
###########################
|
|
|
|
# Actual parsing routines #
|
|
|
|
###########################
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def _parse_optstr_tuples(self, virtargmap, remove_first):
|
|
|
|
"""
|
|
|
|
Parse the command string into an ordered list of tuples (see
|
|
|
|
docs for orderedopts
|
|
|
|
"""
|
|
|
|
optstr = str(self.fullopts or "")
|
|
|
|
optlist = []
|
|
|
|
|
|
|
|
argsplitter = shlex.shlex(optstr, posix=True)
|
|
|
|
argsplitter.commenters = ""
|
|
|
|
argsplitter.whitespace = ","
|
|
|
|
argsplitter.whitespace_split = True
|
|
|
|
|
|
|
|
remove_first = util.listify(remove_first)[:]
|
|
|
|
commaopt = None
|
|
|
|
for opt in list(argsplitter):
|
|
|
|
if not opt:
|
|
|
|
continue
|
2013-09-28 08:16:35 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
cliname = opt
|
|
|
|
val = None
|
|
|
|
if opt.count("="):
|
|
|
|
cliname, val = opt.split("=", 1)
|
|
|
|
remove_first = []
|
|
|
|
elif remove_first:
|
|
|
|
val = cliname
|
|
|
|
cliname = remove_first.pop(0)
|
|
|
|
|
|
|
|
if commaopt:
|
|
|
|
if cliname in virtargmap:
|
|
|
|
optlist.append(tuple(commaopt))
|
|
|
|
commaopt = None
|
|
|
|
else:
|
|
|
|
commaopt[1] += "," + (val or cliname)
|
|
|
|
continue
|
|
|
|
|
|
|
|
if (cliname in virtargmap and virtargmap[cliname].can_comma):
|
|
|
|
commaopt = [cliname, val]
|
|
|
|
continue
|
2013-09-28 08:16:35 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
optlist.append((cliname, val))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
if commaopt:
|
|
|
|
optlist.append(tuple(commaopt))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
return optlist
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def _parse_optstr(self, virtargmap, remove_first):
|
|
|
|
orderedopts = self._parse_optstr_tuples(virtargmap, remove_first)
|
|
|
|
optdict = {}
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
for cliname, val in orderedopts:
|
|
|
|
if (cliname not in optdict and
|
|
|
|
cliname in virtargmap and
|
|
|
|
virtargmap[cliname].is_list):
|
|
|
|
optdict[cliname] = []
|
|
|
|
|
|
|
|
if type(optdict.get(cliname)) is list:
|
|
|
|
optdict[cliname].append(val)
|
|
|
|
else:
|
|
|
|
optdict[cliname] = val
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
return optdict, orderedopts
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class VirtCLIParser(object):
|
2013-03-18 05:06:52 +08:00
|
|
|
"""
|
2014-01-20 02:56:06 +08:00
|
|
|
Parse a compound arg string like --option foo=bar,baz=12. This is
|
|
|
|
the desired interface to VirtCLIArgument and VirtCLIOptionString.
|
|
|
|
|
|
|
|
A command line argument just extends this interface, implements
|
|
|
|
_init_params, and calls set_param in the order it wants the options
|
|
|
|
parsed on the command line. See existing impls examples of how to
|
|
|
|
do all sorts of crazy stuff
|
2013-03-18 05:06:52 +08:00
|
|
|
"""
|
2014-01-20 02:56:06 +08:00
|
|
|
devclass = None
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-22 03:28:47 +08:00
|
|
|
def __init__(self, cli_arg_name):
|
2014-01-20 02:56:06 +08:00
|
|
|
"""
|
|
|
|
These values should be set by subclasses in _init_params
|
|
|
|
|
2014-01-22 03:28:47 +08:00
|
|
|
@cli_arg_name: The command line argument this maps to, so
|
|
|
|
"host-device" for --host-device
|
2014-01-20 02:56:06 +08:00
|
|
|
@guest: Will be set parse(), the toplevel virtinst.Guest object
|
|
|
|
@remove_first: Passed to VirtOptionString
|
|
|
|
@check_none: If the parsed option string is just 'none', return None
|
|
|
|
@support_cb: An extra support check function for further validation.
|
|
|
|
Called before the virtinst object is altered. Take arguments
|
|
|
|
(inst, attrname, cliname)
|
|
|
|
"""
|
2014-01-22 03:28:47 +08:00
|
|
|
self.cli_arg_name = cli_arg_name
|
|
|
|
# This is the name of the variable that argparse will set in
|
|
|
|
# the result of parse_args()
|
|
|
|
self.option_variable_name = cli_arg_name.replace("-", "_")
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.guest = None
|
|
|
|
self.remove_first = None
|
|
|
|
self.check_none = False
|
|
|
|
self.support_cb = None
|
|
|
|
|
|
|
|
self._params = []
|
|
|
|
self._inparse = False
|
|
|
|
|
|
|
|
self._init_params()
|
|
|
|
|
|
|
|
def set_param(self, *args, **kwargs):
|
|
|
|
if self._inparse:
|
|
|
|
# Otherwise we might break command line introspection
|
|
|
|
raise RuntimeError("programming error: Can not call set_param "
|
|
|
|
"from parse handler.")
|
|
|
|
self._params.append(_VirtCLIArgument(*args, **kwargs))
|
|
|
|
|
2014-01-21 21:48:22 +08:00
|
|
|
def parse(self, guest, optlist, inst=None, validate=True):
|
|
|
|
optlist = util.listify(optlist)
|
|
|
|
editting = bool(inst)
|
|
|
|
|
|
|
|
if editting and optlist:
|
|
|
|
# If an object is passed in, we are updating it in place, and
|
2014-01-22 03:28:47 +08:00
|
|
|
# only use the last command line occurence, eg. from virt-xml
|
2014-01-21 21:48:22 +08:00
|
|
|
optlist = [optlist[-1]]
|
|
|
|
|
|
|
|
ret = []
|
|
|
|
for optstr in optlist:
|
|
|
|
optinst = inst
|
|
|
|
if self.devclass and not inst:
|
|
|
|
optinst = self.devclass(guest.conn) # pylint: disable=E1102
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
try:
|
2014-01-21 21:48:22 +08:00
|
|
|
devs = self._parse_single_optstr(guest, optstr, optinst)
|
2014-01-20 02:56:06 +08:00
|
|
|
for dev in util.listify(devs):
|
2014-01-21 21:48:22 +08:00
|
|
|
if not hasattr(dev, "virtual_device_type"):
|
|
|
|
continue
|
|
|
|
|
|
|
|
if validate:
|
|
|
|
dev.validate()
|
|
|
|
if editting:
|
|
|
|
continue
|
2014-01-20 02:56:06 +08:00
|
|
|
guest.add_device(dev)
|
2014-01-21 21:48:22 +08:00
|
|
|
|
|
|
|
ret += util.listify(devs)
|
2014-01-20 02:56:06 +08:00
|
|
|
except Exception, e:
|
2014-01-21 21:48:22 +08:00
|
|
|
logging.debug("Exception parsing inst=%s optstr=%s",
|
|
|
|
inst, optstr, exc_info=True)
|
2014-01-22 03:28:47 +08:00
|
|
|
fail(_("Error: --%(cli_arg_name)s %(options)s: %(err)s") %
|
|
|
|
{"cli_arg_name": self.cli_arg_name,
|
|
|
|
"options": optstr, "err": str(e)})
|
2014-01-21 21:48:22 +08:00
|
|
|
|
|
|
|
if not ret:
|
|
|
|
return None
|
|
|
|
if len(ret) == 1:
|
|
|
|
return ret[0]
|
|
|
|
return ret
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-21 21:48:22 +08:00
|
|
|
def _parse_single_optstr(self, guest, optstr, inst):
|
2014-01-20 02:56:06 +08:00
|
|
|
if not optstr:
|
|
|
|
return None
|
|
|
|
if self.check_none and optstr == "none":
|
|
|
|
return None
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
if not inst:
|
|
|
|
inst = guest
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
try:
|
|
|
|
self.guest = guest
|
|
|
|
self._inparse = True
|
|
|
|
opts = VirtOptionString(optstr, self._params,
|
|
|
|
remove_first=self.remove_first)
|
|
|
|
return self._parse(opts, inst)
|
|
|
|
finally:
|
|
|
|
self.guest = None
|
|
|
|
self._inparse = False
|
|
|
|
|
|
|
|
def _parse(self, opts, inst):
|
|
|
|
for param in self._params:
|
|
|
|
param.parse(opts, inst, self.support_cb)
|
|
|
|
opts.check_leftover_opts()
|
|
|
|
return inst
|
|
|
|
|
|
|
|
def _init_params(self):
|
|
|
|
raise NotImplementedError()
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
######################
|
|
|
|
# --numatune parsing #
|
|
|
|
######################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserNumatune(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.remove_first = "nodeset"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("numatune.memory_nodeset", "nodeset", can_comma=True)
|
|
|
|
self.set_param("numatune.memory_mode", "mode")
|
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 #
|
|
|
|
##################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserVCPU(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.remove_first = "vcpus"
|
|
|
|
|
|
|
|
self.set_param("cpu.sockets", "sockets")
|
|
|
|
self.set_param("cpu.cores", "cores")
|
|
|
|
self.set_param("cpu.threads", "threads")
|
|
|
|
|
|
|
|
def set_vcpus_cb(opts, inst, cliname, val):
|
|
|
|
ignore = cliname
|
|
|
|
attrname = ("maxvcpus" in opts.opts) and "curvcpus" or "vcpus"
|
|
|
|
setattr(inst, attrname, val)
|
|
|
|
|
|
|
|
self.set_param(None, "vcpus", setter_cb=set_vcpus_cb)
|
|
|
|
self.set_param("vcpus", "maxvcpus")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-22 04:24:46 +08:00
|
|
|
def set_cpuset_cb(opts, inst, cliname, val):
|
|
|
|
if val == "auto":
|
|
|
|
try:
|
|
|
|
val = virtinst.DomainNumatune.generate_cpuset(
|
|
|
|
inst.conn, inst.memory)
|
|
|
|
logging.debug("Auto cpuset is: %s", val)
|
|
|
|
except Exception, e:
|
|
|
|
logging.error("Not setting cpuset: %s", str(e))
|
|
|
|
val = None
|
|
|
|
|
|
|
|
if val:
|
|
|
|
inst.cpuset = val
|
|
|
|
|
|
|
|
self.set_param(None, "cpuset", can_comma=True,
|
|
|
|
setter_cb=set_cpuset_cb)
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def _parse(self, opts, inst):
|
|
|
|
set_from_top = ("maxvcpus" not in opts.opts and
|
|
|
|
"vcpus" not in opts.opts)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
ret = VirtCLIParser._parse(self, opts, inst)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
if set_from_top:
|
|
|
|
inst.vcpus = inst.cpu.vcpus_from_topology()
|
|
|
|
return ret
|
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 #
|
|
|
|
#################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserCPU(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.remove_first = "model"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def set_model_cb(opts, inst, cliname, val):
|
|
|
|
ignore = opts
|
|
|
|
ignore = cliname
|
|
|
|
if val == "host":
|
|
|
|
inst.cpu.copy_host_cpu()
|
|
|
|
else:
|
|
|
|
inst.cpu.model = val
|
|
|
|
|
|
|
|
def set_feature_cb(opts, inst, cliname, val):
|
|
|
|
ignore = opts
|
|
|
|
policy = cliname
|
|
|
|
for feature_name in util.listify(val):
|
|
|
|
inst.cpu.add_feature(feature_name, policy)
|
|
|
|
|
|
|
|
self.set_param(None, "model", setter_cb=set_model_cb)
|
|
|
|
self.set_param("cpu.match", "match")
|
|
|
|
self.set_param("cpu.vendor", "vendor")
|
|
|
|
|
|
|
|
self.set_param(None, "force", is_list=True, setter_cb=set_feature_cb)
|
|
|
|
self.set_param(None, "require", is_list=True, setter_cb=set_feature_cb)
|
|
|
|
self.set_param(None, "optional", is_list=True, setter_cb=set_feature_cb)
|
|
|
|
self.set_param(None, "disable", is_list=True, setter_cb=set_feature_cb)
|
|
|
|
self.set_param(None, "forbid", is_list=True, setter_cb=set_feature_cb)
|
|
|
|
|
|
|
|
def _parse(self, optsobj, inst):
|
|
|
|
opts = optsobj.opts
|
|
|
|
|
|
|
|
# Convert +feature, -feature into expected format
|
|
|
|
for key, value in opts.items():
|
|
|
|
policy = None
|
|
|
|
if value or len(key) == 1:
|
|
|
|
continue
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
if key.startswith("+"):
|
|
|
|
policy = "force"
|
|
|
|
elif key.startswith("-"):
|
|
|
|
policy = "disable"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
if policy:
|
|
|
|
del(opts[key])
|
|
|
|
if opts.get(policy) is None:
|
|
|
|
opts[policy] = []
|
|
|
|
opts[policy].append(key[1:])
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
return VirtCLIParser._parse(self, optsobj, inst)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
##################
|
|
|
|
# --boot parsing #
|
|
|
|
##################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserBoot(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.set_param("os.useserial", "useserial", is_onoff=True)
|
|
|
|
self.set_param("os.enable_bootmenu", "menu", is_onoff=True)
|
|
|
|
self.set_param("os.kernel", "kernel")
|
|
|
|
self.set_param("os.initrd", "initrd")
|
|
|
|
self.set_param("os.dtb", "dtb")
|
|
|
|
self.set_param("os.loader", "loader")
|
|
|
|
self.set_param("os.kernel_args", "extra_args")
|
|
|
|
self.set_param("os.kernel_args", "kernel_args")
|
2014-01-22 04:36:34 +08:00
|
|
|
self.set_param("os.init", "init")
|
2014-01-20 02:56:06 +08:00
|
|
|
|
|
|
|
# Order matters for boot devices, we handle it specially in parse
|
|
|
|
def noset_cb(val):
|
|
|
|
ignore = val
|
|
|
|
for b in virtinst.OSXML.BOOT_DEVICES:
|
|
|
|
self.set_param(noset_cb, b)
|
|
|
|
|
|
|
|
def _parse(self, opts, inst):
|
|
|
|
# Build boot order
|
2013-03-18 05:06:52 +08:00
|
|
|
boot_order = []
|
2014-01-20 02:56:06 +08:00
|
|
|
for cliname, ignore in opts.orderedopts:
|
|
|
|
if not cliname in inst.os.BOOT_DEVICES:
|
2013-03-18 05:06:52 +08:00
|
|
|
continue
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
del(opts.opts[cliname])
|
|
|
|
if cliname not in boot_order:
|
|
|
|
boot_order.append(cliname)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
if boot_order:
|
|
|
|
inst.os.bootorder = boot_order
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
VirtCLIParser._parse(self, opts, inst)
|
|
|
|
|
2013-07-31 02:26:53 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
######################
|
|
|
|
# --security parsing #
|
|
|
|
######################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserSecurity(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.set_param("seclabel.type", "type")
|
|
|
|
self.set_param("seclabel.label", "label", can_comma=True)
|
|
|
|
self.set_param("seclabel.relabel", "relabel",
|
|
|
|
is_onoff=True)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
2013-09-28 21:36:11 +08:00
|
|
|
######################
|
|
|
|
# --features parsing #
|
|
|
|
######################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserFeatures(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.set_param("features.acpi", "acpi", is_onoff=True)
|
|
|
|
self.set_param("features.apic", "apic", is_onoff=True)
|
|
|
|
self.set_param("features.pae", "pae", is_onoff=True)
|
|
|
|
self.set_param("features.privnet", "privnet",
|
|
|
|
is_onoff=True)
|
|
|
|
self.set_param("features.hap", "hap",
|
|
|
|
is_onoff=True)
|
|
|
|
self.set_param("features.viridian", "viridian",
|
|
|
|
is_onoff=True)
|
|
|
|
self.set_param("features.eoi", "eoi", is_onoff=True)
|
|
|
|
|
|
|
|
self.set_param("features.hyperv_vapic", "hyperv_vapic",
|
|
|
|
is_onoff=True)
|
|
|
|
self.set_param("features.hyperv_relaxed", "hyperv_relaxed",
|
|
|
|
is_onoff=True)
|
|
|
|
self.set_param("features.hyperv_spinlocks", "hyperv_spinlocks",
|
|
|
|
is_onoff=True)
|
|
|
|
self.set_param("features.hyperv_spinlocks_retries",
|
|
|
|
"hyperv_spinlocks_retries")
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-10-06 04:45:15 +08:00
|
|
|
###################
|
|
|
|
# --clock parsing #
|
|
|
|
###################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserClock(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.set_param("clock.offset", "offset")
|
2013-10-06 04:45:15 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def set_timer(opts, inst, cliname, val):
|
|
|
|
ignore = opts
|
|
|
|
tname, attrname = cliname.split("_")
|
2013-10-06 04:45:15 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
timerobj = None
|
|
|
|
for t in inst.clock.timers:
|
|
|
|
if t.name == tname:
|
|
|
|
timerobj = t
|
|
|
|
break
|
2013-10-06 04:45:15 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
if not timerobj:
|
|
|
|
timerobj = inst.clock.add_timer()
|
|
|
|
timerobj.name = tname
|
2013-10-06 04:45:15 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
setattr(timerobj, attrname, val)
|
2013-10-06 04:45:15 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
for tname in virtinst.Clock.TIMER_NAMES:
|
|
|
|
self.set_param(None, tname + "_present",
|
|
|
|
is_onoff=True,
|
|
|
|
setter_cb=set_timer)
|
|
|
|
self.set_param(None, tname + "_tickpolicy", setter_cb=set_timer)
|
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
##########################
|
|
|
|
# Guest <device> parsing #
|
|
|
|
##########################
|
|
|
|
|
|
|
|
##################
|
|
|
|
# --disk parsing #
|
|
|
|
##################
|
|
|
|
|
|
|
|
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-10-03 00:49:42 +08:00
|
|
|
collidelist = []
|
|
|
|
for disk in guest.get_devices("disk"):
|
|
|
|
if (disk.get_vol_install() and
|
|
|
|
disk.get_vol_install().pool.name() == poolobj.name()):
|
|
|
|
collidelist.append(os.path.basename(disk.path))
|
|
|
|
|
2013-10-01 04:21:23 +08:00
|
|
|
vname = virtinst.StorageVolume.find_free_name(
|
2013-10-03 00:49:42 +08:00
|
|
|
poolobj, guest.name, suffix=".img", collidelist=collidelist)
|
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
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserDisk(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualDisk
|
|
|
|
self.remove_first = "path"
|
|
|
|
|
|
|
|
def noset_cb(val):
|
|
|
|
ignore = val
|
|
|
|
|
|
|
|
# These are all handled specially in _parse
|
|
|
|
self.set_param(noset_cb, "path")
|
|
|
|
self.set_param(noset_cb, "backing_store")
|
|
|
|
self.set_param(noset_cb, "pool")
|
|
|
|
self.set_param(noset_cb, "vol")
|
|
|
|
self.set_param(noset_cb, "size")
|
|
|
|
self.set_param(noset_cb, "format")
|
|
|
|
self.set_param(noset_cb, "sparse")
|
|
|
|
self.set_param(noset_cb, "perms")
|
|
|
|
|
|
|
|
self.set_param("device", "device")
|
|
|
|
self.set_param("bus", "bus")
|
|
|
|
self.set_param("removable", "removable", is_onoff=True)
|
|
|
|
self.set_param("driver_cache", "cache")
|
|
|
|
self.set_param("driver_name", "driver_name")
|
|
|
|
self.set_param("driver_type", "driver_type")
|
|
|
|
self.set_param("driver_io", "io")
|
|
|
|
self.set_param("error_policy", "error_policy")
|
|
|
|
self.set_param("serial", "serial")
|
|
|
|
self.set_param("target", "target")
|
|
|
|
self.set_param("sourceStartupPolicy", "startup_policy")
|
|
|
|
|
|
|
|
|
|
|
|
def _parse(self, opts, inst):
|
|
|
|
def parse_size(val):
|
|
|
|
if val is None:
|
|
|
|
return None
|
2013-03-18 05:06:52 +08:00
|
|
|
try:
|
2014-01-20 02:56:06 +08:00
|
|
|
return float(val)
|
2013-03-18 05:06:52 +08:00
|
|
|
except Exception, e:
|
|
|
|
fail(_("Improper value for 'size': %s" % str(e)))
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
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)))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
return ro, shared
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
path = opts.get_opt_param("path")
|
|
|
|
backing_store = opts.get_opt_param("backing_store")
|
|
|
|
pool = opts.get_opt_param("pool")
|
|
|
|
vol = opts.get_opt_param("vol")
|
|
|
|
size = parse_size(opts.get_opt_param("size"))
|
|
|
|
fmt = opts.get_opt_param("format")
|
|
|
|
sparse = _on_off_convert("sparse", opts.get_opt_param("sparse"))
|
|
|
|
ro, shared = parse_perms(opts.get_opt_param("perms"))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
abspath, volinst, volobj = _parse_disk_source(
|
|
|
|
self.guest, path, pool, vol, size, fmt, sparse)
|
|
|
|
|
|
|
|
inst.path = volobj and volobj.path() or abspath
|
|
|
|
inst.read_only = ro
|
|
|
|
inst.shareable = shared
|
|
|
|
inst.set_create_storage(size=size, fmt=fmt, sparse=sparse,
|
|
|
|
vol_install=volinst, backing_store=backing_store)
|
|
|
|
|
|
|
|
inst = VirtCLIParser._parse(self, opts, inst)
|
|
|
|
inst.cli_size = size
|
|
|
|
return inst
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
2014-01-22 03:28:47 +08:00
|
|
|
parse_disk = ParserDisk("disk").parse
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-13 22:09:00 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
#####################
|
|
|
|
# --network parsing #
|
|
|
|
#####################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserNetwork(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualNetworkInterface
|
|
|
|
self.remove_first = "type"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def set_mac_cb(opts, inst, cliname, val):
|
|
|
|
ignore = opts
|
|
|
|
ignore = cliname
|
|
|
|
if val == "RANDOM":
|
|
|
|
val = None
|
|
|
|
inst.macaddr = val
|
|
|
|
return val
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("type", "type")
|
|
|
|
self.set_param("source", "source")
|
|
|
|
self.set_param("source_mode", "source_mode")
|
|
|
|
self.set_param("target_dev", "target")
|
|
|
|
self.set_param("model", "model")
|
|
|
|
self.set_param(None, "mac", setter_cb=set_mac_cb)
|
|
|
|
self.set_param("filterref", "filterref")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def _parse(self, optsobj, inst):
|
|
|
|
opts = optsobj.opts
|
|
|
|
if "type" not in opts:
|
|
|
|
if "network" in opts:
|
|
|
|
opts["type"] = virtinst.VirtualNetworkInterface.TYPE_VIRTUAL
|
|
|
|
opts["source"] = opts.pop("network")
|
|
|
|
elif "bridge" in opts:
|
|
|
|
opts["type"] = virtinst.VirtualNetworkInterface.TYPE_BRIDGE
|
|
|
|
opts["source"] = opts.pop("bridge")
|
|
|
|
|
|
|
|
return VirtCLIParser._parse(self, optsobj, inst)
|
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
######################
|
|
|
|
# --graphics parsing #
|
|
|
|
######################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserGraphics(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualGraphics
|
|
|
|
self.remove_first = "type"
|
|
|
|
self.check_none = True
|
|
|
|
|
|
|
|
def set_keymap_cb(opts, inst, cliname, val):
|
|
|
|
ignore = opts
|
|
|
|
ignore = cliname
|
|
|
|
from virtinst import hostkeymap
|
|
|
|
|
|
|
|
if not val:
|
|
|
|
val = None
|
|
|
|
elif val.lower() == "local":
|
|
|
|
val = virtinst.VirtualGraphics.KEYMAP_LOCAL
|
|
|
|
elif val.lower() == "none":
|
|
|
|
val = None
|
|
|
|
else:
|
|
|
|
use_keymap = hostkeymap.sanitize_keymap(val)
|
|
|
|
if not use_keymap:
|
|
|
|
raise ValueError(
|
|
|
|
_("Didn't match keymap '%s' in keytable!") % val)
|
|
|
|
val = use_keymap
|
|
|
|
inst.keymap = val
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def set_type_cb(opts, inst, cliname, val):
|
|
|
|
ignore = opts
|
|
|
|
if val == "default":
|
|
|
|
return
|
|
|
|
inst.type = val
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param(None, "type", setter_cb=set_type_cb)
|
|
|
|
self.set_param("port", "port")
|
|
|
|
self.set_param("tlsPort", "tlsport")
|
|
|
|
self.set_param("listen", "listen")
|
|
|
|
self.set_param(None, "keymap", setter_cb=set_keymap_cb)
|
|
|
|
self.set_param("passwd", "password")
|
|
|
|
self.set_param("passwdValidTo", "passwordvalidto")
|
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
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserController(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualController
|
|
|
|
self.remove_first = "type"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("type", "type")
|
|
|
|
self.set_param("type", "type")
|
|
|
|
self.set_param("model", "model")
|
|
|
|
self.set_param("index", "index")
|
|
|
|
self.set_param("master_startport", "master")
|
|
|
|
self.set_param("address.set_addrstr", "address")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def _parse(self, opts, inst):
|
|
|
|
if opts.fullopts == "usb2":
|
|
|
|
return virtinst.VirtualController.get_usb2_controllers(inst.conn)
|
|
|
|
elif opts.fullopts == "usb3":
|
|
|
|
inst.type = "usb"
|
|
|
|
inst.model = "nec-xhci"
|
|
|
|
return inst
|
|
|
|
return VirtCLIParser._parse(self, opts, inst)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
#######################
|
|
|
|
# --smartcard parsing #
|
|
|
|
#######################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserSmartcard(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualSmartCardDevice
|
|
|
|
self.remove_first = "mode"
|
|
|
|
self.check_none = True
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("mode", "mode")
|
|
|
|
self.set_param("type", "type")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
######################
|
|
|
|
# --redirdev parsing #
|
|
|
|
######################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserRedir(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualRedirDevice
|
|
|
|
self.remove_first = "bus"
|
|
|
|
self.check_none = True
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("bus", "bus")
|
|
|
|
self.set_param("type", "type")
|
|
|
|
self.set_param("parse_friendly_server", "server")
|
2013-03-18 05:06:52 +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
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserTPM(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualTPMDevice
|
|
|
|
self.remove_first = "type"
|
|
|
|
self.check_none = True
|
2013-06-26 09:45:07 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("type", "type")
|
|
|
|
self.set_param("model", "model")
|
|
|
|
self.set_param("device_path", "path")
|
2013-06-26 09:45:07 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def _parse(self, opts, inst):
|
|
|
|
if (opts.opts.get("type", "").startswith("/")):
|
|
|
|
opts.opts["path"] = opts.opts.pop("type")
|
|
|
|
return VirtCLIParser._parse(self, opts, inst)
|
2013-09-28 22:28:04 +08:00
|
|
|
|
2013-06-26 09:45:07 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
#################
|
|
|
|
# --rng parsing #
|
|
|
|
#################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserRNG(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualRNGDevice
|
|
|
|
self.remove_first = "type"
|
|
|
|
self.check_none = True
|
2013-09-18 21:29:29 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def set_hosts_cb(opts, inst, cliname, val):
|
|
|
|
namemap = {}
|
|
|
|
inst.backend_type = self._cli_backend_type
|
2013-09-18 21:29:29 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
if self._cli_backend_mode == "connect":
|
|
|
|
namemap["backend_host"] = "connect_host"
|
|
|
|
namemap["backend_service"] = "connect_service"
|
|
|
|
|
|
|
|
if self._cli_backend_mode == "bind":
|
|
|
|
namemap["backend_host"] = "bind_host"
|
|
|
|
namemap["backend_service"] = "bind_service"
|
|
|
|
|
|
|
|
if self._cli_backend_type == "udp":
|
|
|
|
namemap["backend_connect_host"] = "connect_host"
|
|
|
|
namemap["backend_connect_service"] = "connect_service"
|
|
|
|
|
|
|
|
if cliname in namemap:
|
|
|
|
setattr(inst, namemap[cliname], val)
|
2013-09-28 08:16:35 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def set_backend_cb(opts, inst, cliname, val):
|
|
|
|
ignore = opts
|
|
|
|
ignore = inst
|
|
|
|
if cliname == "backend_mode":
|
|
|
|
self._cli_backend_mode = val
|
|
|
|
elif cliname == "backend_type":
|
|
|
|
self._cli_backend_type = val
|
2013-10-25 23:13:27 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("type", "type")
|
2013-10-25 23:13:27 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param(None, "backend_mode", setter_cb=set_backend_cb)
|
|
|
|
self.set_param(None, "backend_type", setter_cb=set_backend_cb)
|
2013-10-25 23:13:27 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param(None, "backend_host", setter_cb=set_hosts_cb)
|
|
|
|
self.set_param(None, "backend_service", setter_cb=set_hosts_cb)
|
|
|
|
self.set_param(None, "backend_connect_host", setter_cb=set_hosts_cb)
|
|
|
|
self.set_param(None, "backend_connect_service", setter_cb=set_hosts_cb)
|
2013-10-25 23:13:27 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("device", "device")
|
|
|
|
self.set_param("model", "model")
|
|
|
|
self.set_param("rate_bytes", "rate_bytes")
|
|
|
|
self.set_param("rate_period", "rate_period")
|
2013-09-18 21:29:29 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def _parse(self, optsobj, inst):
|
|
|
|
opts = optsobj.opts
|
2013-09-18 21:29:29 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
# pylint: disable=W0201
|
|
|
|
# Defined outside init, but its easier this way
|
|
|
|
self._cli_backend_mode = "connect"
|
|
|
|
self._cli_backend_type = "udp"
|
|
|
|
# pylint: enable=W0201
|
|
|
|
|
|
|
|
if opts.get("type", "").startswith("/"):
|
|
|
|
# Allow --rng /dev/random
|
|
|
|
opts["device"] = opts.pop("type")
|
|
|
|
opts["type"] = "random"
|
|
|
|
|
|
|
|
return VirtCLIParser._parse(self, optsobj, inst)
|
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
######################
|
|
|
|
# --watchdog parsing #
|
|
|
|
######################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserWatchdog(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualWatchdog
|
|
|
|
self.remove_first = "model"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("model", "model")
|
|
|
|
self.set_param("action", "action")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
########################
|
|
|
|
# --memballoon parsing #
|
|
|
|
########################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserMemballoon(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualMemballoon
|
|
|
|
self.remove_first = "model"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("model", "model")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
2014-01-22 17:44:38 +08:00
|
|
|
###################
|
|
|
|
# --panic parsing #
|
|
|
|
###################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserPanic(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualPanicDevice
|
|
|
|
self.remove_first = "iobase"
|
2014-01-22 17:44:38 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def set_iobase_cb(opts, inst, cliname, val):
|
|
|
|
ignore = opts
|
|
|
|
ignore = cliname
|
|
|
|
if val == "default":
|
|
|
|
return
|
|
|
|
inst.iobase = val
|
|
|
|
self.set_param(None, "iobase", setter_cb=set_iobase_cb)
|
2014-01-22 17:44:38 +08:00
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
######################################################
|
|
|
|
# --serial, --parallel, --channel, --console parsing #
|
|
|
|
######################################################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class _ParserChar(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.remove_first = "char_type"
|
|
|
|
|
|
|
|
def support_check(inst, attrname, cliname):
|
|
|
|
if type(attrname) is not str:
|
|
|
|
return
|
|
|
|
if not inst.supports_property(attrname):
|
|
|
|
raise ValueError(_("%(devtype)s type '%(chartype)s' does not "
|
|
|
|
"support '%(optname)s' option.") %
|
|
|
|
{"devtype" : inst.virtual_device_type,
|
|
|
|
"chartype": inst.type,
|
|
|
|
"optname" : cliname})
|
|
|
|
self.support_cb = support_check
|
|
|
|
|
|
|
|
self.set_param("type", "char_type")
|
|
|
|
self.set_param("source_path", "path")
|
|
|
|
self.set_param("source_mode", "mode")
|
|
|
|
self.set_param("protocol", "protocol")
|
|
|
|
self.set_param("target_type", "target_type")
|
|
|
|
self.set_param("target_name", "name")
|
|
|
|
self.set_param("set_friendly_source", "host")
|
|
|
|
self.set_param("set_friendly_bind", "bind_host")
|
|
|
|
self.set_param("set_friendly_target", "target_address")
|
|
|
|
|
|
|
|
def _parse(self, opts, inst):
|
|
|
|
if opts.fullopts == "none" and inst.virtual_device_type == "console":
|
|
|
|
self.guest.skip_default_console = True
|
|
|
|
return
|
|
|
|
if opts.fullopts == "none" and inst.virtual_device_type == "channel":
|
|
|
|
self.guest.skip_default_channel = True
|
|
|
|
return
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
return VirtCLIParser._parse(self, opts, inst)
|
2013-10-06 21:41:37 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
|
|
|
|
class ParserSerial(_ParserChar):
|
|
|
|
devclass = virtinst.VirtualSerialDevice
|
|
|
|
|
|
|
|
|
|
|
|
class ParserParallel(_ParserChar):
|
|
|
|
devclass = virtinst.VirtualParallelDevice
|
|
|
|
|
|
|
|
|
|
|
|
class ParserChannel(_ParserChar):
|
|
|
|
devclass = virtinst.VirtualChannelDevice
|
|
|
|
|
|
|
|
|
|
|
|
class ParserConsole(_ParserChar):
|
|
|
|
devclass = virtinst.VirtualConsoleDevice
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
########################
|
|
|
|
# --filesystem parsing #
|
|
|
|
########################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserFilesystem(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualFilesystem
|
|
|
|
self.remove_first = ["source", "target"]
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("type", "type")
|
|
|
|
self.set_param("mode", "mode")
|
|
|
|
self.set_param("source", "source")
|
|
|
|
self.set_param("target", "target")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
###################
|
|
|
|
# --video parsing #
|
|
|
|
###################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserVideo(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualVideoDevice
|
|
|
|
self.remove_first = "model"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("model", "model", ignore_default=True)
|
2013-09-28 08:16:35 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
#####################
|
|
|
|
# --soundhw parsing #
|
|
|
|
#####################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserSound(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualAudio
|
|
|
|
self.remove_first = "model"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param("model", "model", ignore_default=True)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
#####################
|
|
|
|
# --hostdev parsing #
|
|
|
|
#####################
|
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
class ParserHostdev(VirtCLIParser):
|
|
|
|
def _init_params(self):
|
|
|
|
self.devclass = virtinst.VirtualHostDevice
|
|
|
|
self.remove_first = "name"
|
2013-09-28 08:16:35 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
def set_name_cb(opts, inst, cliname, val):
|
|
|
|
ignore = opts
|
|
|
|
ignore = cliname
|
|
|
|
val = virtinst.NodeDevice.lookupNodeName(inst.conn, val)
|
|
|
|
inst.set_from_nodedev(val)
|
2013-09-28 08:16:35 +08:00
|
|
|
|
2014-01-20 02:56:06 +08:00
|
|
|
self.set_param(None, "name", setter_cb=set_name_cb)
|
|
|
|
self.set_param("driver_name", "driver_name")
|
2013-09-28 06:06:39 +08:00
|
|
|
|
2013-09-28 04:52:41 +08:00
|
|
|
|
2014-01-22 03:28:47 +08:00
|
|
|
###########################
|
|
|
|
# Register parser classes #
|
|
|
|
###########################
|
|
|
|
|
|
|
|
def build_parser_map(options, skip=None, only=None):
|
|
|
|
"""
|
|
|
|
Build a dictionary with mapping of cli-name->parserinstance, so
|
|
|
|
--vcpus -> ParserVCPU object.
|
|
|
|
"""
|
|
|
|
parsermap = {}
|
|
|
|
def register_parser(cli_arg_name, parserclass):
|
|
|
|
if cli_arg_name in util.listify(skip):
|
|
|
|
return
|
|
|
|
if only and cli_arg_name not in util.listify(only):
|
|
|
|
return
|
|
|
|
|
|
|
|
parserobj = parserclass(cli_arg_name)
|
|
|
|
if not hasattr(options, parserobj.option_variable_name):
|
|
|
|
raise RuntimeError("programming error: unknown option=%s "
|
|
|
|
"cliname=%s class=%s" %
|
|
|
|
(parserobj.option_variable_name,
|
|
|
|
parserobj.cli_arg_name, parserclass))
|
|
|
|
parsermap[parserobj.option_variable_name] = parserobj
|
|
|
|
|
|
|
|
register_parser("vcpus", ParserVCPU)
|
|
|
|
register_parser("cpu", ParserCPU)
|
|
|
|
register_parser("numatune", ParserNumatune)
|
|
|
|
register_parser("boot", ParserBoot)
|
|
|
|
register_parser("security", ParserSecurity)
|
|
|
|
register_parser("features", ParserFeatures)
|
|
|
|
register_parser("clock", ParserClock)
|
|
|
|
register_parser("disk", ParserDisk)
|
|
|
|
register_parser("network", ParserNetwork)
|
|
|
|
register_parser("graphics", ParserGraphics)
|
|
|
|
register_parser("controller", ParserController)
|
|
|
|
register_parser("smartcard", ParserSmartcard)
|
|
|
|
register_parser("redirdev", ParserRedir)
|
|
|
|
register_parser("tpm", ParserTPM)
|
|
|
|
register_parser("rng", ParserRNG)
|
|
|
|
register_parser("watchdog", ParserWatchdog)
|
|
|
|
register_parser("memballoon", ParserMemballoon)
|
|
|
|
register_parser("serial", ParserSerial)
|
|
|
|
register_parser("parallel", ParserParallel)
|
|
|
|
register_parser("channel", ParserChannel)
|
|
|
|
register_parser("console", ParserConsole)
|
|
|
|
register_parser("filesystem", ParserFilesystem)
|
|
|
|
register_parser("video", ParserVideo)
|
|
|
|
register_parser("soundhw", ParserSound)
|
|
|
|
register_parser("host-device", ParserHostdev)
|
|
|
|
register_parser("panic", ParserPanic)
|
|
|
|
|
|
|
|
return parsermap
|
|
|
|
|
|
|
|
|
|
|
|
def parse_option_strings(parsermap, options, guest, inst):
|
|
|
|
"""
|
|
|
|
Iterate over the parsermap, and launch the associated parser
|
|
|
|
function for every value that was filled in on 'options', which
|
|
|
|
came from argparse/the command line.
|
|
|
|
"""
|
|
|
|
for option_variable_name in dir(options):
|
|
|
|
if option_variable_name not in parsermap:
|
|
|
|
continue
|
|
|
|
parsermap[option_variable_name].parse(
|
|
|
|
guest, getattr(options, option_variable_name), inst)
|