1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
#!/usr/bin/python -tt
#
# Create a virtual machine from an XML image description
#
# Copyright 2007 Red Hat, Inc.
# David Lutterkort <dlutter@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 sys
import logging
import urlgrabber.progress as progress
import virtinst
import virtinst.ImageParser
import virtinst.CapabilitiesParser
import virtinst.cli as cli
from virtinst.cli import fail
import optparse
from optparse import OptionGroup
cli.setupGettext()
### General input gathering functions
def get_networks(domain, macs, bridges, networks, guest):
nnics = domain.interface
net_kwargs = cli.digest_networks(guest.conn, macs, bridges, networks,
nnics)
if len(net_kwargs) > nnics:
logging.warn(_("Warning: more networks were provided [%i] then nics "
"required [%i]. All extras are ignored.") %
(len(net_kwargs), nnics))
net_kwargs = net_kwargs[0:nnics]
elif nnics > len(net_kwargs):
fail(_("The image requires %i network interface.") % nnics)
map(lambda kwargs: cli.get_network(kwargs, guest), net_kwargs)
def get_graphics(domain, vnc, vncport, vnclisten, nographics, sdl, keymap,
guest):
if not domain.graphics:
guest.graphics_dev = None
return
if not (vnc or sdl or nographics):
vnc = True
cli.get_graphics(vnc, vncport, vnclisten, nographics, sdl, keymap, [],
guest)
### Option parsing
def parse_args():
usage = "%prog [options] image.xml"
parser = cli.setupParser(usage)
parser.add_option("", "--connect", type="string", dest="connect",
action="callback", callback=cli.check_before_store,
help=_("Connect to hypervisor with URI"),
default=None)
geng = OptionGroup(parser, _("General Options"))
geng.add_option("-n", "--name", type="string", dest="name",
action="callback", callback=cli.check_before_store,
help=_("Name of the guest instance"))
geng.add_option("-r", "--ram", type="int", dest="memory",
help=_("Memory to allocate for guest instance in "
"megabytes"))
geng.add_option("-u", "--uuid", type="string", dest="uuid",
action="callback", callback=cli.check_before_store,
help=_("UUID for the guest."))
geng.add_option("", "--vcpus", type="int", dest="vcpus",
help=_("Number of vcpus to configure for your guest"))
geng.add_option("", "--check-cpu", action="store_true", dest="check_cpu",
help=_("Check that vcpus do not exceed physical CPUs "
"and warn if they do."))
geng.add_option("", "--cpuset", type="string", dest="cpuset",
action="callback", callback=cli.check_before_store,
help=_("Set which physical CPUs Domain can use."))
geng.add_option("", "--os-type", type="string", dest="distro_type",
action="callback", callback=cli.check_before_store,
help=_("The OS type being installed, e.g. "
"'linux', 'unix', 'windows'"))
geng.add_option("", "--os-variant", type="string", dest="distro_variant",
action="callback", callback=cli.check_before_store,
help=_("The OS variant being installed, "
"e.g. 'fedora6', 'rhel5', 'solaris10', 'win2k'"))
parser.add_option_group(geng)
fulg = OptionGroup(parser, _("Full Virtualization specific options"))
fulg.add_option("", "--noapic", action="store_true", dest="noapic",
default=False,
help=_("Disables APIC for fully virtualized guest"))
fulg.add_option("", "--noacpi", action="store_true", dest="noacpi",
default=False,
help=_("Disables ACPI for fully virtualized guest"))
parser.add_option_group(fulg)
netg = OptionGroup(parser, _("Networking Configuration"))
netg.add_option("-w", "--network", type="string", dest="network",
action="callback", callback=cli.check_before_append,
help=_("Specify a network interface. Ex:\n"
"--network bridge=mybr0\n"
"--network network=libvirt_network_name\n"
"--network network=mynet,model=e1000,mac=00:11..."))
# Deprecated net options
netg.add_option("-b", "--bridge", type="string", dest="bridge",
action="callback", callback=cli.check_before_append,
help=optparse.SUPPRESS_HELP)
netg.add_option("-m", "--mac", type="string", dest="mac",
action="callback", callback=cli.check_before_append,
help=optparse.SUPPRESS_HELP)
parser.add_option_group(netg)
vncg = cli.graphics_option_group(parser)
parser.add_option_group(vncg)
misc = OptionGroup(parser, _("Miscellaneous Options"))
misc.add_option("-p", "--print", action="store_true", dest="print_only",
help=_("Print the libvirt XML, but do not start the "
"domain"))
misc.add_option("", "--boot", type="int", dest="boot",
help=_("The zero-based index of the boot record to use"))
misc.add_option("", "--replace",action="store_true", dest="replace",
help=_("Overwrite, or destroy, an existing image with "
"the same name"),
default=False)
misc.add_option("","--skip-checksum", action="store_true",
dest="skipchecksum",
help=_("Skip disk checksum verification process"))
misc.add_option("-d", "--debug", action="store_true", dest="debug",
help=_("Print debugging information"))
misc.add_option("", "--prompt", action="store_true", dest="prompt",
help=optparse.SUPPRESS_HELP, default=False)
misc.add_option("", "--force", action="store_true", dest="force",
help=_("Do not prompt for input. Answers yes where "
"applicable, terminates for all other prompts"),
default=False)
parser.add_option_group(misc)
(options,args) = parser.parse_args()
if len(args) < 1:
parser.error(_("You need to provide an image XML descriptor"))
options.image = args[0]
return options
def main():
# Basic setup
options = parse_args()
cli.setupLogging("virt-image", options.debug)
cli.set_prompt(options.prompt)
cli.set_force(options.force)
conn = cli.getConnection(options.connect)
try:
image = virtinst.ImageParser.parse_file(options.image)
except virtinst.ImageParser.ParserException, msg:
fail( "%s '%s': %s" % (_("Cannot parse"), options.image, msg))
if options.boot is not None:
nboots = len(image.domain.boots)
if options.boot < 0 or options.boot >= nboots:
fail(_("The index for --boot must be between 0 and %d") %
(nboots - 1))
# Build the Installer instance
installer = virtinst.ImageInstaller(boot_index = options.boot,
image = image,
conn = conn)
# Get Guest instance from installer parameters.
guest = installer.guest_from_installer()
# now let's get some of the common questions out of the way
guest.replace = options.replace
cli.get_name(options.name, guest, image.name)
cli.get_memory(options.memory, guest, image.domain.memory)
cli.get_uuid(options.uuid, guest)
cli.get_vcpus(options.vcpus, options.check_cpu,
guest, conn, image.domain.vcpu)
# For now, we only allow one NIC
get_networks(image.domain, options.mac, options.bridge,
options.network, guest)
get_graphics(image.domain, options.vnc, options.vncport, options.vnclisten,
options.nographics, options.sdl, options.keymap, guest)
cli.set_os_variant(guest, options.distro_type, options.distro_variant)
if installer.is_hvm():
if options.noacpi:
guest.features["acpi"] = False
if options.noapic:
guest.features["apic"] = False
if not options.skipchecksum:
meter = progress.TextMeter()
for disk in image.storage.values():
disk.check_disk_signature(meter=meter)
progresscb = progress.TextMeter()
# we've got everything -- try to start the install
if options.print_only:
# FIXME: Ugly remix of Guest.start_install/_do_install
# Should be exposed by Guest in a different way
meter = progress.BaseMeter()
guest.validate_parms()
guest._prepare_install(meter)
guest._create_devices(meter)
print guest.get_config_xml()
else:
try:
print _("\n\nCreating guest %s...") % guest.name
dom = guest.start_install(None, progresscb)
if dom is None:
print _("Guest creation failed")
sys.exit(1)
except RuntimeError, e:
fail(e)
except Exception, e:
print _("Domain creation may not have been\n"
"successful. If it was, you can restart your domain\n"
"by running 'virsh start %s'; otherwise, please\n"
"restart your installation.") %(guest.name,)
raise
if __name__ == "__main__":
try:
main()
except SystemExit, sys_e:
sys.exit(sys_e.code)
except KeyboardInterrupt:
print >> sys.stderr, _("Installation aborted at user request")
except Exception, main_e:
logging.exception(main_e)
sys.exit(1)
|