vmx.c 127.3 KB
Newer Older
1
/*
2
 * vmx.c: VMware VMX parsing/formatting functions
3
 *
4
 * Copyright (C) 2010-2013 Red Hat, Inc.
5
 * Copyright (C) 2009-2010 Matthias Bolte <matthias.bolte@googlemail.com>
6 7 8 9 10 11 12 13 14 15 16 17
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24
 *
 */

#include <config.h>

25 26
#include <c-ctype.h>

27
#include "internal.h"
28
#include "virerror.h"
29
#include "virfile.h"
30
#include "virconf.h"
31
#include "viralloc.h"
32
#include "virlog.h"
33
#include "viruuid.h"
34
#include "vmx.h"
M
Martin Kletzander 已提交
35
#include "viruri.h"
36
#include "virstring.h"
37 38 39 40 41 42 43 44 45

/*

mapping:

domain-xml                        <=>   vmx


                                        config.version = "8"                    # essential
46 47
                                        virtualHW.version = "4"                 # essential for ESX 3.5
                                        virtualHW.version = "7"                 # essential for ESX 4.0
P
Patrice LACHANCE 已提交
48
                                        virtualHW.version = "8"                 # essential for ESX 5.0
49
                                        virtualHW.version = "9"                 # essential for ESX 5.1
50 51 52 53 54 55


???                               <=>   guestOS = "<value>"                     # essential, FIXME: not representable
def->id = <value>                 <=>   ???                                     # not representable
def->uuid = <value>               <=>   uuid.bios = "<value>"
def->name = <value>               <=>   displayName = "<value>"
56 57
def->mem.max_balloon = <value kilobyte>    <=>   memsize = "<value megabyte>"            # must be a multiple of 4, defaults to 32
def->mem.cur_balloon = <value kilobyte>    <=>   sched.mem.max = "<value megabyte>"      # defaults to "unlimited" -> def->mem.cur_balloon = def->mem.max_balloon
58
def->mem.min_guarantee = <value kilobyte>  <=>   sched.mem.minsize = "<value megabyte>"  # defaults to 0
E
Eric Blake 已提交
59
def->maxvcpus = <value>           <=>   numvcpus = "<value>"                    # must be 1 or a multiple of 2, defaults to 1
60
def->cpumask = <uint list>        <=>   sched.cpu.affinity = "<uint list>"
61 62
def->cputune.shares = <value>     <=>   sched.cpu.shares = "<value>"            # with handling for special values
                                                                                # "high", "normal", "low"
63 64 65 66 67 68 69 70 71



################################################################################
## os ##########################################################################

def->os

->type = "hvm"
M
Matthias Bolte 已提交
72
->arch = <arch>                   <=>   guestOS = "<value>"                     # if <value> ends with -64 than <arch> is x86_64, otherwise <arch> is i686
73 74 75 76 77 78 79 80 81 82 83
->machine
->nBootDevs
->bootDevs
->init
->kernel
->initrd
->cmdline
->root
->loader
->bootloader
->bootloaderArgs
M
Matthias Bolte 已提交
84
->smbios_mode                     <=>   smbios.reflecthost = "<value>"          # <value> == true means SMBIOS_HOST, otherwise it's SMBIOS_EMULATE, defaults to "false"
85 86 87 88 89 90



################################################################################
## disks #######################################################################

91 92 93
                                        scsi[0..3]:[0..6,8..15] -> <controller>:<unit> with 1 bus per controller
                                        ide[0..1]:[0..1]        -> <bus>:<unit> with 1 controller
                                        floppy[0..1]            -> <unit> with 1 controller and 1 bus per controller
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112

def->disks[0]...

## disks: scsi hard drive from .vmdk image #####################################

                                        scsi0.present = "true"                  # defaults to "false"
                                        scsi0:0.present = "true"                # defaults to "false"
                                        scsi0:0.startConnected = "true"         # defaults to "true"

???                               <=>   scsi0:0.mode = "persistent"             # defaults to "persistent"
                                        scsi0:0.mode = "undoable"
                                        scsi0:0.mode = "independent-persistent"
                                        scsi0:0.mode = "independent-nonpersistent"

...
->type = _DISK_TYPE_FILE          <=>   scsi0:0.deviceType = "scsi-hardDisk"    # defaults to ?
->device = _DISK_DEVICE_DISK      <=>   scsi0:0.deviceType = "scsi-hardDisk"    # defaults to ?
->bus = _DISK_BUS_SCSI
->src = <value>.vmdk              <=>   scsi0:0.fileName = "<value>.vmdk"
113
->dst = sd[<controller> * 15 + <unit> mapped to [a-z]+]
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
->driverName = <driver>           <=>   scsi0.virtualDev = "<driver>"           # default depends on guestOS value
->driverType
->cachemode                       <=>   scsi0:0.writeThrough = "<value>"        # defaults to false, true -> _DISK_CACHE_WRITETHRU, false _DISK_CACHE_DEFAULT
->readonly
->shared
->slotnum


## disks: ide hard drive from .vmdk image ######################################

                                        ide0:0.present = "true"                 # defaults to "false"
                                        ide0:0.startConnected = "true"          # defaults to "true"

???                               <=>   ide0:0.mode = "persistent"              # defaults to "persistent"
                                        ide0:0.mode = "undoable"
                                        ide0:0.mode = "independent-persistent"
                                        ide0:0.mode = "independent-nonpersistent"

...
->type = _DISK_TYPE_FILE          <=>   ide0:0.deviceType = "ata-hardDisk"      # defaults to ?
->device = _DISK_DEVICE_DISK      <=>   ide0:0.deviceType = "ata-hardDisk"      # defaults to ?
->bus = _DISK_BUS_IDE
->src = <value>.vmdk              <=>   ide0:0.fileName = "<value>.vmdk"
137
->dst = hd[<bus> * 2 + <unit> mapped to [a-z]+]
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
->driverName
->driverType
->cachemode                       <=>   ide0:0.writeThrough = "<value>"         # defaults to false, true -> _DISK_CACHE_WRITETHRU, false _DISK_CACHE_DEFAULT
->readonly
->shared
->slotnum


## disks: scsi cdrom from .iso image ###########################################

                                        scsi0.present = "true"                  # defaults to "false"
                                        scsi0:0.present = "true"                # defaults to "false"
                                        scsi0:0.startConnected = "true"         # defaults to "true"

...
->type = _DISK_TYPE_FILE          <=>   scsi0:0.deviceType = "cdrom-image"      # defaults to ?
->device = _DISK_DEVICE_CDROM     <=>   scsi0:0.deviceType = "cdrom-image"      # defaults to ?
->bus = _DISK_BUS_SCSI
->src = <value>.iso               <=>   scsi0:0.fileName = "<value>.iso"
157
->dst = sd[<controller> * 15 + <unit> mapped to [a-z]+]
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
->driverName = <driver>           <=>   scsi0.virtualDev = "<driver>"           # default depends on guestOS value
->driverType
->cachemode
->readonly
->shared
->slotnum


## disks: ide cdrom from .iso image ############################################

                                        ide0:0.present = "true"                 # defaults to "false"
                                        ide0:0.startConnected = "true"          # defaults to "true"

...
->type = _DISK_TYPE_FILE          <=>   ide0:0.deviceType = "cdrom-image"       # defaults to ?
->device = _DISK_DEVICE_CDROM     <=>   ide0:0.deviceType = "cdrom-image"       # defaults to ?
->bus = _DISK_BUS_IDE
->src = <value>.iso               <=>   ide0:0.fileName = "<value>.iso"
176
->dst = hd[<bus> * 2 + <unit> mapped to [a-z]+]
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
->driverName
->driverType
->cachemode
->readonly
->shared
->slotnum


## disks: scsi cdrom from host device ##########################################

                                        scsi0.present = "true"                  # defaults to "false"
                                        scsi0:0.present = "true"                # defaults to "false"
                                        scsi0:0.startConnected = "true"         # defaults to "true"

...
->type = _DISK_TYPE_BLOCK         <=>   scsi0:0.deviceType = "atapi-cdrom"      # defaults to ?
->device = _DISK_DEVICE_CDROM     <=>   scsi0:0.deviceType = "atapi-cdrom"      # defaults to ?
->bus = _DISK_BUS_SCSI
->src = <value>                   <=>   scsi0:0.fileName = "<value>"            # e.g. "/dev/scd0" ?
196
->dst = sd[<controller> * 15 + <unit> mapped to [a-z]+]
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
->driverName = <driver>           <=>   scsi0.virtualDev = "<driver>"           # default depends on guestOS value
->driverType
->cachemode
->readonly
->shared
->slotnum


## disks: ide cdrom from host device ###########################################

                                        ide0:0.present = "true"                 # defaults to "false"
                                        ide0:0.startConnected = "true"          # defaults to "true"
                                        ide0:0.clientDevice = "false"           # defaults to "false"

...
->type = _DISK_TYPE_BLOCK         <=>   ide0:0.deviceType = "atapi-cdrom"       # defaults to ?
->device = _DISK_DEVICE_CDROM     <=>   ide0:0.deviceType = "atapi-cdrom"       # defaults to ?
->bus = _DISK_BUS_IDE
->src = <value>                   <=>   ide0:0.fileName = "<value>"             # e.g. "/dev/scd0"
216
->dst = hd[<bus> * 2 + <unit> mapped to [a-z]+]
217 218 219 220 221 222 223 224 225 226
->driverName
->driverType
->cachemode
->readonly
->shared
->slotnum


## disks: floppy from .flp image ###############################################

227
                                        floppy0.present = "true"                # defaults to "true"
228 229 230 231 232 233 234 235
                                        floppy0.startConnected = "true"         # defaults to "true"
                                        floppy0.clientDevice = "false"          # defaults to "false"

...
->type = _DISK_TYPE_FILE          <=>   floppy0.fileType = "file"               # defaults to ?
->device = _DISK_DEVICE_FLOPPY
->bus = _DISK_BUS_FDC
->src = <value>.flp               <=>   floppy0.fileName = "<value>.flp"
236
->dst = fd[<unit> mapped to [a-z]+]
237 238 239 240 241 242 243 244 245 246
->driverName
->driverType
->cachemode
->readonly
->shared
->slotnum


## disks: floppy from host device ##############################################

247
                                        floppy0.present = "true"                # defaults to "true"
248 249 250 251 252 253 254 255
                                        floppy0.startConnected = "true"         # defaults to "true"
                                        floppy0.clientDevice = "false"          # defaults to "false"

...
->type = _DISK_TYPE_BLOCK         <=>   floppy0.fileType = "device"             # defaults to ?
->device = _DISK_DEVICE_FLOPPY
->bus = _DISK_BUS_FDC
->src = <value>                   <=>   floppy0.fileName = "<value>"            # e.g. "/dev/fd0"
256
->dst = fd[<unit> mapped to [a-z]+]
257 258 259 260 261 262 263 264 265
->driverName
->driverType
->cachemode
->readonly
->shared
->slotnum



266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
################################################################################
## filesystems #################################################################

                                        isolation.tools.hgfs.disable = "false"  # defaults to "true"

def->nfss = 1                     <=>   sharedFolder.maxNum = "1"               # must match the number of shared folders

                                        sharedFolder[0..n] -> <filesystem>

def->fss[0]...                    <=>   sharedFolder0.present = "true"          # defaults to "false"
                                        sharedFolder0.enabled = "true"          # defaults to "false"
                                        sharedFolder0.expiration = "never"      # defaults to "never"
                                        sharedFolder0.readAccess = "true"       # defaults to "false"
->type = _FS_TYPE_MOUNT
->fsdriver
->accessmode
->wrpolicy
->src = <value>                   <=>   sharedFolder0.hostPath = "<value>"      # defaults to ?
->dst = <value>                   <=>   sharedFolder0.guestName = "<value>"
->readonly = <readonly>           <=>   sharedFolder0.writeAccess = "<value>"   # "true" -> <readonly> = 0, "false" -> <readonly> = 1



289 290 291 292 293 294 295 296 297 298 299 300
################################################################################
## nets ########################################################################

                                        ethernet[0..3] -> <controller>

                                        ethernet0.present = "true"              # defaults to "false"
                                        ethernet0.startConnected = "true"       # defaults to "true"

                                        ethernet0.networkName = "VM Network"    # FIXME

def->nets[0]...
->model = <model>                 <=>   ethernet0.virtualDev = "<model>"        # default depends on guestOS value
301
                                        ethernet0.features = "15"               # if present and virtualDev is "vmxnet" => vmxnet2 (enhanced)
302 303 304 305


                                        ethernet0.addressType = "generated"     # default to "generated"
->mac = <value>                   <=>   ethernet0.generatedAddress = "<value>"
306
                                        ethernet0.generatedAddressOffset = "0"  # ?
307 308 309 310 311


                                        ethernet0.addressType = "static"        # default to "generated"
->mac = <value>                   <=>   ethernet0.address = "<value>"

312 313 314 315

                                        ethernet0.addressType = "vpx"           # default to "generated"
->mac = <value>                   <=>   ethernet0.generatedAddress = "<value>"

316 317 318 319 320

                                        ethernet0.addressType = "static"        # default to "generated"
->mac = <value>                   <=>   ethernet0.address = "<value>"
                                        ethernet0.checkMACAddress = "false"     # mac address outside the VMware prefixes

M
Matthias Bolte 已提交
321
                                                                                # 00:0c:29 prefix for autogenerated mac's -> ethernet0.addressType = "generated"
322
                                                                                # 00:50:56 prefix for manual configured mac's
M
Matthias Bolte 已提交
323
                                                                                #          00:50:56:00:00:00 - 00:50:56:3f:ff:ff -> ethernet0.addressType = "static"
324
                                                                                #          00:50:56:80:00:00 - 00:50:56:bf:ff:ff -> ethernet0.addressType = "vpx"
325 326 327 328 329 330 331
                                                                                # 00:05:69 old prefix from esx 1.5


## nets: bridged ###############################################################

...
->type = _NET_TYPE_BRIDGE         <=>   ethernet0.connectionType = "bridged"    # defaults to "bridged"
M
Matthias Bolte 已提交
332
->data.bridge.brname = <value>    <=>   ethernet0.networkName = "<value>"
333 334 335 336


## nets: hostonly ##############################################################

M
Matthias Bolte 已提交
337
...                                                                             # FIXME: Investigate if ESX supports this
338 339 340 341 342
->type = _NET_TYPE_NETWORK        <=>   ethernet0.connectionType = "hostonly"   # defaults to "bridged"


## nets: nat ###################################################################

M
Matthias Bolte 已提交
343
...                                                                             # FIXME: Investigate if ESX supports this
344 345 346 347 348 349 350
->type = _NET_TYPE_USER           <=>   ethernet0.connectionType = "nat"        # defaults to "bridged"


## nets: custom ################################################################

...
->type = _NET_TYPE_BRIDGE         <=>   ethernet0.connectionType = "custom"     # defaults to "bridged"
M
Matthias Bolte 已提交
351 352
->data.bridge.brname = <value>    <=>   ethernet0.networkName = "<value>"
->ifname = <value>                <=>   ethernet0.vnet = "<value>"
353 354 355



356 357 358 359 360 361 362 363 364 365
################################################################################
## video #######################################################################

def->videos[0]...
->type = _VIDEO_TYPE_VMVGA
->vram = <value kilobyte>         <=>   svga.vramSize = "<value byte>"
->heads = 1



366 367 368 369 370 371 372 373 374
################################################################################
## serials #####################################################################

                                        serial[0..3] -> <port>

                                        serial0.present = "true"                # defaults to "false"
                                        serial0.startConnected = "true"         # defaults to "true"

def->serials[0]...
375
->target.port = <port>
376 377 378 379 380 381 382


## serials: device #############################################################

->type = _CHR_TYPE_DEV            <=>   serial0.fileType = "device"
->data.file.path = <value>        <=>   serial0.fileName = "<value>"            # e.g. "/dev/ttyS0"
???                               <=>   serial0.tryNoRxLoss = "false"           # defaults to "false", FIXME: not representable
M
Matthias Bolte 已提交
383
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable
384 385 386 387 388 389 390


## serials: file ###############################################################

->type = _CHR_TYPE_FILE           <=>   serial0.fileType = "file"
->data.file.path = <value>        <=>   serial0.fileName = "<value>"            # e.g. "serial0.file"
???                               <=>   serial0.tryNoRxLoss = "false"           # defaults to "false", FIXME: not representable
M
Matthias Bolte 已提交
391
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable
392 393 394 395 396 397


## serials: pipe, far end -> app ###############################################

->type = _CHR_TYPE_PIPE           <=>   serial0.fileType = "pipe"
->data.file.path = <value>        <=>   serial0.fileName = "<value>"            # e.g. "serial0.pipe"
M
Matthias Bolte 已提交
398
???                               <=>   serial0.pipe.endPoint = "client"        # defaults to ?, FIXME: not representable
399
???                               <=>   serial0.tryNoRxLoss = "true"            # defaults to "false", FIXME: not representable
M
Matthias Bolte 已提交
400
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable
401 402 403

->type = _CHR_TYPE_PIPE           <=>   serial0.fileType = "pipe"
->data.file.path = <value>        <=>   serial0.fileName = "<value>"            # e.g. "serial0.pipe"
M
Matthias Bolte 已提交
404
???                               <=>   serial0.pipe.endPoint = "server"        # defaults to ?, FIXME: not representable
405
???                               <=>   serial0.tryNoRxLoss = "true"            # defaults to "false", FIXME: not representable
M
Matthias Bolte 已提交
406
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable
407 408 409 410 411 412


## serials: pipe, far end -> vm ################################################

->type = _CHR_TYPE_PIPE           <=>   serial0.fileType = "pipe"
->data.file.path = <value>        <=>   serial0.fileName = "<value>"            # e.g. "serial0.pipe"
M
Matthias Bolte 已提交
413
???                               <=>   serial0.pipe.endPoint = "client"        # defaults to ?, FIXME: not representable
414
???                               <=>   serial0.tryNoRxLoss = "false"           # defaults to "false", FIXME: not representable
M
Matthias Bolte 已提交
415
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable
416 417 418

->type = _CHR_TYPE_PIPE           <=>   serial0.fileType = "pipe"
->data.file.path = <value>        <=>   serial0.fileName = "<value>"            # e.g. "serial0.pipe"
M
Matthias Bolte 已提交
419
???                               <=>   serial0.pipe.endPoint = "server"        # defaults to ?, FIXME: not representable
420
???                               <=>   serial0.tryNoRxLoss = "false"           # defaults to "false", FIXME: not representable
M
Matthias Bolte 已提交
421
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable
422 423


424 425 426 427 428 429 430 431
## serials: network, server (since vSphere 4.1) ################################

->type = _CHR_TYPE_TCP            <=>   serial0.fileType = "network"

->data.tcp.host = <host>          <=>   serial0.fileName = "<protocol>://<host>:<service>"
->data.tcp.service = <service>                                                  # e.g. "telnet://0.0.0.0:42001"
->data.tcp.protocol = <protocol>

432
->data.tcp.listen = true          <=>   serial0.network.endPoint = "server"     # defaults to "server"
433 434 435 436 437 438 439 440 441 442 443 444 445 446

???                               <=>   serial0.vspc = "foobar"                 # defaults to <not present>, FIXME: not representable
???                               <=>   serial0.tryNoRxLoss = "false"           # defaults to "false", FIXME: not representable
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable


## serials: network, client (since vSphere 4.1) ################################

->type = _CHR_TYPE_TCP            <=>   serial0.fileType = "network"

->data.tcp.host = <host>          <=>   serial0.fileName = "<protocol>://<host>:<service>"
->data.tcp.service = <service>                                                  # e.g. "telnet://192.168.0.17:42001"
->data.tcp.protocol = <protocol>

447
->data.tcp.listen = false         <=>   serial0.network.endPoint = "client"     # defaults to "server"
448 449 450 451 452 453

???                               <=>   serial0.vspc = "foobar"                 # defaults to <not present>, FIXME: not representable
???                               <=>   serial0.tryNoRxLoss = "false"           # defaults to "false", FIXME: not representable
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable


454 455 456 457 458 459 460 461 462 463

################################################################################
## parallels ###################################################################

                                        parallel[0..2] -> <port>

                                        parallel0.present = "true"              # defaults to "false"
                                        parallel0.startConnected = "true"       # defaults to "true"

def->parallels[0]...
464
->target.port = <port>
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479


## parallels: device #############################################################

->type = _CHR_TYPE_DEV            <=>   parallel0.fileType = "device"
->data.file.path = <value>        <=>   parallel0.fileName = "<value>"          # e.g. "/dev/parport0"
???                               <=>   parallel0.bidirectional = "<value>"     # defaults to ?, FIXME: not representable


## parallels: file #############################################################

->type = _CHR_TYPE_FILE           <=>   parallel0.fileType = "file"
->data.file.path = <value>        <=>   parallel0.fileName = "<value>"          # e.g. "parallel0.file"
???                               <=>   parallel0.bidirectional = "<value>"     # must be "false" for fileType = "file", FIXME: not representable

M
Matthias Bolte 已提交
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494


################################################################################
## sound #######################################################################

                                        sound.present = "true"                  # defaults to "false"
                                        sound.startConnected = "true"           # defaults to "true"
                                        sound.autodetect = "true"
                                        sound.fileName = "-1"

                                        FIXME: Investigate if ESX supports this,
                                               at least the VI Client GUI has no
                                               options to add a sound device, but
                                               the VI API contains a VirtualSoundCard

495 496
*/

497
#define VIR_FROM_THIS VIR_FROM_NONE
498

499
#define VMX_BUILD_NAME_EXTRA(_suffix, _extra)                                 \
500 501
    snprintf(_suffix##_name, sizeof(_suffix##_name), "%s."_extra, prefix);

502 503
#define VMX_BUILD_NAME(_suffix)                                               \
    VMX_BUILD_NAME_EXTRA(_suffix, #_suffix)
504

505 506 507
/* directly map the virDomainControllerModel to virVMXSCSIControllerModel,
 * this is good enough for now because all virDomainControllerModel values
 * are actually SCSI controller models in the ESX case */
508 509
VIR_ENUM_DECL(virVMXControllerModelSCSI)
VIR_ENUM_IMPL(virVMXControllerModelSCSI, VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LAST,
510
              "auto", /* just to match virDomainControllerModel, will never be used */
511 512 513
              "buslogic",
              "lsilogic",
              "lsisas1068",
514
              "pvscsi",
515
              "UNUSED ibmvscsi",
516 517
              "UNUSED virtio-scsi",
              "UNUSED lsisas1078");
518 519


520 521 522 523 524

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Helpers
 */

525 526
virDomainDefParserConfig virVMXDomainDefParserConfig = {
    .hasWideScsiBus = true,
527
    .macPrefix = {0x00, 0x0c, 0x29},
528 529 530 531 532 533 534 535 536 537
};


virDomainXMLOptionPtr
virVMXDomainXMLConfInit(void)
{
    return virDomainXMLOptionNew(&virVMXDomainDefParserConfig,
                               NULL, NULL);
}

538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555
char *
virVMXEscapeHex(const char *string, char escape, const char *special)
{
    char *escaped = NULL;
    size_t length = 1; /* 1 byte for termination */
    const char *tmp1 = string;
    char *tmp2;

    /* Calculate length of escaped string */
    while (*tmp1 != '\0') {
        if (*tmp1 == escape || strspn(tmp1, special) > 0) {
            length += 2;
        }

        ++tmp1;
        ++length;
    }

556
    if (VIR_ALLOC_N(escaped, length) < 0)
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
        return NULL;

    tmp1 = string; /* reading from this one */
    tmp2 = escaped; /* writing to this one */

    /* Escape to 'cXX' where c is the escape char and X is a hex digit */
    while (*tmp1 != '\0') {
        if (*tmp1 == escape || strspn(tmp1, special) > 0) {
            *tmp2++ = escape;

            snprintf(tmp2, 3, "%02x", (unsigned int)*tmp1);

            tmp2 += 2;
        } else {
            *tmp2++ = *tmp1;
        }

        ++tmp1;
    }

    *tmp2 = '\0';

    return escaped;
}



M
Matthias Bolte 已提交
584
int
585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
virVMXUnescapeHex(char *string, char escape)
{
    char *tmp1 = string; /* reading from this one */
    char *tmp2 = string; /* writing to this one */

    /* Unescape from 'cXX' where c is the escape char and X is a hex digit */
    while (*tmp1 != '\0') {
        if (*tmp1 == escape) {
            if (!c_isxdigit(tmp1[1]) || !c_isxdigit(tmp1[2])) {
                return -1;
            }

            *tmp2++ = virHexToBin(tmp1[1]) * 16 + virHexToBin(tmp1[2]);
            tmp1 += 3;
        } else {
            *tmp2++ = *tmp1++;
        }
    }

    *tmp2 = '\0';

    return 0;
}



char *
virVMXConvertToUTF8(const char *encoding, const char *string)
{
    char *result = NULL;
    xmlCharEncodingHandlerPtr handler;
    xmlBufferPtr input;
    xmlBufferPtr utf8;

    handler = xmlFindCharEncodingHandler(encoding);

    if (handler == NULL) {
622 623
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("libxml2 doesn't handle %s encoding"), encoding);
624 625 626 627 628 629 630
        return NULL;
    }

    input = xmlBufferCreateStatic((char *)string, strlen(string));
    utf8 = xmlBufferCreate();

    if (xmlCharEncInFunc(handler, utf8, input) < 0) {
631 632
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not convert from %s to UTF-8 encoding"), encoding);
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662
        goto cleanup;
    }

    result = (char *)utf8->content;
    utf8->content = NULL;

  cleanup:
    xmlCharEncCloseFunc(handler);
    xmlBufferFree(input);
    xmlBufferFree(utf8);

    return result;
}



static int
virVMXGetConfigString(virConfPtr conf, const char *name, char **string,
                      bool optional)
{
    virConfValuePtr value;

    *string = NULL;
    value = virConfGetValue(conf, name);

    if (value == NULL) {
        if (optional) {
            return 0;
        }

663 664
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Missing essential config entry '%s'"), name);
665 666 667 668
        return -1;
    }

    if (value->type != VIR_CONF_STRING) {
669 670
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Config entry '%s' must be a string"), name);
671 672 673 674 675 676 677 678
        return -1;
    }

    if (value->str == NULL) {
        if (optional) {
            return 0;
        }

679 680
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Missing essential config entry '%s'"), name);
681 682 683
        return -1;
    }

684
    return VIR_STRDUP(*string, value->str);
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
}



static int
virVMXGetConfigUUID(virConfPtr conf, const char *name, unsigned char *uuid,
                    bool optional)
{
    virConfValuePtr value;

    value = virConfGetValue(conf, name);

    if (value == NULL) {
        if (optional) {
            return 0;
        } else {
701 702
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Missing essential config entry '%s'"), name);
703 704 705 706 707
            return -1;
        }
    }

    if (value->type != VIR_CONF_STRING) {
708 709
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Config entry '%s' must be a string"), name);
710 711 712 713 714 715 716
        return -1;
    }

    if (value->str == NULL) {
        if (optional) {
            return 0;
        } else {
717 718
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Missing essential config entry '%s'"), name);
719 720 721 722 723
            return -1;
        }
    }

    if (virUUIDParse(value->str, uuid) < 0) {
724 725
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not parse UUID from string '%s'"), value->str);
726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
        return -1;
    }

    return 0;
}



static int
virVMXGetConfigLong(virConfPtr conf, const char *name, long long *number,
                    long long default_, bool optional)
{
    virConfValuePtr value;

    *number = default_;
    value = virConfGetValue(conf, name);

    if (value == NULL) {
        if (optional) {
            return 0;
        } else {
747 748
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Missing essential config entry '%s'"), name);
749 750 751 752 753 754 755 756 757
            return -1;
        }
    }

    if (value->type == VIR_CONF_STRING) {
        if (value->str == NULL) {
            if (optional) {
                return 0;
            } else {
758 759
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Missing essential config entry '%s'"), name);
760 761 762 763
                return -1;
            }
        }

764
        if (STRCASEEQ(value->str, "unlimited")) {
765 766
            *number = -1;
        } else if (virStrToLong_ll(value->str, NULL, 10, number) < 0) {
767 768 769
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Config entry '%s' must represent an integer value"),
                           name);
770 771 772
            return -1;
        }
    } else {
773 774
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Config entry '%s' must be a string"), name);
775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795
        return -1;
    }

    return 0;
}



static int
virVMXGetConfigBoolean(virConfPtr conf, const char *name, bool *boolean_,
                       bool default_, bool optional)
{
    virConfValuePtr value;

    *boolean_ = default_;
    value = virConfGetValue(conf, name);

    if (value == NULL) {
        if (optional) {
            return 0;
        } else {
796 797
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Missing essential config entry '%s'"), name);
798 799 800 801 802 803 804 805 806
            return -1;
        }
    }

    if (value->type == VIR_CONF_STRING) {
        if (value->str == NULL) {
            if (optional) {
                return 0;
            } else {
807 808
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Missing essential config entry '%s'"), name);
809 810 811 812 813 814 815 816 817
                return -1;
            }
        }

        if (STRCASEEQ(value->str, "true")) {
            *boolean_ = 1;
        } else if (STRCASEEQ(value->str, "false")) {
            *boolean_ = 0;
        } else {
818 819 820
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Config entry '%s' must represent a boolean value "
                             "(true|false)"), name);
821 822 823
            return -1;
        }
    } else {
824 825
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Config entry '%s' must be a string"), name);
826 827 828 829 830 831 832 833 834 835
        return -1;
    }

    return 0;
}



static int
virVMXSCSIDiskNameToControllerAndUnit(const char *name, int *controller, int *unit)
M
Matthias Bolte 已提交
836 837 838 839
{
    int idx;

    if (! STRPREFIX(name, "sd")) {
840 841 842
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Expecting domain XML attribute 'dev' of entry "
                         "'devices/disk/target' to start with 'sd'"));
M
Matthias Bolte 已提交
843 844 845 846 847 848
        return -1;
    }

    idx = virDiskNameToIndex(name);

    if (idx < 0) {
849 850
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not parse valid disk index from '%s'"), name);
M
Matthias Bolte 已提交
851 852 853
        return -1;
    }

854
    /* Each of the 4 SCSI controllers has 1 bus with 15 units each for devices */
M
Matthias Bolte 已提交
855
    if (idx >= (4 * 15)) {
856 857
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("SCSI disk index (parsed from '%s') is too large"), name);
M
Matthias Bolte 已提交
858 859 860 861
        return -1;
    }

    *controller = idx / 15;
862
    *unit = idx % 15;
M
Matthias Bolte 已提交
863

864 865 866
    /* Skip the controller ifself at unit 7 */
    if (*unit >= 7) {
        ++(*unit);
M
Matthias Bolte 已提交
867 868 869 870 871 872 873
    }

    return 0;
}



874 875
static int
virVMXIDEDiskNameToBusAndUnit(const char *name, int *bus, int *unit)
M
Matthias Bolte 已提交
876 877 878 879
{
    int idx;

    if (! STRPREFIX(name, "hd")) {
880 881 882
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Expecting domain XML attribute 'dev' of entry "
                         "'devices/disk/target' to start with 'hd'"));
M
Matthias Bolte 已提交
883 884 885 886 887 888
        return -1;
    }

    idx = virDiskNameToIndex(name);

    if (idx < 0) {
889 890
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not parse valid disk index from '%s'"), name);
M
Matthias Bolte 已提交
891 892 893
        return -1;
    }

894
    /* The IDE controller has 2 buses with 2 units each for devices */
M
Matthias Bolte 已提交
895
    if (idx >= (2 * 2)) {
896 897
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("IDE disk index (parsed from '%s') is too large"), name);
M
Matthias Bolte 已提交
898 899 900
        return -1;
    }

901 902
    *bus = idx / 2;
    *unit = idx % 2;
M
Matthias Bolte 已提交
903 904 905 906 907 908

    return 0;
}



909 910
static int
virVMXFloppyDiskNameToUnit(const char *name, int *unit)
M
Matthias Bolte 已提交
911 912 913 914
{
    int idx;

    if (! STRPREFIX(name, "fd")) {
915 916 917
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Expecting domain XML attribute 'dev' of entry "
                         "'devices/disk/target' to start with 'fd'"));
M
Matthias Bolte 已提交
918 919 920 921 922 923
        return -1;
    }

    idx = virDiskNameToIndex(name);

    if (idx < 0) {
924 925
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not parse valid disk index from '%s'"), name);
M
Matthias Bolte 已提交
926 927 928
        return -1;
    }

929
    /* The FDC controller has 1 bus with 2 units for devices */
M
Matthias Bolte 已提交
930
    if (idx >= 2) {
931 932
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Floppy disk index (parsed from '%s') is too large"), name);
M
Matthias Bolte 已提交
933 934 935
        return -1;
    }

936 937 938 939 940 941 942
    *unit = idx;

    return 0;
}



943
static int
944
virVMXVerifyDiskAddress(virDomainXMLOptionPtr xmlopt, virDomainDiskDefPtr disk)
945 946 947 948 949 950 951
{
    virDomainDiskDef def;
    virDomainDeviceDriveAddressPtr drive;

    memset(&def, 0, sizeof(def));

    if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
952 953 954
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported disk address type '%s'"),
                       virDomainDeviceAddressTypeToString(disk->info.type));
955 956 957 958 959 960 961 962
        return -1;
    }

    drive = &disk->info.addr.drive;

    def.dst = disk->dst;
    def.bus = disk->bus;

963
    if (virDomainDiskDefAssignAddress(xmlopt, &def) < 0) {
964 965
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Could not verify disk address"));
966 967 968 969 970 971
        return -1;
    }

    if (def.info.addr.drive.controller != drive->controller ||
        def.info.addr.drive.bus != drive->bus ||
        def.info.addr.drive.unit != drive->unit) {
972 973 974
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Disk address %d:%d:%d doesn't match target device '%s'"),
                       drive->controller, drive->bus, drive->unit, disk->dst);
975 976 977 978 979 980
        return -1;
    }

    /* drive->{controller|bus|unit} is unsigned, no >= 0 checks are necessary */
    if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
        if (drive->controller > 3) {
981 982 983
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("SCSI controller index %d out of [0..3] range"),
                           drive->controller);
984 985 986 987
            return -1;
        }

        if (drive->bus != 0) {
988 989 990
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("SCSI bus index %d out of [0] range"),
                           drive->bus);
991 992 993 994
            return -1;
        }

        if (drive->unit > 15 || drive->unit == 7) {
995 996 997
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("SCSI unit index %d out of [0..6,8..15] range"),
                           drive->unit);
998 999 1000 1001
            return -1;
        }
    } else if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE) {
        if (drive->controller != 0) {
1002 1003 1004
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("IDE controller index %d out of [0] range"),
                           drive->controller);
1005 1006 1007 1008
            return -1;
        }

        if (drive->bus > 1) {
1009 1010 1011
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("IDE bus index %d out of [0..1] range"),
                           drive->bus);
1012 1013 1014 1015
            return -1;
        }

        if (drive->unit > 1) {
1016 1017 1018
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("IDE unit index %d out of [0..1] range"),
                           drive->unit);
1019 1020 1021 1022
            return -1;
        }
    } else if (disk->bus == VIR_DOMAIN_DISK_BUS_FDC) {
        if (drive->controller != 0) {
1023 1024 1025
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("FDC controller index %d out of [0] range"),
                           drive->controller);
1026 1027 1028 1029
            return -1;
        }

        if (drive->bus != 0) {
1030 1031 1032
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("FDC bus index %d out of [0] range"),
                           drive->bus);
1033 1034 1035 1036
            return -1;
        }

        if (drive->unit > 1) {
1037 1038 1039
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("FDC unit index %d out of [0..1] range"),
                           drive->unit);
1040 1041 1042
            return -1;
        }
    } else {
1043 1044 1045
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported bus type '%s'"),
                       virDomainDiskBusTypeToString(disk->bus));
1046 1047 1048 1049 1050 1051 1052 1053
        return -1;
    }

    return 0;
}



1054 1055 1056
static int
virVMXHandleLegacySCSIDiskDriverName(virDomainDefPtr def,
                                     virDomainDiskDefPtr disk)
1057 1058
{
    char *tmp;
1059 1060
    int model;
    size_t i;
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
    virDomainControllerDefPtr controller = NULL;

    if (disk->bus != VIR_DOMAIN_DISK_BUS_SCSI || disk->driverName == NULL) {
        return 0;
    }

    tmp = disk->driverName;

    for (; *tmp != '\0'; ++tmp) {
        *tmp = c_tolower(*tmp);
    }

1073
    model = virDomainControllerModelSCSITypeFromString(disk->driverName);
1074 1075

    if (model < 0) {
1076 1077
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unknown driver name '%s'"), disk->driverName);
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
        return -1;
    }

    for (i = 0; i < def->ncontrollers; ++i) {
        if (def->controllers[i]->idx == disk->info.addr.drive.controller) {
            controller = def->controllers[i];
            break;
        }
    }

    if (controller == NULL) {
1089 1090 1091
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Missing SCSI controller for index %d"),
                       disk->info.addr.drive.controller);
1092 1093 1094 1095 1096 1097
        return -1;
    }

    if (controller->model == -1) {
        controller->model = model;
    } else if (controller->model != model) {
1098 1099 1100 1101 1102
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Inconsistent SCSI controller model ('%s' is not '%s') "
                         "for SCSI controller index %d"), disk->driverName,
                       virDomainControllerModelSCSITypeToString(controller->model),
                       controller->idx);
1103 1104
        return -1;
    }
M
Matthias Bolte 已提交
1105 1106 1107 1108 1109 1110

    return 0;
}



1111 1112 1113
static int
virVMXGatherSCSIControllers(virVMXContext *ctx, virDomainDefPtr def,
                            int virtualDev[4], bool present[4])
1114 1115
{
    int result = -1;
1116
    size_t i, k;
M
Matthias Bolte 已提交
1117
    virDomainDiskDefPtr disk;
1118 1119 1120 1121
    virDomainControllerDefPtr controller;
    bool controllerHasDisksAttached;
    int count = 0;
    int *autodetectedModels;
M
Matthias Bolte 已提交
1122

1123
    if (VIR_ALLOC_N(autodetectedModels, def->ndisks) < 0)
1124 1125 1126 1127
        return -1;

    for (i = 0; i < def->ncontrollers; ++i) {
        controller = def->controllers[i];
M
Matthias Bolte 已提交
1128

1129
        if (controller->type != VIR_DOMAIN_CONTROLLER_TYPE_SCSI) {
1130
            /* skip non-SCSI controllers */
M
Matthias Bolte 已提交
1131 1132 1133
            continue;
        }

1134
        controllerHasDisksAttached = false;
1135

1136 1137 1138 1139 1140 1141
        for (k = 0; k < def->ndisks; ++k) {
            disk = def->disks[k];

            if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI &&
                disk->info.addr.drive.controller == controller->idx) {
                controllerHasDisksAttached = true;
1142 1143
                break;
            }
M
Matthias Bolte 已提交
1144 1145
        }

1146
        if (! controllerHasDisksAttached) {
1147
            /* skip SCSI controllers without attached disks */
1148 1149 1150
            continue;
        }

1151
        if (controller->model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_AUTO &&
1152
            ctx->autodetectSCSIControllerModel != NULL) {
1153 1154
            count = 0;

1155 1156
            /* try to autodetect the SCSI controller model by collecting
             * SCSI controller model of all disks attached to this controller */
1157 1158 1159 1160 1161
            for (k = 0; k < def->ndisks; ++k) {
                disk = def->disks[k];

                if (disk->bus == VIR_DOMAIN_DISK_BUS_SCSI &&
                    disk->info.addr.drive.controller == controller->idx) {
1162 1163 1164
                    if (ctx->autodetectSCSIControllerModel
                               (disk, &autodetectedModels[count],
                                ctx->opaque) < 0) {
1165 1166 1167 1168 1169 1170 1171
                        goto cleanup;
                    }

                    ++count;
                }
            }

1172 1173
            /* autodetection fails when the disks attached to one controller
             * have inconsistent SCSI controller models */
1174 1175
            for (k = 0; k < count; ++k) {
                if (autodetectedModels[k] != autodetectedModels[0]) {
1176 1177 1178 1179
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Disks on SCSI controller %d have inconsistent "
                                     "controller models, cannot autodetect model"),
                                   controller->idx);
1180 1181 1182 1183 1184
                    goto cleanup;
                }
            }

            controller->model = autodetectedModels[0];
M
Matthias Bolte 已提交
1185 1186
        }

1187
        if (controller->model != -1 &&
1188 1189 1190 1191
            controller->model != VIR_DOMAIN_CONTROLLER_MODEL_SCSI_BUSLOGIC &&
            controller->model != VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC &&
            controller->model != VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSISAS1068 &&
            controller->model != VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VMPVSCSI) {
1192 1193 1194 1195 1196
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Expecting domain XML attribute 'model' of entry "
                             "'controller' to be 'buslogic' or 'lsilogic' or "
                             "'lsisas1068' or 'vmpvscsi' but found '%s'"),
                           virDomainControllerModelSCSITypeToString(controller->model));
1197
            goto cleanup;
M
Matthias Bolte 已提交
1198
        }
1199 1200 1201

        present[controller->idx] = true;
        virtualDev[controller->idx] = controller->model;
M
Matthias Bolte 已提交
1202 1203
    }

1204 1205 1206 1207 1208 1209
    result = 0;

  cleanup:
    VIR_FREE(autodetectedModels);

    return result;
M
Matthias Bolte 已提交
1210 1211 1212 1213 1214 1215 1216 1217
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * VMX -> Domain XML
 */

1218
virDomainDefPtr
1219 1220 1221
virVMXParseConfig(virVMXContext *ctx,
                  virDomainXMLOptionPtr xmlopt,
                  const char *vmx)
1222
{
M
Matthias Bolte 已提交
1223
    bool success = false;
1224
    virConfPtr conf = NULL;
1225 1226
    char *encoding = NULL;
    char *utf8;
1227 1228 1229 1230
    virDomainDefPtr def = NULL;
    long long config_version = 0;
    long long virtualHW_version = 0;
    long long memsize = 0;
1231 1232
    long long sched_mem_max = 0;
    long long sched_mem_minsize = 0;
1233 1234
    long long numvcpus = 0;
    char *sched_cpu_affinity = NULL;
1235
    char *sched_cpu_shares = NULL;
M
Matthias Bolte 已提交
1236
    char *guestOS = NULL;
M
Matthias Bolte 已提交
1237
    bool smbios_reflecthost = false;
1238
    int controller;
1239
    int bus;
1240
    int port;
1241
    bool present;
1242 1243
    int scsi_virtualDev[4] = { -1, -1, -1, -1 };
    int unit;
1244 1245
    bool hgfs_disabled = true;
    long long sharedFolder_maxNum = 0;
H
Hu Tao 已提交
1246
    int cpumasklen;
1247

1248
    if (ctx->parseFileName == NULL) {
1249 1250
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("virVMXContext has no parseFileName function set"));
1251 1252 1253
        return NULL;
    }

1254 1255 1256 1257 1258 1259
    conf = virConfReadMem(vmx, strlen(vmx), VIR_CONF_FLAG_VMX_FORMAT);

    if (conf == NULL) {
        return NULL;
    }

1260
    /* vmx:.encoding */
1261
    if (virVMXGetConfigString(conf, ".encoding", &encoding, true) < 0) {
1262 1263 1264 1265 1266 1267 1268 1269 1270
        goto cleanup;
    }

    if (encoding == NULL || STRCASEEQ(encoding, "UTF-8")) {
        /* nothing */
    } else {
        virConfFree(conf);
        conf = NULL;

1271
        utf8 = virVMXConvertToUTF8(encoding, vmx);
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286

        if (utf8 == NULL) {
            goto cleanup;
        }

        conf = virConfReadMem(utf8, strlen(utf8), VIR_CONF_FLAG_VMX_FORMAT);

        VIR_FREE(utf8);

        if (conf == NULL) {
            goto cleanup;
        }
    }

    /* Allocate domain def */
1287
    if (VIR_ALLOC(def) < 0)
A
ajia@redhat.com 已提交
1288
        goto cleanup;
1289

1290
    def->virtType = VIR_DOMAIN_VIRT_VMWARE;
1291 1292
    def->id = -1;

M
Matthias Bolte 已提交
1293
    /* vmx:config.version */
1294 1295
    if (virVMXGetConfigLong(conf, "config.version", &config_version, 0,
                            false) < 0) {
M
Matthias Bolte 已提交
1296
        goto cleanup;
1297 1298 1299
    }

    if (config_version != 8) {
1300 1301 1302
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting VMX entry 'config.version' to be 8 but found "
                         "%lld"), config_version);
M
Matthias Bolte 已提交
1303
        goto cleanup;
1304 1305
    }

M
Matthias Bolte 已提交
1306
    /* vmx:virtualHW.version */
1307 1308
    if (virVMXGetConfigLong(conf, "virtualHW.version", &virtualHW_version, 0,
                            false) < 0) {
M
Matthias Bolte 已提交
1309
        goto cleanup;
1310 1311
    }

P
Patrice LACHANCE 已提交
1312
    if (virtualHW_version != 4 && virtualHW_version != 7 &&
1313
        virtualHW_version != 8 && virtualHW_version != 9) {
1314
        virReportError(VIR_ERR_INTERNAL_ERROR,
1315 1316
                       _("Expecting VMX entry 'virtualHW.version' to be "
                         "4, 7, 8 or 9 but found %lld"),
1317
                       virtualHW_version);
M
Matthias Bolte 已提交
1318
        goto cleanup;
1319 1320
    }

M
Matthias Bolte 已提交
1321
    /* vmx:uuid.bios -> def:uuid */
1322
    /* FIXME: Need to handle 'uuid.action = "create"' */
1323
    if (virVMXGetConfigUUID(conf, "uuid.bios", def->uuid, true) < 0) {
M
Matthias Bolte 已提交
1324
        goto cleanup;
1325 1326
    }

M
Matthias Bolte 已提交
1327
    /* vmx:displayName -> def:name */
1328
    if (virVMXGetConfigString(conf, "displayName", &def->name, true) < 0) {
M
Matthias Bolte 已提交
1329
        goto cleanup;
1330 1331
    }

1332
    if (def->name != NULL) {
1333 1334
        if (virVMXUnescapeHexPercent(def->name) < 0 ||
            virVMXUnescapeHexPipe(def->name) < 0) {
1335 1336
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("VMX entry 'name' contains invalid escape sequence"));
1337 1338 1339 1340
            goto cleanup;
        }
    }

1341
    /* vmx:annotation -> def:description */
1342 1343
    if (virVMXGetConfigString(conf, "annotation", &def->description,
                              true) < 0) {
1344 1345 1346 1347
        goto cleanup;
    }

    if (def->description != NULL) {
1348
        if (virVMXUnescapeHexPipe(def->description) < 0) {
1349 1350 1351
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("VMX entry 'annotation' contains invalid escape "
                             "sequence"));
1352
            goto cleanup;
1353 1354 1355
        }
    }

1356
    /* vmx:memsize -> def:mem.max_balloon */
1357
    if (virVMXGetConfigLong(conf, "memsize", &memsize, 32, true) < 0) {
M
Matthias Bolte 已提交
1358
        goto cleanup;
1359 1360 1361
    }

    if (memsize <= 0 || memsize % 4 != 0) {
1362 1363 1364
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting VMX entry 'memsize' to be an unsigned "
                         "integer (multiple of 4) but found %lld"), memsize);
M
Matthias Bolte 已提交
1365
        goto cleanup;
1366 1367
    }

1368
    def->mem.max_balloon = memsize * 1024; /* Scale from megabytes to kilobytes */
1369

1370
    /* vmx:sched.mem.max -> def:mem.cur_balloon */
1371 1372
    if (virVMXGetConfigLong(conf, "sched.mem.max", &sched_mem_max, memsize,
                            true) < 0) {
M
Matthias Bolte 已提交
1373
        goto cleanup;
1374 1375
    }

1376 1377
    if (sched_mem_max < 0) {
        sched_mem_max = memsize;
1378 1379
    }

1380
    def->mem.cur_balloon = sched_mem_max * 1024; /* Scale from megabytes to kilobytes */
1381

1382 1383
    if (def->mem.cur_balloon > def->mem.max_balloon) {
        def->mem.cur_balloon = def->mem.max_balloon;
1384 1385
    }

1386
    /* vmx:sched.mem.minsize -> def:mem.min_guarantee */
1387 1388
    if (virVMXGetConfigLong(conf, "sched.mem.minsize", &sched_mem_minsize, 0,
                            true) < 0) {
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
        goto cleanup;
    }

    if (sched_mem_minsize < 0) {
        sched_mem_minsize = 0;
    }

    def->mem.min_guarantee = sched_mem_minsize * 1024; /* Scale from megabytes to kilobytes */

    if (def->mem.min_guarantee > def->mem.max_balloon) {
        def->mem.min_guarantee = def->mem.max_balloon;
    }

M
Matthias Bolte 已提交
1402
    /* vmx:numvcpus -> def:vcpus */
1403
    if (virVMXGetConfigLong(conf, "numvcpus", &numvcpus, 1, true) < 0) {
M
Matthias Bolte 已提交
1404
        goto cleanup;
1405 1406 1407
    }

    if (numvcpus <= 0 || (numvcpus % 2 != 0 && numvcpus != 1)) {
1408 1409 1410
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting VMX entry 'numvcpus' to be an unsigned "
                         "integer (1 or a multiple of 2) but found %lld"), numvcpus);
M
Matthias Bolte 已提交
1411
        goto cleanup;
1412 1413
    }

E
Eric Blake 已提交
1414
    def->maxvcpus = def->vcpus = numvcpus;
1415

M
Matthias Bolte 已提交
1416
    /* vmx:sched.cpu.affinity -> def:cpumask */
1417
    /* NOTE: maps to VirtualMachine:config.cpuAffinity.affinitySet */
1418 1419
    if (virVMXGetConfigString(conf, "sched.cpu.affinity", &sched_cpu_affinity,
                              true) < 0) {
M
Matthias Bolte 已提交
1420
        goto cleanup;
1421 1422
    }

1423
    if (sched_cpu_affinity != NULL && STRCASENEQ(sched_cpu_affinity, "all")) {
1424 1425 1426
        const char *current = sched_cpu_affinity;
        int number, count = 0;

H
Hu Tao 已提交
1427
        cpumasklen = 0;
1428

H
Hu Tao 已提交
1429
        def->cpumask = virBitmapNew(VIR_DOMAIN_CPUMASK_LEN);
1430
        if (!def->cpumask)
M
Matthias Bolte 已提交
1431
            goto cleanup;
1432 1433 1434 1435 1436 1437 1438

        while (*current != '\0') {
            virSkipSpaces(&current);

            number = virParseNumber(&current);

            if (number < 0) {
1439 1440 1441 1442
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Expecting VMX entry 'sched.cpu.affinity' to be "
                                 "a comma separated list of unsigned integers but "
                                 "found '%s'"), sched_cpu_affinity);
M
Matthias Bolte 已提交
1443
                goto cleanup;
1444 1445 1446
            }

            if (number >= VIR_DOMAIN_CPUMASK_LEN) {
1447 1448 1449
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("VMX entry 'sched.cpu.affinity' contains a %d, "
                                 "this value is too large"), number);
M
Matthias Bolte 已提交
1450
                goto cleanup;
1451 1452
            }

H
Hu Tao 已提交
1453 1454
            if (number + 1 > cpumasklen) {
                cpumasklen = number + 1;
1455 1456
            }

H
Hu Tao 已提交
1457
            ignore_value(virBitmapSetBit(def->cpumask, number));
1458 1459 1460 1461 1462 1463 1464 1465 1466
            ++count;

            virSkipSpaces(&current);

            if (*current == ',') {
                ++current;
            } else if (*current == '\0') {
                break;
            } else {
1467 1468 1469 1470
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Expecting VMX entry 'sched.cpu.affinity' to be "
                                 "a comma separated list of unsigned integers but "
                                 "found '%s'"), sched_cpu_affinity);
M
Matthias Bolte 已提交
1471
                goto cleanup;
1472 1473 1474 1475 1476 1477
            }

            virSkipSpaces(&current);
        }

        if (count < numvcpus) {
1478 1479 1480 1481
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Expecting VMX entry 'sched.cpu.affinity' to contain "
                             "at least as many values as 'numvcpus' (%lld) but "
                             "found only %d value(s)"), numvcpus, count);
M
Matthias Bolte 已提交
1482
            goto cleanup;
1483 1484 1485
        }
    }

1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501
    /* vmx:sched.cpu.shares -> def:cputune.shares */
    if (virVMXGetConfigString(conf, "sched.cpu.shares", &sched_cpu_shares,
                              true) < 0) {
        goto cleanup;
    }

    if (sched_cpu_shares != NULL) {
        /* See http://www.vmware.com/support/developer/vc-sdk/visdk41pubs/ApiReference/vim.SharesInfo.Level.html */
        if (STRCASEEQ(sched_cpu_shares, "low")) {
            def->cputune.shares = def->vcpus * 500;
        } else if (STRCASEEQ(sched_cpu_shares, "normal")) {
            def->cputune.shares = def->vcpus * 1000;
        } else if (STRCASEEQ(sched_cpu_shares, "high")) {
            def->cputune.shares = def->vcpus * 2000;
        } else if (virStrToLong_ul(sched_cpu_shares, NULL, 10,
                                   &def->cputune.shares) < 0) {
1502 1503 1504 1505
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Expecting VMX entry 'sched.cpu.shares' to be an "
                             "unsigned integer or 'low', 'normal' or 'high' but "
                             "found '%s'"), sched_cpu_shares);
1506 1507 1508 1509
            goto cleanup;
        }
    }

1510 1511 1512 1513 1514 1515
    /* def:lifecycle */
    def->onReboot = VIR_DOMAIN_LIFECYCLE_RESTART;
    def->onPoweroff = VIR_DOMAIN_LIFECYCLE_DESTROY;
    def->onCrash = VIR_DOMAIN_LIFECYCLE_DESTROY;

    /* def:os */
1516
    if (VIR_STRDUP(def->os.type, "hvm") < 0)
M
Matthias Bolte 已提交
1517
        goto cleanup;
1518

M
Matthias Bolte 已提交
1519
    /* vmx:guestOS -> def:os.arch */
1520
    if (virVMXGetConfigString(conf, "guestOS", &guestOS, true) < 0) {
M
Matthias Bolte 已提交
1521
        goto cleanup;
M
Matthias Bolte 已提交
1522 1523
    }

1524
    if (guestOS != NULL && virFileHasSuffix(guestOS, "-64")) {
1525
        def->os.arch = VIR_ARCH_X86_64;
M
Matthias Bolte 已提交
1526
    } else {
1527
        def->os.arch = VIR_ARCH_I686;
M
Matthias Bolte 已提交
1528 1529
    }

M
Matthias Bolte 已提交
1530
    /* vmx:smbios.reflecthost -> def:os.smbios_mode */
1531 1532
    if (virVMXGetConfigBoolean(conf, "smbios.reflecthost",
                               &smbios_reflecthost, false, true) < 0) {
M
Matthias Bolte 已提交
1533 1534 1535 1536 1537 1538 1539
        goto cleanup;
    }

    if (smbios_reflecthost) {
        def->os.smbios_mode = VIR_DOMAIN_SMBIOS_HOST;
    }

1540 1541
    /* def:features */
    /* FIXME */
1542

1543 1544
    /* def:clock */
    /* FIXME */
1545 1546

    /* def:graphics */
1547
    if (VIR_ALLOC_N(def->graphics, 1) < 0)
M
Matthias Bolte 已提交
1548
        goto cleanup;
M
Matthias Bolte 已提交
1549 1550 1551

    def->ngraphics = 0;

1552
    if (virVMXParseVNC(conf, &def->graphics[def->ngraphics]) < 0) {
M
Matthias Bolte 已提交
1553
        goto cleanup;
M
Matthias Bolte 已提交
1554 1555 1556 1557 1558
    }

    if (def->graphics[def->ngraphics] != NULL) {
        ++def->ngraphics;
    }
1559

M
Matthias Bolte 已提交
1560
    /* def:disks: 4 * 15 scsi + 2 * 2 ide + 2 floppy = 66 */
1561
    if (VIR_ALLOC_N(def->disks, 66) < 0)
M
Matthias Bolte 已提交
1562
        goto cleanup;
1563 1564 1565 1566 1567

    def->ndisks = 0;

    /* def:disks (scsi) */
    for (controller = 0; controller < 4; ++controller) {
1568 1569
        if (virVMXParseSCSIController(conf, controller, &present,
                                      &scsi_virtualDev[controller]) < 0) {
M
Matthias Bolte 已提交
1570
            goto cleanup;
1571 1572 1573 1574 1575 1576
        }

        if (! present) {
            continue;
        }

1577 1578
        for (unit = 0; unit < 16; ++unit) {
            if (unit == 7) {
1579
                /*
1580
                 * SCSI unit 7 is assigned to the SCSI controller and cannot be
1581 1582 1583 1584 1585
                 * used for disk devices.
                 */
                continue;
            }

1586
            if (virVMXParseDisk(ctx, xmlopt, conf, VIR_DOMAIN_DISK_DEVICE_DISK,
1587 1588
                                VIR_DOMAIN_DISK_BUS_SCSI, controller, unit,
                                &def->disks[def->ndisks]) < 0) {
M
Matthias Bolte 已提交
1589
                goto cleanup;
1590 1591 1592 1593 1594 1595 1596
            }

            if (def->disks[def->ndisks] != NULL) {
                ++def->ndisks;
                continue;
            }

1597
            if (virVMXParseDisk(ctx, xmlopt, conf, VIR_DOMAIN_DISK_DEVICE_CDROM,
1598
                                 VIR_DOMAIN_DISK_BUS_SCSI, controller, unit,
1599
                                 &def->disks[def->ndisks]) < 0) {
M
Matthias Bolte 已提交
1600
                goto cleanup;
1601 1602 1603 1604 1605 1606 1607 1608 1609
            }

            if (def->disks[def->ndisks] != NULL) {
                ++def->ndisks;
            }
        }
    }

    /* def:disks (ide) */
1610 1611
    for (bus = 0; bus < 2; ++bus) {
        for (unit = 0; unit < 2; ++unit) {
1612
            if (virVMXParseDisk(ctx, xmlopt, conf, VIR_DOMAIN_DISK_DEVICE_DISK,
1613 1614
                                VIR_DOMAIN_DISK_BUS_IDE, bus, unit,
                                &def->disks[def->ndisks]) < 0) {
M
Matthias Bolte 已提交
1615
                goto cleanup;
1616 1617 1618 1619 1620 1621 1622
            }

            if (def->disks[def->ndisks] != NULL) {
                ++def->ndisks;
                continue;
            }

1623
            if (virVMXParseDisk(ctx, xmlopt, conf, VIR_DOMAIN_DISK_DEVICE_CDROM,
1624 1625
                                VIR_DOMAIN_DISK_BUS_IDE, bus, unit,
                                &def->disks[def->ndisks]) < 0) {
M
Matthias Bolte 已提交
1626
                goto cleanup;
1627 1628 1629 1630 1631 1632 1633 1634 1635
            }

            if (def->disks[def->ndisks] != NULL) {
                ++def->ndisks;
            }
        }
    }

    /* def:disks (floppy) */
1636
    for (unit = 0; unit < 2; ++unit) {
1637
        if (virVMXParseDisk(ctx, xmlopt, conf, VIR_DOMAIN_DISK_DEVICE_FLOPPY,
1638 1639
                            VIR_DOMAIN_DISK_BUS_FDC, 0, unit,
                            &def->disks[def->ndisks]) < 0) {
M
Matthias Bolte 已提交
1640
            goto cleanup;
1641 1642 1643 1644 1645 1646 1647
        }

        if (def->disks[def->ndisks] != NULL) {
            ++def->ndisks;
        }
    }

1648 1649
    /* def:controllers */
    if (virDomainDefAddImplicitControllers(def) < 0) {
1650
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Could not add controllers"));
1651 1652 1653 1654 1655
        goto cleanup;
    }

    for (controller = 0; controller < def->ncontrollers; ++controller) {
        if (def->controllers[controller]->type == VIR_DOMAIN_CONTROLLER_TYPE_SCSI) {
1656
            if (def->controllers[controller]->idx > 3) {
1657 1658 1659
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("SCSI controller index %d out of [0..3] range"),
                               def->controllers[controller]->idx);
1660 1661 1662 1663 1664 1665 1666 1667
                goto cleanup;
            }

            def->controllers[controller]->model =
              scsi_virtualDev[def->controllers[controller]->idx];
        }
    }

1668
    /* def:fss */
1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682
    if (virVMXGetConfigBoolean(conf, "isolation.tools.hgfs.disable",
                               &hgfs_disabled, true, true) < 0) {
        goto cleanup;
    }

    if (!hgfs_disabled) {
        if (virVMXGetConfigLong(conf, "sharedFolder.maxNum", &sharedFolder_maxNum,
                                0, true) < 0) {
            goto cleanup;
        }

        if (sharedFolder_maxNum > 0) {
            int number;

1683
            if (VIR_ALLOC_N(def->fss, sharedFolder_maxNum) < 0)
1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699
                goto cleanup;

            def->nfss = 0;

            for (number = 0; number < sharedFolder_maxNum; ++number) {
                if (virVMXParseFileSystem(conf, number,
                                          &def->fss[def->nfss]) < 0) {
                    goto cleanup;
                }

                if (def->fss[def->nfss] != NULL) {
                    ++def->nfss;
                }
            }
        }
    }
1700 1701

    /* def:nets */
1702
    if (VIR_ALLOC_N(def->nets, 4) < 0)
M
Matthias Bolte 已提交
1703
        goto cleanup;
1704 1705 1706 1707

    def->nnets = 0;

    for (controller = 0; controller < 4; ++controller) {
1708 1709
        if (virVMXParseEthernet(conf, controller,
                                &def->nets[def->nnets]) < 0) {
M
Matthias Bolte 已提交
1710
            goto cleanup;
1711 1712 1713 1714 1715 1716 1717 1718 1719 1720
        }

        if (def->nets[def->nnets] != NULL) {
            ++def->nnets;
        }
    }

    /* def:inputs */
    /* FIXME */

1721
    /* def:videos */
1722
    if (VIR_ALLOC_N(def->videos, 1) < 0)
1723 1724 1725 1726 1727 1728 1729 1730 1731 1732
        goto cleanup;

    def->nvideos = 0;

    if (virVMXParseSVGA(conf, &def->videos[def->nvideos]) < 0) {
        goto cleanup;
    }

    def->nvideos = 1;

1733 1734 1735 1736 1737 1738 1739
    /* def:sounds */
    /* FIXME */

    /* def:hostdevs */
    /* FIXME */

    /* def:serials */
1740
    if (VIR_ALLOC_N(def->serials, 4) < 0)
M
Matthias Bolte 已提交
1741
        goto cleanup;
1742 1743 1744 1745

    def->nserials = 0;

    for (port = 0; port < 4; ++port) {
1746 1747
        if (virVMXParseSerial(ctx, conf, port,
                              &def->serials[def->nserials]) < 0) {
M
Matthias Bolte 已提交
1748
            goto cleanup;
1749 1750 1751 1752 1753 1754 1755 1756
        }

        if (def->serials[def->nserials] != NULL) {
            ++def->nserials;
        }
    }

    /* def:parallels */
1757
    if (VIR_ALLOC_N(def->parallels, 3) < 0)
M
Matthias Bolte 已提交
1758
        goto cleanup;
1759 1760 1761 1762

    def->nparallels = 0;

    for (port = 0; port < 3; ++port) {
1763 1764
        if (virVMXParseParallel(ctx, conf, port,
                                &def->parallels[def->nparallels]) < 0) {
M
Matthias Bolte 已提交
1765
            goto cleanup;
1766 1767 1768 1769 1770 1771 1772
        }

        if (def->parallels[def->nparallels] != NULL) {
            ++def->nparallels;
        }
    }

M
Matthias Bolte 已提交
1773 1774
    success = true;

M
Matthias Bolte 已提交
1775
  cleanup:
M
Matthias Bolte 已提交
1776 1777 1778 1779 1780
    if (! success) {
        virDomainDefFree(def);
        def = NULL;
    }

1781
    virConfFree(conf);
1782
    VIR_FREE(encoding);
1783
    VIR_FREE(sched_cpu_affinity);
1784
    VIR_FREE(sched_cpu_shares);
M
Matthias Bolte 已提交
1785
    VIR_FREE(guestOS);
1786 1787 1788 1789 1790 1791

    return def;
}



M
Matthias Bolte 已提交
1792
int
1793
virVMXParseVNC(virConfPtr conf, virDomainGraphicsDefPtr *def)
M
Matthias Bolte 已提交
1794
{
1795
    bool enabled = false;
M
Matthias Bolte 已提交
1796
    long long port = 0;
1797
    char *listenAddr = NULL;
M
Matthias Bolte 已提交
1798 1799

    if (def == NULL || *def != NULL) {
1800
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
1801 1802 1803
        return -1;
    }

1804 1805
    if (virVMXGetConfigBoolean(conf, "RemoteDisplay.vnc.enabled", &enabled,
                               false, true) < 0) {
M
Matthias Bolte 已提交
1806 1807 1808 1809 1810 1811 1812
        return -1;
    }

    if (! enabled) {
        return 0;
    }

1813
    if (VIR_ALLOC(*def) < 0)
M
Matthias Bolte 已提交
1814 1815 1816 1817
        goto failure;

    (*def)->type = VIR_DOMAIN_GRAPHICS_TYPE_VNC;

1818 1819 1820
    if (virVMXGetConfigLong(conf, "RemoteDisplay.vnc.port", &port, -1,
                            true) < 0 ||
        virVMXGetConfigString(conf, "RemoteDisplay.vnc.ip",
1821
                              &listenAddr, true) < 0 ||
1822 1823 1824 1825
        virVMXGetConfigString(conf, "RemoteDisplay.vnc.keymap",
                              &(*def)->data.vnc.keymap, true) < 0 ||
        virVMXGetConfigString(conf, "RemoteDisplay.vnc.password",
                              &(*def)->data.vnc.auth.passwd, true) < 0) {
M
Matthias Bolte 已提交
1826 1827 1828
        goto failure;
    }

1829 1830 1831 1832 1833 1834
    if (listenAddr) {
        if (virDomainGraphicsListenSetAddress(*def, 0, listenAddr, -1, true) < 0)
            goto failure;
        VIR_FREE(listenAddr);
    }

M
Matthias Bolte 已提交
1835
    if (port < 0) {
1836
        VIR_WARN("VNC is enabled but VMX entry 'RemoteDisplay.vnc.port' "
M
Matthias Bolte 已提交
1837 1838 1839
                  "is missing, the VNC port is unknown");

        (*def)->data.vnc.port = 0;
1840
        (*def)->data.vnc.autoport = true;
M
Matthias Bolte 已提交
1841 1842 1843 1844 1845 1846
    } else {
        if (port < 5900 || port > 5964) {
            VIR_WARN("VNC port %lld it out of [5900..5964] range", port);
        }

        (*def)->data.vnc.port = port;
1847
        (*def)->data.vnc.autoport = false;
M
Matthias Bolte 已提交
1848 1849 1850 1851 1852
    }

    return 0;

  failure:
1853
    VIR_FREE(listenAddr);
M
Matthias Bolte 已提交
1854 1855 1856 1857 1858 1859 1860 1861
    virDomainGraphicsDefFree(*def);
    *def = NULL;

    return -1;
}



1862
int
1863 1864
virVMXParseSCSIController(virConfPtr conf, int controller, bool *present,
                          int *virtualDev)
1865
{
1866
    int result = -1;
1867 1868
    char present_name[32];
    char virtualDev_name[32];
1869 1870
    char *virtualDev_string = NULL;
    char *tmp;
1871

1872
    if (virtualDev == NULL || *virtualDev != -1) {
1873
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1874
        return -1;
1875 1876 1877
    }

    if (controller < 0 || controller > 3) {
1878 1879 1880
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("SCSI controller index %d out of [0..3] range"),
                       controller);
1881
        return -1;
1882 1883
    }

1884 1885 1886
    snprintf(present_name, sizeof(present_name), "scsi%d.present", controller);
    snprintf(virtualDev_name, sizeof(virtualDev_name), "scsi%d.virtualDev",
             controller);
1887

1888
    if (virVMXGetConfigBoolean(conf, present_name, present, false, true) < 0) {
1889
        goto cleanup;
1890 1891 1892
    }

    if (! *present) {
1893 1894
        result = 0;
        goto cleanup;
1895 1896
    }

1897 1898
    if (virVMXGetConfigString(conf, virtualDev_name, &virtualDev_string,
                              true) < 0) {
1899
        goto cleanup;
1900 1901
    }

1902 1903 1904 1905 1906 1907 1908
    if (virtualDev_string != NULL) {
        tmp = virtualDev_string;

        for (; *tmp != '\0'; ++tmp) {
            *tmp = c_tolower(*tmp);
        }

1909
        *virtualDev = virVMXControllerModelSCSITypeFromString(virtualDev_string);
1910 1911

        if (*virtualDev == -1 ||
1912 1913 1914 1915
            (*virtualDev != VIR_DOMAIN_CONTROLLER_MODEL_SCSI_BUSLOGIC &&
             *virtualDev != VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSILOGIC &&
             *virtualDev != VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LSISAS1068 &&
             *virtualDev != VIR_DOMAIN_CONTROLLER_MODEL_SCSI_VMPVSCSI)) {
1916 1917 1918 1919
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Expecting VMX entry '%s' to be 'buslogic' or 'lsilogic' "
                             "or 'lsisas1068' or 'pvscsi' but found '%s'"),
                           virtualDev_name, virtualDev_string);
1920
            goto cleanup;
1921
        }
1922 1923
    }

1924
    result = 0;
1925

1926
  cleanup:
1927
    VIR_FREE(virtualDev_string);
1928

1929
    return result;
1930 1931 1932 1933 1934
}



int
1935
virVMXParseDisk(virVMXContext *ctx, virDomainXMLOptionPtr xmlopt, virConfPtr conf,
1936 1937
                int device, int busType, int controllerOrBus, int unit,
                virDomainDiskDefPtr *def)
1938 1939
{
    /*
1940 1941 1942 1943
     *          device = {VIR_DOMAIN_DISK_DEVICE_DISK, VIR_DOMAIN_DISK_DEVICE_CDROM}
     *         busType = VIR_DOMAIN_DISK_BUS_SCSI
     * controllerOrBus = [0..3] -> controller
     *            unit = [0..6,8..15]
1944
     *
1945 1946 1947 1948
     *          device = {VIR_DOMAIN_DISK_DEVICE_DISK, VIR_DOMAIN_DISK_DEVICE_CDROM}
     *         busType = VIR_DOMAIN_DISK_BUS_IDE
     * controllerOrBus = [0..1] -> bus
     *            unit = [0..1]
1949
     *
1950 1951 1952 1953
     *          device = VIR_DOMAIN_DISK_DEVICE_FLOPPY
     *         busType = VIR_DOMAIN_DISK_BUS_FDC
     * controllerOrBus = [0]
     *            unit = [0..1]
1954 1955
     */

M
Matthias Bolte 已提交
1956
    int result = -1;
1957 1958 1959
    char *prefix = NULL;

    char present_name[32] = "";
1960
    bool present = false;
1961 1962

    char startConnected_name[32] = "";
1963
    bool startConnected = false;
1964 1965 1966 1967 1968

    char deviceType_name[32] = "";
    char *deviceType = NULL;

    char clientDevice_name[32] = "";
1969
    bool clientDevice = false;
1970 1971 1972 1973 1974 1975 1976 1977

    char fileType_name[32] = "";
    char *fileType = NULL;

    char fileName_name[32] = "";
    char *fileName = NULL;

    char writeThrough_name[32] = "";
1978
    bool writeThrough = false;
1979 1980

    if (def == NULL || *def != NULL) {
1981
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1982 1983 1984
        return -1;
    }

1985
    if (VIR_ALLOC(*def) < 0)
M
Matthias Bolte 已提交
1986
        return -1;
1987 1988

    (*def)->device = device;
1989
    (*def)->bus = busType;
1990 1991 1992 1993

    /* def:dst, def:driverName */
    if (device == VIR_DOMAIN_DISK_DEVICE_DISK ||
        device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
1994 1995
        if (busType == VIR_DOMAIN_DISK_BUS_SCSI) {
            if (controllerOrBus < 0 || controllerOrBus > 3) {
1996 1997 1998
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("SCSI controller index %d out of [0..3] range"),
                               controllerOrBus);
M
Matthias Bolte 已提交
1999
                goto cleanup;
2000 2001
            }

2002
            if (unit < 0 || unit > 15 || unit == 7) {
2003 2004 2005
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("SCSI unit index %d out of [0..6,8..15] range"),
                               unit);
M
Matthias Bolte 已提交
2006
                goto cleanup;
2007 2008
            }

2009
            if (virAsprintf(&prefix, "scsi%d:%d", controllerOrBus, unit) < 0)
M
Matthias Bolte 已提交
2010
                goto cleanup;
2011

M
Matthias Bolte 已提交
2012
            (*def)->dst =
2013
               virIndexToDiskName
2014
                 (controllerOrBus * 15 + (unit < 7 ? unit : unit - 1), "sd");
2015 2016

            if ((*def)->dst == NULL) {
M
Matthias Bolte 已提交
2017
                goto cleanup;
2018
            }
2019 2020
        } else if (busType == VIR_DOMAIN_DISK_BUS_IDE) {
            if (controllerOrBus < 0 || controllerOrBus > 1) {
2021 2022 2023
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("IDE bus index %d out of [0..1] range"),
                               controllerOrBus);
M
Matthias Bolte 已提交
2024
                goto cleanup;
2025 2026
            }

2027
            if (unit < 0 || unit > 1) {
2028 2029
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("IDE unit index %d out of [0..1] range"), unit);
M
Matthias Bolte 已提交
2030
                goto cleanup;
2031 2032
            }

2033
            if (virAsprintf(&prefix, "ide%d:%d", controllerOrBus, unit) < 0)
M
Matthias Bolte 已提交
2034
                goto cleanup;
2035

2036
            (*def)->dst = virIndexToDiskName(controllerOrBus * 2 + unit, "hd");
2037 2038

            if ((*def)->dst == NULL) {
M
Matthias Bolte 已提交
2039
                goto cleanup;
2040 2041
            }
        } else {
2042 2043 2044 2045
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported bus type '%s' for device type '%s'"),
                           virDomainDiskBusTypeToString(busType),
                           virDomainDiskDeviceTypeToString(device));
M
Matthias Bolte 已提交
2046
            goto cleanup;
2047 2048
        }
    } else if (device == VIR_DOMAIN_DISK_DEVICE_FLOPPY) {
2049 2050
        if (busType == VIR_DOMAIN_DISK_BUS_FDC) {
            if (controllerOrBus != 0) {
2051 2052 2053
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("FDC controller index %d out of [0] range"),
                               controllerOrBus);
2054 2055 2056 2057
                goto cleanup;
            }

            if (unit < 0 || unit > 1) {
2058 2059 2060
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("FDC unit index %d out of [0..1] range"),
                               unit);
M
Matthias Bolte 已提交
2061
                goto cleanup;
2062 2063
            }

2064
            if (virAsprintf(&prefix, "floppy%d", unit) < 0)
M
Matthias Bolte 已提交
2065
                goto cleanup;
2066

2067
            (*def)->dst = virIndexToDiskName(unit, "fd");
2068 2069

            if ((*def)->dst == NULL) {
M
Matthias Bolte 已提交
2070
                goto cleanup;
2071 2072
            }
        } else {
2073 2074 2075 2076
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported bus type '%s' for device type '%s'"),
                           virDomainDiskBusTypeToString(busType),
                           virDomainDiskDeviceTypeToString(device));
M
Matthias Bolte 已提交
2077
            goto cleanup;
2078 2079
        }
    } else {
2080 2081 2082
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported device type '%s'"),
                       virDomainDiskDeviceTypeToString(device));
M
Matthias Bolte 已提交
2083
        goto cleanup;
2084 2085
    }

2086 2087 2088 2089 2090 2091 2092
    VMX_BUILD_NAME(present);
    VMX_BUILD_NAME(startConnected);
    VMX_BUILD_NAME(deviceType);
    VMX_BUILD_NAME(clientDevice);
    VMX_BUILD_NAME(fileType);
    VMX_BUILD_NAME(fileName);
    VMX_BUILD_NAME(writeThrough);
2093 2094

    /* vmx:present */
2095
    if (virVMXGetConfigBoolean(conf, present_name, &present, false, true) < 0) {
M
Matthias Bolte 已提交
2096
        goto cleanup;
2097 2098 2099
    }

    /* vmx:startConnected */
2100 2101
    if (virVMXGetConfigBoolean(conf, startConnected_name, &startConnected,
                               true, true) < 0) {
M
Matthias Bolte 已提交
2102
        goto cleanup;
2103 2104 2105 2106 2107 2108 2109 2110
    }

    /* FIXME: Need to distiguish between active and inactive domains here */
    if (! present/* && ! startConnected*/) {
        goto ignore;
    }

    /* vmx:deviceType -> def:type */
2111
    if (virVMXGetConfigString(conf, deviceType_name, &deviceType, true) < 0) {
M
Matthias Bolte 已提交
2112
        goto cleanup;
2113 2114 2115
    }

    /* vmx:clientDevice */
2116 2117
    if (virVMXGetConfigBoolean(conf, clientDevice_name, &clientDevice, false,
                               true) < 0) {
M
Matthias Bolte 已提交
2118
        goto cleanup;
2119 2120 2121 2122 2123
    }

    if (clientDevice) {
        /*
         * Just ignore devices in client mode, because I have no clue how to
M
Matthias Bolte 已提交
2124
         * handle them (e.g. assign an image) without the VI Client GUI.
2125 2126 2127 2128 2129
         */
        goto ignore;
    }

    /* vmx:fileType -> def:type */
2130
    if (virVMXGetConfigString(conf, fileType_name, &fileType, true) < 0) {
M
Matthias Bolte 已提交
2131
        goto cleanup;
2132 2133 2134
    }

    /* vmx:fileName -> def:src, def:type */
2135
    if (virVMXGetConfigString(conf, fileName_name, &fileName, false) < 0) {
M
Matthias Bolte 已提交
2136
        goto cleanup;
2137 2138 2139
    }

    /* vmx:writeThrough -> def:cachemode */
2140 2141
    if (virVMXGetConfigBoolean(conf, writeThrough_name, &writeThrough, false,
                               true) < 0) {
M
Matthias Bolte 已提交
2142
        goto cleanup;
2143 2144 2145 2146
    }

    /* Setup virDomainDiskDef */
    if (device == VIR_DOMAIN_DISK_DEVICE_DISK) {
2147
        if (virFileHasSuffix(fileName, ".vmdk")) {
2148
            if (deviceType != NULL) {
2149
                if (busType == VIR_DOMAIN_DISK_BUS_SCSI &&
2150 2151
                    STRCASENEQ(deviceType, "scsi-hardDisk") &&
                    STRCASENEQ(deviceType, "disk")) {
2152 2153 2154 2155
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Expecting VMX entry '%s' to be 'scsi-hardDisk' "
                                     "or 'disk' but found '%s'"), deviceType_name,
                                   deviceType);
M
Matthias Bolte 已提交
2156
                    goto cleanup;
2157
                } else if (busType == VIR_DOMAIN_DISK_BUS_IDE &&
2158 2159
                           STRCASENEQ(deviceType, "ata-hardDisk") &&
                           STRCASENEQ(deviceType, "disk")) {
2160 2161 2162 2163
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Expecting VMX entry '%s' to be 'ata-hardDisk' "
                                     "or 'disk' but found '%s'"), deviceType_name,
                                   deviceType);
M
Matthias Bolte 已提交
2164
                    goto cleanup;
2165 2166 2167 2168
                }
            }

            (*def)->type = VIR_DOMAIN_DISK_TYPE_FILE;
2169
            (*def)->src = ctx->parseFileName(fileName, ctx->opaque);
2170 2171 2172
            (*def)->cachemode = writeThrough ? VIR_DOMAIN_DISK_CACHE_WRITETHRU
                                             : VIR_DOMAIN_DISK_CACHE_DEFAULT;

M
Matthias Bolte 已提交
2173
            if ((*def)->src == NULL) {
M
Matthias Bolte 已提交
2174
                goto cleanup;
M
Matthias Bolte 已提交
2175
            }
2176
        } else if (virFileHasSuffix(fileName, ".iso") ||
2177
                   STRCASEEQ(deviceType, "atapi-cdrom")) {
2178 2179 2180 2181 2182 2183 2184 2185
            /*
             * This function was called in order to parse a harddisk device,
             * but .iso files and 'atapi-cdrom' devices are for CDROM devices
             * only. Just ignore it, another call to this function to parse a
             * CDROM device may handle it.
             */
            goto ignore;
        } else {
2186 2187 2188
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Invalid or not yet handled value '%s' for VMX entry "
                             "'%s'"), fileName, fileName_name);
M
Matthias Bolte 已提交
2189
            goto cleanup;
2190 2191
        }
    } else if (device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
2192
        if (virFileHasSuffix(fileName, ".iso")) {
2193 2194
            if (deviceType != NULL) {
                if (STRCASENEQ(deviceType, "cdrom-image")) {
2195 2196 2197
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Expecting VMX entry '%s' to be 'cdrom-image' "
                                     "but found '%s'"), deviceType_name, deviceType);
M
Matthias Bolte 已提交
2198
                    goto cleanup;
2199 2200 2201 2202
                }
            }

            (*def)->type = VIR_DOMAIN_DISK_TYPE_FILE;
2203
            (*def)->src = ctx->parseFileName(fileName, ctx->opaque);
2204

M
Matthias Bolte 已提交
2205
            if ((*def)->src == NULL) {
M
Matthias Bolte 已提交
2206
                goto cleanup;
M
Matthias Bolte 已提交
2207
            }
2208
        } else if (virFileHasSuffix(fileName, ".vmdk")) {
2209 2210 2211 2212 2213 2214 2215
            /*
             * This function was called in order to parse a CDROM device, but
             * .vmdk files are for harddisk devices only. Just ignore it,
             * another call to this function to parse a harddisk device may
             * handle it.
             */
            goto ignore;
2216
        } else if (STRCASEEQ(deviceType, "atapi-cdrom")) {
2217 2218 2219 2220 2221
            (*def)->type = VIR_DOMAIN_DISK_TYPE_BLOCK;
            (*def)->src = fileName;

            fileName = NULL;
        } else {
2222 2223 2224
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Invalid or not yet handled value '%s' for VMX entry "
                             "'%s'"), fileName, fileName_name);
M
Matthias Bolte 已提交
2225
            goto cleanup;
2226 2227
        }
    } else if (device == VIR_DOMAIN_DISK_DEVICE_FLOPPY) {
2228
        if (virFileHasSuffix(fileName, ".flp")) {
2229 2230
            if (fileType != NULL) {
                if (STRCASENEQ(fileType, "file")) {
2231 2232 2233
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Expecting VMX entry '%s' to be 'file' but "
                                     "found '%s'"), fileType_name, fileType);
M
Matthias Bolte 已提交
2234
                    goto cleanup;
2235 2236 2237 2238
                }
            }

            (*def)->type = VIR_DOMAIN_DISK_TYPE_FILE;
2239
            (*def)->src = ctx->parseFileName(fileName, ctx->opaque);
2240

M
Matthias Bolte 已提交
2241
            if ((*def)->src == NULL) {
M
Matthias Bolte 已提交
2242
                goto cleanup;
M
Matthias Bolte 已提交
2243
            }
2244
        } else if (fileType != NULL && STRCASEEQ(fileType, "device")) {
2245 2246 2247 2248 2249
            (*def)->type = VIR_DOMAIN_DISK_TYPE_BLOCK;
            (*def)->src = fileName;

            fileName = NULL;
        } else {
2250 2251 2252
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Invalid or not yet handled value '%s' for VMX entry "
                             "'%s'"), fileName, fileName_name);
M
Matthias Bolte 已提交
2253
            goto cleanup;
2254 2255
        }
    } else {
2256 2257
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, _("Unsupported device type '%s'"),
                       virDomainDiskDeviceTypeToString(device));
M
Matthias Bolte 已提交
2258
        goto cleanup;
2259 2260
    }

2261
    if (virDomainDiskDefAssignAddress(xmlopt, *def) < 0) {
2262 2263
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not assign address to disk '%s'"), (*def)->src);
2264 2265 2266
        goto cleanup;
    }

M
Matthias Bolte 已提交
2267 2268
    result = 0;

M
Matthias Bolte 已提交
2269
  cleanup:
M
Matthias Bolte 已提交
2270 2271 2272 2273 2274
    if (result < 0) {
        virDomainDiskDefFree(*def);
        *def = NULL;
    }

2275 2276 2277 2278 2279 2280 2281
    VIR_FREE(prefix);
    VIR_FREE(deviceType);
    VIR_FREE(fileType);
    VIR_FREE(fileName);

    return result;

M
Matthias Bolte 已提交
2282
  ignore:
2283 2284 2285
    virDomainDiskDefFree(*def);
    *def = NULL;

M
Matthias Bolte 已提交
2286 2287
    result = 0;

2288 2289 2290 2291 2292
    goto cleanup;
}



2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317
int virVMXParseFileSystem(virConfPtr conf, int number, virDomainFSDefPtr *def)
{
    int result = -1;
    char prefix[48] = "";

    char present_name[48] = "";
    bool present = false;

    char enabled_name[48] = "";
    bool enabled = false;

    char hostPath_name[48] = "";
    char *hostPath = NULL;

    char guestName_name[48] = "";
    char *guestName = NULL;

    char writeAccess_name[48] = "";
    bool writeAccess = false;

    if (def == NULL || *def != NULL) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
        return -1;
    }

2318
    if (VIR_ALLOC(*def) < 0)
2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392
        return -1;

    (*def)->type = VIR_DOMAIN_FS_TYPE_MOUNT;

    snprintf(prefix, sizeof(prefix), "sharedFolder%d", number);

    VMX_BUILD_NAME(present);
    VMX_BUILD_NAME(enabled);
    VMX_BUILD_NAME(hostPath);
    VMX_BUILD_NAME(guestName);
    VMX_BUILD_NAME(writeAccess);

    /* vmx:present */
    if (virVMXGetConfigBoolean(conf, present_name, &present, false, true) < 0) {
        goto cleanup;
    }

    /* vmx:enabled */
    if (virVMXGetConfigBoolean(conf, enabled_name, &enabled, false, true) < 0) {
        goto cleanup;
    }

    if (!(present && enabled)) {
        goto ignore;
    }

    /* vmx:hostPath */
    if (virVMXGetConfigString(conf, hostPath_name, &hostPath, false) < 0) {
        goto cleanup;
    }

    (*def)->src = hostPath;
    hostPath = NULL;

    /* vmx:guestName */
    if (virVMXGetConfigString(conf, guestName_name, &guestName, false) < 0) {
        goto cleanup;
    }

    (*def)->dst = guestName;
    guestName = NULL;

    /* vmx:writeAccess */
    if (virVMXGetConfigBoolean(conf, writeAccess_name, &writeAccess, false,
                               true) < 0) {
        goto cleanup;
    }

    (*def)->readonly = !writeAccess;

    result = 0;

  cleanup:
    if (result < 0) {
        virDomainFSDefFree(*def);
        *def = NULL;
    }

    VIR_FREE(hostPath);
    VIR_FREE(guestName);

    return result;

  ignore:
    virDomainFSDefFree(*def);
    *def = NULL;

    result = 0;

    goto cleanup;
}



2393
int
2394
virVMXParseEthernet(virConfPtr conf, int controller, virDomainNetDefPtr *def)
2395
{
M
Matthias Bolte 已提交
2396
    int result = -1;
2397 2398 2399
    char prefix[48] = "";

    char present_name[48] = "";
2400
    bool present = false;
2401 2402

    char startConnected_name[48] = "";
2403
    bool startConnected = false;
2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419

    char connectionType_name[48] = "";
    char *connectionType = NULL;

    char addressType_name[48] = "";
    char *addressType = NULL;

    char generatedAddress_name[48] = "";
    char *generatedAddress = NULL;

    char address_name[48] = "";
    char *address = NULL;

    char virtualDev_name[48] = "";
    char *virtualDev = NULL;

2420 2421 2422
    char features_name[48] = "";
    long long features = 0;

2423 2424 2425
    char vnet_name[48] = "";
    char *vnet = NULL;

M
Matthias Bolte 已提交
2426 2427 2428
    char networkName_name[48] = "";
    char *networkName = NULL;

2429
    if (def == NULL || *def != NULL) {
2430
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2431 2432 2433 2434
        return -1;
    }

    if (controller < 0 || controller > 3) {
2435 2436 2437
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Ethernet controller index %d out of [0..3] range"),
                       controller);
2438
        return -1;
2439 2440
    }

2441
    if (VIR_ALLOC(*def) < 0)
M
Matthias Bolte 已提交
2442
        return -1;
2443

2444
    snprintf(prefix, sizeof(prefix), "ethernet%d", controller);
2445

2446 2447 2448 2449 2450 2451 2452 2453 2454 2455
    VMX_BUILD_NAME(present);
    VMX_BUILD_NAME(startConnected);
    VMX_BUILD_NAME(connectionType);
    VMX_BUILD_NAME(addressType);
    VMX_BUILD_NAME(generatedAddress);
    VMX_BUILD_NAME(address);
    VMX_BUILD_NAME(virtualDev);
    VMX_BUILD_NAME(features);
    VMX_BUILD_NAME(networkName);
    VMX_BUILD_NAME(vnet);
2456 2457

    /* vmx:present */
2458
    if (virVMXGetConfigBoolean(conf, present_name, &present, false, true) < 0) {
M
Matthias Bolte 已提交
2459
        goto cleanup;
2460 2461 2462
    }

    /* vmx:startConnected */
2463 2464
    if (virVMXGetConfigBoolean(conf, startConnected_name, &startConnected,
                               true, true) < 0) {
M
Matthias Bolte 已提交
2465
        goto cleanup;
2466 2467 2468 2469 2470 2471 2472 2473
    }

    /* FIXME: Need to distiguish between active and inactive domains here */
    if (! present/* && ! startConnected*/) {
        goto ignore;
    }

    /* vmx:connectionType -> def:type */
2474 2475
    if (virVMXGetConfigString(conf, connectionType_name, &connectionType,
                              true) < 0) {
M
Matthias Bolte 已提交
2476
        goto cleanup;
2477 2478 2479
    }

    /* vmx:addressType, vmx:generatedAddress, vmx:address -> def:mac */
2480 2481 2482 2483 2484
    if (virVMXGetConfigString(conf, addressType_name, &addressType,
                              true) < 0 ||
        virVMXGetConfigString(conf, generatedAddress_name, &generatedAddress,
                              true) < 0 ||
        virVMXGetConfigString(conf, address_name, &address, true) < 0) {
M
Matthias Bolte 已提交
2485
        goto cleanup;
2486 2487
    }

2488 2489
    if (addressType == NULL || STRCASEEQ(addressType, "generated") ||
        STRCASEEQ(addressType, "vpx")) {
2490
        if (generatedAddress != NULL) {
2491
            if (virMacAddrParse(generatedAddress, &(*def)->mac) < 0) {
2492 2493 2494 2495
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Expecting VMX entry '%s' to be MAC address but "
                                 "found '%s'"), generatedAddress_name,
                               generatedAddress);
M
Matthias Bolte 已提交
2496
                goto cleanup;
2497 2498 2499 2500
            }
        }
    } else if (STRCASEEQ(addressType, "static")) {
        if (address != NULL) {
2501
            if (virMacAddrParse(address, &(*def)->mac) < 0) {
2502 2503 2504
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Expecting VMX entry '%s' to be MAC address but "
                                 "found '%s'"), address_name, address);
M
Matthias Bolte 已提交
2505
                goto cleanup;
2506 2507 2508
            }
        }
    } else {
2509 2510 2511
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting VMX entry '%s' to be 'generated' or 'static' or "
                         "'vpx' but found '%s'"), addressType_name, addressType);
M
Matthias Bolte 已提交
2512
        goto cleanup;
2513 2514
    }

2515
    /* vmx:virtualDev, vmx:features -> def:model */
2516 2517
    if (virVMXGetConfigString(conf, virtualDev_name, &virtualDev, true) < 0 ||
        virVMXGetConfigLong(conf, features_name, &features, 0, true) < 0) {
M
Matthias Bolte 已提交
2518
        goto cleanup;
2519 2520
    }

2521 2522 2523 2524 2525
    if (virtualDev != NULL) {
        if (STRCASENEQ(virtualDev, "vlance") &&
            STRCASENEQ(virtualDev, "vmxnet") &&
            STRCASENEQ(virtualDev, "vmxnet3") &&
            STRCASENEQ(virtualDev, "e1000")) {
2526 2527 2528 2529
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Expecting VMX entry '%s' to be 'vlance' or 'vmxnet' or "
                             "'vmxnet3' or 'e1000' but found '%s'"), virtualDev_name,
                           virtualDev);
M
Matthias Bolte 已提交
2530
            goto cleanup;
2531 2532 2533 2534 2535
        }

        if (STRCASEEQ(virtualDev, "vmxnet") && features == 15) {
            VIR_FREE(virtualDev);

2536
            if (VIR_STRDUP(virtualDev, "vmxnet2") < 0)
M
Matthias Bolte 已提交
2537
                goto cleanup;
2538
        }
2539 2540
    }

M
Matthias Bolte 已提交
2541
    /* vmx:networkName -> def:data.bridge.brname */
2542 2543 2544 2545 2546 2547 2548
    if (connectionType == NULL ||
        STRCASEEQ(connectionType, "bridged") ||
        STRCASEEQ(connectionType, "custom")) {
        if (virVMXGetConfigString(conf, networkName_name, &networkName,
                                  true) < 0)
            goto cleanup;

2549 2550
        if (!networkName && VIR_STRDUP(networkName, "") < 0)
            goto cleanup;
M
Matthias Bolte 已提交
2551 2552 2553
    }

    /* vmx:vnet -> def:data.ifname */
2554
    if (connectionType != NULL && STRCASEEQ(connectionType, "custom") &&
2555
        virVMXGetConfigString(conf, vnet_name, &vnet, false) < 0) {
M
Matthias Bolte 已提交
2556
        goto cleanup;
2557 2558 2559 2560 2561 2562
    }

    /* Setup virDomainNetDef */
    if (connectionType == NULL || STRCASEEQ(connectionType, "bridged")) {
        (*def)->type = VIR_DOMAIN_NET_TYPE_BRIDGE;
        (*def)->model = virtualDev;
M
Matthias Bolte 已提交
2563
        (*def)->data.bridge.brname = networkName;
2564 2565

        virtualDev = NULL;
M
Matthias Bolte 已提交
2566
        networkName = NULL;
2567 2568
    } else if (STRCASEEQ(connectionType, "hostonly")) {
        /* FIXME */
2569 2570 2571
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("No yet handled value '%s' for VMX entry '%s'"),
                       connectionType, connectionType_name);
M
Matthias Bolte 已提交
2572
        goto cleanup;
2573
    } else if (STRCASEEQ(connectionType, "nat")) {
2574 2575 2576 2577
        (*def)->type = VIR_DOMAIN_NET_TYPE_USER;
        (*def)->model = virtualDev;

        virtualDev = NULL;
2578 2579 2580
    } else if (STRCASEEQ(connectionType, "custom")) {
        (*def)->type = VIR_DOMAIN_NET_TYPE_BRIDGE;
        (*def)->model = virtualDev;
M
Matthias Bolte 已提交
2581 2582
        (*def)->data.bridge.brname = networkName;
        (*def)->ifname = vnet;
2583 2584

        virtualDev = NULL;
M
Matthias Bolte 已提交
2585
        networkName = NULL;
2586 2587
        vnet = NULL;
    } else {
2588 2589 2590
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Invalid value '%s' for VMX entry '%s'"), connectionType,
                       connectionType_name);
M
Matthias Bolte 已提交
2591
        goto cleanup;
2592 2593
    }

M
Matthias Bolte 已提交
2594 2595
    result = 0;

M
Matthias Bolte 已提交
2596
  cleanup:
M
Matthias Bolte 已提交
2597 2598 2599 2600 2601
    if (result < 0) {
        virDomainNetDefFree(*def);
        *def = NULL;
    }

S
Stefan Berger 已提交
2602
    VIR_FREE(networkName);
2603 2604 2605 2606 2607 2608 2609 2610 2611
    VIR_FREE(connectionType);
    VIR_FREE(addressType);
    VIR_FREE(generatedAddress);
    VIR_FREE(address);
    VIR_FREE(virtualDev);
    VIR_FREE(vnet);

    return result;

M
Matthias Bolte 已提交
2612
  ignore:
2613 2614 2615
    virDomainNetDefFree(*def);
    *def = NULL;

M
Matthias Bolte 已提交
2616 2617
    result = 0;

2618 2619 2620 2621 2622 2623
    goto cleanup;
}



int
2624 2625
virVMXParseSerial(virVMXContext *ctx, virConfPtr conf, int port,
                  virDomainChrDefPtr *def)
2626
{
M
Matthias Bolte 已提交
2627
    int result = -1;
2628 2629 2630
    char prefix[48] = "";

    char present_name[48] = "";
2631
    bool present = false;
2632 2633

    char startConnected_name[48] = "";
2634
    bool startConnected = false;
2635 2636 2637 2638 2639 2640 2641

    char fileType_name[48] = "";
    char *fileType = NULL;

    char fileName_name[48] = "";
    char *fileName = NULL;

2642 2643 2644
    char network_endPoint_name[48] = "";
    char *network_endPoint = NULL;

M
Martin Kletzander 已提交
2645
    virURIPtr parsedUri = NULL;
2646

2647
    if (def == NULL || *def != NULL) {
2648
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2649 2650 2651 2652
        return -1;
    }

    if (port < 0 || port > 3) {
2653 2654
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Serial port index %d out of [0..3] range"), port);
2655
        return -1;
2656 2657
    }

2658
    if (VIR_ALLOC(*def) < 0)
M
Matthias Bolte 已提交
2659
        return -1;
2660

2661
    (*def)->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL;
2662

2663
    snprintf(prefix, sizeof(prefix), "serial%d", port);
2664

2665 2666 2667 2668 2669
    VMX_BUILD_NAME(present);
    VMX_BUILD_NAME(startConnected);
    VMX_BUILD_NAME(fileType);
    VMX_BUILD_NAME(fileName);
    VMX_BUILD_NAME_EXTRA(network_endPoint, "network.endPoint");
2670 2671

    /* vmx:present */
2672
    if (virVMXGetConfigBoolean(conf, present_name, &present, false, true) < 0) {
M
Matthias Bolte 已提交
2673
        goto cleanup;
2674 2675 2676
    }

    /* vmx:startConnected */
2677 2678
    if (virVMXGetConfigBoolean(conf, startConnected_name, &startConnected,
                               true, true) < 0) {
M
Matthias Bolte 已提交
2679
        goto cleanup;
2680 2681 2682 2683 2684 2685 2686 2687
    }

    /* FIXME: Need to distiguish between active and inactive domains here */
    if (! present/* && ! startConnected*/) {
        goto ignore;
    }

    /* vmx:fileType -> def:type */
2688
    if (virVMXGetConfigString(conf, fileType_name, &fileType, false) < 0) {
M
Matthias Bolte 已提交
2689
        goto cleanup;
2690 2691 2692
    }

    /* vmx:fileName -> def:data.file.path */
2693
    if (virVMXGetConfigString(conf, fileName_name, &fileName, false) < 0) {
M
Matthias Bolte 已提交
2694
        goto cleanup;
2695 2696
    }

2697
    /* vmx:network.endPoint -> def:data.tcp.listen */
2698 2699
    if (virVMXGetConfigString(conf, network_endPoint_name, &network_endPoint,
                              true) < 0) {
2700 2701 2702
        goto cleanup;
    }

2703 2704
    /* Setup virDomainChrDef */
    if (STRCASEEQ(fileType, "device")) {
2705
        (*def)->target.port = port;
2706 2707
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_DEV;
        (*def)->source.data.file.path = fileName;
2708 2709 2710

        fileName = NULL;
    } else if (STRCASEEQ(fileType, "file")) {
2711
        (*def)->target.port = port;
2712 2713 2714
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_FILE;
        (*def)->source.data.file.path = ctx->parseFileName(fileName,
                                                           ctx->opaque);
2715

2716
        if ((*def)->source.data.file.path == NULL) {
M
Matthias Bolte 已提交
2717
            goto cleanup;
M
Matthias Bolte 已提交
2718
        }
2719
    } else if (STRCASEEQ(fileType, "pipe")) {
M
Matthias Bolte 已提交
2720 2721 2722 2723
        /*
         * FIXME: Differences between client/server and VM/application pipes
         *        not representable in domain XML form
         */
2724
        (*def)->target.port = port;
2725 2726
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_PIPE;
        (*def)->source.data.file.path = fileName;
M
Matthias Bolte 已提交
2727 2728

        fileName = NULL;
2729 2730
    } else if (STRCASEEQ(fileType, "network")) {
        (*def)->target.port = port;
2731
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_TCP;
2732

2733
        if (!(parsedUri = virURIParse(fileName)))
2734 2735 2736
            goto cleanup;

        if (parsedUri->port == 0) {
2737 2738 2739
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("VMX entry '%s' doesn't contain a port part"),
                           fileName_name);
2740 2741 2742
            goto cleanup;
        }

2743
        if (VIR_STRDUP((*def)->source.data.tcp.host, parsedUri->server) < 0)
2744 2745
            goto cleanup;

2746
        if (virAsprintf(&(*def)->source.data.tcp.service, "%d",
2747
                        parsedUri->port) < 0)
2748 2749 2750 2751 2752 2753 2754
            goto cleanup;

        /* See vSphere API documentation about VirtualSerialPortURIBackingInfo */
        if (parsedUri->scheme == NULL ||
            STRCASEEQ(parsedUri->scheme, "tcp") ||
            STRCASEEQ(parsedUri->scheme, "tcp4") ||
            STRCASEEQ(parsedUri->scheme, "tcp6")) {
2755
            (*def)->source.data.tcp.protocol = VIR_DOMAIN_CHR_TCP_PROTOCOL_RAW;
2756
        } else if (STRCASEEQ(parsedUri->scheme, "telnet")) {
2757 2758
            (*def)->source.data.tcp.protocol
                = VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET;
2759
        } else if (STRCASEEQ(parsedUri->scheme, "telnets")) {
2760 2761
            (*def)->source.data.tcp.protocol
                = VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNETS;
2762 2763 2764 2765
        } else if (STRCASEEQ(parsedUri->scheme, "ssl") ||
                   STRCASEEQ(parsedUri->scheme, "tcp+ssl") ||
                   STRCASEEQ(parsedUri->scheme, "tcp4+ssl") ||
                   STRCASEEQ(parsedUri->scheme, "tcp6+ssl")) {
2766
            (*def)->source.data.tcp.protocol = VIR_DOMAIN_CHR_TCP_PROTOCOL_TLS;
2767
        } else {
2768 2769 2770
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("VMX entry '%s' contains unsupported scheme '%s'"),
                           fileName_name, parsedUri->scheme);
2771 2772 2773 2774
            goto cleanup;
        }

        if (network_endPoint == NULL || STRCASEEQ(network_endPoint, "server")) {
2775
            (*def)->source.data.tcp.listen = true;
2776
        } else if (STRCASEEQ(network_endPoint, "client")) {
2777
            (*def)->source.data.tcp.listen = false;
2778
        } else {
2779 2780 2781
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Expecting VMX entry '%s' to be 'server' or 'client' "
                             "but found '%s'"), network_endPoint_name, network_endPoint);
2782 2783
            goto cleanup;
        }
2784
    } else {
2785 2786 2787
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting VMX entry '%s' to be 'device', 'file' or 'pipe' "
                         "or 'network' but found '%s'"), fileType_name, fileType);
M
Matthias Bolte 已提交
2788
        goto cleanup;
2789 2790
    }

M
Matthias Bolte 已提交
2791 2792
    result = 0;

M
Matthias Bolte 已提交
2793
  cleanup:
M
Matthias Bolte 已提交
2794 2795 2796 2797 2798
    if (result < 0) {
        virDomainChrDefFree(*def);
        *def = NULL;
    }

2799 2800
    VIR_FREE(fileType);
    VIR_FREE(fileName);
2801
    VIR_FREE(network_endPoint);
2802
    virURIFree(parsedUri);
2803 2804 2805

    return result;

M
Matthias Bolte 已提交
2806
  ignore:
2807 2808 2809
    virDomainChrDefFree(*def);
    *def = NULL;

M
Matthias Bolte 已提交
2810 2811
    result = 0;

2812 2813 2814 2815 2816 2817
    goto cleanup;
}



int
2818 2819
virVMXParseParallel(virVMXContext *ctx, virConfPtr conf, int port,
                    virDomainChrDefPtr *def)
2820
{
M
Matthias Bolte 已提交
2821
    int result = -1;
2822 2823 2824
    char prefix[48] = "";

    char present_name[48] = "";
2825
    bool present = false;
2826 2827

    char startConnected_name[48] = "";
2828
    bool startConnected = false;
2829 2830 2831 2832 2833 2834 2835 2836

    char fileType_name[48] = "";
    char *fileType = NULL;

    char fileName_name[48] = "";
    char *fileName = NULL;

    if (def == NULL || *def != NULL) {
2837
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2838 2839 2840 2841
        return -1;
    }

    if (port < 0 || port > 2) {
2842 2843
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Parallel port index %d out of [0..2] range"), port);
2844
        return -1;
2845 2846
    }

2847
    if (VIR_ALLOC(*def) < 0)
M
Matthias Bolte 已提交
2848
        return -1;
2849

2850
    (*def)->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_PARALLEL;
2851

2852
    snprintf(prefix, sizeof(prefix), "parallel%d", port);
2853

2854 2855 2856 2857
    VMX_BUILD_NAME(present);
    VMX_BUILD_NAME(startConnected);
    VMX_BUILD_NAME(fileType);
    VMX_BUILD_NAME(fileName);
2858 2859

    /* vmx:present */
2860
    if (virVMXGetConfigBoolean(conf, present_name, &present, false, true) < 0) {
M
Matthias Bolte 已提交
2861
        goto cleanup;
2862 2863 2864
    }

    /* vmx:startConnected */
2865 2866
    if (virVMXGetConfigBoolean(conf, startConnected_name, &startConnected,
                               true, true) < 0) {
M
Matthias Bolte 已提交
2867
        goto cleanup;
2868 2869 2870 2871 2872 2873 2874 2875
    }

    /* FIXME: Need to distiguish between active and inactive domains here */
    if (! present/* && ! startConnected*/) {
        goto ignore;
    }

    /* vmx:fileType -> def:type */
2876
    if (virVMXGetConfigString(conf, fileType_name, &fileType, false) < 0) {
M
Matthias Bolte 已提交
2877
        goto cleanup;
2878 2879 2880
    }

    /* vmx:fileName -> def:data.file.path */
2881
    if (virVMXGetConfigString(conf, fileName_name, &fileName, false) < 0) {
M
Matthias Bolte 已提交
2882
        goto cleanup;
2883 2884 2885 2886
    }

    /* Setup virDomainChrDef */
    if (STRCASEEQ(fileType, "device")) {
2887
        (*def)->target.port = port;
2888 2889
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_DEV;
        (*def)->source.data.file.path = fileName;
2890 2891 2892

        fileName = NULL;
    } else if (STRCASEEQ(fileType, "file")) {
2893
        (*def)->target.port = port;
2894 2895 2896
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_FILE;
        (*def)->source.data.file.path = ctx->parseFileName(fileName,
                                                           ctx->opaque);
2897

2898
        if ((*def)->source.data.file.path == NULL) {
M
Matthias Bolte 已提交
2899
            goto cleanup;
M
Matthias Bolte 已提交
2900
        }
2901
    } else {
2902 2903 2904
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting VMX entry '%s' to be 'device' or 'file' but "
                         "found '%s'"), fileType_name, fileType);
M
Matthias Bolte 已提交
2905
        goto cleanup;
2906 2907
    }

M
Matthias Bolte 已提交
2908 2909
    result = 0;

M
Matthias Bolte 已提交
2910
  cleanup:
M
Matthias Bolte 已提交
2911 2912 2913 2914 2915
    if (result < 0) {
        virDomainChrDefFree(*def);
        *def = NULL;
    }

2916 2917 2918 2919 2920
    VIR_FREE(fileType);
    VIR_FREE(fileName);

    return result;

M
Matthias Bolte 已提交
2921
  ignore:
2922 2923 2924
    virDomainChrDefFree(*def);
    *def = NULL;

M
Matthias Bolte 已提交
2925 2926
    result = 0;

2927 2928
    goto cleanup;
}
M
Matthias Bolte 已提交
2929 2930 2931



2932 2933 2934 2935 2936 2937 2938
int
virVMXParseSVGA(virConfPtr conf, virDomainVideoDefPtr *def)
{
    int result = -1;
    long long svga_vramSize = 0;

    if (def == NULL || *def != NULL) {
2939
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2940 2941 2942
        return -1;
    }

2943
    if (VIR_ALLOC(*def) < 0)
2944 2945 2946 2947 2948 2949 2950 2951 2952 2953
        return -1;

    (*def)->type = VIR_DOMAIN_VIDEO_TYPE_VMVGA;

    /* vmx:vramSize */
    if (virVMXGetConfigLong(conf, "svga.vramSize", &svga_vramSize,
                            4 * 1024 * 1024, true) < 0) {
        goto cleanup;
    }

2954
    (*def)->vram = VIR_DIV_UP(svga_vramSize, 1024); /* Scale from bytes to kilobytes */
2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968

    result = 0;

  cleanup:
    if (result < 0) {
        virDomainVideoDefFree(*def);
        *def = NULL;
    }

    return result;
}



M
Matthias Bolte 已提交
2969 2970 2971 2972 2973
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Domain XML -> VMX
 */

char *
2974
virVMXFormatConfig(virVMXContext *ctx, virDomainXMLOptionPtr xmlopt, virDomainDefPtr def,
2975
                   int virtualHW_version)
M
Matthias Bolte 已提交
2976
{
2977
    char *vmx = NULL;
2978
    size_t i;
M
Matthias Bolte 已提交
2979 2980 2981
    int sched_cpu_affinity_length;
    unsigned char zero[VIR_UUID_BUFLEN];
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
2982 2983
    char *preliminaryDisplayName = NULL;
    char *displayName = NULL;
2984
    char *annotation = NULL;
2985
    unsigned long long max_balloon;
2986 2987
    bool scsi_present[4] = { false, false, false, false };
    int scsi_virtualDev[4] = { -1, -1, -1, -1 };
2988
    bool floppy_present[2] = { false, false };
M
Matthias Bolte 已提交
2989

2990
    if (ctx->formatFileName == NULL) {
2991 2992
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("virVMXContext has no formatFileName function set"));
2993 2994 2995
        return NULL;
    }

M
Matthias Bolte 已提交
2996 2997
    memset(zero, 0, VIR_UUID_BUFLEN);

2998
    if (def->virtType != VIR_DOMAIN_VIRT_VMWARE) {
2999 3000 3001 3002
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting virt type to be '%s' but found '%s'"),
                       virDomainVirtTypeToString(VIR_DOMAIN_VIRT_VMWARE),
                       virDomainVirtTypeToString(def->virtType));
M
Matthias Bolte 已提交
3003 3004 3005
        return NULL;
    }

3006 3007 3008
    /* vmx:.encoding */
    virBufferAddLit(&buffer, ".encoding = \"UTF-8\"\n");

M
Matthias Bolte 已提交
3009 3010 3011 3012
    /* vmx:config.version */
    virBufferAddLit(&buffer, "config.version = \"8\"\n");

    /* vmx:virtualHW.version */
3013
    virBufferAsprintf(&buffer, "virtualHW.version = \"%d\"\n",
3014
                      virtualHW_version);
M
Matthias Bolte 已提交
3015

M
Matthias Bolte 已提交
3016
    /* def:os.arch -> vmx:guestOS */
3017
    if (def->os.arch == VIR_ARCH_I686) {
M
Matthias Bolte 已提交
3018
        virBufferAddLit(&buffer, "guestOS = \"other\"\n");
3019
    } else if (def->os.arch == VIR_ARCH_X86_64) {
M
Matthias Bolte 已提交
3020 3021
        virBufferAddLit(&buffer, "guestOS = \"other-64\"\n");
    } else {
3022 3023
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting domain XML attribute 'arch' of entry 'os/type' "
3024 3025
                         "to be 'i686' or 'x86_64' but found '%s'"),
                       virArchToString(def->os.arch));
3026
        goto cleanup;
M
Matthias Bolte 已提交
3027 3028
    }

M
Matthias Bolte 已提交
3029 3030 3031 3032 3033 3034 3035
    /* def:os.smbios_mode -> vmx:smbios.reflecthost */
    if (def->os.smbios_mode == VIR_DOMAIN_SMBIOS_NONE ||
        def->os.smbios_mode == VIR_DOMAIN_SMBIOS_EMULATE) {
        /* nothing */
    } else if (def->os.smbios_mode == VIR_DOMAIN_SMBIOS_HOST) {
        virBufferAddLit(&buffer, "smbios.reflecthost = \"true\"\n");
    } else {
3036 3037 3038
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported SMBIOS mode '%s'"),
                       virDomainSmbiosModeTypeToString(def->os.smbios_mode));
M
Matthias Bolte 已提交
3039 3040 3041
        goto cleanup;
    }

M
Matthias Bolte 已提交
3042 3043 3044 3045
    /* def:uuid -> vmx:uuid.action, vmx:uuid.bios */
    if (memcmp(def->uuid, zero, VIR_UUID_BUFLEN) == 0) {
        virBufferAddLit(&buffer, "uuid.action = \"create\"\n");
    } else {
3046
        virBufferAsprintf(&buffer, "uuid.bios = \"%02x %02x %02x %02x %02x %02x "
M
Matthias Bolte 已提交
3047 3048 3049 3050 3051 3052 3053 3054 3055
                          "%02x %02x-%02x %02x %02x %02x %02x %02x %02x %02x\"\n",
                          def->uuid[0], def->uuid[1], def->uuid[2], def->uuid[3],
                          def->uuid[4], def->uuid[5], def->uuid[6], def->uuid[7],
                          def->uuid[8], def->uuid[9], def->uuid[10], def->uuid[11],
                          def->uuid[12], def->uuid[13], def->uuid[14],
                          def->uuid[15]);
    }

    /* def:name -> vmx:displayName */
3056
    preliminaryDisplayName = virVMXEscapeHexPipe(def->name);
3057

3058 3059 3060
    if (preliminaryDisplayName == NULL) {
        goto cleanup;
    }
3061

3062
    displayName = virVMXEscapeHexPercent(preliminaryDisplayName);
3063

3064 3065 3066
    if (displayName == NULL) {
        goto cleanup;
    }
3067

3068
    virBufferAsprintf(&buffer, "displayName = \"%s\"\n", displayName);
3069

3070 3071
    /* def:description -> vmx:annotation */
    if (def->description != NULL) {
3072
        annotation = virVMXEscapeHexPipe(def->description);
3073

3074
        virBufferAsprintf(&buffer, "annotation = \"%s\"\n", annotation);
3075 3076
    }

3077
    /* def:mem.max_balloon -> vmx:memsize */
3078 3079
    /* max-memory must be a multiple of 4096 kilobyte */
    max_balloon = VIR_DIV_UP(def->mem.max_balloon, 4096) * 4096;
M
Matthias Bolte 已提交
3080

3081
    virBufferAsprintf(&buffer, "memsize = \"%llu\"\n",
3082
                      max_balloon / 1024); /* Scale from kilobytes to megabytes */
M
Matthias Bolte 已提交
3083

3084
    /* def:mem.cur_balloon -> vmx:sched.mem.max */
3085
    if (def->mem.cur_balloon < max_balloon) {
3086
        virBufferAsprintf(&buffer, "sched.mem.max = \"%llu\"\n",
3087 3088
                          VIR_DIV_UP(def->mem.cur_balloon,
                                     1024)); /* Scale from kilobytes to megabytes */
M
Matthias Bolte 已提交
3089 3090
    }

3091 3092
    /* def:mem.min_guarantee -> vmx:sched.mem.minsize */
    if (def->mem.min_guarantee > 0) {
3093
        virBufferAsprintf(&buffer, "sched.mem.minsize = \"%llu\"\n",
3094 3095
                          VIR_DIV_UP(def->mem.min_guarantee,
                                     1024)); /* Scale from kilobytes to megabytes */
3096 3097
    }

E
Eric Blake 已提交
3098 3099
    /* def:maxvcpus -> vmx:numvcpus */
    if (def->vcpus != def->maxvcpus) {
3100 3101 3102
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("No support for domain XML entry 'vcpu' attribute "
                         "'current'"));
E
Eric Blake 已提交
3103 3104 3105
        goto cleanup;
    }
    if (def->maxvcpus <= 0 || (def->maxvcpus % 2 != 0 && def->maxvcpus != 1)) {
3106 3107 3108 3109
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting domain XML entry 'vcpu' to be an unsigned "
                         "integer (1 or a multiple of 2) but found %d"),
                       def->maxvcpus);
3110
        goto cleanup;
M
Matthias Bolte 已提交
3111 3112
    }

3113
    virBufferAsprintf(&buffer, "numvcpus = \"%d\"\n", def->maxvcpus);
M
Matthias Bolte 已提交
3114 3115

    /* def:cpumask -> vmx:sched.cpu.affinity */
H
Hu Tao 已提交
3116
    if (def->cpumask && virBitmapSize(def->cpumask) > 0) {
3117
        int bit;
M
Matthias Bolte 已提交
3118 3119 3120 3121
        virBufferAddLit(&buffer, "sched.cpu.affinity = \"");

        sched_cpu_affinity_length = 0;

3122 3123
        bit = -1;
        while ((bit = virBitmapNextSetBit(def->cpumask, bit)) >= 0) {
H
Hu Tao 已提交
3124
            ++sched_cpu_affinity_length;
M
Matthias Bolte 已提交
3125 3126
        }

E
Eric Blake 已提交
3127
        if (sched_cpu_affinity_length < def->maxvcpus) {
3128 3129 3130 3131
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Expecting domain XML attribute 'cpuset' of entry "
                             "'vcpu' to contain at least %d CPU(s)"),
                           def->maxvcpus);
3132
            goto cleanup;
M
Matthias Bolte 已提交
3133 3134
        }

3135 3136 3137
        bit = -1;
        while ((bit = virBitmapNextSetBit(def->cpumask, bit)) >= 0) {
            virBufferAsprintf(&buffer, "%d", bit);
M
Matthias Bolte 已提交
3138

H
Hu Tao 已提交
3139 3140
            if (sched_cpu_affinity_length > 1) {
                virBufferAddChar(&buffer, ',');
M
Matthias Bolte 已提交
3141
            }
H
Hu Tao 已提交
3142 3143

            --sched_cpu_affinity_length;
M
Matthias Bolte 已提交
3144 3145 3146 3147 3148
        }

        virBufferAddLit(&buffer, "\"\n");
    }

3149 3150 3151 3152 3153 3154 3155 3156 3157 3158
    /* def:cputune.shares -> vmx:sched.cpu.shares */
    if (def->cputune.shares > 0) {
        /* See http://www.vmware.com/support/developer/vc-sdk/visdk41pubs/ApiReference/vim.SharesInfo.Level.html */
        if (def->cputune.shares == def->vcpus * 500) {
            virBufferAddLit(&buffer, "sched.cpu.shares = \"low\"\n");
        } else if (def->cputune.shares == def->vcpus * 1000) {
            virBufferAddLit(&buffer, "sched.cpu.shares = \"normal\"\n");
        } else if (def->cputune.shares == def->vcpus * 2000) {
            virBufferAddLit(&buffer, "sched.cpu.shares = \"high\"\n");
        } else {
3159
            virBufferAsprintf(&buffer, "sched.cpu.shares = \"%lu\"\n",
3160 3161 3162 3163
                              def->cputune.shares);
        }
    }

M
Matthias Bolte 已提交
3164 3165 3166 3167
    /* def:graphics */
    for (i = 0; i < def->ngraphics; ++i) {
        switch (def->graphics[i]->type) {
          case VIR_DOMAIN_GRAPHICS_TYPE_VNC:
3168
            if (virVMXFormatVNC(def->graphics[i], &buffer) < 0) {
3169
                goto cleanup;
M
Matthias Bolte 已提交
3170 3171 3172 3173 3174
            }

            break;

          default:
3175 3176 3177
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported graphics type '%s'"),
                           virDomainGraphicsTypeToString(def->graphics[i]->type));
3178
            goto cleanup;
M
Matthias Bolte 已提交
3179 3180 3181
        }
    }

M
Matthias Bolte 已提交
3182
    /* def:disks */
3183
    for (i = 0; i < def->ndisks; ++i) {
3184
        if (virVMXVerifyDiskAddress(xmlopt, def->disks[i]) < 0 ||
3185
            virVMXHandleLegacySCSIDiskDriverName(def, def->disks[i]) < 0) {
3186
            goto cleanup;
3187 3188
        }
    }
M
Matthias Bolte 已提交
3189

3190 3191
    if (virVMXGatherSCSIControllers(ctx, def, scsi_virtualDev,
                                    scsi_present) < 0) {
3192
        goto cleanup;
M
Matthias Bolte 已提交
3193 3194 3195 3196
    }

    for (i = 0; i < 4; ++i) {
        if (scsi_present[i]) {
3197
            virBufferAsprintf(&buffer, "scsi%zu.present = \"true\"\n", i);
M
Matthias Bolte 已提交
3198

3199
            if (scsi_virtualDev[i] != -1) {
3200
                virBufferAsprintf(&buffer, "scsi%zu.virtualDev = \"%s\"\n", i,
3201
                                  virVMXControllerModelSCSITypeToString
3202
                                    (scsi_virtualDev[i]));
M
Matthias Bolte 已提交
3203 3204 3205 3206 3207 3208 3209
            }
        }
    }

    for (i = 0; i < def->ndisks; ++i) {
        switch (def->disks[i]->device) {
          case VIR_DOMAIN_DISK_DEVICE_DISK:
3210
            if (virVMXFormatHardDisk(ctx, def->disks[i], &buffer) < 0) {
3211
                goto cleanup;
M
Matthias Bolte 已提交
3212 3213 3214 3215 3216
            }

            break;

          case VIR_DOMAIN_DISK_DEVICE_CDROM:
3217
            if (virVMXFormatCDROM(ctx, def->disks[i], &buffer) < 0) {
3218
                goto cleanup;
M
Matthias Bolte 已提交
3219 3220 3221 3222 3223
            }

            break;

          case VIR_DOMAIN_DISK_DEVICE_FLOPPY:
3224 3225
            if (virVMXFormatFloppy(ctx, def->disks[i], &buffer,
                                   floppy_present) < 0) {
3226
                goto cleanup;
M
Matthias Bolte 已提交
3227 3228 3229 3230 3231
            }

            break;

          default:
3232 3233 3234
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported disk device type '%s'"),
                           virDomainDiskDeviceTypeToString(def->disks[i]->device));
3235
            goto cleanup;
M
Matthias Bolte 已提交
3236 3237 3238
        }
    }

3239 3240 3241
    for (i = 0; i < 2; ++i) {
        /* floppy[0..1].present defaults to true, disable it explicitly */
        if (! floppy_present[i]) {
3242
            virBufferAsprintf(&buffer, "floppy%zu.present = \"false\"\n", i);
3243 3244 3245
        }
    }

M
Matthias Bolte 已提交
3246
    /* def:fss */
3247 3248
    if (def->nfss > 0) {
        virBufferAddLit(&buffer, "isolation.tools.hgfs.disable = \"false\"\n");
3249
        virBufferAsprintf(&buffer, "sharedFolder.maxNum = \"%zu\"\n", def->nfss);
3250 3251 3252 3253 3254 3255 3256
    }

    for (i = 0; i < def->nfss; ++i) {
        if (virVMXFormatFileSystem(def->fss[i], i, &buffer) < 0) {
            goto cleanup;
        }
    }
M
Matthias Bolte 已提交
3257 3258 3259

    /* def:nets */
    for (i = 0; i < def->nnets; ++i) {
3260
        if (virVMXFormatEthernet(def->nets[i], i, &buffer) < 0) {
3261
            goto cleanup;
M
Matthias Bolte 已提交
3262 3263 3264 3265 3266 3267 3268 3269 3270
        }
    }

    /* def:inputs */
    /* FIXME */

    /* def:sounds */
    /* FIXME */

3271 3272 3273
    /* def:videos */
    if (def->nvideos > 0) {
        if (def->nvideos > 1) {
3274 3275
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("No support for multiple video devices"));
3276 3277 3278 3279 3280 3281 3282 3283
            goto cleanup;
        }

        if (virVMXFormatSVGA(def->videos[0], &buffer) < 0) {
            goto cleanup;
        }
    }

M
Matthias Bolte 已提交
3284 3285 3286 3287 3288
    /* def:hostdevs */
    /* FIXME */

    /* def:serials */
    for (i = 0; i < def->nserials; ++i) {
3289
        if (virVMXFormatSerial(ctx, def->serials[i], &buffer) < 0) {
3290
            goto cleanup;
M
Matthias Bolte 已提交
3291 3292 3293 3294 3295
        }
    }

    /* def:parallels */
    for (i = 0; i < def->nparallels; ++i) {
3296
        if (virVMXFormatParallel(ctx, def->parallels[i], &buffer) < 0) {
3297
            goto cleanup;
M
Matthias Bolte 已提交
3298 3299 3300 3301 3302
        }
    }

    /* Get final VMX output */
    if (virBufferError(&buffer)) {
3303
        virReportOOMError();
3304
        goto cleanup;
M
Matthias Bolte 已提交
3305 3306
    }

3307
    vmx = virBufferContentAndReset(&buffer);
M
Matthias Bolte 已提交
3308

3309 3310 3311 3312 3313
  cleanup:
    if (vmx == NULL) {
        virBufferFreeAndReset(&buffer);
    }

3314 3315
    VIR_FREE(preliminaryDisplayName);
    VIR_FREE(displayName);
3316
    VIR_FREE(annotation);
M
Matthias Bolte 已提交
3317

3318
    return vmx;
M
Matthias Bolte 已提交
3319 3320 3321 3322
}



M
Matthias Bolte 已提交
3323
int
3324
virVMXFormatVNC(virDomainGraphicsDefPtr def, virBufferPtr buffer)
M
Matthias Bolte 已提交
3325
{
3326 3327
    const char *listenAddr;

M
Matthias Bolte 已提交
3328
    if (def->type != VIR_DOMAIN_GRAPHICS_TYPE_VNC) {
3329
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
3330 3331 3332
        return -1;
    }

3333
    virBufferAddLit(buffer, "RemoteDisplay.vnc.enabled = \"true\"\n");
M
Matthias Bolte 已提交
3334 3335

    if (def->data.vnc.autoport) {
3336
        VIR_WARN("VNC autoport is enabled, but the automatically assigned "
M
Matthias Bolte 已提交
3337 3338 3339 3340 3341 3342 3343
                  "VNC port cannot be read back");
    } else {
        if (def->data.vnc.port < 5900 || def->data.vnc.port > 5964) {
            VIR_WARN("VNC port %d it out of [5900..5964] range",
                     def->data.vnc.port);
        }

3344
        virBufferAsprintf(buffer, "RemoteDisplay.vnc.port = \"%d\"\n",
M
Matthias Bolte 已提交
3345 3346 3347
                          def->data.vnc.port);
    }

3348
    if ((listenAddr = virDomainGraphicsListenGetAddress(def, 0))) {
3349
        virBufferAsprintf(buffer, "RemoteDisplay.vnc.ip = \"%s\"\n",
3350
                          listenAddr);
M
Matthias Bolte 已提交
3351 3352 3353
    }

    if (def->data.vnc.keymap != NULL) {
3354
        virBufferAsprintf(buffer, "RemoteDisplay.vnc.keymap = \"%s\"\n",
M
Matthias Bolte 已提交
3355 3356 3357
                          def->data.vnc.keymap);
    }

3358
    if (def->data.vnc.auth.passwd != NULL) {
3359
        virBufferAsprintf(buffer, "RemoteDisplay.vnc.password = \"%s\"\n",
3360
                          def->data.vnc.auth.passwd);
M
Matthias Bolte 已提交
3361 3362 3363 3364 3365 3366 3367
    }

    return 0;
}



M
Matthias Bolte 已提交
3368
int
3369 3370
virVMXFormatHardDisk(virVMXContext *ctx, virDomainDiskDefPtr def,
                     virBufferPtr buffer)
M
Matthias Bolte 已提交
3371
{
3372
    int controllerOrBus, unit;
M
Matthias Bolte 已提交
3373 3374 3375
    const char *busName = NULL;
    const char *entryPrefix = NULL;
    const char *deviceTypePrefix = NULL;
M
Matthias Bolte 已提交
3376
    char *fileName = NULL;
M
Matthias Bolte 已提交
3377 3378

    if (def->device != VIR_DOMAIN_DISK_DEVICE_DISK) {
3379
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
3380 3381 3382 3383 3384 3385 3386 3387
        return -1;
    }

    if (def->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
        busName = "SCSI";
        entryPrefix = "scsi";
        deviceTypePrefix = "scsi";

3388 3389
        if (virVMXSCSIDiskNameToControllerAndUnit(def->dst, &controllerOrBus,
                                                  &unit) < 0) {
M
Matthias Bolte 已提交
3390 3391 3392 3393 3394 3395 3396
            return -1;
        }
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_IDE) {
        busName = "IDE";
        entryPrefix = "ide";
        deviceTypePrefix = "ata";

3397
        if (virVMXIDEDiskNameToBusAndUnit(def->dst, &controllerOrBus,
3398
                                           &unit) < 0) {
M
Matthias Bolte 已提交
3399 3400 3401
            return -1;
        }
    } else {
3402 3403 3404
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported bus type '%s' for harddisk"),
                       virDomainDiskBusTypeToString(def->bus));
M
Matthias Bolte 已提交
3405 3406 3407 3408
        return -1;
    }

    if (def->type != VIR_DOMAIN_DISK_TYPE_FILE) {
3409 3410 3411 3412
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s harddisk '%s' has unsupported type '%s', expecting '%s'"),
                       busName, def->dst, virDomainDiskTypeToString(def->type),
                       virDomainDiskTypeToString(VIR_DOMAIN_DISK_TYPE_FILE));
M
Matthias Bolte 已提交
3413 3414 3415
        return -1;
    }

3416
    virBufferAsprintf(buffer, "%s%d:%d.present = \"true\"\n",
3417
                      entryPrefix, controllerOrBus, unit);
3418
    virBufferAsprintf(buffer, "%s%d:%d.deviceType = \"%s-hardDisk\"\n",
3419
                      entryPrefix, controllerOrBus, unit, deviceTypePrefix);
M
Matthias Bolte 已提交
3420 3421

    if (def->src != NULL) {
3422
        if (! virFileHasSuffix(def->src, ".vmdk")) {
3423 3424 3425
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Image file for %s harddisk '%s' has unsupported suffix, "
                             "expecting '.vmdk'"), busName, def->dst);
M
Matthias Bolte 已提交
3426 3427 3428
            return -1;
        }

3429
        fileName = ctx->formatFileName(def->src, ctx->opaque);
M
Matthias Bolte 已提交
3430 3431 3432 3433 3434

        if (fileName == NULL) {
            return -1;
        }

3435
        virBufferAsprintf(buffer, "%s%d:%d.fileName = \"%s\"\n",
3436
                          entryPrefix, controllerOrBus, unit, fileName);
M
Matthias Bolte 已提交
3437 3438

        VIR_FREE(fileName);
M
Matthias Bolte 已提交
3439 3440 3441 3442
    }

    if (def->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
        if (def->cachemode == VIR_DOMAIN_DISK_CACHE_WRITETHRU) {
3443
            virBufferAsprintf(buffer, "%s%d:%d.writeThrough = \"true\"\n",
3444
                              entryPrefix, controllerOrBus, unit);
M
Matthias Bolte 已提交
3445
        } else if (def->cachemode != VIR_DOMAIN_DISK_CACHE_DEFAULT) {
3446 3447 3448 3449
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("%s harddisk '%s' has unsupported cache mode '%s'"),
                           busName, def->dst,
                           virDomainDiskCacheTypeToString(def->cachemode));
M
Matthias Bolte 已提交
3450
            return -1;
M
Matthias Bolte 已提交
3451 3452 3453 3454 3455 3456 3457 3458 3459
        }
    }

    return 0;
}



int
3460 3461
virVMXFormatCDROM(virVMXContext *ctx, virDomainDiskDefPtr def,
                  virBufferPtr buffer)
M
Matthias Bolte 已提交
3462
{
3463
    int controllerOrBus, unit;
M
Matthias Bolte 已提交
3464 3465
    const char *busName = NULL;
    const char *entryPrefix = NULL;
M
Matthias Bolte 已提交
3466
    char *fileName = NULL;
M
Matthias Bolte 已提交
3467 3468

    if (def->device != VIR_DOMAIN_DISK_DEVICE_CDROM) {
3469
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
3470 3471 3472 3473 3474 3475 3476
        return -1;
    }

    if (def->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
        busName = "SCSI";
        entryPrefix = "scsi";

3477 3478
        if (virVMXSCSIDiskNameToControllerAndUnit(def->dst, &controllerOrBus,
                                                  &unit) < 0) {
M
Matthias Bolte 已提交
3479 3480 3481 3482 3483 3484
            return -1;
        }
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_IDE) {
        busName = "IDE";
        entryPrefix = "ide";

3485 3486
        if (virVMXIDEDiskNameToBusAndUnit(def->dst, &controllerOrBus,
                                          &unit) < 0) {
M
Matthias Bolte 已提交
3487 3488 3489
            return -1;
        }
    } else {
3490 3491 3492
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported bus type '%s' for cdrom"),
                       virDomainDiskBusTypeToString(def->bus));
M
Matthias Bolte 已提交
3493 3494 3495
        return -1;
    }

3496
    virBufferAsprintf(buffer, "%s%d:%d.present = \"true\"\n",
3497
                      entryPrefix, controllerOrBus, unit);
M
Matthias Bolte 已提交
3498 3499

    if (def->type == VIR_DOMAIN_DISK_TYPE_FILE) {
3500
        virBufferAsprintf(buffer, "%s%d:%d.deviceType = \"cdrom-image\"\n",
3501
                          entryPrefix, controllerOrBus, unit);
M
Matthias Bolte 已提交
3502 3503

        if (def->src != NULL) {
3504
            if (! virFileHasSuffix(def->src, ".iso")) {
3505 3506 3507
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Image file for %s cdrom '%s' has unsupported "
                                 "suffix, expecting '.iso'"), busName, def->dst);
M
Matthias Bolte 已提交
3508 3509 3510
                return -1;
            }

3511
            fileName = ctx->formatFileName(def->src, ctx->opaque);
M
Matthias Bolte 已提交
3512 3513 3514 3515 3516

            if (fileName == NULL) {
                return -1;
            }

3517
            virBufferAsprintf(buffer, "%s%d:%d.fileName = \"%s\"\n",
3518
                              entryPrefix, controllerOrBus, unit, fileName);
M
Matthias Bolte 已提交
3519 3520 3521

            VIR_FREE(fileName);
        }
M
Matthias Bolte 已提交
3522
    } else if (def->type == VIR_DOMAIN_DISK_TYPE_BLOCK) {
3523
        virBufferAsprintf(buffer, "%s%d:%d.deviceType = \"atapi-cdrom\"\n",
3524
                          entryPrefix, controllerOrBus, unit);
M
Matthias Bolte 已提交
3525 3526

        if (def->src != NULL) {
3527
            virBufferAsprintf(buffer, "%s%d:%d.fileName = \"%s\"\n",
3528
                              entryPrefix, controllerOrBus, unit, def->src);
M
Matthias Bolte 已提交
3529
        }
M
Matthias Bolte 已提交
3530
    } else {
3531 3532 3533 3534 3535 3536
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("%s cdrom '%s' has unsupported type '%s', expecting '%s' "
                         "or '%s'"), busName, def->dst,
                       virDomainDiskTypeToString(def->type),
                       virDomainDiskTypeToString(VIR_DOMAIN_DISK_TYPE_FILE),
                       virDomainDiskTypeToString(VIR_DOMAIN_DISK_TYPE_BLOCK));
M
Matthias Bolte 已提交
3537 3538 3539 3540 3541 3542 3543 3544 3545
        return -1;
    }

    return 0;
}



int
3546 3547
virVMXFormatFloppy(virVMXContext *ctx, virDomainDiskDefPtr def,
                   virBufferPtr buffer, bool floppy_present[2])
M
Matthias Bolte 已提交
3548
{
3549
    int unit;
M
Matthias Bolte 已提交
3550
    char *fileName = NULL;
M
Matthias Bolte 已提交
3551 3552

    if (def->device != VIR_DOMAIN_DISK_DEVICE_FLOPPY) {
3553
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
3554 3555 3556
        return -1;
    }

3557
    if (virVMXFloppyDiskNameToUnit(def->dst, &unit) < 0) {
M
Matthias Bolte 已提交
3558 3559 3560
        return -1;
    }

3561 3562
    floppy_present[unit] = true;

3563
    virBufferAsprintf(buffer, "floppy%d.present = \"true\"\n", unit);
M
Matthias Bolte 已提交
3564 3565

    if (def->type == VIR_DOMAIN_DISK_TYPE_FILE) {
3566
        virBufferAsprintf(buffer, "floppy%d.fileType = \"file\"\n", unit);
M
Matthias Bolte 已提交
3567 3568

        if (def->src != NULL) {
3569
            if (! virFileHasSuffix(def->src, ".flp")) {
3570 3571 3572
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Image file for floppy '%s' has unsupported "
                                 "suffix, expecting '.flp'"), def->dst);
M
Matthias Bolte 已提交
3573 3574 3575
                return -1;
            }

3576
            fileName = ctx->formatFileName(def->src, ctx->opaque);
M
Matthias Bolte 已提交
3577 3578 3579 3580 3581

            if (fileName == NULL) {
                return -1;
            }

3582
            virBufferAsprintf(buffer, "floppy%d.fileName = \"%s\"\n",
3583
                              unit, fileName);
M
Matthias Bolte 已提交
3584 3585 3586

            VIR_FREE(fileName);
        }
M
Matthias Bolte 已提交
3587
    } else if (def->type == VIR_DOMAIN_DISK_TYPE_BLOCK) {
3588
        virBufferAsprintf(buffer, "floppy%d.fileType = \"device\"\n", unit);
M
Matthias Bolte 已提交
3589 3590

        if (def->src != NULL) {
3591
            virBufferAsprintf(buffer, "floppy%d.fileName = \"%s\"\n",
3592
                              unit, def->src);
M
Matthias Bolte 已提交
3593
        }
M
Matthias Bolte 已提交
3594
    } else {
3595 3596 3597 3598 3599 3600
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Floppy '%s' has unsupported type '%s', expecting '%s' "
                         "or '%s'"), def->dst,
                       virDomainDiskTypeToString(def->type),
                       virDomainDiskTypeToString(VIR_DOMAIN_DISK_TYPE_FILE),
                       virDomainDiskTypeToString(VIR_DOMAIN_DISK_TYPE_BLOCK));
M
Matthias Bolte 已提交
3601 3602 3603 3604 3605 3606 3607 3608
        return -1;
    }

    return 0;
}



3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633
int
virVMXFormatFileSystem(virDomainFSDefPtr def, int number, virBufferPtr buffer)
{
    if (def->type != VIR_DOMAIN_FS_TYPE_MOUNT) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Only '%s' filesystem type is supported"),
                       virDomainFSTypeToString(VIR_DOMAIN_FS_TYPE_MOUNT));
        return -1;
    }

    virBufferAsprintf(buffer, "sharedFolder%d.present = \"true\"\n", number);
    virBufferAsprintf(buffer, "sharedFolder%d.enabled = \"true\"\n", number);
    virBufferAsprintf(buffer, "sharedFolder%d.readAccess = \"true\"\n", number);
    virBufferAsprintf(buffer, "sharedFolder%d.writeAccess = \"%s\"\n", number,
                      def->readonly ? "false" : "true");
    virBufferAsprintf(buffer, "sharedFolder%d.hostPath = \"%s\"\n", number,
                      def->src);
    virBufferAsprintf(buffer, "sharedFolder%d.guestName = \"%s\"\n", number,
                      def->dst);

    return 0;
}



M
Matthias Bolte 已提交
3634
int
3635 3636
virVMXFormatEthernet(virDomainNetDefPtr def, int controller,
                     virBufferPtr buffer)
M
Matthias Bolte 已提交
3637 3638
{
    char mac_string[VIR_MAC_STRING_BUFLEN];
3639
    unsigned int prefix, suffix;
M
Matthias Bolte 已提交
3640 3641

    if (controller < 0 || controller > 3) {
3642 3643 3644
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Ethernet controller index %d out of [0..3] range"),
                       controller);
M
Matthias Bolte 已提交
3645 3646 3647
        return -1;
    }

3648
    virBufferAsprintf(buffer, "ethernet%d.present = \"true\"\n", controller);
M
Matthias Bolte 已提交
3649

3650
    /* def:model -> vmx:virtualDev, vmx:features */
M
Matthias Bolte 已提交
3651 3652 3653
    if (def->model != NULL) {
        if (STRCASENEQ(def->model, "vlance") &&
            STRCASENEQ(def->model, "vmxnet") &&
3654
            STRCASENEQ(def->model, "vmxnet2") &&
3655
            STRCASENEQ(def->model, "vmxnet3") &&
M
Matthias Bolte 已提交
3656
            STRCASENEQ(def->model, "e1000")) {
3657 3658 3659 3660
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Expecting domain XML entry 'devices/interface/model' "
                             "to be 'vlance' or 'vmxnet' or 'vmxnet2' or 'vmxnet3' "
                             "or 'e1000' but found '%s'"), def->model);
M
Matthias Bolte 已提交
3661 3662 3663
            return -1;
        }

3664
        if (STRCASEEQ(def->model, "vmxnet2")) {
3665
            virBufferAsprintf(buffer, "ethernet%d.virtualDev = \"vmxnet\"\n",
3666
                              controller);
3667
            virBufferAsprintf(buffer, "ethernet%d.features = \"15\"\n",
3668 3669
                              controller);
        } else {
3670
            virBufferAsprintf(buffer, "ethernet%d.virtualDev = \"%s\"\n",
3671 3672
                              controller, def->model);
        }
M
Matthias Bolte 已提交
3673 3674 3675 3676 3677
    }

    /* def:type, def:ifname -> vmx:connectionType */
    switch (def->type) {
      case VIR_DOMAIN_NET_TYPE_BRIDGE:
3678 3679 3680
        if (STRNEQ(def->data.bridge.brname, ""))
            virBufferAsprintf(buffer, "ethernet%d.networkName = \"%s\"\n",
                              controller, def->data.bridge.brname);
M
Matthias Bolte 已提交
3681 3682

        if (def->ifname != NULL) {
3683
            virBufferAsprintf(buffer, "ethernet%d.connectionType = \"custom\"\n",
M
Matthias Bolte 已提交
3684
                              controller);
3685
            virBufferAsprintf(buffer, "ethernet%d.vnet = \"%s\"\n",
M
Matthias Bolte 已提交
3686 3687
                              controller, def->ifname);
        } else {
3688
            virBufferAsprintf(buffer, "ethernet%d.connectionType = \"bridged\"\n",
M
Matthias Bolte 已提交
3689 3690 3691 3692 3693
                              controller);
        }

        break;

3694 3695 3696 3697 3698
      case VIR_DOMAIN_NET_TYPE_USER:
        virBufferAsprintf(buffer, "ethernet%d.connectionType = \"nat\"\n",
                          controller);
        break;

M
Matthias Bolte 已提交
3699
      default:
3700 3701
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, _("Unsupported net type '%s'"),
                       virDomainNetTypeToString(def->type));
M
Matthias Bolte 已提交
3702 3703 3704
        return -1;
    }

3705
    /* def:mac -> vmx:addressType, vmx:(generated)Address, vmx:checkMACAddress */
3706
    virMacAddrFormat(&def->mac, mac_string);
M
Matthias Bolte 已提交
3707

3708 3709
    prefix = (def->mac.addr[0] << 16) | (def->mac.addr[1] << 8) | def->mac.addr[2];
    suffix = (def->mac.addr[3] << 16) | (def->mac.addr[4] << 8) | def->mac.addr[5];
3710 3711

    if (prefix == 0x000c29) {
3712
        virBufferAsprintf(buffer, "ethernet%d.addressType = \"generated\"\n",
M
Matthias Bolte 已提交
3713
                          controller);
3714
        virBufferAsprintf(buffer, "ethernet%d.generatedAddress = \"%s\"\n",
M
Matthias Bolte 已提交
3715
                          controller, mac_string);
3716
        virBufferAsprintf(buffer, "ethernet%d.generatedAddressOffset = \"0\"\n",
M
Matthias Bolte 已提交
3717
                          controller);
3718
    } else if (prefix == 0x005056 && suffix <= 0x3fffff) {
3719
        virBufferAsprintf(buffer, "ethernet%d.addressType = \"static\"\n",
3720
                          controller);
3721
        virBufferAsprintf(buffer, "ethernet%d.address = \"%s\"\n",
3722 3723
                          controller, mac_string);
    } else if (prefix == 0x005056 && suffix >= 0x800000 && suffix <= 0xbfffff) {
3724
        virBufferAsprintf(buffer, "ethernet%d.addressType = \"vpx\"\n",
3725
                          controller);
3726
        virBufferAsprintf(buffer, "ethernet%d.generatedAddress = \"%s\"\n",
3727
                          controller, mac_string);
M
Matthias Bolte 已提交
3728
    } else {
3729
        virBufferAsprintf(buffer, "ethernet%d.addressType = \"static\"\n",
3730
                          controller);
3731
        virBufferAsprintf(buffer, "ethernet%d.address = \"%s\"\n",
3732
                          controller, mac_string);
3733
        virBufferAsprintf(buffer, "ethernet%d.checkMACAddress = \"false\"\n",
3734
                          controller);
M
Matthias Bolte 已提交
3735 3736 3737 3738 3739 3740 3741 3742
    }

    return 0;
}



int
3743 3744
virVMXFormatSerial(virVMXContext *ctx, virDomainChrDefPtr def,
                   virBufferPtr buffer)
M
Matthias Bolte 已提交
3745
{
M
Matthias Bolte 已提交
3746
    char *fileName = NULL;
3747
    const char *protocol;
M
Matthias Bolte 已提交
3748

3749
    if (def->target.port < 0 || def->target.port > 3) {
3750 3751 3752
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Serial port index %d out of [0..3] range"),
                       def->target.port);
M
Matthias Bolte 已提交
3753 3754 3755
        return -1;
    }

3756
    virBufferAsprintf(buffer, "serial%d.present = \"true\"\n", def->target.port);
M
Matthias Bolte 已提交
3757

M
Matthias Bolte 已提交
3758
    /* def:type -> vmx:fileType and def:data.file.path -> vmx:fileName */
3759
    switch (def->source.type) {
M
Matthias Bolte 已提交
3760
      case VIR_DOMAIN_CHR_TYPE_DEV:
3761
        virBufferAsprintf(buffer, "serial%d.fileType = \"device\"\n",
3762
                          def->target.port);
3763
        virBufferAsprintf(buffer, "serial%d.fileName = \"%s\"\n",
3764
                          def->target.port, def->source.data.file.path);
M
Matthias Bolte 已提交
3765 3766 3767
        break;

      case VIR_DOMAIN_CHR_TYPE_FILE:
3768
        virBufferAsprintf(buffer, "serial%d.fileType = \"file\"\n",
3769
                          def->target.port);
M
Matthias Bolte 已提交
3770

3771
        fileName = ctx->formatFileName(def->source.data.file.path, ctx->opaque);
M
Matthias Bolte 已提交
3772 3773 3774 3775 3776

        if (fileName == NULL) {
            return -1;
        }

3777
        virBufferAsprintf(buffer, "serial%d.fileName = \"%s\"\n",
3778
                          def->target.port, fileName);
M
Matthias Bolte 已提交
3779 3780

        VIR_FREE(fileName);
M
Matthias Bolte 已提交
3781 3782 3783
        break;

      case VIR_DOMAIN_CHR_TYPE_PIPE:
3784
        virBufferAsprintf(buffer, "serial%d.fileType = \"pipe\"\n",
3785
                          def->target.port);
M
Matthias Bolte 已提交
3786
        /* FIXME: Based on VI Client GUI default */
3787
        virBufferAsprintf(buffer, "serial%d.pipe.endPoint = \"client\"\n",
3788
                          def->target.port);
M
Matthias Bolte 已提交
3789
        /* FIXME: Based on VI Client GUI default */
3790
        virBufferAsprintf(buffer, "serial%d.tryNoRxLoss = \"false\"\n",
3791
                          def->target.port);
3792
        virBufferAsprintf(buffer, "serial%d.fileName = \"%s\"\n",
3793
                          def->target.port, def->source.data.file.path);
M
Matthias Bolte 已提交
3794 3795
        break;

3796
      case VIR_DOMAIN_CHR_TYPE_TCP:
3797
        switch (def->source.data.tcp.protocol) {
3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814
          case VIR_DOMAIN_CHR_TCP_PROTOCOL_RAW:
            protocol = "tcp";
            break;

          case VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET:
            protocol = "telnet";
            break;

          case VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNETS:
            protocol = "telnets";
            break;

          case VIR_DOMAIN_CHR_TCP_PROTOCOL_TLS:
            protocol = "ssl";
            break;

          default:
3815 3816 3817 3818
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported character device TCP protocol '%s'"),
                           virDomainChrTcpProtocolTypeToString(
                               def->source.data.tcp.protocol));
3819 3820 3821
            return -1;
        }

3822
        virBufferAsprintf(buffer, "serial%d.fileType = \"network\"\n",
3823
                          def->target.port);
3824
        virBufferAsprintf(buffer, "serial%d.fileName = \"%s://%s:%s\"\n",
3825 3826
                          def->target.port, protocol, def->source.data.tcp.host,
                          def->source.data.tcp.service);
3827
        virBufferAsprintf(buffer, "serial%d.network.endPoint = \"%s\"\n",
3828
                          def->target.port,
3829
                          def->source.data.tcp.listen ? "server" : "client");
3830 3831
        break;

M
Matthias Bolte 已提交
3832
      default:
3833 3834 3835
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported character device type '%s'"),
                       virDomainChrTypeToString(def->source.type));
M
Matthias Bolte 已提交
3836 3837 3838 3839 3840
        return -1;
    }

    /* vmx:yieldOnMsrRead */
    /* FIXME: Based on VI Client GUI default */
3841
    virBufferAsprintf(buffer, "serial%d.yieldOnMsrRead = \"true\"\n",
3842
                      def->target.port);
M
Matthias Bolte 已提交
3843 3844 3845 3846 3847 3848 3849

    return 0;
}



int
3850 3851
virVMXFormatParallel(virVMXContext *ctx, virDomainChrDefPtr def,
                     virBufferPtr buffer)
M
Matthias Bolte 已提交
3852
{
M
Matthias Bolte 已提交
3853 3854
    char *fileName = NULL;

3855
    if (def->target.port < 0 || def->target.port > 2) {
3856 3857 3858
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Parallel port index %d out of [0..2] range"),
                       def->target.port);
M
Matthias Bolte 已提交
3859 3860 3861
        return -1;
    }

3862
    virBufferAsprintf(buffer, "parallel%d.present = \"true\"\n",
3863
                      def->target.port);
M
Matthias Bolte 已提交
3864

M
Matthias Bolte 已提交
3865
    /* def:type -> vmx:fileType and def:data.file.path -> vmx:fileName */
3866
    switch (def->source.type) {
M
Matthias Bolte 已提交
3867
      case VIR_DOMAIN_CHR_TYPE_DEV:
3868
        virBufferAsprintf(buffer, "parallel%d.fileType = \"device\"\n",
3869
                          def->target.port);
3870
        virBufferAsprintf(buffer, "parallel%d.fileName = \"%s\"\n",
3871
                          def->target.port, def->source.data.file.path);
M
Matthias Bolte 已提交
3872 3873 3874
        break;

      case VIR_DOMAIN_CHR_TYPE_FILE:
3875
        virBufferAsprintf(buffer, "parallel%d.fileType = \"file\"\n",
3876
                          def->target.port);
M
Matthias Bolte 已提交
3877

3878
        fileName = ctx->formatFileName(def->source.data.file.path, ctx->opaque);
M
Matthias Bolte 已提交
3879 3880 3881 3882 3883

        if (fileName == NULL) {
            return -1;
        }

3884
        virBufferAsprintf(buffer, "parallel%d.fileName = \"%s\"\n",
3885
                          def->target.port, fileName);
M
Matthias Bolte 已提交
3886 3887

        VIR_FREE(fileName);
M
Matthias Bolte 已提交
3888 3889 3890
        break;

      default:
3891 3892 3893
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported character device type '%s'"),
                       virDomainChrTypeToString(def->source.type));
M
Matthias Bolte 已提交
3894 3895 3896 3897 3898
        return -1;
    }

    return 0;
}
3899 3900 3901 3902 3903 3904



int
virVMXFormatSVGA(virDomainVideoDefPtr def, virBufferPtr buffer)
{
3905 3906
    unsigned long long vram;

3907
    if (def->type != VIR_DOMAIN_VIDEO_TYPE_VMVGA) {
3908 3909 3910
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported video device type '%s'"),
                       virDomainVideoTypeToString(def->type));
3911 3912 3913 3914 3915 3916 3917
        return -1;
    }

    /*
     * For Windows guests the VRAM size should be a multiple of 64 kilobyte.
     * See http://kb.vmware.com/kb/1003 and http://kb.vmware.com/kb/1001558
     */
3918
    vram = VIR_DIV_UP(def->vram, 64) * 64;
3919 3920

    if (def->heads > 1) {
3921 3922
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Multi-head video devices are unsupported"));
3923 3924 3925
        return -1;
    }

3926
    virBufferAsprintf(buffer, "svga.vramSize = \"%lld\"\n",
3927
                      vram * 1024); /* kilobyte to byte */
3928 3929 3930

    return 0;
}