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
288
289
290
291
292
293
294
295
296
297
298
|
# Copyright (C) 2013 Red Hat, Inc.
#
# 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.
#
from distutils.spawn import find_executable
import logging
import os
import re
import shutil
import subprocess
import tempfile
from virtinst import StoragePool
class parser_class(object):
"""
Base class for particular config file format definitions of
a VM instance.
Warning: this interface is not (yet) considered stable and may
change at will.
"""
@staticmethod
def identify_file(input_file):
"""
Return True if the given file is of this format.
"""
raise NotImplementedError
@staticmethod
def export_libvirt(conn, input_file):
"""
Import a configuration file and turn it into a libvirt Guest object
"""
raise NotImplementedError
def _get_parsers():
from .vmx import vmx_parser
from .ovf import ovf_parser
return [vmx_parser, ovf_parser]
def _is_test():
return bool(os.getenv("VIRTINST_TEST_SUITE"))
def _find_parser_by_name(input_name):
"""
Return the parser of the given name.
"""
parsers = [p for p in _get_parsers() if p.name == input_name]
if len(parsers):
return parsers[0]
raise RuntimeError(_("No parser found for type '%s'") % input_name)
def _find_parser_by_file(input_file):
"""
Return the parser that is capable of comprehending the given file.
"""
for p in _get_parsers():
if p.identify_file(input_file):
return p
raise RuntimeError(_("Don't know how to parse file %s") % input_file)
def _run_cmd(cmd):
"""
Return the exit status and output to stdout and stderr.
"""
logging.debug("Running command: %s", " ".join(cmd))
proc = subprocess.Popen(cmd, stderr=subprocess.PIPE,
stdout=subprocess.PIPE,
close_fds=True)
stdout, stderr = proc.communicate()
ret = proc.wait()
logging.debug("stdout=%s", stdout)
logging.debug("stderr=%s", stderr)
if ret == 0:
return
out = stdout
if stderr:
if out:
out += "\n"
out += stderr
raise RuntimeError("%s: failed with exit status %d: %s" %
(" ".join(cmd), ret, out))
def _find_input(input_file, parser, print_cb):
"""
Given the input file, determine if its a directory, archive, etc
"""
force_clean = []
try:
ext = os.path.splitext(input_file)[1]
tempdir = None
if ext and ext[1:] in ["zip", "gz", "ova",
"tar", "bz2", "bzip2", "7z", "xz"]:
basedir = "/var/tmp"
if _is_test():
tempdir = os.path.join(basedir, "virt-convert-tmp")
else:
tempdir = tempfile.mkdtemp(
prefix="virt-convert-tmp", dir=basedir)
base = os.path.basename(input_file)
# check if 'unar' command existed.
if not find_executable("unar"):
raise RuntimeError(_("%s appears to be an archive, "
"but 'unar' is not installed. "
"Please either install 'unar', or extract the archive "
"yourself and point virt-convert at "
"the extracted directory.") % base)
cmd = ["unar", "-o", tempdir, base]
print_cb(_("%s appears to be an archive, running: %s") %
(base, " ".join(cmd)))
cmd[-1] = input_file
_run_cmd(cmd)
force_clean.append(tempdir)
input_file = tempdir
if not os.path.isdir(input_file):
if not parser:
parser = _find_parser_by_file(input_file)
return input_file, parser, force_clean
parsers = parser and [parser] or _get_parsers()
for root, ignore, files in os.walk(input_file):
for p in parsers:
for f in [f for f in files if f.endswith(p.suffix)]:
path = os.path.join(root, f)
if p.identify_file(path):
return path, p, force_clean
raise RuntimeError("Could not find parser for file %s" % input_file)
except:
for f in force_clean:
shutil.rmtree(f)
raise
class VirtConverter(object):
"""
Public interface for actually performing the conversion
"""
def __init__(self, conn, input_file, print_cb=-1, input_name=None):
self.conn = conn
self._err_clean = []
self._force_clean = []
if print_cb == -1 or print_cb is None:
def cb(msg):
if print_cb == -1:
print msg
self.print_cb = cb
else:
self.print_cb = print_cb
parser = None
if input_name:
parser = _find_parser_by_name(input_name)
logging.debug("converter __init__ with input=%s parser=%s",
input_file, parser)
(self._input_file,
self.parser,
self._force_clean) = _find_input(input_file, parser, self.print_cb)
self._top_dir = os.path.dirname(os.path.abspath(self._input_file))
logging.debug("converter not input_file=%s parser=%s",
self._input_file, self.parser)
cwd = os.getcwd()
try:
os.chdir(self._top_dir)
self._guest = self.parser.export_libvirt(self.conn,
self._input_file)
self._guest.add_default_devices()
finally:
os.chdir(cwd)
def __del__(self):
for f in self._force_clean:
shutil.rmtree(f)
def get_guest(self):
return self._guest
def cleanup(self):
"""
Remove any generated output.
"""
for path in self._err_clean:
if os.path.isfile(path):
os.remove(path)
if os.path.isdir(path):
shutil.rmtree(path)
def _copy_file(self, absin, absout, dry):
self.print_cb("Copying %s to %s" % (os.path.basename(absin), absout))
if not dry:
shutil.copy(absin, absout)
def _qemu_convert(self, absin, absout, disk_format, dry):
"""
Use qemu-img to convert the given disk. Note that at least some
version of qemu-img cannot handle multi-file VMDKs, so this can
easily go wrong.
Gentoo, Debian, and Ubuntu (potentially others) install kvm-img
with kvm and qemu-img with qemu. Both would work.
"""
binnames = ["qemu-img", "kvm-img"]
if _is_test():
executable = "/usr/bin/qemu-img"
else:
for binname in binnames:
executable = find_executable(binname)
if executable:
break
if executable is None:
raise RuntimeError(_("None of %s tools found.") % binnames)
base = os.path.basename(absin)
cmd = [executable, "convert", "-O", disk_format, base, absout]
self.print_cb("Running %s" % " ".join(cmd))
if dry:
return
cmd[4] = absin
_run_cmd(cmd)
def convert_disks(self, disk_format, destdir=None, dry=False):
"""
Convert a disk into the requested format if possible, in the
given output directory. Raises RuntimeError or other failures.
"""
if disk_format == "none":
disk_format = None
if destdir is None:
destdir = StoragePool.get_default_path(self.conn, build=not dry)
guest = self.get_guest()
for disk in guest.get_devices("disk"):
if disk.device != "disk":
continue
if disk_format and disk.driver_type == disk_format:
logging.debug("path=%s is already in requested format=%s",
disk.path, disk_format)
disk_format = None
basepath = os.path.splitext(os.path.basename(disk.path))[0]
newpath = re.sub(r'\s', '_', basepath)
if disk_format:
newpath += ("." + disk_format)
newpath = os.path.join(destdir, newpath)
if os.path.exists(newpath):
raise RuntimeError(_("New path name '%s' already exists") %
newpath)
if not disk_format or disk_format == "none":
self._copy_file(disk.path, newpath, dry)
else:
self._qemu_convert(disk.path, newpath, disk_format, dry)
disk.driver_type = disk_format
disk.path = newpath
self._err_clean.append(newpath)
|