vmx.c 128.1 KB
Newer Older
1 2

/*
3
 * vmx.c: VMware VMX parsing/formatting functions
4
 *
5
 * Copyright (C) 2010-2012 Red Hat, Inc.
6
 * Copyright (C) 2009-2010 Matthias Bolte <matthias.bolte@googlemail.com>
7 8 9 10 11 12 13 14 15 16 17 18
 *
 * 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
19
 * License along with this library.  If not, see
O
Osier Yang 已提交
20
 * <http://www.gnu.org/licenses/>.
21 22 23 24 25
 *
 */

#include <config.h>

26 27
#include <c-ctype.h>

28 29
#include "internal.h"
#include "virterror_internal.h"
30
#include "conf.h"
31 32
#include "memory.h"
#include "logging.h"
33 34
#include "uuid.h"
#include "vmx.h"
M
Martin Kletzander 已提交
35
#include "viruri.h"
36 37 38 39 40 41 42 43 44

/*

mapping:

domain-xml                        <=>   vmx


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


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



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

def->os

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



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

89 90 91
                                        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
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110

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"
111
->dst = sd[<controller> * 15 + <unit> mapped to [a-z]+]
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
->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"
135
->dst = hd[<bus> * 2 + <unit> mapped to [a-z]+]
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
->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"
155
->dst = sd[<controller> * 15 + <unit> mapped to [a-z]+]
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
->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"
174
->dst = hd[<bus> * 2 + <unit> mapped to [a-z]+]
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
->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" ?
194
->dst = sd[<controller> * 15 + <unit> mapped to [a-z]+]
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
->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"
214
->dst = hd[<bus> * 2 + <unit> mapped to [a-z]+]
215 216 217 218 219 220 221 222 223 224
->driverName
->driverType
->cachemode
->readonly
->shared
->slotnum


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

225
                                        floppy0.present = "true"                # defaults to "true"
226 227 228 229 230 231 232 233
                                        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"
234
->dst = fd[<unit> mapped to [a-z]+]
235 236 237 238 239 240 241 242 243 244
->driverName
->driverType
->cachemode
->readonly
->shared
->slotnum


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

245
                                        floppy0.present = "true"                # defaults to "true"
246 247 248 249 250 251 252 253
                                        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"
254
->dst = fd[<unit> mapped to [a-z]+]
255 256 257 258 259 260 261 262 263
->driverName
->driverType
->cachemode
->readonly
->shared
->slotnum



264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
################################################################################
## 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



287 288 289 290 291 292 293 294 295 296 297 298
################################################################################
## 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
299
                                        ethernet0.features = "15"               # if present and virtualDev is "vmxnet" => vmxnet2 (enhanced)
300 301 302 303


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


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

310 311 312 313

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

314 315 316 317 318

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

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


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

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


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

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


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

M
Matthias Bolte 已提交
341
...                                                                             # FIXME: Investigate if ESX supports this
342 343 344 345 346 347 348
->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 已提交
349 350
->data.bridge.brname = <value>    <=>   ethernet0.networkName = "<value>"
->ifname = <value>                <=>   ethernet0.vnet = "<value>"
351 352 353



354 355 356 357 358 359 360 361 362 363
################################################################################
## video #######################################################################

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



364 365 366 367 368 369 370 371 372
################################################################################
## serials #####################################################################

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

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

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


## 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 已提交
381
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable
382 383 384 385 386 387 388


## 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 已提交
389
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable
390 391 392 393 394 395


## 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 已提交
396
???                               <=>   serial0.pipe.endPoint = "client"        # defaults to ?, FIXME: not representable
397
???                               <=>   serial0.tryNoRxLoss = "true"            # defaults to "false", FIXME: not representable
M
Matthias Bolte 已提交
398
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable
399 400 401

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


## 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 已提交
411
???                               <=>   serial0.pipe.endPoint = "client"        # defaults to ?, FIXME: not representable
412
???                               <=>   serial0.tryNoRxLoss = "false"           # defaults to "false", FIXME: not representable
M
Matthias Bolte 已提交
413
???                               <=>   serial0.yieldOnMsrRead = "true"         # defaults to "false", FIXME: not representable
414 415 416

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


422 423 424 425 426 427 428 429
## 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>

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

???                               <=>   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>

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

???                               <=>   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


452 453 454 455 456 457 458 459 460 461

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

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

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

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


## 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 已提交
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492


################################################################################
## 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

493 494
*/

495
#define VIR_FROM_THIS VIR_FROM_NONE
496

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

500 501
#define VMX_BUILD_NAME(_suffix)                                               \
    VMX_BUILD_NAME_EXTRA(_suffix, #_suffix)
502

503 504 505
/* 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 */
506 507
VIR_ENUM_DECL(virVMXControllerModelSCSI)
VIR_ENUM_IMPL(virVMXControllerModelSCSI, VIR_DOMAIN_CONTROLLER_MODEL_SCSI_LAST,
508
              "auto", /* just to match virDomainControllerModel, will never be used */
509 510 511
              "buslogic",
              "lsilogic",
              "lsisas1068",
512
              "pvscsi",
513 514
              "UNUSED ibmvscsi",
              "UNUSED virtio-scsi");
515 516


517 518 519 520 521

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

522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
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;
    }

    if (VIR_ALLOC_N(escaped, length) < 0) {
        virReportOOMError();
        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 已提交
570
int
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
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) {
608 609
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("libxml2 doesn't handle %s encoding"), encoding);
610 611 612 613 614 615 616
        return NULL;
    }

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

    if (xmlCharEncInFunc(handler, utf8, input) < 0) {
617 618
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not convert from %s to UTF-8 encoding"), encoding);
619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
        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;
        }

649 650
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Missing essential config entry '%s'"), name);
651 652 653 654
        return -1;
    }

    if (value->type != VIR_CONF_STRING) {
655 656
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Config entry '%s' must be a string"), name);
657 658 659 660 661 662 663 664
        return -1;
    }

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

665 666
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Missing essential config entry '%s'"), name);
667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693
        return -1;
    }

    *string = strdup(value->str);

    if (*string == NULL) {
        virReportOOMError();
        return -1;
    }

    return 0;
}



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 {
694 695
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Missing essential config entry '%s'"), name);
696 697 698 699 700
            return -1;
        }
    }

    if (value->type != VIR_CONF_STRING) {
701 702
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Config entry '%s' must be a string"), name);
703 704 705 706 707 708 709
        return -1;
    }

    if (value->str == NULL) {
        if (optional) {
            return 0;
        } else {
710 711
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Missing essential config entry '%s'"), name);
712 713 714 715 716
            return -1;
        }
    }

    if (virUUIDParse(value->str, uuid) < 0) {
717 718
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not parse UUID from string '%s'"), value->str);
719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
        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 {
740 741
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Missing essential config entry '%s'"), name);
742 743 744 745 746 747 748 749 750
            return -1;
        }
    }

    if (value->type == VIR_CONF_STRING) {
        if (value->str == NULL) {
            if (optional) {
                return 0;
            } else {
751 752
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Missing essential config entry '%s'"), name);
753 754 755 756
                return -1;
            }
        }

757
        if (STRCASEEQ(value->str, "unlimited")) {
758 759
            *number = -1;
        } else if (virStrToLong_ll(value->str, NULL, 10, number) < 0) {
760 761 762
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Config entry '%s' must represent an integer value"),
                           name);
763 764 765
            return -1;
        }
    } else {
766 767
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Config entry '%s' must be a string"), name);
768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
        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 {
789 790
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Missing essential config entry '%s'"), name);
791 792 793 794 795 796 797 798 799
            return -1;
        }
    }

    if (value->type == VIR_CONF_STRING) {
        if (value->str == NULL) {
            if (optional) {
                return 0;
            } else {
800 801
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Missing essential config entry '%s'"), name);
802 803 804 805 806 807 808 809 810
                return -1;
            }
        }

        if (STRCASEEQ(value->str, "true")) {
            *boolean_ = 1;
        } else if (STRCASEEQ(value->str, "false")) {
            *boolean_ = 0;
        } else {
811 812 813
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Config entry '%s' must represent a boolean value "
                             "(true|false)"), name);
814 815 816
            return -1;
        }
    } else {
817 818
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Config entry '%s' must be a string"), name);
819 820 821 822 823 824 825 826 827 828
        return -1;
    }

    return 0;
}



static int
virVMXSCSIDiskNameToControllerAndUnit(const char *name, int *controller, int *unit)
M
Matthias Bolte 已提交
829 830 831 832
{
    int idx;

    if (! STRPREFIX(name, "sd")) {
833 834 835
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Expecting domain XML attribute 'dev' of entry "
                         "'devices/disk/target' to start with 'sd'"));
M
Matthias Bolte 已提交
836 837 838 839 840 841
        return -1;
    }

    idx = virDiskNameToIndex(name);

    if (idx < 0) {
842 843
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not parse valid disk index from '%s'"), name);
M
Matthias Bolte 已提交
844 845 846
        return -1;
    }

847
    /* Each of the 4 SCSI controllers has 1 bus with 15 units each for devices */
M
Matthias Bolte 已提交
848
    if (idx >= (4 * 15)) {
849 850
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("SCSI disk index (parsed from '%s') is too large"), name);
M
Matthias Bolte 已提交
851 852 853 854
        return -1;
    }

    *controller = idx / 15;
855
    *unit = idx % 15;
M
Matthias Bolte 已提交
856

857 858 859
    /* Skip the controller ifself at unit 7 */
    if (*unit >= 7) {
        ++(*unit);
M
Matthias Bolte 已提交
860 861 862 863 864 865 866
    }

    return 0;
}



867 868
static int
virVMXIDEDiskNameToBusAndUnit(const char *name, int *bus, int *unit)
M
Matthias Bolte 已提交
869 870 871 872
{
    int idx;

    if (! STRPREFIX(name, "hd")) {
873 874 875
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Expecting domain XML attribute 'dev' of entry "
                         "'devices/disk/target' to start with 'hd'"));
M
Matthias Bolte 已提交
876 877 878 879 880 881
        return -1;
    }

    idx = virDiskNameToIndex(name);

    if (idx < 0) {
882 883
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not parse valid disk index from '%s'"), name);
M
Matthias Bolte 已提交
884 885 886
        return -1;
    }

887
    /* The IDE controller has 2 buses with 2 units each for devices */
M
Matthias Bolte 已提交
888
    if (idx >= (2 * 2)) {
889 890
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("IDE disk index (parsed from '%s') is too large"), name);
M
Matthias Bolte 已提交
891 892 893
        return -1;
    }

894 895
    *bus = idx / 2;
    *unit = idx % 2;
M
Matthias Bolte 已提交
896 897 898 899 900 901

    return 0;
}



902 903
static int
virVMXFloppyDiskNameToUnit(const char *name, int *unit)
M
Matthias Bolte 已提交
904 905 906 907
{
    int idx;

    if (! STRPREFIX(name, "fd")) {
908 909 910
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Expecting domain XML attribute 'dev' of entry "
                         "'devices/disk/target' to start with 'fd'"));
M
Matthias Bolte 已提交
911 912 913 914 915 916
        return -1;
    }

    idx = virDiskNameToIndex(name);

    if (idx < 0) {
917 918
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not parse valid disk index from '%s'"), name);
M
Matthias Bolte 已提交
919 920 921
        return -1;
    }

922
    /* The FDC controller has 1 bus with 2 units for devices */
M
Matthias Bolte 已提交
923
    if (idx >= 2) {
924 925
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Floppy disk index (parsed from '%s') is too large"), name);
M
Matthias Bolte 已提交
926 927 928
        return -1;
    }

929 930 931 932 933 934 935
    *unit = idx;

    return 0;
}



936 937
static int
virVMXVerifyDiskAddress(virCapsPtr caps, virDomainDiskDefPtr disk)
938 939 940 941 942 943 944
{
    virDomainDiskDef def;
    virDomainDeviceDriveAddressPtr drive;

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

    if (disk->info.type != VIR_DOMAIN_DEVICE_ADDRESS_TYPE_DRIVE) {
945 946 947
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported disk address type '%s'"),
                       virDomainDeviceAddressTypeToString(disk->info.type));
948 949 950 951 952 953 954 955 956
        return -1;
    }

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

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

    if (virDomainDiskDefAssignAddress(caps, &def) < 0) {
957 958
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Could not verify disk address"));
959 960 961 962 963 964
        return -1;
    }

    if (def.info.addr.drive.controller != drive->controller ||
        def.info.addr.drive.bus != drive->bus ||
        def.info.addr.drive.unit != drive->unit) {
965 966 967
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Disk address %d:%d:%d doesn't match target device '%s'"),
                       drive->controller, drive->bus, drive->unit, disk->dst);
968 969 970 971 972 973
        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) {
974 975 976
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("SCSI controller index %d out of [0..3] range"),
                           drive->controller);
977 978 979 980
            return -1;
        }

        if (drive->bus != 0) {
981 982 983
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("SCSI bus index %d out of [0] range"),
                           drive->bus);
984 985 986 987
            return -1;
        }

        if (drive->unit > 15 || drive->unit == 7) {
988 989 990
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("SCSI unit index %d out of [0..6,8..15] range"),
                           drive->unit);
991 992 993 994
            return -1;
        }
    } else if (disk->bus == VIR_DOMAIN_DISK_BUS_IDE) {
        if (drive->controller != 0) {
995 996 997
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("IDE controller index %d out of [0] range"),
                           drive->controller);
998 999 1000 1001
            return -1;
        }

        if (drive->bus > 1) {
1002 1003 1004
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("IDE bus index %d out of [0..1] range"),
                           drive->bus);
1005 1006 1007 1008
            return -1;
        }

        if (drive->unit > 1) {
1009 1010 1011
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("IDE unit index %d out of [0..1] range"),
                           drive->unit);
1012 1013 1014 1015
            return -1;
        }
    } else if (disk->bus == VIR_DOMAIN_DISK_BUS_FDC) {
        if (drive->controller != 0) {
1016 1017 1018
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("FDC controller index %d out of [0] range"),
                           drive->controller);
1019 1020 1021 1022
            return -1;
        }

        if (drive->bus != 0) {
1023 1024 1025
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("FDC bus index %d out of [0] range"),
                           drive->bus);
1026 1027 1028 1029
            return -1;
        }

        if (drive->unit > 1) {
1030 1031 1032
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("FDC unit index %d out of [0..1] range"),
                           drive->unit);
1033 1034 1035
            return -1;
        }
    } else {
1036 1037 1038
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported bus type '%s'"),
                       virDomainDiskBusTypeToString(disk->bus));
1039 1040 1041 1042 1043 1044 1045 1046
        return -1;
    }

    return 0;
}



1047 1048 1049
static int
virVMXHandleLegacySCSIDiskDriverName(virDomainDefPtr def,
                                     virDomainDiskDefPtr disk)
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
{
    char *tmp;
    int model, i;
    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);
    }

1065
    model = virDomainControllerModelSCSITypeFromString(disk->driverName);
1066 1067

    if (model < 0) {
1068 1069
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Unknown driver name '%s'"), disk->driverName);
1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080
        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) {
1081 1082 1083
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Missing SCSI controller for index %d"),
                       disk->info.addr.drive.controller);
1084 1085 1086 1087 1088 1089
        return -1;
    }

    if (controller->model == -1) {
        controller->model = model;
    } else if (controller->model != model) {
1090 1091 1092 1093 1094
        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);
1095 1096
        return -1;
    }
M
Matthias Bolte 已提交
1097 1098 1099 1100 1101 1102

    return 0;
}



1103 1104 1105
static int
virVMXGatherSCSIControllers(virVMXContext *ctx, virDomainDefPtr def,
                            int virtualDev[4], bool present[4])
1106 1107 1108
{
    int result = -1;
    int i, k;
M
Matthias Bolte 已提交
1109
    virDomainDiskDefPtr disk;
1110 1111 1112 1113
    virDomainControllerDefPtr controller;
    bool controllerHasDisksAttached;
    int count = 0;
    int *autodetectedModels;
M
Matthias Bolte 已提交
1114

1115 1116 1117 1118 1119 1120 1121
    if (VIR_ALLOC_N(autodetectedModels, def->ndisks) < 0) {
        virReportOOMError();
        return -1;
    }

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

1123
        if (controller->type != VIR_DOMAIN_CONTROLLER_TYPE_SCSI) {
1124
            /* skip non-SCSI controllers */
M
Matthias Bolte 已提交
1125 1126 1127
            continue;
        }

1128
        controllerHasDisksAttached = false;
1129

1130 1131 1132 1133 1134 1135
        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;
1136 1137
                break;
            }
M
Matthias Bolte 已提交
1138 1139
        }

1140
        if (! controllerHasDisksAttached) {
1141
            /* skip SCSI controllers without attached disks */
1142 1143 1144
            continue;
        }

1145
        if (controller->model == VIR_DOMAIN_CONTROLLER_MODEL_SCSI_AUTO &&
1146
            ctx->autodetectSCSIControllerModel != NULL) {
1147 1148
            count = 0;

1149 1150
            /* try to autodetect the SCSI controller model by collecting
             * SCSI controller model of all disks attached to this controller */
1151 1152 1153 1154 1155
            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) {
1156 1157 1158
                    if (ctx->autodetectSCSIControllerModel
                               (disk, &autodetectedModels[count],
                                ctx->opaque) < 0) {
1159 1160 1161 1162 1163 1164 1165
                        goto cleanup;
                    }

                    ++count;
                }
            }

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

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

1181
        if (controller->model != -1 &&
1182 1183 1184 1185
            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) {
1186 1187 1188 1189 1190
            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));
1191
            goto cleanup;
M
Matthias Bolte 已提交
1192
        }
1193 1194 1195

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

1198 1199 1200 1201 1202 1203
    result = 0;

  cleanup:
    VIR_FREE(autodetectedModels);

    return result;
M
Matthias Bolte 已提交
1204 1205 1206 1207 1208 1209 1210 1211
}



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

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

1240
    if (ctx->parseFileName == NULL) {
1241 1242
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("virVMXContext has no parseFileName function set"));
1243 1244 1245
        return NULL;
    }

1246 1247 1248 1249 1250 1251
    conf = virConfReadMem(vmx, strlen(vmx), VIR_CONF_FLAG_VMX_FORMAT);

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

1252
    /* vmx:.encoding */
1253
    if (virVMXGetConfigString(conf, ".encoding", &encoding, true) < 0) {
1254 1255 1256 1257 1258 1259 1260 1261 1262
        goto cleanup;
    }

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

1263
        utf8 = virVMXConvertToUTF8(encoding, vmx);
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278

        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 */
1279
    if (VIR_ALLOC(def) < 0) {
1280
        virReportOOMError();
A
ajia@redhat.com 已提交
1281
        goto cleanup;
1282 1283
    }

1284
    def->virtType = VIR_DOMAIN_VIRT_VMWARE;
1285 1286
    def->id = -1;

M
Matthias Bolte 已提交
1287
    /* vmx:config.version */
1288 1289
    if (virVMXGetConfigLong(conf, "config.version", &config_version, 0,
                            false) < 0) {
M
Matthias Bolte 已提交
1290
        goto cleanup;
1291 1292 1293
    }

    if (config_version != 8) {
1294 1295 1296
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting VMX entry 'config.version' to be 8 but found "
                         "%lld"), config_version);
M
Matthias Bolte 已提交
1297
        goto cleanup;
1298 1299
    }

M
Matthias Bolte 已提交
1300
    /* vmx:virtualHW.version */
1301 1302
    if (virVMXGetConfigLong(conf, "virtualHW.version", &virtualHW_version, 0,
                            false) < 0) {
M
Matthias Bolte 已提交
1303
        goto cleanup;
1304 1305
    }

P
Patrice LACHANCE 已提交
1306 1307
    if (virtualHW_version != 4 && virtualHW_version != 7 &&
        virtualHW_version != 8) {
1308 1309 1310 1311
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting VMX entry 'virtualHW.version' to be 4, 7 or 8 "
                         "but found %lld"),
                       virtualHW_version);
M
Matthias Bolte 已提交
1312
        goto cleanup;
1313 1314
    }

M
Matthias Bolte 已提交
1315
    /* vmx:uuid.bios -> def:uuid */
1316
    /* FIXME: Need to handle 'uuid.action = "create"' */
1317
    if (virVMXGetConfigUUID(conf, "uuid.bios", def->uuid, true) < 0) {
M
Matthias Bolte 已提交
1318
        goto cleanup;
1319 1320
    }

M
Matthias Bolte 已提交
1321
    /* vmx:displayName -> def:name */
1322
    if (virVMXGetConfigString(conf, "displayName", &def->name, true) < 0) {
M
Matthias Bolte 已提交
1323
        goto cleanup;
1324 1325
    }

1326
    if (def->name != NULL) {
1327 1328
        if (virVMXUnescapeHexPercent(def->name) < 0 ||
            virVMXUnescapeHexPipe(def->name) < 0) {
1329 1330
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("VMX entry 'name' contains invalid escape sequence"));
1331 1332 1333 1334
            goto cleanup;
        }
    }

1335
    /* vmx:annotation -> def:description */
1336 1337
    if (virVMXGetConfigString(conf, "annotation", &def->description,
                              true) < 0) {
1338 1339 1340 1341
        goto cleanup;
    }

    if (def->description != NULL) {
1342
        if (virVMXUnescapeHexPipe(def->description) < 0) {
1343 1344 1345
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("VMX entry 'annotation' contains invalid escape "
                             "sequence"));
1346
            goto cleanup;
1347 1348 1349
        }
    }

1350
    /* vmx:memsize -> def:mem.max_balloon */
1351
    if (virVMXGetConfigLong(conf, "memsize", &memsize, 32, true) < 0) {
M
Matthias Bolte 已提交
1352
        goto cleanup;
1353 1354 1355
    }

    if (memsize <= 0 || memsize % 4 != 0) {
1356 1357 1358
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting VMX entry 'memsize' to be an unsigned "
                         "integer (multiple of 4) but found %lld"), memsize);
M
Matthias Bolte 已提交
1359
        goto cleanup;
1360 1361
    }

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

1364
    /* vmx:sched.mem.max -> def:mem.cur_balloon */
1365 1366
    if (virVMXGetConfigLong(conf, "sched.mem.max", &sched_mem_max, memsize,
                            true) < 0) {
M
Matthias Bolte 已提交
1367
        goto cleanup;
1368 1369
    }

1370 1371
    if (sched_mem_max < 0) {
        sched_mem_max = memsize;
1372 1373
    }

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

1376 1377
    if (def->mem.cur_balloon > def->mem.max_balloon) {
        def->mem.cur_balloon = def->mem.max_balloon;
1378 1379
    }

1380
    /* vmx:sched.mem.minsize -> def:mem.min_guarantee */
1381 1382
    if (virVMXGetConfigLong(conf, "sched.mem.minsize", &sched_mem_minsize, 0,
                            true) < 0) {
1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
        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 已提交
1396
    /* vmx:numvcpus -> def:vcpus */
1397
    if (virVMXGetConfigLong(conf, "numvcpus", &numvcpus, 1, true) < 0) {
M
Matthias Bolte 已提交
1398
        goto cleanup;
1399 1400 1401
    }

    if (numvcpus <= 0 || (numvcpus % 2 != 0 && numvcpus != 1)) {
1402 1403 1404
        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 已提交
1405
        goto cleanup;
1406 1407
    }

E
Eric Blake 已提交
1408
    def->maxvcpus = def->vcpus = numvcpus;
1409

M
Matthias Bolte 已提交
1410
    /* vmx:sched.cpu.affinity -> def:cpumask */
1411
    /* NOTE: maps to VirtualMachine:config.cpuAffinity.affinitySet */
1412 1413
    if (virVMXGetConfigString(conf, "sched.cpu.affinity", &sched_cpu_affinity,
                              true) < 0) {
M
Matthias Bolte 已提交
1414
        goto cleanup;
1415 1416
    }

1417
    if (sched_cpu_affinity != NULL && STRCASENEQ(sched_cpu_affinity, "all")) {
1418 1419 1420
        const char *current = sched_cpu_affinity;
        int number, count = 0;

H
Hu Tao 已提交
1421
        cpumasklen = 0;
1422

H
Hu Tao 已提交
1423 1424
        def->cpumask = virBitmapNew(VIR_DOMAIN_CPUMASK_LEN);
        if (!def->cpumask) {
1425
            virReportOOMError();
M
Matthias Bolte 已提交
1426
            goto cleanup;
1427 1428 1429 1430 1431 1432 1433 1434
        }

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

            number = virParseNumber(&current);

            if (number < 0) {
1435 1436 1437 1438
                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 已提交
1439
                goto cleanup;
1440 1441 1442
            }

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

H
Hu Tao 已提交
1449 1450
            if (number + 1 > cpumasklen) {
                cpumasklen = number + 1;
1451 1452
            }

H
Hu Tao 已提交
1453
            ignore_value(virBitmapSetBit(def->cpumask, number));
1454 1455 1456 1457 1458 1459 1460 1461 1462
            ++count;

            virSkipSpaces(&current);

            if (*current == ',') {
                ++current;
            } else if (*current == '\0') {
                break;
            } else {
1463 1464 1465 1466
                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 已提交
1467
                goto cleanup;
1468 1469 1470 1471 1472 1473
            }

            virSkipSpaces(&current);
        }

        if (count < numvcpus) {
1474 1475 1476 1477
            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 已提交
1478
            goto cleanup;
1479 1480 1481
        }
    }

1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
    /* 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) {
1498 1499 1500 1501
            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);
1502 1503 1504 1505
            goto cleanup;
        }
    }

1506 1507 1508 1509 1510 1511 1512 1513 1514
    /* def:lifecycle */
    def->onReboot = VIR_DOMAIN_LIFECYCLE_RESTART;
    def->onPoweroff = VIR_DOMAIN_LIFECYCLE_DESTROY;
    def->onCrash = VIR_DOMAIN_LIFECYCLE_DESTROY;

    /* def:os */
    def->os.type = strdup("hvm");

    if (def->os.type == NULL) {
1515
        virReportOOMError();
M
Matthias Bolte 已提交
1516
        goto cleanup;
1517 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")) {
M
Matthias Bolte 已提交
1525 1526 1527 1528 1529 1530
        def->os.arch = strdup("x86_64");
    } else {
        def->os.arch = strdup("i686");
    }

    if (def->os.arch == NULL) {
1531
        virReportOOMError();
M
Matthias Bolte 已提交
1532
        goto cleanup;
M
Matthias Bolte 已提交
1533 1534
    }

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

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

1545 1546
    /* def:features */
    /* FIXME */
1547

1548 1549
    /* def:clock */
    /* FIXME */
1550 1551

    /* def:graphics */
M
Matthias Bolte 已提交
1552
    if (VIR_ALLOC_N(def->graphics, 1) < 0) {
1553
        virReportOOMError();
M
Matthias Bolte 已提交
1554
        goto cleanup;
M
Matthias Bolte 已提交
1555 1556 1557 1558
    }

    def->ngraphics = 0;

1559
    if (virVMXParseVNC(conf, &def->graphics[def->ngraphics]) < 0) {
M
Matthias Bolte 已提交
1560
        goto cleanup;
M
Matthias Bolte 已提交
1561 1562 1563 1564 1565
    }

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

M
Matthias Bolte 已提交
1567 1568
    /* def:disks: 4 * 15 scsi + 2 * 2 ide + 2 floppy = 66 */
    if (VIR_ALLOC_N(def->disks, 66) < 0) {
1569
        virReportOOMError();
M
Matthias Bolte 已提交
1570
        goto cleanup;
1571 1572 1573 1574 1575 1576
    }

    def->ndisks = 0;

    /* def:disks (scsi) */
    for (controller = 0; controller < 4; ++controller) {
1577 1578
        if (virVMXParseSCSIController(conf, controller, &present,
                                      &scsi_virtualDev[controller]) < 0) {
M
Matthias Bolte 已提交
1579
            goto cleanup;
1580 1581 1582 1583 1584 1585
        }

        if (! present) {
            continue;
        }

1586 1587
        for (unit = 0; unit < 16; ++unit) {
            if (unit == 7) {
1588
                /*
1589
                 * SCSI unit 7 is assigned to the SCSI controller and cannot be
1590 1591 1592 1593 1594
                 * used for disk devices.
                 */
                continue;
            }

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

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

1606
            if (virVMXParseDisk(ctx, caps, conf, VIR_DOMAIN_DISK_DEVICE_CDROM,
1607
                                 VIR_DOMAIN_DISK_BUS_SCSI, controller, unit,
1608
                                 &def->disks[def->ndisks]) < 0) {
M
Matthias Bolte 已提交
1609
                goto cleanup;
1610 1611 1612 1613 1614 1615 1616 1617 1618
            }

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

    /* def:disks (ide) */
1619 1620
    for (bus = 0; bus < 2; ++bus) {
        for (unit = 0; unit < 2; ++unit) {
1621 1622 1623
            if (virVMXParseDisk(ctx, caps, conf, VIR_DOMAIN_DISK_DEVICE_DISK,
                                VIR_DOMAIN_DISK_BUS_IDE, bus, unit,
                                &def->disks[def->ndisks]) < 0) {
M
Matthias Bolte 已提交
1624
                goto cleanup;
1625 1626 1627 1628 1629 1630 1631
            }

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

1632 1633 1634
            if (virVMXParseDisk(ctx, caps, conf, VIR_DOMAIN_DISK_DEVICE_CDROM,
                                VIR_DOMAIN_DISK_BUS_IDE, bus, unit,
                                &def->disks[def->ndisks]) < 0) {
M
Matthias Bolte 已提交
1635
                goto cleanup;
1636 1637 1638 1639 1640 1641 1642 1643 1644
            }

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

    /* def:disks (floppy) */
1645
    for (unit = 0; unit < 2; ++unit) {
1646 1647 1648
        if (virVMXParseDisk(ctx, caps, conf, VIR_DOMAIN_DISK_DEVICE_FLOPPY,
                            VIR_DOMAIN_DISK_BUS_FDC, 0, unit,
                            &def->disks[def->ndisks]) < 0) {
M
Matthias Bolte 已提交
1649
            goto cleanup;
1650 1651 1652 1653 1654 1655 1656
        }

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

1657 1658
    /* def:controllers */
    if (virDomainDefAddImplicitControllers(def) < 0) {
1659
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Could not add controllers"));
1660 1661 1662 1663 1664 1665 1666
        goto cleanup;
    }

    for (controller = 0; controller < def->ncontrollers; ++controller) {
        if (def->controllers[controller]->type == VIR_DOMAIN_CONTROLLER_TYPE_SCSI) {
            if (def->controllers[controller]->idx < 0 ||
                def->controllers[controller]->idx > 3) {
1667 1668 1669
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("SCSI controller index %d out of [0..3] range"),
                               def->controllers[controller]->idx);
1670 1671 1672 1673 1674 1675 1676 1677
                goto cleanup;
            }

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

1678
    /* def:fss */
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711
    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;

            if (VIR_ALLOC_N(def->fss, sharedFolder_maxNum) < 0) {
                virReportOOMError();
                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;
                }
            }
        }
    }
1712 1713 1714

    /* def:nets */
    if (VIR_ALLOC_N(def->nets, 4) < 0) {
1715
        virReportOOMError();
M
Matthias Bolte 已提交
1716
        goto cleanup;
1717 1718 1719 1720 1721
    }

    def->nnets = 0;

    for (controller = 0; controller < 4; ++controller) {
1722 1723
        if (virVMXParseEthernet(conf, controller,
                                &def->nets[def->nnets]) < 0) {
M
Matthias Bolte 已提交
1724
            goto cleanup;
1725 1726 1727 1728 1729 1730 1731 1732 1733 1734
        }

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

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

1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748
    /* def:videos */
    if (VIR_ALLOC_N(def->videos, 1) < 0) {
        virReportOOMError();
        goto cleanup;
    }

    def->nvideos = 0;

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

    def->nvideos = 1;

1749 1750 1751 1752 1753 1754 1755 1756
    /* def:sounds */
    /* FIXME */

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

    /* def:serials */
    if (VIR_ALLOC_N(def->serials, 4) < 0) {
1757
        virReportOOMError();
M
Matthias Bolte 已提交
1758
        goto cleanup;
1759 1760 1761 1762 1763
    }

    def->nserials = 0;

    for (port = 0; port < 4; ++port) {
1764 1765
        if (virVMXParseSerial(ctx, conf, port,
                              &def->serials[def->nserials]) < 0) {
M
Matthias Bolte 已提交
1766
            goto cleanup;
1767 1768 1769 1770 1771 1772 1773 1774 1775
        }

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

    /* def:parallels */
    if (VIR_ALLOC_N(def->parallels, 3) < 0) {
1776
        virReportOOMError();
M
Matthias Bolte 已提交
1777
        goto cleanup;
1778 1779 1780 1781 1782
    }

    def->nparallels = 0;

    for (port = 0; port < 3; ++port) {
1783 1784
        if (virVMXParseParallel(ctx, conf, port,
                                &def->parallels[def->nparallels]) < 0) {
M
Matthias Bolte 已提交
1785
            goto cleanup;
1786 1787 1788 1789 1790 1791 1792
        }

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

M
Matthias Bolte 已提交
1793 1794
    success = true;

M
Matthias Bolte 已提交
1795
  cleanup:
M
Matthias Bolte 已提交
1796 1797 1798 1799 1800
    if (! success) {
        virDomainDefFree(def);
        def = NULL;
    }

1801
    virConfFree(conf);
1802
    VIR_FREE(encoding);
1803
    VIR_FREE(sched_cpu_affinity);
1804
    VIR_FREE(sched_cpu_shares);
M
Matthias Bolte 已提交
1805
    VIR_FREE(guestOS);
1806 1807 1808 1809 1810 1811

    return def;
}



M
Matthias Bolte 已提交
1812
int
1813
virVMXParseVNC(virConfPtr conf, virDomainGraphicsDefPtr *def)
M
Matthias Bolte 已提交
1814
{
1815
    bool enabled = false;
M
Matthias Bolte 已提交
1816
    long long port = 0;
1817
    char *listenAddr = NULL;
M
Matthias Bolte 已提交
1818 1819

    if (def == NULL || *def != NULL) {
1820
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
1821 1822 1823
        return -1;
    }

1824 1825
    if (virVMXGetConfigBoolean(conf, "RemoteDisplay.vnc.enabled", &enabled,
                               false, true) < 0) {
M
Matthias Bolte 已提交
1826 1827 1828 1829 1830 1831 1832 1833
        return -1;
    }

    if (! enabled) {
        return 0;
    }

    if (VIR_ALLOC(*def) < 0) {
1834
        virReportOOMError();
M
Matthias Bolte 已提交
1835 1836 1837 1838 1839
        goto failure;
    }

    (*def)->type = VIR_DOMAIN_GRAPHICS_TYPE_VNC;

1840 1841 1842
    if (virVMXGetConfigLong(conf, "RemoteDisplay.vnc.port", &port, -1,
                            true) < 0 ||
        virVMXGetConfigString(conf, "RemoteDisplay.vnc.ip",
1843
                              &listenAddr, true) < 0 ||
1844 1845 1846 1847
        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 已提交
1848 1849 1850
        goto failure;
    }

1851 1852 1853 1854 1855 1856
    if (listenAddr) {
        if (virDomainGraphicsListenSetAddress(*def, 0, listenAddr, -1, true) < 0)
            goto failure;
        VIR_FREE(listenAddr);
    }

M
Matthias Bolte 已提交
1857
    if (port < 0) {
1858
        VIR_WARN("VNC is enabled but VMX entry 'RemoteDisplay.vnc.port' "
M
Matthias Bolte 已提交
1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874
                  "is missing, the VNC port is unknown");

        (*def)->data.vnc.port = 0;
        (*def)->data.vnc.autoport = 1;
    } else {
        if (port < 5900 || port > 5964) {
            VIR_WARN("VNC port %lld it out of [5900..5964] range", port);
        }

        (*def)->data.vnc.port = port;
        (*def)->data.vnc.autoport = 0;
    }

    return 0;

  failure:
1875
    VIR_FREE(listenAddr);
M
Matthias Bolte 已提交
1876 1877 1878 1879 1880 1881 1882 1883
    virDomainGraphicsDefFree(*def);
    *def = NULL;

    return -1;
}



1884
int
1885 1886
virVMXParseSCSIController(virConfPtr conf, int controller, bool *present,
                          int *virtualDev)
1887
{
1888
    int result = -1;
1889 1890
    char present_name[32];
    char virtualDev_name[32];
1891 1892
    char *virtualDev_string = NULL;
    char *tmp;
1893

1894
    if (virtualDev == NULL || *virtualDev != -1) {
1895
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
1896
        return -1;
1897 1898 1899
    }

    if (controller < 0 || controller > 3) {
1900 1901 1902
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("SCSI controller index %d out of [0..3] range"),
                       controller);
1903
        return -1;
1904 1905
    }

1906 1907 1908
    snprintf(present_name, sizeof(present_name), "scsi%d.present", controller);
    snprintf(virtualDev_name, sizeof(virtualDev_name), "scsi%d.virtualDev",
             controller);
1909

1910
    if (virVMXGetConfigBoolean(conf, present_name, present, false, true) < 0) {
1911
        goto cleanup;
1912 1913 1914
    }

    if (! *present) {
1915 1916
        result = 0;
        goto cleanup;
1917 1918
    }

1919 1920
    if (virVMXGetConfigString(conf, virtualDev_name, &virtualDev_string,
                              true) < 0) {
1921
        goto cleanup;
1922 1923
    }

1924 1925 1926 1927 1928 1929 1930
    if (virtualDev_string != NULL) {
        tmp = virtualDev_string;

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

1931
        *virtualDev = virVMXControllerModelSCSITypeFromString(virtualDev_string);
1932 1933

        if (*virtualDev == -1 ||
1934 1935 1936 1937
            (*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)) {
1938 1939 1940 1941
            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);
1942
            goto cleanup;
1943
        }
1944 1945
    }

1946
    result = 0;
1947

1948
  cleanup:
1949
    VIR_FREE(virtualDev_string);
1950

1951
    return result;
1952 1953 1954 1955 1956
}



int
1957 1958 1959
virVMXParseDisk(virVMXContext *ctx, virCapsPtr caps, virConfPtr conf,
                int device, int busType, int controllerOrBus, int unit,
                virDomainDiskDefPtr *def)
1960 1961
{
    /*
1962 1963 1964 1965
     *          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]
1966
     *
1967 1968 1969 1970
     *          device = {VIR_DOMAIN_DISK_DEVICE_DISK, VIR_DOMAIN_DISK_DEVICE_CDROM}
     *         busType = VIR_DOMAIN_DISK_BUS_IDE
     * controllerOrBus = [0..1] -> bus
     *            unit = [0..1]
1971
     *
1972 1973 1974 1975
     *          device = VIR_DOMAIN_DISK_DEVICE_FLOPPY
     *         busType = VIR_DOMAIN_DISK_BUS_FDC
     * controllerOrBus = [0]
     *            unit = [0..1]
1976 1977
     */

M
Matthias Bolte 已提交
1978
    int result = -1;
1979 1980 1981
    char *prefix = NULL;

    char present_name[32] = "";
1982
    bool present = false;
1983 1984

    char startConnected_name[32] = "";
1985
    bool startConnected = false;
1986 1987 1988 1989 1990

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

    char clientDevice_name[32] = "";
1991
    bool clientDevice = false;
1992 1993 1994 1995 1996 1997 1998 1999

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

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

    char writeThrough_name[32] = "";
2000
    bool writeThrough = false;
2001 2002

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

    if (VIR_ALLOC(*def) < 0) {
2008
        virReportOOMError();
M
Matthias Bolte 已提交
2009
        return -1;
2010 2011 2012
    }

    (*def)->device = device;
2013
    (*def)->bus = busType;
2014 2015 2016 2017

    /* def:dst, def:driverName */
    if (device == VIR_DOMAIN_DISK_DEVICE_DISK ||
        device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
2018 2019
        if (busType == VIR_DOMAIN_DISK_BUS_SCSI) {
            if (controllerOrBus < 0 || controllerOrBus > 3) {
2020 2021 2022
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("SCSI controller index %d out of [0..3] range"),
                               controllerOrBus);
M
Matthias Bolte 已提交
2023
                goto cleanup;
2024 2025
            }

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

2033
            if (virAsprintf(&prefix, "scsi%d:%d", controllerOrBus, unit) < 0) {
2034
                virReportOOMError();
M
Matthias Bolte 已提交
2035
                goto cleanup;
2036 2037
            }

M
Matthias Bolte 已提交
2038
            (*def)->dst =
2039
               virIndexToDiskName
2040
                 (controllerOrBus * 15 + (unit < 7 ? unit : unit - 1), "sd");
2041 2042

            if ((*def)->dst == NULL) {
M
Matthias Bolte 已提交
2043
                goto cleanup;
2044
            }
2045 2046
        } else if (busType == VIR_DOMAIN_DISK_BUS_IDE) {
            if (controllerOrBus < 0 || controllerOrBus > 1) {
2047 2048 2049
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("IDE bus index %d out of [0..1] range"),
                               controllerOrBus);
M
Matthias Bolte 已提交
2050
                goto cleanup;
2051 2052
            }

2053
            if (unit < 0 || unit > 1) {
2054 2055
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("IDE unit index %d out of [0..1] range"), unit);
M
Matthias Bolte 已提交
2056
                goto cleanup;
2057 2058
            }

2059
            if (virAsprintf(&prefix, "ide%d:%d", controllerOrBus, unit) < 0) {
2060
                virReportOOMError();
M
Matthias Bolte 已提交
2061
                goto cleanup;
2062 2063
            }

2064
            (*def)->dst = virIndexToDiskName(controllerOrBus * 2 + unit, "hd");
2065 2066

            if ((*def)->dst == NULL) {
M
Matthias Bolte 已提交
2067
                goto cleanup;
2068 2069
            }
        } else {
2070 2071 2072 2073
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported bus type '%s' for device type '%s'"),
                           virDomainDiskBusTypeToString(busType),
                           virDomainDiskDeviceTypeToString(device));
M
Matthias Bolte 已提交
2074
            goto cleanup;
2075 2076
        }
    } else if (device == VIR_DOMAIN_DISK_DEVICE_FLOPPY) {
2077 2078
        if (busType == VIR_DOMAIN_DISK_BUS_FDC) {
            if (controllerOrBus != 0) {
2079 2080 2081
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("FDC controller index %d out of [0] range"),
                               controllerOrBus);
2082 2083 2084 2085
                goto cleanup;
            }

            if (unit < 0 || unit > 1) {
2086 2087 2088
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("FDC unit index %d out of [0..1] range"),
                               unit);
M
Matthias Bolte 已提交
2089
                goto cleanup;
2090 2091
            }

2092
            if (virAsprintf(&prefix, "floppy%d", unit) < 0) {
2093
                virReportOOMError();
M
Matthias Bolte 已提交
2094
                goto cleanup;
2095 2096
            }

2097
            (*def)->dst = virIndexToDiskName(unit, "fd");
2098 2099

            if ((*def)->dst == NULL) {
M
Matthias Bolte 已提交
2100
                goto cleanup;
2101 2102
            }
        } else {
2103 2104 2105 2106
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported bus type '%s' for device type '%s'"),
                           virDomainDiskBusTypeToString(busType),
                           virDomainDiskDeviceTypeToString(device));
M
Matthias Bolte 已提交
2107
            goto cleanup;
2108 2109
        }
    } else {
2110 2111 2112
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported device type '%s'"),
                       virDomainDiskDeviceTypeToString(device));
M
Matthias Bolte 已提交
2113
        goto cleanup;
2114 2115
    }

2116 2117 2118 2119 2120 2121 2122
    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);
2123 2124

    /* vmx:present */
2125
    if (virVMXGetConfigBoolean(conf, present_name, &present, false, true) < 0) {
M
Matthias Bolte 已提交
2126
        goto cleanup;
2127 2128 2129
    }

    /* vmx:startConnected */
2130 2131
    if (virVMXGetConfigBoolean(conf, startConnected_name, &startConnected,
                               true, true) < 0) {
M
Matthias Bolte 已提交
2132
        goto cleanup;
2133 2134 2135 2136 2137 2138 2139 2140
    }

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

    /* vmx:deviceType -> def:type */
2141
    if (virVMXGetConfigString(conf, deviceType_name, &deviceType, true) < 0) {
M
Matthias Bolte 已提交
2142
        goto cleanup;
2143 2144 2145
    }

    /* vmx:clientDevice */
2146 2147
    if (virVMXGetConfigBoolean(conf, clientDevice_name, &clientDevice, false,
                               true) < 0) {
M
Matthias Bolte 已提交
2148
        goto cleanup;
2149 2150 2151 2152 2153
    }

    if (clientDevice) {
        /*
         * Just ignore devices in client mode, because I have no clue how to
M
Matthias Bolte 已提交
2154
         * handle them (e.g. assign an image) without the VI Client GUI.
2155 2156 2157 2158 2159
         */
        goto ignore;
    }

    /* vmx:fileType -> def:type */
2160
    if (virVMXGetConfigString(conf, fileType_name, &fileType, true) < 0) {
M
Matthias Bolte 已提交
2161
        goto cleanup;
2162 2163 2164
    }

    /* vmx:fileName -> def:src, def:type */
2165
    if (virVMXGetConfigString(conf, fileName_name, &fileName, false) < 0) {
M
Matthias Bolte 已提交
2166
        goto cleanup;
2167 2168 2169
    }

    /* vmx:writeThrough -> def:cachemode */
2170 2171
    if (virVMXGetConfigBoolean(conf, writeThrough_name, &writeThrough, false,
                               true) < 0) {
M
Matthias Bolte 已提交
2172
        goto cleanup;
2173 2174 2175 2176
    }

    /* Setup virDomainDiskDef */
    if (device == VIR_DOMAIN_DISK_DEVICE_DISK) {
2177
        if (virFileHasSuffix(fileName, ".vmdk")) {
2178
            if (deviceType != NULL) {
2179
                if (busType == VIR_DOMAIN_DISK_BUS_SCSI &&
2180 2181
                    STRCASENEQ(deviceType, "scsi-hardDisk") &&
                    STRCASENEQ(deviceType, "disk")) {
2182 2183 2184 2185
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Expecting VMX entry '%s' to be 'scsi-hardDisk' "
                                     "or 'disk' but found '%s'"), deviceType_name,
                                   deviceType);
M
Matthias Bolte 已提交
2186
                    goto cleanup;
2187
                } else if (busType == VIR_DOMAIN_DISK_BUS_IDE &&
2188 2189
                           STRCASENEQ(deviceType, "ata-hardDisk") &&
                           STRCASENEQ(deviceType, "disk")) {
2190 2191 2192 2193
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Expecting VMX entry '%s' to be 'ata-hardDisk' "
                                     "or 'disk' but found '%s'"), deviceType_name,
                                   deviceType);
M
Matthias Bolte 已提交
2194
                    goto cleanup;
2195 2196 2197 2198
                }
            }

            (*def)->type = VIR_DOMAIN_DISK_TYPE_FILE;
2199
            (*def)->src = ctx->parseFileName(fileName, ctx->opaque);
2200 2201 2202
            (*def)->cachemode = writeThrough ? VIR_DOMAIN_DISK_CACHE_WRITETHRU
                                             : VIR_DOMAIN_DISK_CACHE_DEFAULT;

M
Matthias Bolte 已提交
2203
            if ((*def)->src == NULL) {
M
Matthias Bolte 已提交
2204
                goto cleanup;
M
Matthias Bolte 已提交
2205
            }
2206
        } else if (virFileHasSuffix(fileName, ".iso") ||
2207
                   STRCASEEQ(deviceType, "atapi-cdrom")) {
2208 2209 2210 2211 2212 2213 2214 2215
            /*
             * 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 {
2216 2217 2218
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Invalid or not yet handled value '%s' for VMX entry "
                             "'%s'"), fileName, fileName_name);
M
Matthias Bolte 已提交
2219
            goto cleanup;
2220 2221
        }
    } else if (device == VIR_DOMAIN_DISK_DEVICE_CDROM) {
2222
        if (virFileHasSuffix(fileName, ".iso")) {
2223 2224
            if (deviceType != NULL) {
                if (STRCASENEQ(deviceType, "cdrom-image")) {
2225 2226 2227
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Expecting VMX entry '%s' to be 'cdrom-image' "
                                     "but found '%s'"), deviceType_name, deviceType);
M
Matthias Bolte 已提交
2228
                    goto cleanup;
2229 2230 2231 2232
                }
            }

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

M
Matthias Bolte 已提交
2235
            if ((*def)->src == NULL) {
M
Matthias Bolte 已提交
2236
                goto cleanup;
M
Matthias Bolte 已提交
2237
            }
2238
        } else if (virFileHasSuffix(fileName, ".vmdk")) {
2239 2240 2241 2242 2243 2244 2245
            /*
             * 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;
2246
        } else if (STRCASEEQ(deviceType, "atapi-cdrom")) {
2247 2248 2249 2250 2251
            (*def)->type = VIR_DOMAIN_DISK_TYPE_BLOCK;
            (*def)->src = fileName;

            fileName = NULL;
        } else {
2252 2253 2254
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Invalid or not yet handled value '%s' for VMX entry "
                             "'%s'"), fileName, fileName_name);
M
Matthias Bolte 已提交
2255
            goto cleanup;
2256 2257
        }
    } else if (device == VIR_DOMAIN_DISK_DEVICE_FLOPPY) {
2258
        if (virFileHasSuffix(fileName, ".flp")) {
2259 2260
            if (fileType != NULL) {
                if (STRCASENEQ(fileType, "file")) {
2261 2262 2263
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Expecting VMX entry '%s' to be 'file' but "
                                     "found '%s'"), fileType_name, fileType);
M
Matthias Bolte 已提交
2264
                    goto cleanup;
2265 2266 2267 2268
                }
            }

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

M
Matthias Bolte 已提交
2271
            if ((*def)->src == NULL) {
M
Matthias Bolte 已提交
2272
                goto cleanup;
M
Matthias Bolte 已提交
2273
            }
2274
        } else if (fileType != NULL && STRCASEEQ(fileType, "device")) {
2275 2276 2277 2278 2279
            (*def)->type = VIR_DOMAIN_DISK_TYPE_BLOCK;
            (*def)->src = fileName;

            fileName = NULL;
        } else {
2280 2281 2282
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Invalid or not yet handled value '%s' for VMX entry "
                             "'%s'"), fileName, fileName_name);
M
Matthias Bolte 已提交
2283
            goto cleanup;
2284 2285
        }
    } else {
2286 2287
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, _("Unsupported device type '%s'"),
                       virDomainDiskDeviceTypeToString(device));
M
Matthias Bolte 已提交
2288
        goto cleanup;
2289 2290
    }

2291
    if (virDomainDiskDefAssignAddress(caps, *def) < 0) {
2292 2293
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Could not assign address to disk '%s'"), (*def)->src);
2294 2295 2296
        goto cleanup;
    }

M
Matthias Bolte 已提交
2297 2298
    result = 0;

M
Matthias Bolte 已提交
2299
  cleanup:
M
Matthias Bolte 已提交
2300 2301 2302 2303 2304
    if (result < 0) {
        virDomainDiskDefFree(*def);
        *def = NULL;
    }

2305 2306 2307 2308 2309 2310 2311
    VIR_FREE(prefix);
    VIR_FREE(deviceType);
    VIR_FREE(fileType);
    VIR_FREE(fileName);

    return result;

M
Matthias Bolte 已提交
2312
  ignore:
2313 2314 2315
    virDomainDiskDefFree(*def);
    *def = NULL;

M
Matthias Bolte 已提交
2316 2317
    result = 0;

2318 2319 2320 2321 2322
    goto cleanup;
}



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 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424
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;
    }

    if (VIR_ALLOC(*def) < 0) {
        virReportOOMError();
        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;
}



2425
int
2426
virVMXParseEthernet(virConfPtr conf, int controller, virDomainNetDefPtr *def)
2427
{
M
Matthias Bolte 已提交
2428
    int result = -1;
2429 2430 2431
    char prefix[48] = "";

    char present_name[48] = "";
2432
    bool present = false;
2433 2434

    char startConnected_name[48] = "";
2435
    bool startConnected = false;
2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451

    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;

2452 2453 2454
    char features_name[48] = "";
    long long features = 0;

2455 2456 2457
    char vnet_name[48] = "";
    char *vnet = NULL;

M
Matthias Bolte 已提交
2458 2459 2460
    char networkName_name[48] = "";
    char *networkName = NULL;

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

    if (controller < 0 || controller > 3) {
2467 2468 2469
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Ethernet controller index %d out of [0..3] range"),
                       controller);
2470
        return -1;
2471 2472 2473
    }

    if (VIR_ALLOC(*def) < 0) {
2474
        virReportOOMError();
M
Matthias Bolte 已提交
2475
        return -1;
2476 2477
    }

2478
    snprintf(prefix, sizeof(prefix), "ethernet%d", controller);
2479

2480 2481 2482 2483 2484 2485 2486 2487 2488 2489
    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);
2490 2491

    /* vmx:present */
2492
    if (virVMXGetConfigBoolean(conf, present_name, &present, false, true) < 0) {
M
Matthias Bolte 已提交
2493
        goto cleanup;
2494 2495 2496
    }

    /* vmx:startConnected */
2497 2498
    if (virVMXGetConfigBoolean(conf, startConnected_name, &startConnected,
                               true, true) < 0) {
M
Matthias Bolte 已提交
2499
        goto cleanup;
2500 2501 2502 2503 2504 2505 2506 2507
    }

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

    /* vmx:connectionType -> def:type */
2508 2509
    if (virVMXGetConfigString(conf, connectionType_name, &connectionType,
                              true) < 0) {
M
Matthias Bolte 已提交
2510
        goto cleanup;
2511 2512 2513
    }

    /* vmx:addressType, vmx:generatedAddress, vmx:address -> def:mac */
2514 2515 2516 2517 2518
    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 已提交
2519
        goto cleanup;
2520 2521
    }

2522 2523
    if (addressType == NULL || STRCASEEQ(addressType, "generated") ||
        STRCASEEQ(addressType, "vpx")) {
2524
        if (generatedAddress != NULL) {
2525
            if (virMacAddrParse(generatedAddress, &(*def)->mac) < 0) {
2526 2527 2528 2529
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Expecting VMX entry '%s' to be MAC address but "
                                 "found '%s'"), generatedAddress_name,
                               generatedAddress);
M
Matthias Bolte 已提交
2530
                goto cleanup;
2531 2532 2533 2534
            }
        }
    } else if (STRCASEEQ(addressType, "static")) {
        if (address != NULL) {
2535
            if (virMacAddrParse(address, &(*def)->mac) < 0) {
2536 2537 2538
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Expecting VMX entry '%s' to be MAC address but "
                                 "found '%s'"), address_name, address);
M
Matthias Bolte 已提交
2539
                goto cleanup;
2540 2541 2542
            }
        }
    } else {
2543 2544 2545
        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 已提交
2546
        goto cleanup;
2547 2548
    }

2549
    /* vmx:virtualDev, vmx:features -> def:model */
2550 2551
    if (virVMXGetConfigString(conf, virtualDev_name, &virtualDev, true) < 0 ||
        virVMXGetConfigLong(conf, features_name, &features, 0, true) < 0) {
M
Matthias Bolte 已提交
2552
        goto cleanup;
2553 2554
    }

2555 2556 2557 2558 2559
    if (virtualDev != NULL) {
        if (STRCASENEQ(virtualDev, "vlance") &&
            STRCASENEQ(virtualDev, "vmxnet") &&
            STRCASENEQ(virtualDev, "vmxnet3") &&
            STRCASENEQ(virtualDev, "e1000")) {
2560 2561 2562 2563
            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 已提交
2564
            goto cleanup;
2565 2566 2567 2568 2569 2570 2571 2572 2573
        }

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

            virtualDev = strdup("vmxnet2");

            if (virtualDev == NULL) {
                virReportOOMError();
M
Matthias Bolte 已提交
2574
                goto cleanup;
2575 2576
            }
        }
2577 2578
    }

M
Matthias Bolte 已提交
2579
    /* vmx:networkName -> def:data.bridge.brname */
2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593
    if (connectionType == NULL ||
        STRCASEEQ(connectionType, "bridged") ||
        STRCASEEQ(connectionType, "custom")) {
        if (virVMXGetConfigString(conf, networkName_name, &networkName,
                                  true) < 0)
            goto cleanup;

        if (networkName == NULL) {
            networkName = strdup("");
            if (networkName == NULL) {
                virReportOOMError();
                goto cleanup;
            }
        }
M
Matthias Bolte 已提交
2594 2595 2596
    }

    /* vmx:vnet -> def:data.ifname */
2597
    if (connectionType != NULL && STRCASEEQ(connectionType, "custom") &&
2598
        virVMXGetConfigString(conf, vnet_name, &vnet, false) < 0) {
M
Matthias Bolte 已提交
2599
        goto cleanup;
2600 2601 2602 2603 2604 2605
    }

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

        virtualDev = NULL;
M
Matthias Bolte 已提交
2609
        networkName = NULL;
2610 2611
    } else if (STRCASEEQ(connectionType, "hostonly")) {
        /* FIXME */
2612 2613 2614
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("No yet handled value '%s' for VMX entry '%s'"),
                       connectionType, connectionType_name);
M
Matthias Bolte 已提交
2615
        goto cleanup;
2616
    } else if (STRCASEEQ(connectionType, "nat")) {
2617 2618 2619 2620
        (*def)->type = VIR_DOMAIN_NET_TYPE_USER;
        (*def)->model = virtualDev;

        virtualDev = NULL;
2621 2622 2623
    } else if (STRCASEEQ(connectionType, "custom")) {
        (*def)->type = VIR_DOMAIN_NET_TYPE_BRIDGE;
        (*def)->model = virtualDev;
M
Matthias Bolte 已提交
2624 2625
        (*def)->data.bridge.brname = networkName;
        (*def)->ifname = vnet;
2626 2627

        virtualDev = NULL;
M
Matthias Bolte 已提交
2628
        networkName = NULL;
2629 2630
        vnet = NULL;
    } else {
2631 2632 2633
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Invalid value '%s' for VMX entry '%s'"), connectionType,
                       connectionType_name);
M
Matthias Bolte 已提交
2634
        goto cleanup;
2635 2636
    }

M
Matthias Bolte 已提交
2637 2638
    result = 0;

M
Matthias Bolte 已提交
2639
  cleanup:
M
Matthias Bolte 已提交
2640 2641 2642 2643 2644
    if (result < 0) {
        virDomainNetDefFree(*def);
        *def = NULL;
    }

S
Stefan Berger 已提交
2645
    VIR_FREE(networkName);
2646 2647 2648 2649 2650 2651 2652 2653 2654
    VIR_FREE(connectionType);
    VIR_FREE(addressType);
    VIR_FREE(generatedAddress);
    VIR_FREE(address);
    VIR_FREE(virtualDev);
    VIR_FREE(vnet);

    return result;

M
Matthias Bolte 已提交
2655
  ignore:
2656 2657 2658
    virDomainNetDefFree(*def);
    *def = NULL;

M
Matthias Bolte 已提交
2659 2660
    result = 0;

2661 2662 2663 2664 2665 2666
    goto cleanup;
}



int
2667 2668
virVMXParseSerial(virVMXContext *ctx, virConfPtr conf, int port,
                  virDomainChrDefPtr *def)
2669
{
M
Matthias Bolte 已提交
2670
    int result = -1;
2671 2672 2673
    char prefix[48] = "";

    char present_name[48] = "";
2674
    bool present = false;
2675 2676

    char startConnected_name[48] = "";
2677
    bool startConnected = false;
2678 2679 2680 2681 2682 2683 2684

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

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

2685 2686 2687
    char network_endPoint_name[48] = "";
    char *network_endPoint = NULL;

M
Martin Kletzander 已提交
2688
    virURIPtr parsedUri = NULL;
2689

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

    if (port < 0 || port > 3) {
2696 2697
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Serial port index %d out of [0..3] range"), port);
2698
        return -1;
2699 2700 2701
    }

    if (VIR_ALLOC(*def) < 0) {
2702
        virReportOOMError();
M
Matthias Bolte 已提交
2703
        return -1;
2704 2705
    }

2706
    (*def)->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_SERIAL;
2707

2708
    snprintf(prefix, sizeof(prefix), "serial%d", port);
2709

2710 2711 2712 2713 2714
    VMX_BUILD_NAME(present);
    VMX_BUILD_NAME(startConnected);
    VMX_BUILD_NAME(fileType);
    VMX_BUILD_NAME(fileName);
    VMX_BUILD_NAME_EXTRA(network_endPoint, "network.endPoint");
2715 2716

    /* vmx:present */
2717
    if (virVMXGetConfigBoolean(conf, present_name, &present, false, true) < 0) {
M
Matthias Bolte 已提交
2718
        goto cleanup;
2719 2720 2721
    }

    /* vmx:startConnected */
2722 2723
    if (virVMXGetConfigBoolean(conf, startConnected_name, &startConnected,
                               true, true) < 0) {
M
Matthias Bolte 已提交
2724
        goto cleanup;
2725 2726 2727 2728 2729 2730 2731 2732
    }

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

    /* vmx:fileType -> def:type */
2733
    if (virVMXGetConfigString(conf, fileType_name, &fileType, false) < 0) {
M
Matthias Bolte 已提交
2734
        goto cleanup;
2735 2736 2737
    }

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

2742
    /* vmx:network.endPoint -> def:data.tcp.listen */
2743 2744
    if (virVMXGetConfigString(conf, network_endPoint_name, &network_endPoint,
                              true) < 0) {
2745 2746 2747
        goto cleanup;
    }

2748 2749
    /* Setup virDomainChrDef */
    if (STRCASEEQ(fileType, "device")) {
2750
        (*def)->target.port = port;
2751 2752
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_DEV;
        (*def)->source.data.file.path = fileName;
2753 2754 2755

        fileName = NULL;
    } else if (STRCASEEQ(fileType, "file")) {
2756
        (*def)->target.port = port;
2757 2758 2759
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_FILE;
        (*def)->source.data.file.path = ctx->parseFileName(fileName,
                                                           ctx->opaque);
2760

2761
        if ((*def)->source.data.file.path == NULL) {
M
Matthias Bolte 已提交
2762
            goto cleanup;
M
Matthias Bolte 已提交
2763
        }
2764
    } else if (STRCASEEQ(fileType, "pipe")) {
M
Matthias Bolte 已提交
2765 2766 2767 2768
        /*
         * FIXME: Differences between client/server and VM/application pipes
         *        not representable in domain XML form
         */
2769
        (*def)->target.port = port;
2770 2771
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_PIPE;
        (*def)->source.data.file.path = fileName;
M
Matthias Bolte 已提交
2772 2773

        fileName = NULL;
2774 2775
    } else if (STRCASEEQ(fileType, "network")) {
        (*def)->target.port = port;
2776
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_TCP;
2777

2778
        if (!(parsedUri = virURIParse(fileName)))
2779 2780 2781
            goto cleanup;

        if (parsedUri->port == 0) {
2782 2783 2784
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("VMX entry '%s' doesn't contain a port part"),
                           fileName_name);
2785 2786 2787
            goto cleanup;
        }

2788
        (*def)->source.data.tcp.host = strdup(parsedUri->server);
2789

2790
        if ((*def)->source.data.tcp.host == NULL) {
2791 2792 2793 2794
            virReportOOMError();
            goto cleanup;
        }

2795 2796
        if (virAsprintf(&(*def)->source.data.tcp.service, "%d",
                        parsedUri->port) < 0) {
2797 2798 2799 2800 2801 2802 2803 2804 2805
            virReportOOMError();
            goto cleanup;
        }

        /* See vSphere API documentation about VirtualSerialPortURIBackingInfo */
        if (parsedUri->scheme == NULL ||
            STRCASEEQ(parsedUri->scheme, "tcp") ||
            STRCASEEQ(parsedUri->scheme, "tcp4") ||
            STRCASEEQ(parsedUri->scheme, "tcp6")) {
2806
            (*def)->source.data.tcp.protocol = VIR_DOMAIN_CHR_TCP_PROTOCOL_RAW;
2807
        } else if (STRCASEEQ(parsedUri->scheme, "telnet")) {
2808 2809
            (*def)->source.data.tcp.protocol
                = VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNET;
2810
        } else if (STRCASEEQ(parsedUri->scheme, "telnets")) {
2811 2812
            (*def)->source.data.tcp.protocol
                = VIR_DOMAIN_CHR_TCP_PROTOCOL_TELNETS;
2813 2814 2815 2816
        } else if (STRCASEEQ(parsedUri->scheme, "ssl") ||
                   STRCASEEQ(parsedUri->scheme, "tcp+ssl") ||
                   STRCASEEQ(parsedUri->scheme, "tcp4+ssl") ||
                   STRCASEEQ(parsedUri->scheme, "tcp6+ssl")) {
2817
            (*def)->source.data.tcp.protocol = VIR_DOMAIN_CHR_TCP_PROTOCOL_TLS;
2818
        } else {
2819 2820 2821
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("VMX entry '%s' contains unsupported scheme '%s'"),
                           fileName_name, parsedUri->scheme);
2822 2823 2824 2825
            goto cleanup;
        }

        if (network_endPoint == NULL || STRCASEEQ(network_endPoint, "server")) {
2826
            (*def)->source.data.tcp.listen = true;
2827
        } else if (STRCASEEQ(network_endPoint, "client")) {
2828
            (*def)->source.data.tcp.listen = false;
2829
        } else {
2830 2831 2832
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Expecting VMX entry '%s' to be 'server' or 'client' "
                             "but found '%s'"), network_endPoint_name, network_endPoint);
2833 2834
            goto cleanup;
        }
2835
    } else {
2836 2837 2838
        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 已提交
2839
        goto cleanup;
2840 2841
    }

M
Matthias Bolte 已提交
2842 2843
    result = 0;

M
Matthias Bolte 已提交
2844
  cleanup:
M
Matthias Bolte 已提交
2845 2846 2847 2848 2849
    if (result < 0) {
        virDomainChrDefFree(*def);
        *def = NULL;
    }

2850 2851
    VIR_FREE(fileType);
    VIR_FREE(fileName);
2852
    VIR_FREE(network_endPoint);
2853
    virURIFree(parsedUri);
2854 2855 2856

    return result;

M
Matthias Bolte 已提交
2857
  ignore:
2858 2859 2860
    virDomainChrDefFree(*def);
    *def = NULL;

M
Matthias Bolte 已提交
2861 2862
    result = 0;

2863 2864 2865 2866 2867 2868
    goto cleanup;
}



int
2869 2870
virVMXParseParallel(virVMXContext *ctx, virConfPtr conf, int port,
                    virDomainChrDefPtr *def)
2871
{
M
Matthias Bolte 已提交
2872
    int result = -1;
2873 2874 2875
    char prefix[48] = "";

    char present_name[48] = "";
2876
    bool present = false;
2877 2878

    char startConnected_name[48] = "";
2879
    bool startConnected = false;
2880 2881 2882 2883 2884 2885 2886 2887

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

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

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

    if (port < 0 || port > 2) {
2893 2894
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Parallel port index %d out of [0..2] range"), port);
2895
        return -1;
2896 2897 2898
    }

    if (VIR_ALLOC(*def) < 0) {
2899
        virReportOOMError();
M
Matthias Bolte 已提交
2900
        return -1;
2901 2902
    }

2903
    (*def)->deviceType = VIR_DOMAIN_CHR_DEVICE_TYPE_PARALLEL;
2904

2905
    snprintf(prefix, sizeof(prefix), "parallel%d", port);
2906

2907 2908 2909 2910
    VMX_BUILD_NAME(present);
    VMX_BUILD_NAME(startConnected);
    VMX_BUILD_NAME(fileType);
    VMX_BUILD_NAME(fileName);
2911 2912

    /* vmx:present */
2913
    if (virVMXGetConfigBoolean(conf, present_name, &present, false, true) < 0) {
M
Matthias Bolte 已提交
2914
        goto cleanup;
2915 2916 2917
    }

    /* vmx:startConnected */
2918 2919
    if (virVMXGetConfigBoolean(conf, startConnected_name, &startConnected,
                               true, true) < 0) {
M
Matthias Bolte 已提交
2920
        goto cleanup;
2921 2922 2923 2924 2925 2926 2927 2928
    }

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

    /* vmx:fileType -> def:type */
2929
    if (virVMXGetConfigString(conf, fileType_name, &fileType, false) < 0) {
M
Matthias Bolte 已提交
2930
        goto cleanup;
2931 2932 2933
    }

    /* vmx:fileName -> def:data.file.path */
2934
    if (virVMXGetConfigString(conf, fileName_name, &fileName, false) < 0) {
M
Matthias Bolte 已提交
2935
        goto cleanup;
2936 2937 2938 2939
    }

    /* Setup virDomainChrDef */
    if (STRCASEEQ(fileType, "device")) {
2940
        (*def)->target.port = port;
2941 2942
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_DEV;
        (*def)->source.data.file.path = fileName;
2943 2944 2945

        fileName = NULL;
    } else if (STRCASEEQ(fileType, "file")) {
2946
        (*def)->target.port = port;
2947 2948 2949
        (*def)->source.type = VIR_DOMAIN_CHR_TYPE_FILE;
        (*def)->source.data.file.path = ctx->parseFileName(fileName,
                                                           ctx->opaque);
2950

2951
        if ((*def)->source.data.file.path == NULL) {
M
Matthias Bolte 已提交
2952
            goto cleanup;
M
Matthias Bolte 已提交
2953
        }
2954
    } else {
2955 2956 2957
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting VMX entry '%s' to be 'device' or 'file' but "
                         "found '%s'"), fileType_name, fileType);
M
Matthias Bolte 已提交
2958
        goto cleanup;
2959 2960
    }

M
Matthias Bolte 已提交
2961 2962
    result = 0;

M
Matthias Bolte 已提交
2963
  cleanup:
M
Matthias Bolte 已提交
2964 2965 2966 2967 2968
    if (result < 0) {
        virDomainChrDefFree(*def);
        *def = NULL;
    }

2969 2970 2971 2972 2973
    VIR_FREE(fileType);
    VIR_FREE(fileName);

    return result;

M
Matthias Bolte 已提交
2974
  ignore:
2975 2976 2977
    virDomainChrDefFree(*def);
    *def = NULL;

M
Matthias Bolte 已提交
2978 2979
    result = 0;

2980 2981
    goto cleanup;
}
M
Matthias Bolte 已提交
2982 2983 2984



2985 2986 2987 2988 2989 2990 2991
int
virVMXParseSVGA(virConfPtr conf, virDomainVideoDefPtr *def)
{
    int result = -1;
    long long svga_vramSize = 0;

    if (def == NULL || *def != NULL) {
2992
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008
        return -1;
    }

    if (VIR_ALLOC(*def) < 0) {
        virReportOOMError();
        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;
    }

3009
    (*def)->vram = VIR_DIV_UP(svga_vramSize, 1024); /* Scale from bytes to kilobytes */
3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023

    result = 0;

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

    return result;
}



M
Matthias Bolte 已提交
3024 3025 3026 3027 3028
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Domain XML -> VMX
 */

char *
3029 3030
virVMXFormatConfig(virVMXContext *ctx, virCapsPtr caps, virDomainDefPtr def,
                   int virtualHW_version)
M
Matthias Bolte 已提交
3031
{
3032
    char *vmx = NULL;
M
Matthias Bolte 已提交
3033 3034 3035 3036
    int i;
    int sched_cpu_affinity_length;
    unsigned char zero[VIR_UUID_BUFLEN];
    virBuffer buffer = VIR_BUFFER_INITIALIZER;
3037 3038
    char *preliminaryDisplayName = NULL;
    char *displayName = NULL;
3039
    char *annotation = NULL;
3040
    unsigned long long max_balloon;
3041 3042
    bool scsi_present[4] = { false, false, false, false };
    int scsi_virtualDev[4] = { -1, -1, -1, -1 };
3043
    bool floppy_present[2] = { false, false };
M
Matthias Bolte 已提交
3044

3045
    if (ctx->formatFileName == NULL) {
3046 3047
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("virVMXContext has no formatFileName function set"));
3048 3049 3050
        return NULL;
    }

M
Matthias Bolte 已提交
3051 3052
    memset(zero, 0, VIR_UUID_BUFLEN);

3053
    if (def->virtType != VIR_DOMAIN_VIRT_VMWARE) {
3054 3055 3056 3057
        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 已提交
3058 3059 3060
        return NULL;
    }

3061 3062 3063
    /* vmx:.encoding */
    virBufferAddLit(&buffer, ".encoding = \"UTF-8\"\n");

M
Matthias Bolte 已提交
3064 3065 3066 3067
    /* vmx:config.version */
    virBufferAddLit(&buffer, "config.version = \"8\"\n");

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

M
Matthias Bolte 已提交
3071
    /* def:os.arch -> vmx:guestOS */
M
Matthias Bolte 已提交
3072 3073 3074 3075 3076
    if (def->os.arch == NULL || STRCASEEQ(def->os.arch, "i686")) {
        virBufferAddLit(&buffer, "guestOS = \"other\"\n");
    } else if (STRCASEEQ(def->os.arch, "x86_64")) {
        virBufferAddLit(&buffer, "guestOS = \"other-64\"\n");
    } else {
3077 3078 3079
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Expecting domain XML attribute 'arch' of entry 'os/type' "
                         "to be 'i686' or 'x86_64' but found '%s'"), def->os.arch);
3080
        goto cleanup;
M
Matthias Bolte 已提交
3081 3082
    }

M
Matthias Bolte 已提交
3083 3084 3085 3086 3087 3088 3089
    /* 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 {
3090 3091 3092
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported SMBIOS mode '%s'"),
                       virDomainSmbiosModeTypeToString(def->os.smbios_mode));
M
Matthias Bolte 已提交
3093 3094 3095
        goto cleanup;
    }

M
Matthias Bolte 已提交
3096 3097 3098 3099
    /* def:uuid -> vmx:uuid.action, vmx:uuid.bios */
    if (memcmp(def->uuid, zero, VIR_UUID_BUFLEN) == 0) {
        virBufferAddLit(&buffer, "uuid.action = \"create\"\n");
    } else {
3100
        virBufferAsprintf(&buffer, "uuid.bios = \"%02x %02x %02x %02x %02x %02x "
M
Matthias Bolte 已提交
3101 3102 3103 3104 3105 3106 3107 3108 3109
                          "%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 */
3110
    preliminaryDisplayName = virVMXEscapeHexPipe(def->name);
3111

3112 3113 3114
    if (preliminaryDisplayName == NULL) {
        goto cleanup;
    }
3115

3116
    displayName = virVMXEscapeHexPercent(preliminaryDisplayName);
3117

3118 3119 3120
    if (displayName == NULL) {
        goto cleanup;
    }
3121

3122
    virBufferAsprintf(&buffer, "displayName = \"%s\"\n", displayName);
3123

3124 3125
    /* def:description -> vmx:annotation */
    if (def->description != NULL) {
3126
        annotation = virVMXEscapeHexPipe(def->description);
3127

3128
        virBufferAsprintf(&buffer, "annotation = \"%s\"\n", annotation);
3129 3130
    }

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

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

3138
    /* def:mem.cur_balloon -> vmx:sched.mem.max */
3139
    if (def->mem.cur_balloon < max_balloon) {
3140
        virBufferAsprintf(&buffer, "sched.mem.max = \"%llu\"\n",
3141 3142
                          VIR_DIV_UP(def->mem.cur_balloon,
                                     1024)); /* Scale from kilobytes to megabytes */
M
Matthias Bolte 已提交
3143 3144
    }

3145 3146
    /* def:mem.min_guarantee -> vmx:sched.mem.minsize */
    if (def->mem.min_guarantee > 0) {
3147
        virBufferAsprintf(&buffer, "sched.mem.minsize = \"%llu\"\n",
3148 3149
                          VIR_DIV_UP(def->mem.min_guarantee,
                                     1024)); /* Scale from kilobytes to megabytes */
3150 3151
    }

E
Eric Blake 已提交
3152 3153
    /* def:maxvcpus -> vmx:numvcpus */
    if (def->vcpus != def->maxvcpus) {
3154 3155 3156
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("No support for domain XML entry 'vcpu' attribute "
                         "'current'"));
E
Eric Blake 已提交
3157 3158 3159
        goto cleanup;
    }
    if (def->maxvcpus <= 0 || (def->maxvcpus % 2 != 0 && def->maxvcpus != 1)) {
3160 3161 3162 3163
        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);
3164
        goto cleanup;
M
Matthias Bolte 已提交
3165 3166
    }

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

    /* def:cpumask -> vmx:sched.cpu.affinity */
H
Hu Tao 已提交
3170
    if (def->cpumask && virBitmapSize(def->cpumask) > 0) {
M
Matthias Bolte 已提交
3171 3172 3173 3174
        virBufferAddLit(&buffer, "sched.cpu.affinity = \"");

        sched_cpu_affinity_length = 0;

H
Hu Tao 已提交
3175 3176 3177
        i = -1;
        while ((i = virBitmapNextSetBit(def->cpumask, i)) >= 0) {
            ++sched_cpu_affinity_length;
M
Matthias Bolte 已提交
3178 3179
        }

E
Eric Blake 已提交
3180
        if (sched_cpu_affinity_length < def->maxvcpus) {
3181 3182 3183 3184
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Expecting domain XML attribute 'cpuset' of entry "
                             "'vcpu' to contain at least %d CPU(s)"),
                           def->maxvcpus);
3185
            goto cleanup;
M
Matthias Bolte 已提交
3186 3187
        }

H
Hu Tao 已提交
3188 3189 3190
        i = -1;
        while ((i = virBitmapNextSetBit(def->cpumask, i)) >= 0) {
            virBufferAsprintf(&buffer, "%d", i);
M
Matthias Bolte 已提交
3191

H
Hu Tao 已提交
3192 3193
            if (sched_cpu_affinity_length > 1) {
                virBufferAddChar(&buffer, ',');
M
Matthias Bolte 已提交
3194
            }
H
Hu Tao 已提交
3195 3196

            --sched_cpu_affinity_length;
M
Matthias Bolte 已提交
3197 3198 3199 3200 3201
        }

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

3202 3203 3204 3205 3206 3207 3208 3209 3210 3211
    /* 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 {
3212
            virBufferAsprintf(&buffer, "sched.cpu.shares = \"%lu\"\n",
3213 3214 3215 3216
                              def->cputune.shares);
        }
    }

M
Matthias Bolte 已提交
3217 3218 3219 3220
    /* def:graphics */
    for (i = 0; i < def->ngraphics; ++i) {
        switch (def->graphics[i]->type) {
          case VIR_DOMAIN_GRAPHICS_TYPE_VNC:
3221
            if (virVMXFormatVNC(def->graphics[i], &buffer) < 0) {
3222
                goto cleanup;
M
Matthias Bolte 已提交
3223 3224 3225 3226 3227
            }

            break;

          default:
3228 3229 3230
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported graphics type '%s'"),
                           virDomainGraphicsTypeToString(def->graphics[i]->type));
3231
            goto cleanup;
M
Matthias Bolte 已提交
3232 3233 3234
        }
    }

M
Matthias Bolte 已提交
3235
    /* def:disks */
3236
    for (i = 0; i < def->ndisks; ++i) {
3237 3238
        if (virVMXVerifyDiskAddress(caps, def->disks[i]) < 0 ||
            virVMXHandleLegacySCSIDiskDriverName(def, def->disks[i]) < 0) {
3239
            goto cleanup;
3240 3241
        }
    }
M
Matthias Bolte 已提交
3242

3243 3244
    if (virVMXGatherSCSIControllers(ctx, def, scsi_virtualDev,
                                    scsi_present) < 0) {
3245
        goto cleanup;
M
Matthias Bolte 已提交
3246 3247 3248 3249
    }

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

3252
            if (scsi_virtualDev[i] != -1) {
3253
                virBufferAsprintf(&buffer, "scsi%d.virtualDev = \"%s\"\n", i,
3254
                                  virVMXControllerModelSCSITypeToString
3255
                                    (scsi_virtualDev[i]));
M
Matthias Bolte 已提交
3256 3257 3258 3259 3260 3261 3262
            }
        }
    }

    for (i = 0; i < def->ndisks; ++i) {
        switch (def->disks[i]->device) {
          case VIR_DOMAIN_DISK_DEVICE_DISK:
3263
            if (virVMXFormatHardDisk(ctx, def->disks[i], &buffer) < 0) {
3264
                goto cleanup;
M
Matthias Bolte 已提交
3265 3266 3267 3268 3269
            }

            break;

          case VIR_DOMAIN_DISK_DEVICE_CDROM:
3270
            if (virVMXFormatCDROM(ctx, def->disks[i], &buffer) < 0) {
3271
                goto cleanup;
M
Matthias Bolte 已提交
3272 3273 3274 3275 3276
            }

            break;

          case VIR_DOMAIN_DISK_DEVICE_FLOPPY:
3277 3278
            if (virVMXFormatFloppy(ctx, def->disks[i], &buffer,
                                   floppy_present) < 0) {
3279
                goto cleanup;
M
Matthias Bolte 已提交
3280 3281 3282 3283 3284
            }

            break;

          default:
3285 3286 3287
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported disk device type '%s'"),
                           virDomainDiskDeviceTypeToString(def->disks[i]->device));
3288
            goto cleanup;
M
Matthias Bolte 已提交
3289 3290 3291
        }
    }

3292 3293 3294
    for (i = 0; i < 2; ++i) {
        /* floppy[0..1].present defaults to true, disable it explicitly */
        if (! floppy_present[i]) {
3295
            virBufferAsprintf(&buffer, "floppy%d.present = \"false\"\n", i);
3296 3297 3298
        }
    }

M
Matthias Bolte 已提交
3299
    /* def:fss */
3300 3301 3302 3303 3304 3305 3306 3307 3308 3309
    if (def->nfss > 0) {
        virBufferAddLit(&buffer, "isolation.tools.hgfs.disable = \"false\"\n");
        virBufferAsprintf(&buffer, "sharedFolder.maxNum = \"%d\"\n", def->nfss);
    }

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

    /* def:nets */
    for (i = 0; i < def->nnets; ++i) {
3313
        if (virVMXFormatEthernet(def->nets[i], i, &buffer) < 0) {
3314
            goto cleanup;
M
Matthias Bolte 已提交
3315 3316 3317 3318 3319 3320 3321 3322 3323
        }
    }

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

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

3324 3325 3326
    /* def:videos */
    if (def->nvideos > 0) {
        if (def->nvideos > 1) {
3327 3328
            virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                           _("No support for multiple video devices"));
3329 3330 3331 3332 3333 3334 3335 3336
            goto cleanup;
        }

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

M
Matthias Bolte 已提交
3337 3338 3339 3340 3341
    /* def:hostdevs */
    /* FIXME */

    /* def:serials */
    for (i = 0; i < def->nserials; ++i) {
3342
        if (virVMXFormatSerial(ctx, def->serials[i], &buffer) < 0) {
3343
            goto cleanup;
M
Matthias Bolte 已提交
3344 3345 3346 3347 3348
        }
    }

    /* def:parallels */
    for (i = 0; i < def->nparallels; ++i) {
3349
        if (virVMXFormatParallel(ctx, def->parallels[i], &buffer) < 0) {
3350
            goto cleanup;
M
Matthias Bolte 已提交
3351 3352 3353 3354 3355
        }
    }

    /* Get final VMX output */
    if (virBufferError(&buffer)) {
3356
        virReportOOMError();
3357
        goto cleanup;
M
Matthias Bolte 已提交
3358 3359
    }

3360
    vmx = virBufferContentAndReset(&buffer);
M
Matthias Bolte 已提交
3361

3362 3363 3364 3365 3366
  cleanup:
    if (vmx == NULL) {
        virBufferFreeAndReset(&buffer);
    }

3367 3368
    VIR_FREE(preliminaryDisplayName);
    VIR_FREE(displayName);
3369
    VIR_FREE(annotation);
M
Matthias Bolte 已提交
3370

3371
    return vmx;
M
Matthias Bolte 已提交
3372 3373 3374 3375
}



M
Matthias Bolte 已提交
3376
int
3377
virVMXFormatVNC(virDomainGraphicsDefPtr def, virBufferPtr buffer)
M
Matthias Bolte 已提交
3378
{
3379 3380
    const char *listenAddr;

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

3386
    virBufferAsprintf(buffer, "RemoteDisplay.vnc.enabled = \"true\"\n");
M
Matthias Bolte 已提交
3387 3388

    if (def->data.vnc.autoport) {
3389
        VIR_WARN("VNC autoport is enabled, but the automatically assigned "
M
Matthias Bolte 已提交
3390 3391 3392 3393 3394 3395 3396
                  "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);
        }

3397
        virBufferAsprintf(buffer, "RemoteDisplay.vnc.port = \"%d\"\n",
M
Matthias Bolte 已提交
3398 3399 3400
                          def->data.vnc.port);
    }

3401
    if ((listenAddr = virDomainGraphicsListenGetAddress(def, 0))) {
3402
        virBufferAsprintf(buffer, "RemoteDisplay.vnc.ip = \"%s\"\n",
3403
                          listenAddr);
M
Matthias Bolte 已提交
3404 3405 3406
    }

    if (def->data.vnc.keymap != NULL) {
3407
        virBufferAsprintf(buffer, "RemoteDisplay.vnc.keymap = \"%s\"\n",
M
Matthias Bolte 已提交
3408 3409 3410
                          def->data.vnc.keymap);
    }

3411
    if (def->data.vnc.auth.passwd != NULL) {
3412
        virBufferAsprintf(buffer, "RemoteDisplay.vnc.password = \"%s\"\n",
3413
                          def->data.vnc.auth.passwd);
M
Matthias Bolte 已提交
3414 3415 3416 3417 3418 3419 3420
    }

    return 0;
}



M
Matthias Bolte 已提交
3421
int
3422 3423
virVMXFormatHardDisk(virVMXContext *ctx, virDomainDiskDefPtr def,
                     virBufferPtr buffer)
M
Matthias Bolte 已提交
3424
{
3425
    int controllerOrBus, unit;
M
Matthias Bolte 已提交
3426 3427 3428
    const char *busName = NULL;
    const char *entryPrefix = NULL;
    const char *deviceTypePrefix = NULL;
M
Matthias Bolte 已提交
3429
    char *fileName = NULL;
M
Matthias Bolte 已提交
3430 3431

    if (def->device != VIR_DOMAIN_DISK_DEVICE_DISK) {
3432
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
3433 3434 3435 3436 3437 3438 3439 3440
        return -1;
    }

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

3441 3442
        if (virVMXSCSIDiskNameToControllerAndUnit(def->dst, &controllerOrBus,
                                                  &unit) < 0) {
M
Matthias Bolte 已提交
3443 3444 3445 3446 3447 3448 3449
            return -1;
        }
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_IDE) {
        busName = "IDE";
        entryPrefix = "ide";
        deviceTypePrefix = "ata";

3450
        if (virVMXIDEDiskNameToBusAndUnit(def->dst, &controllerOrBus,
3451
                                           &unit) < 0) {
M
Matthias Bolte 已提交
3452 3453 3454
            return -1;
        }
    } else {
3455 3456 3457
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported bus type '%s' for harddisk"),
                       virDomainDiskBusTypeToString(def->bus));
M
Matthias Bolte 已提交
3458 3459 3460 3461
        return -1;
    }

    if (def->type != VIR_DOMAIN_DISK_TYPE_FILE) {
3462 3463 3464 3465
        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 已提交
3466 3467 3468
        return -1;
    }

3469
    virBufferAsprintf(buffer, "%s%d:%d.present = \"true\"\n",
3470
                      entryPrefix, controllerOrBus, unit);
3471
    virBufferAsprintf(buffer, "%s%d:%d.deviceType = \"%s-hardDisk\"\n",
3472
                      entryPrefix, controllerOrBus, unit, deviceTypePrefix);
M
Matthias Bolte 已提交
3473 3474

    if (def->src != NULL) {
3475
        if (! virFileHasSuffix(def->src, ".vmdk")) {
3476 3477 3478
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Image file for %s harddisk '%s' has unsupported suffix, "
                             "expecting '.vmdk'"), busName, def->dst);
M
Matthias Bolte 已提交
3479 3480 3481
            return -1;
        }

3482
        fileName = ctx->formatFileName(def->src, ctx->opaque);
M
Matthias Bolte 已提交
3483 3484 3485 3486 3487

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

3488
        virBufferAsprintf(buffer, "%s%d:%d.fileName = \"%s\"\n",
3489
                          entryPrefix, controllerOrBus, unit, fileName);
M
Matthias Bolte 已提交
3490 3491

        VIR_FREE(fileName);
M
Matthias Bolte 已提交
3492 3493 3494 3495
    }

    if (def->bus == VIR_DOMAIN_DISK_BUS_SCSI) {
        if (def->cachemode == VIR_DOMAIN_DISK_CACHE_WRITETHRU) {
3496
            virBufferAsprintf(buffer, "%s%d:%d.writeThrough = \"true\"\n",
3497
                              entryPrefix, controllerOrBus, unit);
M
Matthias Bolte 已提交
3498
        } else if (def->cachemode != VIR_DOMAIN_DISK_CACHE_DEFAULT) {
3499 3500 3501 3502
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("%s harddisk '%s' has unsupported cache mode '%s'"),
                           busName, def->dst,
                           virDomainDiskCacheTypeToString(def->cachemode));
M
Matthias Bolte 已提交
3503
            return -1;
M
Matthias Bolte 已提交
3504 3505 3506 3507 3508 3509 3510 3511 3512
        }
    }

    return 0;
}



int
3513 3514
virVMXFormatCDROM(virVMXContext *ctx, virDomainDiskDefPtr def,
                  virBufferPtr buffer)
M
Matthias Bolte 已提交
3515
{
3516
    int controllerOrBus, unit;
M
Matthias Bolte 已提交
3517 3518
    const char *busName = NULL;
    const char *entryPrefix = NULL;
M
Matthias Bolte 已提交
3519
    char *fileName = NULL;
M
Matthias Bolte 已提交
3520 3521

    if (def->device != VIR_DOMAIN_DISK_DEVICE_CDROM) {
3522
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
3523 3524 3525 3526 3527 3528 3529
        return -1;
    }

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

3530 3531
        if (virVMXSCSIDiskNameToControllerAndUnit(def->dst, &controllerOrBus,
                                                  &unit) < 0) {
M
Matthias Bolte 已提交
3532 3533 3534 3535 3536 3537
            return -1;
        }
    } else if (def->bus == VIR_DOMAIN_DISK_BUS_IDE) {
        busName = "IDE";
        entryPrefix = "ide";

3538 3539
        if (virVMXIDEDiskNameToBusAndUnit(def->dst, &controllerOrBus,
                                          &unit) < 0) {
M
Matthias Bolte 已提交
3540 3541 3542
            return -1;
        }
    } else {
3543 3544 3545
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported bus type '%s' for cdrom"),
                       virDomainDiskBusTypeToString(def->bus));
M
Matthias Bolte 已提交
3546 3547 3548
        return -1;
    }

3549
    virBufferAsprintf(buffer, "%s%d:%d.present = \"true\"\n",
3550
                      entryPrefix, controllerOrBus, unit);
M
Matthias Bolte 已提交
3551 3552

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

        if (def->src != NULL) {
3557
            if (! virFileHasSuffix(def->src, ".iso")) {
3558 3559 3560
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Image file for %s cdrom '%s' has unsupported "
                                 "suffix, expecting '.iso'"), busName, def->dst);
M
Matthias Bolte 已提交
3561 3562 3563
                return -1;
            }

3564
            fileName = ctx->formatFileName(def->src, ctx->opaque);
M
Matthias Bolte 已提交
3565 3566 3567 3568 3569

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

3570
            virBufferAsprintf(buffer, "%s%d:%d.fileName = \"%s\"\n",
3571
                              entryPrefix, controllerOrBus, unit, fileName);
M
Matthias Bolte 已提交
3572 3573 3574

            VIR_FREE(fileName);
        }
M
Matthias Bolte 已提交
3575
    } else if (def->type == VIR_DOMAIN_DISK_TYPE_BLOCK) {
3576
        virBufferAsprintf(buffer, "%s%d:%d.deviceType = \"atapi-cdrom\"\n",
3577
                          entryPrefix, controllerOrBus, unit);
M
Matthias Bolte 已提交
3578 3579

        if (def->src != NULL) {
3580
            virBufferAsprintf(buffer, "%s%d:%d.fileName = \"%s\"\n",
3581
                              entryPrefix, controllerOrBus, unit, def->src);
M
Matthias Bolte 已提交
3582
        }
M
Matthias Bolte 已提交
3583
    } else {
3584 3585 3586 3587 3588 3589
        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 已提交
3590 3591 3592 3593 3594 3595 3596 3597 3598
        return -1;
    }

    return 0;
}



int
3599 3600
virVMXFormatFloppy(virVMXContext *ctx, virDomainDiskDefPtr def,
                   virBufferPtr buffer, bool floppy_present[2])
M
Matthias Bolte 已提交
3601
{
3602
    int unit;
M
Matthias Bolte 已提交
3603
    char *fileName = NULL;
M
Matthias Bolte 已提交
3604 3605

    if (def->device != VIR_DOMAIN_DISK_DEVICE_FLOPPY) {
3606
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s", _("Invalid argument"));
M
Matthias Bolte 已提交
3607 3608 3609
        return -1;
    }

3610
    if (virVMXFloppyDiskNameToUnit(def->dst, &unit) < 0) {
M
Matthias Bolte 已提交
3611 3612 3613
        return -1;
    }

3614 3615
    floppy_present[unit] = true;

3616
    virBufferAsprintf(buffer, "floppy%d.present = \"true\"\n", unit);
M
Matthias Bolte 已提交
3617 3618

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

        if (def->src != NULL) {
3622
            if (! virFileHasSuffix(def->src, ".flp")) {
3623 3624 3625
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Image file for floppy '%s' has unsupported "
                                 "suffix, expecting '.flp'"), def->dst);
M
Matthias Bolte 已提交
3626 3627 3628
                return -1;
            }

3629
            fileName = ctx->formatFileName(def->src, ctx->opaque);
M
Matthias Bolte 已提交
3630 3631 3632 3633 3634

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

3635
            virBufferAsprintf(buffer, "floppy%d.fileName = \"%s\"\n",
3636
                              unit, fileName);
M
Matthias Bolte 已提交
3637 3638 3639

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

        if (def->src != NULL) {
3644
            virBufferAsprintf(buffer, "floppy%d.fileName = \"%s\"\n",
3645
                              unit, def->src);
M
Matthias Bolte 已提交
3646
        }
M
Matthias Bolte 已提交
3647
    } else {
3648 3649 3650 3651 3652 3653
        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 已提交
3654 3655 3656 3657 3658 3659 3660 3661
        return -1;
    }

    return 0;
}



3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686
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 已提交
3687
int
3688 3689
virVMXFormatEthernet(virDomainNetDefPtr def, int controller,
                     virBufferPtr buffer)
M
Matthias Bolte 已提交
3690 3691
{
    char mac_string[VIR_MAC_STRING_BUFLEN];
3692
    unsigned int prefix, suffix;
M
Matthias Bolte 已提交
3693 3694

    if (controller < 0 || controller > 3) {
3695 3696 3697
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Ethernet controller index %d out of [0..3] range"),
                       controller);
M
Matthias Bolte 已提交
3698 3699 3700
        return -1;
    }

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

3703
    /* def:model -> vmx:virtualDev, vmx:features */
M
Matthias Bolte 已提交
3704 3705 3706
    if (def->model != NULL) {
        if (STRCASENEQ(def->model, "vlance") &&
            STRCASENEQ(def->model, "vmxnet") &&
3707
            STRCASENEQ(def->model, "vmxnet2") &&
3708
            STRCASENEQ(def->model, "vmxnet3") &&
M
Matthias Bolte 已提交
3709
            STRCASENEQ(def->model, "e1000")) {
3710 3711 3712 3713
            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 已提交
3714 3715 3716
            return -1;
        }

3717
        if (STRCASEEQ(def->model, "vmxnet2")) {
3718
            virBufferAsprintf(buffer, "ethernet%d.virtualDev = \"vmxnet\"\n",
3719
                              controller);
3720
            virBufferAsprintf(buffer, "ethernet%d.features = \"15\"\n",
3721 3722
                              controller);
        } else {
3723
            virBufferAsprintf(buffer, "ethernet%d.virtualDev = \"%s\"\n",
3724 3725
                              controller, def->model);
        }
M
Matthias Bolte 已提交
3726 3727 3728 3729 3730
    }

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

        if (def->ifname != NULL) {
3736
            virBufferAsprintf(buffer, "ethernet%d.connectionType = \"custom\"\n",
M
Matthias Bolte 已提交
3737
                              controller);
3738
            virBufferAsprintf(buffer, "ethernet%d.vnet = \"%s\"\n",
M
Matthias Bolte 已提交
3739 3740
                              controller, def->ifname);
        } else {
3741
            virBufferAsprintf(buffer, "ethernet%d.connectionType = \"bridged\"\n",
M
Matthias Bolte 已提交
3742 3743 3744 3745 3746
                              controller);
        }

        break;

3747 3748 3749 3750 3751
      case VIR_DOMAIN_NET_TYPE_USER:
        virBufferAsprintf(buffer, "ethernet%d.connectionType = \"nat\"\n",
                          controller);
        break;

M
Matthias Bolte 已提交
3752
      default:
3753 3754
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, _("Unsupported net type '%s'"),
                       virDomainNetTypeToString(def->type));
M
Matthias Bolte 已提交
3755 3756 3757
        return -1;
    }

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

3761 3762
    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];
3763 3764

    if (prefix == 0x000c29) {
3765
        virBufferAsprintf(buffer, "ethernet%d.addressType = \"generated\"\n",
M
Matthias Bolte 已提交
3766
                          controller);
3767
        virBufferAsprintf(buffer, "ethernet%d.generatedAddress = \"%s\"\n",
M
Matthias Bolte 已提交
3768
                          controller, mac_string);
3769
        virBufferAsprintf(buffer, "ethernet%d.generatedAddressOffset = \"0\"\n",
M
Matthias Bolte 已提交
3770
                          controller);
3771
    } else if (prefix == 0x005056 && suffix <= 0x3fffff) {
3772
        virBufferAsprintf(buffer, "ethernet%d.addressType = \"static\"\n",
3773
                          controller);
3774
        virBufferAsprintf(buffer, "ethernet%d.address = \"%s\"\n",
3775 3776
                          controller, mac_string);
    } else if (prefix == 0x005056 && suffix >= 0x800000 && suffix <= 0xbfffff) {
3777
        virBufferAsprintf(buffer, "ethernet%d.addressType = \"vpx\"\n",
3778
                          controller);
3779
        virBufferAsprintf(buffer, "ethernet%d.generatedAddress = \"%s\"\n",
3780
                          controller, mac_string);
M
Matthias Bolte 已提交
3781
    } else {
3782
        virBufferAsprintf(buffer, "ethernet%d.addressType = \"static\"\n",
3783
                          controller);
3784
        virBufferAsprintf(buffer, "ethernet%d.address = \"%s\"\n",
3785
                          controller, mac_string);
3786
        virBufferAsprintf(buffer, "ethernet%d.checkMACAddress = \"false\"\n",
3787
                          controller);
M
Matthias Bolte 已提交
3788 3789 3790 3791 3792 3793 3794 3795
    }

    return 0;
}



int
3796 3797
virVMXFormatSerial(virVMXContext *ctx, virDomainChrDefPtr def,
                   virBufferPtr buffer)
M
Matthias Bolte 已提交
3798
{
M
Matthias Bolte 已提交
3799
    char *fileName = NULL;
3800
    const char *protocol;
M
Matthias Bolte 已提交
3801

3802
    if (def->target.port < 0 || def->target.port > 3) {
3803 3804 3805
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Serial port index %d out of [0..3] range"),
                       def->target.port);
M
Matthias Bolte 已提交
3806 3807 3808
        return -1;
    }

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

M
Matthias Bolte 已提交
3811
    /* def:type -> vmx:fileType and def:data.file.path -> vmx:fileName */
3812
    switch (def->source.type) {
M
Matthias Bolte 已提交
3813
      case VIR_DOMAIN_CHR_TYPE_DEV:
3814
        virBufferAsprintf(buffer, "serial%d.fileType = \"device\"\n",
3815
                          def->target.port);
3816
        virBufferAsprintf(buffer, "serial%d.fileName = \"%s\"\n",
3817
                          def->target.port, def->source.data.file.path);
M
Matthias Bolte 已提交
3818 3819 3820
        break;

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

3824
        fileName = ctx->formatFileName(def->source.data.file.path, ctx->opaque);
M
Matthias Bolte 已提交
3825 3826 3827 3828 3829

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

3830
        virBufferAsprintf(buffer, "serial%d.fileName = \"%s\"\n",
3831
                          def->target.port, fileName);
M
Matthias Bolte 已提交
3832 3833

        VIR_FREE(fileName);
M
Matthias Bolte 已提交
3834 3835 3836
        break;

      case VIR_DOMAIN_CHR_TYPE_PIPE:
3837
        virBufferAsprintf(buffer, "serial%d.fileType = \"pipe\"\n",
3838
                          def->target.port);
M
Matthias Bolte 已提交
3839
        /* FIXME: Based on VI Client GUI default */
3840
        virBufferAsprintf(buffer, "serial%d.pipe.endPoint = \"client\"\n",
3841
                          def->target.port);
M
Matthias Bolte 已提交
3842
        /* FIXME: Based on VI Client GUI default */
3843
        virBufferAsprintf(buffer, "serial%d.tryNoRxLoss = \"false\"\n",
3844
                          def->target.port);
3845
        virBufferAsprintf(buffer, "serial%d.fileName = \"%s\"\n",
3846
                          def->target.port, def->source.data.file.path);
M
Matthias Bolte 已提交
3847 3848
        break;

3849
      case VIR_DOMAIN_CHR_TYPE_TCP:
3850
        switch (def->source.data.tcp.protocol) {
3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867
          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:
3868 3869 3870 3871
            virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                           _("Unsupported character device TCP protocol '%s'"),
                           virDomainChrTcpProtocolTypeToString(
                               def->source.data.tcp.protocol));
3872 3873 3874
            return -1;
        }

3875
        virBufferAsprintf(buffer, "serial%d.fileType = \"network\"\n",
3876
                          def->target.port);
3877
        virBufferAsprintf(buffer, "serial%d.fileName = \"%s://%s:%s\"\n",
3878 3879
                          def->target.port, protocol, def->source.data.tcp.host,
                          def->source.data.tcp.service);
3880
        virBufferAsprintf(buffer, "serial%d.network.endPoint = \"%s\"\n",
3881
                          def->target.port,
3882
                          def->source.data.tcp.listen ? "server" : "client");
3883 3884
        break;

M
Matthias Bolte 已提交
3885
      default:
3886 3887 3888
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported character device type '%s'"),
                       virDomainChrTypeToString(def->source.type));
M
Matthias Bolte 已提交
3889 3890 3891 3892 3893
        return -1;
    }

    /* vmx:yieldOnMsrRead */
    /* FIXME: Based on VI Client GUI default */
3894
    virBufferAsprintf(buffer, "serial%d.yieldOnMsrRead = \"true\"\n",
3895
                      def->target.port);
M
Matthias Bolte 已提交
3896 3897 3898 3899 3900 3901 3902

    return 0;
}



int
3903 3904
virVMXFormatParallel(virVMXContext *ctx, virDomainChrDefPtr def,
                     virBufferPtr buffer)
M
Matthias Bolte 已提交
3905
{
M
Matthias Bolte 已提交
3906 3907
    char *fileName = NULL;

3908
    if (def->target.port < 0 || def->target.port > 2) {
3909 3910 3911
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Parallel port index %d out of [0..2] range"),
                       def->target.port);
M
Matthias Bolte 已提交
3912 3913 3914
        return -1;
    }

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

M
Matthias Bolte 已提交
3918
    /* def:type -> vmx:fileType and def:data.file.path -> vmx:fileName */
3919
    switch (def->source.type) {
M
Matthias Bolte 已提交
3920
      case VIR_DOMAIN_CHR_TYPE_DEV:
3921
        virBufferAsprintf(buffer, "parallel%d.fileType = \"device\"\n",
3922
                          def->target.port);
3923
        virBufferAsprintf(buffer, "parallel%d.fileName = \"%s\"\n",
3924
                          def->target.port, def->source.data.file.path);
M
Matthias Bolte 已提交
3925 3926 3927
        break;

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

3931
        fileName = ctx->formatFileName(def->source.data.file.path, ctx->opaque);
M
Matthias Bolte 已提交
3932 3933 3934 3935 3936

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

3937
        virBufferAsprintf(buffer, "parallel%d.fileName = \"%s\"\n",
3938
                          def->target.port, fileName);
M
Matthias Bolte 已提交
3939 3940

        VIR_FREE(fileName);
M
Matthias Bolte 已提交
3941 3942 3943
        break;

      default:
3944 3945 3946
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported character device type '%s'"),
                       virDomainChrTypeToString(def->source.type));
M
Matthias Bolte 已提交
3947 3948 3949 3950 3951
        return -1;
    }

    return 0;
}
3952 3953 3954 3955 3956 3957



int
virVMXFormatSVGA(virDomainVideoDefPtr def, virBufferPtr buffer)
{
3958 3959
    unsigned long long vram;

3960
    if (def->type != VIR_DOMAIN_VIDEO_TYPE_VMVGA) {
3961 3962 3963
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("Unsupported video device type '%s'"),
                       virDomainVideoTypeToString(def->type));
3964 3965 3966 3967 3968 3969 3970
        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
     */
3971
    vram = VIR_DIV_UP(def->vram, 64) * 64;
3972 3973

    if (def->heads > 1) {
3974 3975
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Multi-head video devices are unsupported"));
3976 3977 3978
        return -1;
    }

3979
    virBufferAsprintf(buffer, "svga.vramSize = \"%lld\"\n",
3980
                      vram * 1024); /* kilobyte to byte */
3981 3982 3983

    return 0;
}