/usr/bin/vmware2libvirt is in virt-goodies 0.4-2.1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #! /usr/bin/env python
#
# vmware2libvirt: migrate a vmware image to libvirt
# Author: Jamie Strandboge <jamie@canonical.com>
#
# Copyright (C) 2008 Canonical Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3,
# as published by the Free Software Foundation.
#
# 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, see <http://www.gnu.org/licenses/>.
#
from optparse import OptionParser
import os
import re
import subprocess
import sys
version = "0.1"
programName = "vmware2libvirt"
class V2LError(Exception):
'''This class represents vmware2libvirt exceptions'''
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)
def warn(msg):
'''Print warning message'''
print >> sys.stderr, "WARN: " + msg
def error(msg):
'''Print error message and exit'''
print >> sys.stderr, "ERROR: " + msg
sys.exit(1)
def cmd(command):
'''Try to execute the given command.'''
try:
sp = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
except OSError, e:
return [127, str(e)]
out = sp.communicate()[0]
return [sp.returncode,out]
def get_vmx_value(vmx, key):
'''Return value from a vmx key'''
value = ""
pat = re.compile(r'^' + key + '\s+=\s+')
for line in vmx:
if pat.search(line):
# extract value without quotes
value = pat.sub('', line)
value = value.strip()
value = value[1:-1]
if value == "":
raise V2LError("Bad value for '" + key + "'")
return value
def get_arch(vmx):
'''Detect what architecture the vmware image is'''
arch = "i686"
# very crude
guestOS = get_vmx_value(vmx, "guestOS")
if re.search(r'-64', guestOS):
arch = "x86_64"
return arch
def get_memory(vmx):
'''Detect how much memory the vmware image uses'''
memsize = get_vmx_value(vmx, "memsize")
memory = int(memsize) * 1024
return str(memory)
def get_vcpunr(vmx):
'''Detect number of vcpus'''
try:
vcpunr = get_vmx_value(vmx, "numvcpus")
except:
return '1'
return vcpunr
def get_new_uuid():
'''Generate a new uuid'''
(rc, out) = cmd(['uuidgen'])
if rc != 0:
raise V2LError("'uuidgen' exited with error: " + out)
return out.strip()
def get_disk(dir, vmx):
'''Detect the disk vmware image uses'''
scsi_disk = ""
ide_disk = ""
disk = ""
try:
scsi_disk = get_vmx_value(vmx, "scsi0:0.fileName")
except:
pass
try:
ide_disk = get_vmx_value(vmx, "ide0:0.fileName")
except:
try:
ide_disk = get_vmx_value(vmx, "ide0:0.filename")
except:
pass
if scsi_disk != "" and ide_disk != "":
# found two disks, default to scsi for now
if re.search(r'.vmdk$', scsi_disk):
disk = scsi_disk
elif re.search(r'.vmdk$', ide_disk):
disk = ide_disk
else:
raise V2LError("Couldn't find vmdk disk")
elif scsi_disk != "":
disk = scsi_disk
elif ide_disk != "":
disk = ide_disk
else:
raise V2LError("Couldn't find any disks")
disk = os.path.join(dir, disk)
if not os.path.exists(disk):
warn("'" + disk + "' does not exist")
return disk
def get_mac(vmx, index):
'''Detect the MAC address vmware image uses given network card index'''
mac = get_vmx_value(vmx, "ethernet%d.generatedAddress" %index)
return mac
def get_network(vmx, bridge, netmodel):
'''Detect up to 4 network cards and provide libvirt xml blocks for all of them'''
result = ''
networktype = 'network'
networksource = "network='default'"
if bridge:
networktype = 'bridge'
networksource = "bridge='%s'" %bridge
if netmodel:
netmodel = "\n <model type='%s'/>" %netmodel
for index in range(4):
try:
mac = get_mac(vmx, index)
except V2LError:
continue
result += '''
<interface type=\'''' + networktype + '''\'>
<mac address=\'''' + mac + '''\'/>
<source ''' + networksource + '''/>''' + netmodel + '''
</interface>'''
return result
def process_args():
'''Process command line arguments'''
usage = "%prog [options] -f FILE"
description = '''Convert a vmware vmx file to a libvirt xml file'''
parser = OptionParser(usage=usage, version="%prog: " + version, \
description=description)
parser.add_option("-q", "--qemu", action="store_true", dest="use_qemu", \
help="use qemu instead of kvm")
parser.add_option("-b", "--bridge", dest="bridge", \
help="use bridged network instead of default network", metavar='INTERFACE')
parser.add_option("-d", "--diskbus", \
help="specify which bus to use for disk, i.e. virtio", metavar='bustype')
parser.add_option("-n", "--netmodel", \
help="specify which network card model to use for network cards", metavar='netmodel')
parser.add_option("-f", "--file", dest="vmxfile", \
help="vmware vmx file to migrate", metavar="FILE")
(options, args) = parser.parse_args()
if not options.vmxfile:
parser.print_help()
sys.exit(1)
if not os.path.exists(options.vmxfile):
error("'" + options.vmxfile + "' does not exist")
return options
# Execution starts here
try:
opts = process_args()
except:
raise
try:
orig = open(opts.vmxfile, 'r')
except OSError, e:
raise V2LError(e.value)
except Exception:
raise
vmx = orig.readlines()
domain = "kvm"
emulator = "kvm"
if opts.use_qemu:
domain = "qemu"
emulator = "qemu"
bridge = opts.bridge
diskbus = ''
if opts.diskbus:
diskbus = "bus='%s'" %opts.diskbus
netmodel = ''
if opts.netmodel:
netmodel = opts.netmodel
dir = os.path.abspath(os.path.dirname(opts.vmxfile))
try:
disk = get_disk(dir, vmx)
except:
error
libvirt_xml = '''<domain type=\'''' + domain + '''\'>
<name>''' + get_vmx_value(vmx, "displayName") + '''</name>
<uuid>''' + get_new_uuid() + '''</uuid>
<memory>''' + get_memory(vmx) + '''</memory>
<currentMemory>''' + get_memory(vmx) + '''</currentMemory>
<vcpu>''' + get_vcpunr(vmx) + '''</vcpu>
<os>
<type arch=\'''' + get_arch(vmx) + '''\' machine='pc'>hvm</type>
<boot dev='hd'/>
</os>
<features>
<acpi/>
</features>
<clock offset='utc'/>
<on_poweroff>destroy</on_poweroff>
<on_reboot>restart</on_reboot>
<on_crash>destroy</on_crash>
<devices>
<emulator>/usr/bin/''' + emulator + '''</emulator>
<disk type='file' device='disk'>
<source file=\'''' + disk + '''\'/>
<target dev='hda\' ''' + diskbus + '''/>
</disk>''' + get_network(vmx, bridge, netmodel) + '''
<input type='mouse' bus='ps2'/>
<graphics type='vnc' port='-1' listen='127.0.0.1'/>
</devices>
</domain>'''
print libvirt_xml
orig.close()
|