summaryrefslogtreecommitdiff
path: root/virt-convert
blob: bdc013419c327503c530ec479423e50abaad586e (plain)
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
#!/usr/bin/python
#
# Copyright 2008, 2013  Red Hat, Inc.
# Joey Boggs <jboggs@redhat.com>
#
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# 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 argparse
import errno
import logging
import os
import sys

from virtinst import cli
from virtinst.cli import fail, print_stdout, print_stderr
import virtconv.formats as formats
import virtconv.vmcfg as vmcfg
import virtconv.diskcfg as diskcfg


def get_default_arch():
    arch = os.uname()[4]
    if arch == "x86_64":
        return "x86_64"
    return "i686"


def parse_args():
    """Parse and verify command line."""
    parser = cli.setupParser(
        "%(prog)s inputdir|input.vmx [outputdir|output.xml] [options]",
        _("Convert from virtual machine descriptor format to another. The "
          "VM contents are not altered."))

    parser.add_argument("input", metavar="inputconfig", nargs=1,
                        help=_("Conversion input: flat file or directory."))
    def add_output_arg(p):
        p.add_argument("output", metavar="outputconfig", nargs='?',
                        help=_("Conversion destination"))
    add_output_arg(parser)

    cong = parser.add_argument_group("Conversion Options")
    cong.add_argument("-i", "--input-format",
                    help=_("Input format, e.g. 'vmx'"))
    cong.add_argument("-o", "--output-format",
                    default="virt-image",
                    help=_("Output format, e.g. 'virt-image'"))
    cong.add_argument("-D", "--disk-format",
                    help=_("Output disk format"))

    virg = parser.add_argument_group("Virtualization Type Options")
    virg.add_argument("-v", "--hvm", action="store_true", dest="fullvirt",
                    help=_("This guest should be a fully virtualized guest"))
    virg.add_argument("-p", "--paravirt", action="store_true", dest="paravirt",
                    help=_("This guest should be a paravirtualized guest"))

    cfgg = parser.add_argument_group("Guest Configuration Options")
    cfgg.add_argument("-a", "--arch",
                    default=get_default_arch(),
                    help=_("Machine Architecture Type (i686/x86_64/ppc)"))
    cli.add_distro_options(cfgg)
    cli.add_old_feature_options(cfgg)

    misc = parser.add_argument_group("Miscellaneous Options")
    cli.add_misc_options(misc, dryrun=True)

    options, leftovers = parser.parse_known_args()
    if options.input:
        options.input = options.input[0]

    # argparse does not allow interspersed positional arguments, which we
    # used to allow with optparse. All this crazyness is to keep old
    # cli working
    parser2 = argparse.ArgumentParser()
    add_output_arg(parser2)
    if not options.output:
        opt2, leftovers = parser2.parse_known_args(leftovers)
        options.output = opt2.output
    if leftovers:
        leftovers = sys.argv[:]
        if options.output in leftovers:
            leftovers.pop(leftovers.index(options.output))
        if options.input in leftovers:
            leftovers.pop(leftovers.index(options.input))
        parser.parse_args(leftovers)

    cli.setupLogging("virt-convert", options.debug, options.quiet)

    if (options.disk_format and
        options.disk_format not in diskcfg.disk_formats()):
        parser.error(_("Unknown output disk format \"%s\"") %
                     options.disk_format)

    if not options.output:
        options.output_file = None
        options.output_dir = None
        if os.path.isdir(options.input):
            options.output_dir = options.input
    elif os.path.isdir(options.output) or options.output.endswith("/"):
        options.output_file = None
        options.output_dir = options.output
    else:
        options.output_file = options.output
        options.output_dir = os.path.dirname(os.path.realpath(options.output))

    if options.output_format not in formats.formats():
        parser.error(_("Unknown output format \"%s\")" %
                     options.output_format))
    if options.output_format not in formats.output_formats():
        parser.error(_("No output handler for format \"%s\")"
            % options.output_format))

    if not os.access(options.input, os.R_OK):
        parser.error(_("Couldn't access input argument \"%s\"\n") % options.input)
        sys.exit(1)

    if not options.input_format:
        try:
            (options.input, options.input_format) = formats.find_input(options.input)
        except StandardError, e:
            parser.error(_("Couldn't determine input format for \"%s\": %s") %
                (options.input, e))
            sys.exit(1)

    if options.input_format not in formats.formats():
        parser.error(_("Unknown input format \"%s\")" % options.input_format))
    if options.input_format not in formats.input_formats():
        parser.error(_("No input handler for format \"%s\"")
            % options.input_format)

    if os.path.isdir(options.input):
        (options.input_file, ignore) = formats.find_input(options.input,
            options.input_format)
        options.input_dir = options.input
    else:
        options.input_file = options.input
        options.input_dir = os.path.dirname(os.path.realpath(options.input))

    return options


def cleanup(msg, options, vmdef, paths):
    """
    After failure, clean up anything we created.
    """
    logging.error(msg)
    if options.dry:
        return

    try:
        for disk in vmdef.disks.values():
            disk.cleanup()

        paths.reverse()
        for path in paths:
            if os.path.isdir(path):
                os.rmdir(path)
            elif os.path.isfile(path):
                os.remove(path)
    except OSError, e:
        fail(_("Couldn't clean up output directory \"%s\": %s") %
               (options.output_dir, e.strerror))

    sys.exit(1)


def main():
    cli.earlyLogging()
    options = parse_args()

    inp = formats.parser_by_name(options.input_format)
    outp = formats.parser_by_name(options.output_format)

    vmdef = None

    try:
        vmdef = inp.import_file(options.input_file)
    except IOError, e:
        fail(_("Couldn't import file \"%s\": %s") %
            (options.input_file, e.strerror))
    except Exception, e:
        fail(_("Couldn't import file \"%s\": %s") % (options.input_file, e))

    if options.paravirt:
        vmdef.type = vmcfg.VM_TYPE_PV
    else:
        vmdef.type = vmcfg.VM_TYPE_HVM

    vmdef.arch = options.arch
    cli.set_os_variant(vmdef, options.distro_type, options.distro_variant)
    vmdef.noapic = options.noapic
    vmdef.noacpi = options.noacpi

    clean = []

    unixname = vmdef.name.replace(" ", "-")

    if not options.output_dir:
        options.output_dir = unixname
    try:
        logging.debug("Creating directory %s", options.output_dir)
        if not options.dry:
            os.mkdir(options.output_dir)
        clean += [options.output_dir]
    except OSError, e:
        if (e.errno != errno.EEXIST):
            fail("Could not create directory %s: %s" %
                 (options.output_dir, e.strerror))

    if not options.output_file:
        options.output_file = os.path.join(options.output_dir,
           "%s%s" % (unixname, outp.suffix))

    logging.debug("input_file: %s", options.input_file)
    logging.debug("input_dir: %s", options.input_dir)
    logging.debug("output_file: %s", options.output_file)
    logging.debug("output_dir: %s", options.output_dir)

    print_stdout(_("Generating output in '%(format)s' format to %(dir)s/") %
        {"format": options.output_format, "dir": options.output_dir})

    try:
        for d in vmdef.disks.values():
            dformat = options.disk_format

            if not dformat:
                if options.output_format == "vmx":
                    dformat = "vmdk"
                else:
                    dformat = "raw"

            if d.path and dformat != "none":
                print_stdout(_("Converting disk '%(path)s' to type "
                               "%(format)s...") % {"path": d.path,
                                                   "format": dformat})

            if not options.dry:
                d.convert(options.input_dir, options.output_dir, dformat)

    except OSError, e:
        cleanup(_("Couldn't convert disks: %s") % e.strerror,
            options, vmdef, clean)
    except RuntimeError, e:
        cleanup(_("Couldn't convert disks: %s") % e, options, vmdef, clean)

    try:
        output = outp.export(vmdef)
        logging.debug("Output VM config:\n%s", output)

        if not options.dry:
            outfile = open(options.output_file, "w")
            outfile.writelines(output)
            outfile.close()

        clean += [options.output_file]
    except ValueError, e:
        cleanup(_("Couldn't export to file \"%s\": %s") %
            (options.output_file, e), options, vmdef, clean)

    print_stdout("Done.")
    return 0

if __name__ == "__main__":
    try:
        sys.exit(main())
    except SystemExit, sys_e:
        sys.exit(sys_e.code)
    except KeyboardInterrupt:
        print_stderr(_("Aborted at user request"))
    except Exception, main_e:
        fail(main_e)