2018-01-28 04:46:39 +08:00
|
|
|
#!/usr/bin/env python3
|
2014-01-19 23:37:14 +08:00
|
|
|
#
|
2014-01-26 10:08:11 +08:00
|
|
|
# Copyright 2013-2014 Red Hat, Inc.
|
2014-01-19 23:37:14 +08:00
|
|
|
# Cole Robinson <crobinso@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.
|
|
|
|
|
|
|
|
import difflib
|
|
|
|
import logging
|
|
|
|
import os
|
2017-12-15 01:02:36 +08:00
|
|
|
import re
|
2014-01-19 23:37:14 +08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
import libvirt
|
|
|
|
|
|
|
|
import virtinst
|
|
|
|
from virtinst import cli
|
2014-01-26 06:06:31 +08:00
|
|
|
from virtinst import util
|
2014-01-19 23:37:14 +08:00
|
|
|
from virtinst.cli import fail, print_stdout, print_stderr
|
|
|
|
|
|
|
|
|
|
|
|
###################
|
|
|
|
# Utility helpers #
|
|
|
|
###################
|
|
|
|
|
|
|
|
def prompt_yes_or_no(msg):
|
|
|
|
while 1:
|
|
|
|
printmsg = msg + " (y/n): "
|
|
|
|
sys.stdout.write(printmsg)
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
2015-04-23 05:35:39 +08:00
|
|
|
if "VIRTINST_TEST_SUITE" in os.environ:
|
|
|
|
inp = "yes"
|
|
|
|
else:
|
|
|
|
inp = sys.stdin.readline().lower().strip()
|
|
|
|
|
2014-01-19 23:37:14 +08:00
|
|
|
if inp in ["y", "yes"]:
|
|
|
|
return True
|
|
|
|
elif inp in ["n", "no"]:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
print_stdout(_("Please enter 'yes' or 'no'."))
|
|
|
|
|
|
|
|
|
|
|
|
def get_diff(origxml, newxml):
|
|
|
|
ret = "".join(difflib.unified_diff(origxml.splitlines(1),
|
|
|
|
newxml.splitlines(1),
|
|
|
|
fromfile="Original XML",
|
|
|
|
tofile="Altered XML"))
|
|
|
|
|
|
|
|
if ret:
|
|
|
|
logging.debug("XML diff:\n%s", ret)
|
|
|
|
else:
|
|
|
|
logging.debug("No XML diff, didn't generate any change.")
|
|
|
|
return ret
|
|
|
|
|
|
|
|
|
2014-01-26 07:16:16 +08:00
|
|
|
def _make_guest(conn, xml):
|
|
|
|
# We do this to minimize the diff, sanitizing XML quotes to what libxml
|
|
|
|
# generates
|
|
|
|
return virtinst.Guest(conn,
|
|
|
|
parsexml=virtinst.Guest(conn, parsexml=xml).get_xml_config())
|
|
|
|
|
2014-01-19 23:37:14 +08:00
|
|
|
|
2014-01-26 07:16:16 +08:00
|
|
|
def get_domain_and_guest(conn, domstr):
|
2014-01-19 23:37:14 +08:00
|
|
|
try:
|
|
|
|
int(domstr)
|
|
|
|
isint = True
|
|
|
|
except ValueError:
|
|
|
|
isint = False
|
|
|
|
|
2017-12-15 01:02:36 +08:00
|
|
|
uuidre = "[a-fA-F0-9]{8}[-]([a-fA-F0-9]{4}[-]){3}[a-fA-F0-9]{12}$"
|
|
|
|
isuuid = bool(re.match(uuidre, domstr))
|
2014-01-19 23:37:14 +08:00
|
|
|
|
|
|
|
try:
|
|
|
|
if isint:
|
|
|
|
domain = conn.lookupByID(int(domstr))
|
|
|
|
elif isuuid:
|
|
|
|
domain = conn.lookupByUUIDString(domstr)
|
|
|
|
else:
|
|
|
|
domain = conn.lookupByName(domstr)
|
2017-05-06 00:47:21 +08:00
|
|
|
except libvirt.libvirtError as e:
|
2014-01-19 23:37:14 +08:00
|
|
|
fail(_("Could not find domain '%s': %s") % (domstr, e))
|
|
|
|
|
2014-01-26 06:18:32 +08:00
|
|
|
state = domain.info()[0]
|
|
|
|
active_xmlobj = None
|
2014-01-26 07:16:16 +08:00
|
|
|
inactive_xmlobj = _make_guest(conn, domain.XMLDesc(0))
|
2014-01-26 06:18:32 +08:00
|
|
|
if state != libvirt.VIR_DOMAIN_SHUTOFF:
|
|
|
|
active_xmlobj = inactive_xmlobj
|
2014-01-26 07:16:16 +08:00
|
|
|
inactive_xmlobj = _make_guest(conn,
|
2014-01-26 06:18:32 +08:00
|
|
|
domain.XMLDesc(libvirt.VIR_DOMAIN_XML_INACTIVE))
|
2014-01-19 23:37:14 +08:00
|
|
|
|
2014-01-26 06:18:32 +08:00
|
|
|
return (domain, inactive_xmlobj, active_xmlobj)
|
2014-01-19 23:37:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
################
|
|
|
|
# Change logic #
|
|
|
|
################
|
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
def _find_objects_to_edit(guest, action_name, editval, parserclass):
|
|
|
|
objlist = guest.list_children_for_class(parserclass.objclass)
|
2014-01-19 23:37:14 +08:00
|
|
|
idx = None
|
|
|
|
|
2014-01-26 06:06:31 +08:00
|
|
|
if editval is None:
|
2014-01-19 23:37:14 +08:00
|
|
|
idx = 1
|
2014-01-26 06:06:31 +08:00
|
|
|
elif (editval.isdigit() or
|
|
|
|
editval.startswith("-") and editval[1:].isdigit()):
|
|
|
|
idx = int(editval)
|
2014-01-19 23:37:14 +08:00
|
|
|
|
|
|
|
if idx is not None:
|
2015-09-05 04:07:01 +08:00
|
|
|
# Edit device by index
|
2014-01-19 23:37:14 +08:00
|
|
|
if idx == 0:
|
2014-01-26 06:06:31 +08:00
|
|
|
fail(_("Invalid --edit option '%s'") % editval)
|
2014-01-19 23:37:14 +08:00
|
|
|
|
2015-09-05 04:07:01 +08:00
|
|
|
if not objlist:
|
|
|
|
fail(_("No --%s objects found in the XML") %
|
2016-06-14 19:37:21 +08:00
|
|
|
parserclass.cli_arg_name)
|
2015-09-05 04:07:01 +08:00
|
|
|
if len(objlist) < abs(idx):
|
2014-01-19 23:37:14 +08:00
|
|
|
fail(_("--edit %s requested but there's only %s "
|
2015-09-05 04:07:01 +08:00
|
|
|
"--%s object in the XML") %
|
2016-06-14 19:37:21 +08:00
|
|
|
(idx, len(objlist), parserclass.cli_arg_name))
|
2014-01-19 23:37:14 +08:00
|
|
|
|
|
|
|
if idx > 0:
|
|
|
|
idx -= 1
|
2015-09-05 04:07:01 +08:00
|
|
|
inst = objlist[idx]
|
|
|
|
|
2014-01-26 06:06:31 +08:00
|
|
|
elif editval == "all":
|
2015-09-05 04:07:01 +08:00
|
|
|
# Edit 'all' devices
|
|
|
|
inst = objlist[:]
|
|
|
|
|
2014-01-19 23:37:14 +08:00
|
|
|
else:
|
2015-09-05 04:07:01 +08:00
|
|
|
# Lookup device by the passed prop string
|
2016-06-14 19:37:21 +08:00
|
|
|
parserobj = parserclass(guest, editval)
|
|
|
|
inst = parserobj.lookup_child_from_option_string()
|
2014-01-19 23:37:14 +08:00
|
|
|
if not inst:
|
2015-09-05 04:07:01 +08:00
|
|
|
fail(_("No matching objects found for --%s %s") %
|
2014-01-26 06:06:31 +08:00
|
|
|
(action_name, editval))
|
2014-01-19 23:37:14 +08:00
|
|
|
|
|
|
|
return inst
|
|
|
|
|
|
|
|
|
2014-01-26 06:06:31 +08:00
|
|
|
def check_action_collision(options):
|
2014-01-26 09:14:42 +08:00
|
|
|
actions = ["edit", "add-device", "remove-device", "build-xml"]
|
2014-01-19 23:37:14 +08:00
|
|
|
|
2014-01-26 06:06:31 +08:00
|
|
|
collisions = []
|
|
|
|
for cliname in actions:
|
|
|
|
optname = cliname.replace("-", "_")
|
|
|
|
if getattr(options, optname) not in [False, -1]:
|
|
|
|
collisions.append(cliname)
|
|
|
|
|
|
|
|
if len(collisions) == 0:
|
|
|
|
fail(_("One of %s must be specified.") %
|
|
|
|
", ".join(["--" + c for c in actions]))
|
|
|
|
if len(collisions) > 1:
|
|
|
|
fail(_("Conflicting options %s") %
|
|
|
|
", ".join(["--" + c for c in collisions]))
|
|
|
|
|
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
def check_xmlopt_collision(options):
|
2014-01-19 23:37:14 +08:00
|
|
|
collisions = []
|
2016-06-14 19:37:21 +08:00
|
|
|
for parserclass in cli.VIRT_PARSERS:
|
|
|
|
if getattr(options, parserclass.cli_arg_name):
|
|
|
|
collisions.append(parserclass)
|
2014-01-19 23:37:14 +08:00
|
|
|
|
|
|
|
if len(collisions) == 0:
|
|
|
|
fail(_("No change specified."))
|
|
|
|
if len(collisions) != 1:
|
|
|
|
fail(_("Only one change operation may be specified "
|
|
|
|
"(conflicting options %s)") %
|
|
|
|
["--" + c.cli_arg_name for c in collisions])
|
|
|
|
|
2014-01-26 06:06:31 +08:00
|
|
|
return collisions[0]
|
|
|
|
|
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
def action_edit(guest, options, parserclass):
|
|
|
|
if parserclass.objclass:
|
|
|
|
inst = _find_objects_to_edit(guest, "edit", options.edit, parserclass)
|
2014-01-19 23:37:14 +08:00
|
|
|
else:
|
|
|
|
inst = guest
|
|
|
|
if options.edit and options.edit != '1' and options.edit != 'all':
|
|
|
|
fail(_("'--edit %s' doesn't make sense with --%s, "
|
|
|
|
"just use empty '--edit'") %
|
2016-06-14 19:37:21 +08:00
|
|
|
(options.edit, parserclass.cli_arg_name))
|
2014-01-19 23:37:14 +08:00
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
return cli.parse_option_strings(options, guest, inst, update=True)
|
2014-01-19 23:37:14 +08:00
|
|
|
|
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
def action_add_device(guest, options, parserclass):
|
|
|
|
if (not parserclass.objclass or
|
|
|
|
guest.child_class_is_singleton(parserclass.objclass)):
|
|
|
|
fail(_("Cannot use --add-device with --%s") % parserclass.cli_arg_name)
|
|
|
|
return cli.parse_option_strings(options, guest, None)
|
2014-01-26 06:06:31 +08:00
|
|
|
|
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
def action_remove_device(guest, options, parserclass):
|
|
|
|
if (not parserclass.objclass or
|
|
|
|
guest.child_class_is_singleton(parserclass.objclass)):
|
2014-01-26 06:06:31 +08:00
|
|
|
fail(_("Cannot use --remove-device with --%s") %
|
2016-06-14 19:37:21 +08:00
|
|
|
parserclass.cli_arg_name)
|
2014-01-26 06:06:31 +08:00
|
|
|
|
2015-09-05 04:07:01 +08:00
|
|
|
devs = _find_objects_to_edit(guest, "remove-device",
|
2016-06-14 19:37:21 +08:00
|
|
|
getattr(options, parserclass.cli_arg_name)[-1], parserclass)
|
2014-01-26 06:06:31 +08:00
|
|
|
|
2014-01-26 08:51:56 +08:00
|
|
|
devs = util.listify(devs)
|
2017-02-14 08:42:38 +08:00
|
|
|
for dev in devs:
|
2014-01-26 06:06:31 +08:00
|
|
|
guest.remove_device(dev)
|
2014-01-26 08:51:56 +08:00
|
|
|
return devs
|
|
|
|
|
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
def action_build_xml(conn, options, parserclass):
|
2014-01-26 09:14:42 +08:00
|
|
|
guest = virtinst.Guest(conn)
|
|
|
|
ret_inst = None
|
|
|
|
inst = None
|
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
if parserclass.objclass:
|
|
|
|
inst = parserclass.objclass(conn)
|
|
|
|
elif parserclass.clear_attr:
|
|
|
|
ret_inst = getattr(guest, parserclass.clear_attr)
|
2014-01-26 09:14:42 +08:00
|
|
|
else:
|
2016-06-14 19:37:21 +08:00
|
|
|
fail(_("--build-xml not supported for --%s") %
|
|
|
|
parserclass.cli_arg_name)
|
2014-01-26 09:14:42 +08:00
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
ret = cli.parse_option_strings(options, guest, inst)
|
2014-01-26 09:14:42 +08:00
|
|
|
if ret_inst:
|
|
|
|
return ret_inst
|
|
|
|
return ret
|
|
|
|
|
|
|
|
|
2014-01-26 10:08:11 +08:00
|
|
|
def setup_device(dev):
|
|
|
|
if getattr(dev, "virtual_device_type", None) != "disk":
|
|
|
|
return
|
|
|
|
if getattr(dev, "virt_xml_setup", None) is True:
|
|
|
|
return
|
|
|
|
|
|
|
|
logging.debug("Doing setup for disk=%s", dev)
|
2014-02-07 23:05:41 +08:00
|
|
|
|
2015-04-12 07:25:46 +08:00
|
|
|
dev.setup(cli.get_meter())
|
2014-01-26 10:08:11 +08:00
|
|
|
dev.virt_xml_setup = True
|
|
|
|
|
|
|
|
|
|
|
|
def define_changes(conn, inactive_xmlobj, devs, action, confirm):
|
2014-01-26 08:51:56 +08:00
|
|
|
if confirm:
|
|
|
|
if not prompt_yes_or_no(
|
2017-09-20 15:36:27 +08:00
|
|
|
_("Define '%s' with the changed XML?") % inactive_xmlobj.name):
|
2017-03-07 10:32:32 +08:00
|
|
|
return False
|
2014-01-26 08:51:56 +08:00
|
|
|
|
2014-01-26 10:08:11 +08:00
|
|
|
if action == "hotplug":
|
|
|
|
for dev in devs:
|
|
|
|
setup_device(dev)
|
|
|
|
|
2014-01-26 08:51:56 +08:00
|
|
|
conn.defineXML(inactive_xmlobj.get_xml_config())
|
2015-06-02 20:21:58 +08:00
|
|
|
print_stdout(_("Domain '%s' defined successfully.") % inactive_xmlobj.name)
|
2017-03-07 10:32:32 +08:00
|
|
|
return True
|
2014-01-26 08:51:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
def update_changes(domain, devs, action, confirm):
|
|
|
|
for dev in devs:
|
|
|
|
xml = dev.get_xml_config()
|
|
|
|
|
|
|
|
if confirm:
|
2014-09-18 00:20:58 +08:00
|
|
|
if action == "hotplug":
|
|
|
|
prep = "to"
|
|
|
|
elif action == "hotunplug":
|
|
|
|
prep = "from"
|
|
|
|
else:
|
|
|
|
prep = "for"
|
|
|
|
|
|
|
|
msg = ("%s\n\n%s this device %s guest '%s'?" %
|
|
|
|
(xml, action.capitalize(), prep, domain.name()))
|
2014-01-26 08:51:56 +08:00
|
|
|
if not prompt_yes_or_no(msg):
|
|
|
|
continue
|
|
|
|
|
2014-01-26 10:08:11 +08:00
|
|
|
if action == "hotplug":
|
|
|
|
setup_device(dev)
|
|
|
|
|
2014-01-26 08:51:56 +08:00
|
|
|
try:
|
|
|
|
if action == "hotplug":
|
|
|
|
domain.attachDeviceFlags(xml, libvirt.VIR_DOMAIN_AFFECT_LIVE)
|
|
|
|
elif action == "hotunplug":
|
|
|
|
domain.detachDeviceFlags(xml, libvirt.VIR_DOMAIN_AFFECT_LIVE)
|
|
|
|
elif action == "update":
|
|
|
|
domain.updateDeviceFlags(xml, libvirt.VIR_DOMAIN_AFFECT_LIVE)
|
2017-05-06 00:47:21 +08:00
|
|
|
except libvirt.libvirtError as e:
|
2014-01-26 08:51:56 +08:00
|
|
|
fail(_("Error attempting device %s: %s") % (action, e))
|
|
|
|
|
|
|
|
print_stdout(_("Device %s successful.") % action)
|
2014-09-18 00:20:58 +08:00
|
|
|
if confirm:
|
|
|
|
print_stdout("")
|
2014-01-26 06:06:31 +08:00
|
|
|
|
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
def prepare_changes(xmlobj, options, parserclass):
|
2015-07-02 20:09:46 +08:00
|
|
|
origxml = xmlobj.get_xml_config()
|
|
|
|
|
|
|
|
if options.edit != -1:
|
2016-06-14 19:37:21 +08:00
|
|
|
devs = action_edit(xmlobj, options, parserclass)
|
2015-07-02 20:09:46 +08:00
|
|
|
action = "update"
|
|
|
|
|
|
|
|
elif options.add_device:
|
2016-06-14 19:37:21 +08:00
|
|
|
devs = action_add_device(xmlobj, options, parserclass)
|
2015-07-02 20:09:46 +08:00
|
|
|
action = "hotplug"
|
|
|
|
|
|
|
|
elif options.remove_device:
|
2016-06-14 19:37:21 +08:00
|
|
|
devs = action_remove_device(xmlobj, options, parserclass)
|
2015-07-02 20:09:46 +08:00
|
|
|
action = "hotunplug"
|
|
|
|
|
|
|
|
newxml = xmlobj.get_xml_config()
|
|
|
|
diff = get_diff(origxml, newxml)
|
|
|
|
|
|
|
|
if options.print_diff:
|
|
|
|
if diff:
|
|
|
|
print_stdout(diff)
|
|
|
|
elif options.print_xml:
|
|
|
|
print_stdout(newxml)
|
|
|
|
|
|
|
|
return devs, action
|
|
|
|
|
|
|
|
|
2014-01-19 23:37:14 +08:00
|
|
|
#######################
|
|
|
|
# CLI option handling #
|
|
|
|
#######################
|
|
|
|
|
|
|
|
def parse_args():
|
|
|
|
parser = cli.setupParser(
|
|
|
|
"%(prog)s [options]",
|
|
|
|
_("Edit libvirt XML using command line options."),
|
|
|
|
introspection_epilog=True)
|
|
|
|
|
2014-02-12 22:57:40 +08:00
|
|
|
cli.add_connect_option(parser, "virt-xml")
|
2014-01-19 23:37:14 +08:00
|
|
|
|
2014-01-26 08:51:56 +08:00
|
|
|
parser.add_argument("domain", nargs='?',
|
2014-01-26 07:16:16 +08:00
|
|
|
help=_("Domain name, id, or uuid"))
|
2014-01-26 08:51:56 +08:00
|
|
|
|
2014-01-27 01:25:18 +08:00
|
|
|
actg = parser.add_argument_group(_("XML actions"))
|
2014-01-19 23:37:14 +08:00
|
|
|
actg.add_argument("--edit", nargs='?', default=-1,
|
2014-01-26 06:06:31 +08:00
|
|
|
help=_("Edit VM XML. Examples:\n"
|
|
|
|
"--edit --disk ... (edit first disk device)\n"
|
|
|
|
"--edit 2 --disk ... (edit second disk device)\n"
|
|
|
|
"--edit all --disk ... (edit all disk devices)\n"
|
|
|
|
"--edit target=hda --disk ... (edit disk 'hda')\n"))
|
|
|
|
actg.add_argument("--remove-device", action="store_true",
|
|
|
|
help=_("Remove specified device. Examples:\n"
|
|
|
|
"--remove-device --disk 1 (remove first disk)\n"
|
|
|
|
"--remove-device --disk all (remove all disks)\n"
|
|
|
|
"--remove-device --disk /some/path"))
|
|
|
|
actg.add_argument("--add-device", action="store_true",
|
|
|
|
help=_("Add specified device. Example:\n"
|
|
|
|
"--add-device --disk ..."))
|
2014-01-26 09:14:42 +08:00
|
|
|
actg.add_argument("--build-xml", action="store_true",
|
|
|
|
help=_("Just output the built device XML, no domain required."))
|
2014-01-27 01:25:18 +08:00
|
|
|
|
|
|
|
outg = parser.add_argument_group(_("Output options"))
|
|
|
|
outg.add_argument("--update", action="store_true",
|
2014-01-26 08:51:56 +08:00
|
|
|
help=_("Apply changes to the running VM.\n"
|
|
|
|
"With --add-device, this is a hotplug operation.\n"
|
|
|
|
"With --remove-device, this is a hotunplug operation.\n"
|
|
|
|
"With --edit, this is an update device operation."))
|
2014-01-27 01:25:18 +08:00
|
|
|
outg.add_argument("--define", action="store_true",
|
2014-01-26 08:51:56 +08:00
|
|
|
help=_("Force defining the domain. Only required if a --print "
|
|
|
|
"option was specified."))
|
2014-01-27 01:25:18 +08:00
|
|
|
outg.add_argument("--print-diff", action="store_true",
|
2014-01-26 08:51:56 +08:00
|
|
|
help=_("Only print the requested change, in diff format"))
|
2014-01-27 01:25:18 +08:00
|
|
|
outg.add_argument("--print-xml", action="store_true",
|
2014-01-26 08:51:56 +08:00
|
|
|
help=_("Only print the requested change, in full XML format"))
|
2014-01-27 01:25:18 +08:00
|
|
|
outg.add_argument("--confirm", action="store_true",
|
2014-01-26 08:51:56 +08:00
|
|
|
help=_("Require confirmation before saving any results."))
|
2014-01-19 23:37:14 +08:00
|
|
|
|
|
|
|
g = parser.add_argument_group(_("XML options"))
|
2014-01-27 01:25:18 +08:00
|
|
|
cli.add_disk_option(g, editexample=True)
|
2014-01-19 23:37:14 +08:00
|
|
|
cli.add_net_option(g)
|
|
|
|
cli.add_gfx_option(g)
|
2014-01-25 09:03:30 +08:00
|
|
|
cli.add_metadata_option(g)
|
2014-01-25 07:56:59 +08:00
|
|
|
cli.add_memory_option(g)
|
2014-01-26 09:20:55 +08:00
|
|
|
cli.vcpu_cli_options(g, editexample=True)
|
2014-01-19 23:37:14 +08:00
|
|
|
cli.add_guest_xml_options(g)
|
2014-02-11 07:13:42 +08:00
|
|
|
cli.add_boot_options(g)
|
2014-01-19 23:37:14 +08:00
|
|
|
cli.add_device_options(g)
|
|
|
|
|
|
|
|
misc = parser.add_argument_group(_("Miscellaneous Options"))
|
|
|
|
cli.add_misc_options(misc, prompt=False, printxml=False, dryrun=False)
|
|
|
|
|
|
|
|
return parser.parse_args()
|
|
|
|
|
|
|
|
|
|
|
|
###################
|
|
|
|
# main() handling #
|
|
|
|
###################
|
|
|
|
|
|
|
|
def main(conn=None):
|
|
|
|
cli.earlyLogging()
|
|
|
|
options = parse_args()
|
|
|
|
|
2014-01-26 09:14:42 +08:00
|
|
|
if (options.confirm or options.print_xml or
|
|
|
|
options.print_diff or options.build_xml):
|
2014-01-19 23:37:14 +08:00
|
|
|
options.quiet = False
|
|
|
|
cli.setupLogging("virt-xml", options.debug, options.quiet)
|
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
if cli.check_option_introspection(options):
|
2014-01-19 23:37:14 +08:00
|
|
|
return 0
|
|
|
|
|
2014-01-26 07:16:16 +08:00
|
|
|
options.stdinxml = None
|
2014-01-26 09:14:42 +08:00
|
|
|
if not options.domain and not options.build_xml:
|
|
|
|
if not sys.stdin.closed and not sys.stdin.isatty():
|
|
|
|
if options.confirm:
|
|
|
|
fail(_("Can't use --confirm with stdin input."))
|
|
|
|
if options.update:
|
|
|
|
fail(_("Can't use --update with stdin input."))
|
|
|
|
options.stdinxml = sys.stdin.read()
|
|
|
|
else:
|
|
|
|
fail(_("A domain must be specified"))
|
2014-01-26 07:16:16 +08:00
|
|
|
|
|
|
|
if not options.print_xml and not options.print_diff:
|
|
|
|
if options.stdinxml:
|
|
|
|
if not options.define:
|
|
|
|
options.print_xml = True
|
|
|
|
else:
|
|
|
|
options.define = True
|
|
|
|
if options.confirm and not options.print_xml:
|
|
|
|
options.print_diff = True
|
|
|
|
|
2014-01-19 23:37:14 +08:00
|
|
|
if conn is None:
|
|
|
|
conn = cli.getConnection(options.connect)
|
|
|
|
|
2014-01-26 09:14:42 +08:00
|
|
|
domain = None
|
|
|
|
active_xmlobj = None
|
|
|
|
inactive_xmlobj = None
|
2014-01-26 07:16:16 +08:00
|
|
|
if options.domain:
|
|
|
|
domain, inactive_xmlobj, active_xmlobj = get_domain_and_guest(
|
|
|
|
conn, options.domain)
|
2014-01-26 09:14:42 +08:00
|
|
|
elif not options.build_xml:
|
2014-01-26 07:16:16 +08:00
|
|
|
inactive_xmlobj = _make_guest(conn, options.stdinxml)
|
|
|
|
|
2014-01-26 06:06:31 +08:00
|
|
|
check_action_collision(options)
|
2016-06-14 19:37:21 +08:00
|
|
|
parserclass = check_xmlopt_collision(options)
|
2014-01-26 06:06:31 +08:00
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
if options.update and not parserclass.objclass:
|
2014-01-26 08:51:56 +08:00
|
|
|
fail(_("Don't know how to --update for --%s") %
|
2016-06-14 19:37:21 +08:00
|
|
|
(parserclass.cli_arg_name))
|
2014-01-26 08:51:56 +08:00
|
|
|
|
2015-07-02 20:09:46 +08:00
|
|
|
if options.build_xml:
|
2016-06-14 19:37:21 +08:00
|
|
|
devs = action_build_xml(conn, options, parserclass)
|
|
|
|
for dev in devs:
|
2017-06-15 20:18:26 +08:00
|
|
|
# pylint: disable=no-member
|
2014-01-26 09:14:42 +08:00
|
|
|
print_stdout(dev.get_xml_config())
|
|
|
|
return 0
|
|
|
|
|
2014-01-26 08:51:56 +08:00
|
|
|
if options.update and active_xmlobj:
|
2016-06-14 19:37:21 +08:00
|
|
|
devs, action = prepare_changes(active_xmlobj, options, parserclass)
|
2014-01-26 08:51:56 +08:00
|
|
|
update_changes(domain, devs, action, options.confirm)
|
|
|
|
if options.define:
|
2016-06-14 19:37:21 +08:00
|
|
|
devs, action = prepare_changes(inactive_xmlobj, options, parserclass)
|
2017-03-07 10:32:32 +08:00
|
|
|
applied = define_changes(conn, inactive_xmlobj,
|
|
|
|
devs, action, options.confirm)
|
|
|
|
if not options.update and active_xmlobj and applied:
|
2014-01-26 08:51:56 +08:00
|
|
|
print_stdout(
|
|
|
|
_("Changes will take effect after the next domain shutdown."))
|
2015-07-02 20:09:46 +08:00
|
|
|
if not options.update and not options.define:
|
2016-06-14 19:37:21 +08:00
|
|
|
prepare_changes(inactive_xmlobj, options, parserclass)
|
2014-01-26 06:18:32 +08:00
|
|
|
|
2014-01-19 23:37:14 +08:00
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
try:
|
|
|
|
sys.exit(main())
|
2017-05-06 00:47:21 +08:00
|
|
|
except SystemExit as sys_e:
|
2014-01-19 23:37:14 +08:00
|
|
|
sys.exit(sys_e.code)
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
logging.debug("", exc_info=True)
|
|
|
|
print_stderr(_("Aborted at user request"))
|
2017-05-06 00:47:21 +08:00
|
|
|
except Exception as main_e:
|
2014-01-19 23:37:14 +08:00
|
|
|
fail(main_e)
|