qemu_conf.c 137.8 KB
Newer Older
D
Daniel P. Berrange 已提交
1 2 3
/*
 * config.c: VM configuration management
 *
4
 * Copyright (C) 2006, 2007, 2008 Red Hat, Inc.
D
Daniel P. Berrange 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * Copyright (C) 2006 Daniel P. Berrange
 *
 * 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
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

24
#include <config.h>
25 26

#ifdef WITH_QEMU
27

D
Daniel P. Berrange 已提交
28 29 30 31 32 33 34 35
#include <dirent.h>
#include <string.h>
#include <limits.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <fcntl.h>
36
#include <sys/wait.h>
37
#include <arpa/inet.h>
38
#include <sys/utsname.h>
D
Daniel P. Berrange 已提交
39 40 41 42 43 44

#include <libxml/parser.h>
#include <libxml/tree.h>
#include <libxml/xpath.h>
#include <libxml/uri.h>

45 46 47 48
#if HAVE_NUMACTL
#include <numa.h>
#endif

49
#include "libvirt/virterror.h"
D
Daniel P. Berrange 已提交
50

51
#include "qemu_conf.h"
52
#include "uuid.h"
53
#include "buf.h"
D
Daniel P. Berrange 已提交
54
#include "conf.h"
55
#include "util.h"
56
#include "memory.h"
J
Jim Meyering 已提交
57 58
#include "verify.h"
#include "c-ctype.h"
59
#include "xml.h"
60

61 62
#define qemudLog(level, msg...) fprintf(stderr, msg)

63 64 65 66 67 68
void qemudReportError(virConnectPtr conn,
                      virDomainPtr dom,
                      virNetworkPtr net,
                      int code, const char *fmt, ...) {
    va_list args;
    char errorMessage[QEMUD_MAX_ERROR_LEN];
D
Daniel Veillard 已提交
69
    const char *virerr;
70 71 72 73 74 75 76 77

    if (fmt) {
        va_start(args, fmt);
        vsnprintf(errorMessage, QEMUD_MAX_ERROR_LEN-1, fmt, args);
        va_end(args);
    } else {
        errorMessage[0] = '\0';
    }
D
Daniel Veillard 已提交
78

79
    virerr = __virErrorMsg(code, (errorMessage[0] ? errorMessage : NULL));
80
    __virRaiseError(conn, dom, net, VIR_FROM_QEMU, code, VIR_ERR_ERROR,
D
Daniel Veillard 已提交
81
                    virerr, errorMessage, NULL, -1, -1, virerr, errorMessage);
82 83
}

D
Daniel P. Berrange 已提交
84 85 86 87 88 89 90 91 92
int qemudLoadDriverConfig(struct qemud_driver *driver,
                          const char *filename) {
    virConfPtr conf;
    virConfValuePtr p;

    /* Setup 2 critical defaults */
    strcpy(driver->vncListen, "127.0.0.1");
    if (!(driver->vncTLSx509certdir = strdup(SYSCONF_DIR "/pki/libvirt-vnc"))) {
        qemudReportError(NULL, NULL, NULL, VIR_ERR_NO_MEMORY,
93
                         "%s", _("failed to allocate vncTLSx509certdir"));
D
Daniel P. Berrange 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
        return -1;
    }

    /* Just check the file is readable before opening it, otherwise
     * libvirt emits an error.
     */
    if (access (filename, R_OK) == -1) return 0;

    conf = virConfReadFile (filename);
    if (!conf) return 0;


#define CHECK_TYPE(name,typ) if (p && p->type != (typ)) {               \
        qemudReportError(NULL, NULL, NULL, VIR_ERR_INTERNAL_ERROR,      \
                         "remoteReadConfigFile: %s: %s: expected type " #typ "\n", \
                         filename, (name));                             \
        virConfFree(conf);                                              \
        return -1;                                                      \
    }

    p = virConfGetValue (conf, "vnc_tls");
    CHECK_TYPE ("vnc_tls", VIR_CONF_LONG);
    if (p) driver->vncTLS = p->l;

    p = virConfGetValue (conf, "vnc_tls_x509_verify");
    CHECK_TYPE ("vnc_tls_x509_verify", VIR_CONF_LONG);
    if (p) driver->vncTLSx509verify = p->l;

    p = virConfGetValue (conf, "vnc_tls_x509_cert_dir");
    CHECK_TYPE ("vnc_tls_x509_cert_dir", VIR_CONF_STRING);
    if (p && p->str) {
        free(driver->vncTLSx509certdir);
        if (!(driver->vncTLSx509certdir = strdup(p->str))) {
            qemudReportError(NULL, NULL, NULL, VIR_ERR_NO_MEMORY,
128
                             "%s", _("failed to allocate vncTLSx509certdir"));
D
Daniel P. Berrange 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
            virConfFree(conf);
            return -1;
        }
    }

    p = virConfGetValue (conf, "vnc_listen");
    CHECK_TYPE ("vnc_listen", VIR_CONF_STRING);
    if (p && p->str) {
        strncpy(driver->vncListen, p->str, sizeof(driver->vncListen));
        driver->vncListen[sizeof(driver->vncListen)-1] = '\0';
    }

    virConfFree (conf);
    return 0;
}


146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
struct qemud_vm *qemudFindVMByID(const struct qemud_driver *driver, int id) {
    struct qemud_vm *vm = driver->vms;

    while (vm) {
        if (qemudIsActiveVM(vm) && vm->id == id)
            return vm;
        vm = vm->next;
    }

    return NULL;
}

struct qemud_vm *qemudFindVMByUUID(const struct qemud_driver *driver,
                                   const unsigned char *uuid) {
    struct qemud_vm *vm = driver->vms;

    while (vm) {
163
        if (!memcmp(vm->def->uuid, uuid, VIR_UUID_BUFLEN))
164 165 166 167 168 169 170 171 172 173 174 175
            return vm;
        vm = vm->next;
    }

    return NULL;
}

struct qemud_vm *qemudFindVMByName(const struct qemud_driver *driver,
                                   const char *name) {
    struct qemud_vm *vm = driver->vms;

    while (vm) {
176
        if (STREQ(vm->def->name, name))
177 178 179 180 181 182 183 184 185 186 187 188
            return vm;
        vm = vm->next;
    }

    return NULL;
}

struct qemud_network *qemudFindNetworkByUUID(const struct qemud_driver *driver,
                                             const unsigned char *uuid) {
    struct qemud_network *network = driver->networks;

    while (network) {
189
        if (!memcmp(network->def->uuid, uuid, VIR_UUID_BUFLEN))
190 191 192 193 194 195 196 197 198 199 200 201
            return network;
        network = network->next;
    }

    return NULL;
}

struct qemud_network *qemudFindNetworkByName(const struct qemud_driver *driver,
                                             const char *name) {
    struct qemud_network *network = driver->networks;

    while (network) {
202
        if (STREQ(network->def->name, name))
203 204 205 206 207 208 209
            return network;
        network = network->next;
    }

    return NULL;
}

210

211 212 213 214
/* Free all memory associated with a struct qemud_vm object */
void qemudFreeVMDef(struct qemud_vm_def *def) {
    struct qemud_vm_disk_def *disk = def->disks;
    struct qemud_vm_net_def *net = def->nets;
D
Daniel P. Berrange 已提交
215
    struct qemud_vm_input_def *input = def->inputs;
216 217
    struct qemud_vm_chr_def *serial = def->serials;
    struct qemud_vm_chr_def *parallel = def->parallels;
218 219 220 221 222 223 224 225 226 227 228

    while (disk) {
        struct qemud_vm_disk_def *prev = disk;
        disk = disk->next;
        free(prev);
    }
    while (net) {
        struct qemud_vm_net_def *prev = net;
        net = net->next;
        free(prev);
    }
D
Daniel P. Berrange 已提交
229 230 231 232 233
    while (input) {
        struct qemud_vm_input_def *prev = input;
        input = input->next;
        free(prev);
    }
234 235 236 237 238 239 240 241 242 243
    while (serial) {
        struct qemud_vm_chr_def *prev = serial;
        serial = serial->next;
        free(prev);
    }
    while (parallel) {
        struct qemud_vm_chr_def *prev = parallel;
        parallel = parallel->next;
        free(prev);
    }
244
    xmlFree(def->keymap);
245
    free(def);
246 247 248 249 250 251 252 253
}

void qemudFreeVM(struct qemud_vm *vm) {
    qemudFreeVMDef(vm->def);
    if (vm->newDef)
        qemudFreeVMDef(vm->newDef);
    free(vm);
}
D
Daniel P. Berrange 已提交
254

255

D
Daniel P. Berrange 已提交
256 257
/* The list of possible machine types for various architectures,
   as supported by QEMU - taken from 'qemu -M ?' for each arch */
258 259
static const char *const arch_info_hvm_x86_machines[] = {
    "pc", "isapc"
D
Daniel P. Berrange 已提交
260
};
261 262
static const char *const arch_info_hvm_mips_machines[] = {
    "mips"
D
Daniel P. Berrange 已提交
263
};
264 265
static const char *const arch_info_hvm_sparc_machines[] = {
    "sun4m"
D
Daniel P. Berrange 已提交
266
};
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
static const char *const arch_info_hvm_ppc_machines[] = {
    "g3bw", "mac99", "prep"
};

static const char *const arch_info_xen_x86_machines[] = {
    "xenner"
};

struct qemu_feature_flags {
    const char *name;
    const int default_on;
    const int toggle;
};

struct qemu_arch_info {
    const char *arch;
    int wordsize;
    const char *const *machines;
    int nmachines;
    const char *binary;
    const struct qemu_feature_flags *flags;
    int nflags;
D
Daniel P. Berrange 已提交
289 290
};

291
/* Feature flags for the architecture info */
J
Jim Meyering 已提交
292
static const struct qemu_feature_flags const arch_info_i686_flags [] = {
293 294
    { "pae",  1, 0 },
    { "nonpae",  1, 0 },
295 296 297 298
    { "acpi", 1, 1 },
    { "apic", 1, 0 },
};

J
Jim Meyering 已提交
299
static const struct qemu_feature_flags const arch_info_x86_64_flags [] = {
300 301 302 303
    { "acpi", 1, 1 },
    { "apic", 1, 0 },
};

D
Daniel P. Berrange 已提交
304
/* The archicture tables for supported QEMU archs */
305 306 307 308 309 310 311 312 313 314 315 316 317
static const struct qemu_arch_info const arch_info_hvm[] = {
    {  "i686", 32, arch_info_hvm_x86_machines, 2,
       "/usr/bin/qemu", arch_info_i686_flags, 4 },
    {  "x86_64", 64, arch_info_hvm_x86_machines, 2,
       "/usr/bin/qemu-system-x86_64", arch_info_x86_64_flags, 2 },
    {  "mips", 32, arch_info_hvm_mips_machines, 1,
       "/usr/bin/qemu-system-mips", NULL, 0 },
    {  "mipsel", 32, arch_info_hvm_mips_machines, 1,
       "/usr/bin/qemu-system-mipsel", NULL, 0 },
    {  "sparc", 32, arch_info_hvm_sparc_machines, 1,
       "/usr/bin/qemu-system-sparc", NULL, 0 },
    {  "ppc", 32, arch_info_hvm_ppc_machines, 3,
       "/usr/bin/qemu-system-ppc", NULL, 0 },
D
Daniel P. Berrange 已提交
318 319
};

320 321 322 323 324 325
static const struct qemu_arch_info const arch_info_xen[] = {
    {  "i686", 32, arch_info_xen_x86_machines, 1,
       "/usr/bin/xenner", arch_info_i686_flags, 4 },
    {  "x86_64", 64, arch_info_xen_x86_machines, 1,
       "/usr/bin/xenner", arch_info_x86_64_flags, 2 },
};
D
Daniel P. Berrange 已提交
326

327 328 329 330 331 332
static int
qemudCapsInitGuest(virCapsPtr caps,
                   const char *hostmachine,
                   const struct qemu_arch_info *info,
                   int hvm) {
    virCapsGuestPtr guest;
D
Daniel P. Berrange 已提交
333 334
    int i;

335 336 337 338 339 340 341 342 343
    if ((guest = virCapabilitiesAddGuest(caps,
                                         hvm ? "hvm" : "xen",
                                         info->arch,
                                         info->wordsize,
                                         info->binary,
                                         NULL,
                                         info->nmachines,
                                         info->machines)) == NULL)
        return -1;
D
Daniel P. Berrange 已提交
344

345 346 347 348 349 350 351 352 353 354
    if (hvm) {
        /* Check for existance of base emulator */
        if (access(info->binary, X_OK) == 0 &&
            virCapabilitiesAddGuestDomain(guest,
                                          "qemu",
                                          NULL,
                                          NULL,
                                          0,
                                          NULL) == NULL)
            return -1;
D
Daniel P. Berrange 已提交
355

356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
        /* If guest & host match, then we can accelerate */
        if (STREQ(info->arch, hostmachine)) {
            if (access("/dev/kqemu", F_OK) == 0 &&
                virCapabilitiesAddGuestDomain(guest,
                                              "kqemu",
                                              NULL,
                                              NULL,
                                              0,
                                              NULL) == NULL)
                return -1;

            if (access("/dev/kvm", F_OK) == 0 &&
                virCapabilitiesAddGuestDomain(guest,
                                              "kvm",
                                              "/usr/bin/qemu-kvm",
                                              NULL,
                                              0,
                                              NULL) == NULL)
                return -1;
        }
    } else {
        if (virCapabilitiesAddGuestDomain(guest,
                                          "kvm",
                                          NULL,
                                          NULL,
                                          0,
                                          NULL) == NULL)
            return -1;
    }
D
Daniel P. Berrange 已提交
385

386 387 388 389 390 391 392
    if (info->nflags) {
        for (i = 0 ; i < info->nflags ; i++) {
            if (virCapabilitiesAddGuestFeature(guest,
                                               info->flags[i].name,
                                               info->flags[i].default_on,
                                               info->flags[i].toggle) == NULL)
                return -1;
D
Daniel P. Berrange 已提交
393 394 395
        }
    }

396
    return 0;
D
Daniel P. Berrange 已提交
397 398
}

399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
#if HAVE_NUMACTL
#define MAX_CPUS 4096
#define MAX_CPUS_MASK_SIZE (sizeof(unsigned long))
#define MAX_CPUS_MASK_LEN (MAX_CPUS / MAX_CPUS_MASK_SIZE)
#define MAX_CPUS_MASK_BYTES (MAX_CPUS / 8)

#define MASK_CPU_ISSET(mask, cpu) \
    (((mask)[((cpu) / MAX_CPUS_MASK_SIZE)] >> ((cpu) % MAX_CPUS_MASK_SIZE)) & 1)

static int
qemudCapsInitNUMA(virCapsPtr caps)
{
    int n, i;
    unsigned long *mask = NULL;
    int ncpus;
    int *cpus = NULL;
    int ret = -1;

    if (numa_available() < 0)
        return 0;

    if (VIR_ALLOC_N(mask, MAX_CPUS_MASK_LEN) < 0)
        goto cleanup;

    for (n = 0 ; n <= numa_max_node() ; n++) {
        if (numa_node_to_cpus(n, mask, MAX_CPUS_MASK_BYTES) < 0)
            goto cleanup;

        for (ncpus = 0, i = 0 ; i < MAX_CPUS ; i++)
            if (MASK_CPU_ISSET(mask, i))
                ncpus++;

        if (VIR_ALLOC_N(cpus, ncpus) < 0)
            goto cleanup;

        for (ncpus = 0, i = 0 ; i < MAX_CPUS ; i++)
            if (MASK_CPU_ISSET(mask, i))
                cpus[ncpus++] = i;

        if (virCapabilitiesAddHostNUMACell(caps,
                                           n,
                                           ncpus,
                                           cpus) < 0)
            goto cleanup;

        VIR_FREE(cpus);
    }

    ret = 0;

cleanup:
    VIR_FREE(cpus);
    VIR_FREE(mask);
    return ret;
}
#else
static int qemudCapsInitNUMA(virCapsPtr caps ATTRIBUTE_UNUSED) { return 0; }
#endif

458 459 460 461
virCapsPtr qemudCapsInit(void) {
    struct utsname utsname;
    virCapsPtr caps;
    int i;
D
Daniel P. Berrange 已提交
462

463 464 465 466 467 468 469
    /* Really, this never fails - look at the man-page. */
    uname (&utsname);

    if ((caps = virCapabilitiesNew(utsname.machine,
                                   0, 0)) == NULL)
        goto no_memory;

470 471 472
    if (qemudCapsInitNUMA(caps) < 0)
        goto no_memory;

473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
    for (i = 0 ; i < (sizeof(arch_info_hvm)/sizeof(arch_info_hvm[0])) ; i++)
        if (qemudCapsInitGuest(caps,
                               utsname.machine,
                               &arch_info_hvm[i], 1) < 0)
            goto no_memory;

    if (access("/usr/bin/xenner", X_OK) == 0 &&
        access("/dev/kvm", F_OK) == 0) {
        for (i = 0 ; i < (sizeof(arch_info_xen)/sizeof(arch_info_xen[0])) ; i++)
            /* Allow Xen 32-on-32, 32-on-64 and 64-on-64 */
            if (STREQ(arch_info_xen[i].arch, utsname.machine) ||
                (STREQ(utsname.machine, "x86_64") &&
                 STREQ(arch_info_xen[i].arch, "i686"))) {
                if (qemudCapsInitGuest(caps,
                                       utsname.machine,
                                       &arch_info_xen[i], 0) < 0)
                    goto no_memory;
            }
D
Daniel P. Berrange 已提交
491 492
    }

493 494 495 496 497
    return caps;

 no_memory:
    virCapabilitiesFree(caps);
    return NULL;
D
Daniel P. Berrange 已提交
498 499
}

500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518

static int qemudExtractVersionInfo(const char *qemu, int *version, int *flags) {
    pid_t child;
    int newstdout[2];

    *flags = 0;
    *version = 0;

    if (pipe(newstdout) < 0) {
        return -1;
    }

    if ((child = fork()) < 0) {
        close(newstdout[0]);
        close(newstdout[1]);
        return -1;
    }

    if (child == 0) { /* Kid */
519 520 521
        /* Just in case QEMU is translated someday we force to C locale.. */
        const char *const qemuenv[] = { "LANG=C", NULL };

522 523 524 525 526 527 528 529 530
        if (close(STDIN_FILENO) < 0)
            goto cleanup1;
        if (close(STDERR_FILENO) < 0)
            goto cleanup1;
        if (close(newstdout[0]) < 0)
            goto cleanup1;
        if (dup2(newstdout[1], STDOUT_FILENO) < 0)
            goto cleanup1;

531 532 533
        /* Passing -help, rather than relying on no-args which doesn't
           always work */
        execle(qemu, qemu, "-help", (char*)NULL, qemuenv);
534 535 536 537

    cleanup1:
        _exit(-1); /* Just in case */
    } else { /* Parent */
D
Daniel P. Berrange 已提交
538
        char help[8192]; /* Ought to be enough to hold QEMU help screen */
539
        int got = 0, ret = -1;
540 541 542 543 544
        int major, minor, micro;

        if (close(newstdout[1]) < 0)
            goto cleanup2;

D
Daniel P. Berrange 已提交
545 546 547 548 549 550 551 552 553 554
        while (got < (sizeof(help)-1)) {
            int len;
            if ((len = read(newstdout[0], help+got, sizeof(help)-got-1)) <= 0) {
                if (!len)
                    break;
                if (errno == EINTR)
                    continue;
                goto cleanup2;
            }
            got += len;
555 556 557 558 559 560 561 562 563 564
        }
        help[got] = '\0';

        if (sscanf(help, "QEMU PC emulator version %d.%d.%d", &major,&minor, &micro) != 3) {
            goto cleanup2;
        }

        *version = (major * 1000 * 1000) + (minor * 1000) + micro;
        if (strstr(help, "-no-kqemu"))
            *flags |= QEMUD_CMD_FLAG_KQEMU;
D
Daniel P. Berrange 已提交
565 566
        if (strstr(help, "-no-reboot"))
            *flags |= QEMUD_CMD_FLAG_NO_REBOOT;
567 568 569 570
        if (strstr(help, "-name"))
            *flags |= QEMUD_CMD_FLAG_NAME;
        if (strstr(help, "-drive"))
            *flags |= QEMUD_CMD_FLAG_DRIVE;
571
        if (strstr(help, "boot=on"))
572
            *flags |= QEMUD_CMD_FLAG_DRIVE_BOOT;
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
        if (*version >= 9000)
            *flags |= QEMUD_CMD_FLAG_VNC_COLON;
        ret = 0;

        qemudDebug("Version %d %d %d  Cooked version: %d, with flags ? %d",
                   major, minor, micro, *version, *flags);

    cleanup2:
        if (close(newstdout[0]) < 0)
            ret = -1;

    rewait:
        if (waitpid(child, &got, 0) != child) {
            if (errno == EINTR) {
                goto rewait;
            }
589 590 591
            qemudLog(QEMUD_ERR,
                     _("Unexpected exit status from qemu %d pid %lu"),
                     got, (unsigned long)child);
592 593 594 595 596
            ret = -1;
        }
        /* Check & log unexpected exit status, but don't fail,
         * as there's really no need to throw an error if we did
         * actually read a valid version number above */
597
        if (WEXITSTATUS(got) != 0) {
598 599 600
            qemudLog(QEMUD_WARN,
                     _("Unexpected exit status '%d', qemu probably failed"),
                     got);
601 602 603 604 605 606
        }

        return ret;
    }
}

607
int qemudExtractVersion(virConnectPtr conn,
608 609
                        struct qemud_driver *driver) {
    const char *binary;
610
    struct stat sb;
611
    int ignored;
612

613
    if (driver->qemuVersion > 0)
614 615
        return 0;

616 617 618 619
    if ((binary = virCapabilitiesDefaultGuestEmulator(driver->caps,
                                                      "hvm",
                                                      "i686",
                                                      "qemu")) == NULL)
620 621
        return -1;

622
    if (stat(binary, &sb) < 0) {
623
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
624
                         _("Cannot find QEMU binary %s: %s"), binary,
625 626 627 628
                         strerror(errno));
        return -1;
    }

629
    if (qemudExtractVersionInfo(binary, &driver->qemuVersion, &ignored) < 0) {
630 631 632 633 634 635
        return -1;
    }

    return 0;
}

636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
/* Converts def->virtType to applicable string type
 * @param type integer virt type
 * @return string type on success, NULL on fail
 */
const char * qemudVirtTypeToString(int type) {
    switch (type) {
        case QEMUD_VIRT_QEMU:
            return "qemu";
        case QEMUD_VIRT_KQEMU:
            return "kqemu";
        case QEMUD_VIRT_KVM:
            return "kvm";
    }
    return NULL;
}
651

D
Daniel P. Berrange 已提交
652 653 654 655 656 657 658 659
/* Parse the XML definition for a disk
 * @param disk pre-allocated & zero'd disk record
 * @param node XML nodeset to parse for disk definition
 * @return 0 on success, -1 on failure
 */
static int qemudParseDiskXML(virConnectPtr conn,
                             struct qemud_vm_disk_def *disk,
                             xmlNodePtr node) {
D
Daniel P. Berrange 已提交
660 661 662 663 664
    xmlNodePtr cur;
    xmlChar *device = NULL;
    xmlChar *source = NULL;
    xmlChar *target = NULL;
    xmlChar *type = NULL;
665
    xmlChar *bus = NULL;
D
Daniel P. Berrange 已提交
666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
    int typ = 0;

    type = xmlGetProp(node, BAD_CAST "type");
    if (type != NULL) {
        if (xmlStrEqual(type, BAD_CAST "file"))
            typ = QEMUD_DISK_FILE;
        else if (xmlStrEqual(type, BAD_CAST "block"))
            typ = QEMUD_DISK_BLOCK;
        else {
            typ = QEMUD_DISK_FILE;
        }
        xmlFree(type);
        type = NULL;
    }

    device = xmlGetProp(node, BAD_CAST "device");
682

D
Daniel P. Berrange 已提交
683 684 685 686 687
    cur = node->children;
    while (cur != NULL) {
        if (cur->type == XML_ELEMENT_NODE) {
            if ((source == NULL) &&
                (xmlStrEqual(cur->name, BAD_CAST "source"))) {
688

D
Daniel P. Berrange 已提交
689 690 691 692 693 694 695
                if (typ == QEMUD_DISK_FILE)
                    source = xmlGetProp(cur, BAD_CAST "file");
                else
                    source = xmlGetProp(cur, BAD_CAST "dev");
            } else if ((target == NULL) &&
                       (xmlStrEqual(cur->name, BAD_CAST "target"))) {
                target = xmlGetProp(cur, BAD_CAST "dev");
696
                bus = xmlGetProp(cur, BAD_CAST "bus");
D
Daniel P. Berrange 已提交
697 698 699 700 701 702 703 704
            } else if (xmlStrEqual(cur->name, BAD_CAST "readonly")) {
                disk->readonly = 1;
            }
        }
        cur = cur->next;
    }

    if (source == NULL) {
705 706 707 708 709 710 711 712
        /* There is a case without the source
         * to the CD-ROM device
         */
        if (!device || STRNEQ((const char *) device, "cdrom")) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_NO_SOURCE,
                             target ? "%s" : NULL, target);
            goto error;
        }
D
Daniel P. Berrange 已提交
713
    }
714

D
Daniel P. Berrange 已提交
715
    if (target == NULL) {
716
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_TARGET, source ? "%s" : NULL, source);
D
Daniel P. Berrange 已提交
717 718 719 720
        goto error;
    }

    if (device &&
721 722 723
        STREQ((const char *)device, "floppy") &&
        STRNEQ((const char *)target, "fda") &&
        STRNEQ((const char *)target, "fdb")) {
724 725
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("Invalid floppy device name: %s"), target);
D
Daniel P. Berrange 已提交
726 727
        goto error;
    }
728

D
Daniel P. Berrange 已提交
729
    if (device &&
730 731
        STREQ((const char *)device, "cdrom") &&
        STRNEQ((const char *)target, "hdc")) {
732 733
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("Invalid cdrom device name: %s"), target);
D
Daniel P. Berrange 已提交
734 735 736 737
        goto error;
    }

    if (device &&
738
        STREQ((const char *)device, "cdrom"))
D
Daniel P. Berrange 已提交
739 740
        disk->readonly = 1;

741 742 743
    if ((!device || STREQ((const char *)device, "disk")) &&
        !STRPREFIX((const char *)target, "hd") &&
        !STRPREFIX((const char *)target, "sd") &&
744 745
        !STRPREFIX((const char *)target, "vd") &&
        !STRPREFIX((const char *)target, "xvd")) {
746 747
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("Invalid harddisk device name: %s"), target);
D
Daniel P. Berrange 已提交
748 749 750
        goto error;
    }

751
    strncpy(disk->src, (source ? (const char *) source : "\0"), NAME_MAX-1);
D
Daniel P. Berrange 已提交
752 753 754 755 756 757 758 759
    disk->src[NAME_MAX-1] = '\0';

    strncpy(disk->dst, (const char *)target, NAME_MAX-1);
    disk->dst[NAME_MAX-1] = '\0';
    disk->type = typ;

    if (!device)
        disk->device = QEMUD_DISK_DISK;
760
    else if (STREQ((const char *)device, "disk"))
D
Daniel P. Berrange 已提交
761
        disk->device = QEMUD_DISK_DISK;
762
    else if (STREQ((const char *)device, "cdrom"))
D
Daniel P. Berrange 已提交
763
        disk->device = QEMUD_DISK_CDROM;
764
    else if (STREQ((const char *)device, "floppy"))
D
Daniel P. Berrange 已提交
765 766
        disk->device = QEMUD_DISK_FLOPPY;
    else {
767 768
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("Invalid device type: %s"), device);
D
Daniel P. Berrange 已提交
769 770 771
        goto error;
    }

772
    if (!bus) {
773
        if (disk->device == QEMUD_DISK_FLOPPY) {
774
            disk->bus = QEMUD_DISK_BUS_FDC;
775 776 777 778 779 780 781 782 783 784 785 786
        } else {
            if (STRPREFIX((const char *)target, "hd"))
                disk->bus = QEMUD_DISK_BUS_IDE;
            else if (STRPREFIX((const char *)target, "sd"))
                disk->bus = QEMUD_DISK_BUS_SCSI;
            else if (STRPREFIX((const char *)target, "vd"))
                disk->bus = QEMUD_DISK_BUS_VIRTIO;
            else if (STRPREFIX((const char *)target, "xvd"))
                disk->bus = QEMUD_DISK_BUS_XEN;
            else
                disk->bus = QEMUD_DISK_BUS_IDE;
        }
787 788 789 790 791 792 793 794
    } else if (STREQ((const char *)bus, "ide"))
        disk->bus = QEMUD_DISK_BUS_IDE;
    else if (STREQ((const char *)bus, "fdc"))
        disk->bus = QEMUD_DISK_BUS_FDC;
    else if (STREQ((const char *)bus, "scsi"))
        disk->bus = QEMUD_DISK_BUS_SCSI;
    else if (STREQ((const char *)bus, "virtio"))
        disk->bus = QEMUD_DISK_BUS_VIRTIO;
795 796
    else if (STREQ((const char *)bus, "xen"))
        disk->bus = QEMUD_DISK_BUS_XEN;
797 798 799 800 801 802 803 804 805 806 807 808 809
    else {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("Invalid bus type: %s"), bus);
        goto error;
    }

    if (disk->device == QEMUD_DISK_FLOPPY &&
        disk->bus != QEMUD_DISK_BUS_FDC) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("Invalid bus type '%s' for floppy disk"), bus);
        goto error;
    }

D
Daniel P. Berrange 已提交
810 811 812
    xmlFree(device);
    xmlFree(target);
    xmlFree(source);
813
    xmlFree(bus);
D
Daniel P. Berrange 已提交
814

D
Daniel P. Berrange 已提交
815
    return 0;
D
Daniel P. Berrange 已提交
816 817

 error:
818
    xmlFree(bus);
819 820 821 822
    xmlFree(type);
    xmlFree(target);
    xmlFree(source);
    xmlFree(device);
D
Daniel P. Berrange 已提交
823
    return -1;
D
Daniel P. Berrange 已提交
824 825
}

826 827 828 829 830 831 832 833 834
static void qemudRandomMAC(struct qemud_vm_net_def *net) {
    net->mac[0] = 0x52;
    net->mac[1] = 0x54;
    net->mac[2] = 0x00;
    net->mac[3] = 1 + (int)(256*(rand()/(RAND_MAX+1.0)));
    net->mac[4] = 1 + (int)(256*(rand()/(RAND_MAX+1.0)));
    net->mac[5] = 1 + (int)(256*(rand()/(RAND_MAX+1.0)));
}

D
Daniel P. Berrange 已提交
835

D
Daniel P. Berrange 已提交
836 837 838 839 840 841 842 843
/* Parse the XML definition for a network interface
 * @param net pre-allocated & zero'd net record
 * @param node XML nodeset to parse for net definition
 * @return 0 on success, -1 on failure
 */
static int qemudParseInterfaceXML(virConnectPtr conn,
                                  struct qemud_vm_net_def *net,
                                  xmlNodePtr node) {
D
Daniel P. Berrange 已提交
844 845 846
    xmlNodePtr cur;
    xmlChar *macaddr = NULL;
    xmlChar *type = NULL;
847
    xmlChar *network = NULL;
848 849 850 851 852
    xmlChar *bridge = NULL;
    xmlChar *ifname = NULL;
    xmlChar *script = NULL;
    xmlChar *address = NULL;
    xmlChar *port = NULL;
853
    xmlChar *model = NULL;
D
Daniel P. Berrange 已提交
854 855 856 857 858 859 860

    net->type = QEMUD_NET_USER;

    type = xmlGetProp(node, BAD_CAST "type");
    if (type != NULL) {
        if (xmlStrEqual(type, BAD_CAST "user"))
            net->type = QEMUD_NET_USER;
861 862
        else if (xmlStrEqual(type, BAD_CAST "ethernet"))
            net->type = QEMUD_NET_ETHERNET;
D
Daniel P. Berrange 已提交
863 864 865 866 867 868
        else if (xmlStrEqual(type, BAD_CAST "server"))
            net->type = QEMUD_NET_SERVER;
        else if (xmlStrEqual(type, BAD_CAST "client"))
            net->type = QEMUD_NET_CLIENT;
        else if (xmlStrEqual(type, BAD_CAST "mcast"))
            net->type = QEMUD_NET_MCAST;
869 870
        else if (xmlStrEqual(type, BAD_CAST "network"))
            net->type = QEMUD_NET_NETWORK;
871 872
        else if (xmlStrEqual(type, BAD_CAST "bridge"))
            net->type = QEMUD_NET_BRIDGE;
D
Daniel P. Berrange 已提交
873 874 875 876 877 878 879 880 881 882 883 884
        else
            net->type = QEMUD_NET_USER;
        xmlFree(type);
        type = NULL;
    }

    cur = node->children;
    while (cur != NULL) {
        if (cur->type == XML_ELEMENT_NODE) {
            if ((macaddr == NULL) &&
                (xmlStrEqual(cur->name, BAD_CAST "mac"))) {
                macaddr = xmlGetProp(cur, BAD_CAST "address");
885 886 887 888
            } else if ((network == NULL) &&
                       (net->type == QEMUD_NET_NETWORK) &&
                       (xmlStrEqual(cur->name, BAD_CAST "source"))) {
                network = xmlGetProp(cur, BAD_CAST "network");
889 890 891
            } else if ((network == NULL) &&
                       (net->type == QEMUD_NET_BRIDGE) &&
                       (xmlStrEqual(cur->name, BAD_CAST "source"))) {
892
                bridge = xmlGetProp(cur, BAD_CAST "bridge");
893 894 895 896 897 898 899 900 901 902 903 904 905
            } else if ((network == NULL) &&
                       ((net->type == QEMUD_NET_SERVER) ||
                        (net->type == QEMUD_NET_CLIENT) ||
                        (net->type == QEMUD_NET_MCAST)) &&
                       (xmlStrEqual(cur->name, BAD_CAST "source"))) {
                address = xmlGetProp(cur, BAD_CAST "address");
                port = xmlGetProp(cur, BAD_CAST "port");
            } else if ((ifname == NULL) &&
                       ((net->type == QEMUD_NET_NETWORK) ||
                        (net->type == QEMUD_NET_ETHERNET) ||
                        (net->type == QEMUD_NET_BRIDGE)) &&
                       xmlStrEqual(cur->name, BAD_CAST "target")) {
                ifname = xmlGetProp(cur, BAD_CAST "dev");
906
                if (STRPREFIX((const char*)ifname, "vnet")) {
907 908 909 910
                    /* An auto-generated target name, blank it out */
                    xmlFree(ifname);
                    ifname = NULL;
                }
911 912 913 914
            } else if ((script == NULL) &&
                       (net->type == QEMUD_NET_ETHERNET) &&
                       xmlStrEqual(cur->name, BAD_CAST "script")) {
                script = xmlGetProp(cur, BAD_CAST "path");
915 916
            } else if (xmlStrEqual (cur->name, BAD_CAST "model")) {
                model = xmlGetProp (cur, BAD_CAST "type");
D
Daniel P. Berrange 已提交
917 918 919 920 921 922
            }
        }
        cur = cur->next;
    }

    if (macaddr) {
923
        unsigned int mac[6];
D
Daniel P. Berrange 已提交
924
        sscanf((const char *)macaddr, "%02x:%02x:%02x:%02x:%02x:%02x",
925 926 927 928 929 930 931 932 933 934 935 936
               (unsigned int*)&mac[0],
               (unsigned int*)&mac[1],
               (unsigned int*)&mac[2],
               (unsigned int*)&mac[3],
               (unsigned int*)&mac[4],
               (unsigned int*)&mac[5]);
        net->mac[0] = mac[0];
        net->mac[1] = mac[1];
        net->mac[2] = mac[2];
        net->mac[3] = mac[3];
        net->mac[4] = mac[4];
        net->mac[5] = mac[5];
D
Daniel P. Berrange 已提交
937 938

        xmlFree(macaddr);
939 940 941
        macaddr = NULL;
    } else {
        qemudRandomMAC(net);
D
Daniel P. Berrange 已提交
942 943
    }

944 945 946 947
    if (net->type == QEMUD_NET_NETWORK) {
        int len;

        if (network == NULL) {
948
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
949
                             "%s", _("No <source> 'network' attribute specified with <interface type='network'/>"));
950
            goto error;
951
        } else if ((len = xmlStrlen(network)) >= (QEMUD_MAX_NAME_LEN-1)) {
952
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
953
                             _("Network name '%s' too long"), network);
954 955 956 957 958 959
            goto error;
        } else {
            strncpy(net->dst.network.name, (char *)network, len);
            net->dst.network.name[len] = '\0';
        }

960
        if (network) {
961
            xmlFree(network);
962 963 964 965 966
            network = NULL;
        }

        if (ifname != NULL) {
            if ((len = xmlStrlen(ifname)) >= (BR_IFNAME_MAXLEN-1)) {
967
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
968 969
                                 _("TAP interface name '%s' is too long"),
                                 ifname);
970 971 972 973 974 975 976 977 978 979
                goto error;
            } else {
                strncpy(net->dst.network.ifname, (char *)ifname, len);
                net->dst.network.ifname[len] = '\0';
            }
            xmlFree(ifname);
            ifname = NULL;
        }
    } else if (net->type == QEMUD_NET_ETHERNET) {
        int len;
980

981 982
        if (script != NULL) {
            if ((len = xmlStrlen(script)) >= (PATH_MAX-1)) {
983
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
984
                                 _("TAP script path '%s' is too long"), script);
985 986 987 988 989 990 991 992 993 994
                goto error;
            } else {
                strncpy(net->dst.ethernet.script, (char *)script, len);
                net->dst.ethernet.script[len] = '\0';
            }
            xmlFree(script);
            script = NULL;
        }
        if (ifname != NULL) {
            if ((len = xmlStrlen(ifname)) >= (BR_IFNAME_MAXLEN-1)) {
995
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
996 997
                                 _("TAP interface name '%s' is too long"),
                                 ifname);
998 999
                goto error;
            } else {
1000 1001
                strncpy(net->dst.ethernet.ifname, (char *)ifname, len);
                net->dst.ethernet.ifname[len] = '\0';
1002
            }
1003 1004 1005 1006 1007 1008
            xmlFree(ifname);
        }
    } else if (net->type == QEMUD_NET_BRIDGE) {
        int len;

        if (bridge == NULL) {
1009
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1010
                             "%s", _("No <source> 'dev' attribute specified with <interface type='bridge'/>"));
1011 1012
            goto error;
        } else if ((len = xmlStrlen(bridge)) >= (BR_IFNAME_MAXLEN-1)) {
1013
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1014
                             _("TAP bridge path '%s' is too long"), bridge);
1015 1016 1017 1018
            goto error;
        } else {
            strncpy(net->dst.bridge.brname, (char *)bridge, len);
            net->dst.bridge.brname[len] = '\0';
1019
        }
1020 1021 1022 1023 1024 1025

        xmlFree(bridge);
        bridge = NULL;

        if (ifname != NULL) {
            if ((len = xmlStrlen(ifname)) >= (BR_IFNAME_MAXLEN-1)) {
1026
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1027
                                 _("TAP interface name '%s' is too long"), ifname);
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
                goto error;
            } else {
                strncpy(net->dst.bridge.ifname, (char *)ifname, len);
                net->dst.bridge.ifname[len] = '\0';
            }
            xmlFree(ifname);
        }
    } else if (net->type == QEMUD_NET_CLIENT ||
               net->type == QEMUD_NET_SERVER ||
               net->type == QEMUD_NET_MCAST) {
1038
        int len = 0;
1039 1040 1041
        char *ret;

        if (port == NULL) {
1042
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1043
                             "%s", _("No <source> 'port' attribute specified with socket interface"));
1044 1045 1046 1047
            goto error;
        }
        if (!(net->dst.socket.port = strtol((char*)port, &ret, 10)) &&
            ret == (char*)port) {
1048
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1049
                             "%s", _("Cannot parse <source> 'port' attribute with socket interface"));
1050 1051 1052 1053 1054 1055 1056 1057
            goto error;
        }
        xmlFree(port);
        port = NULL;

        if (address == NULL) {
            if (net->type == QEMUD_NET_CLIENT ||
                net->type == QEMUD_NET_MCAST) {
1058
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1059
                                 "%s", _("No <source> 'address' attribute specified with socket interface"));
1060 1061 1062
                goto error;
            }
        } else if ((len = xmlStrlen(address)) >= (BR_INET_ADDR_MAXLEN)) {
1063
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1064
                             _("IP address '%s' is too long"), address);
1065 1066 1067 1068 1069 1070 1071 1072 1073
            goto error;
        }
        if (address == NULL) {
            net->dst.socket.address[0] = '\0';
        } else {
            strncpy(net->dst.socket.address, (char*)address,len);
            net->dst.socket.address[len] = '\0';
        }
        xmlFree(address);
1074 1075
    }

1076 1077 1078 1079 1080 1081
    /* NIC model (see -net nic,model=?).  We only check that it looks
     * reasonable, not that it is a supported NIC type.  FWIW kvm
     * supports these types as of April 2008:
     * i82551 i82557b i82559er ne2k_pci pcnet rtl8139 e1000 virtio
     */
    if (model != NULL) {
J
Jim Meyering 已提交
1082
        int i, len;
1083 1084 1085 1086 1087 1088 1089 1090

        len = xmlStrlen (model);
        if (len >= QEMUD_MODEL_MAX_LEN) {
            qemudReportError (conn, NULL, NULL, VIR_ERR_INVALID_ARG,
                              _("Model name '%s' is too long"), model);
            goto error;
        }
        for (i = 0; i < len; ++i) {
J
Jim Meyering 已提交
1091
            int char_ok = c_isalnum(model[i]) || model[i] == '_';
1092
            if (!char_ok) {
1093
                qemudReportError (conn, NULL, NULL, VIR_ERR_INVALID_ARG, "%s",
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
                                  _("Model name contains invalid characters"));
                goto error;
            }
        }
        strncpy (net->model, (const char*) model, len);
        net->model[len] = '\0';

        xmlFree (model);
        model = NULL;
    } else
        net->model[0] = '\0';

D
Daniel P. Berrange 已提交
1106
    return 0;
1107 1108

 error:
1109 1110 1111 1112 1113 1114
    xmlFree(network);
    xmlFree(address);
    xmlFree(port);
    xmlFree(ifname);
    xmlFree(script);
    xmlFree(bridge);
1115
    xmlFree(model);
D
Daniel P. Berrange 已提交
1116
    return -1;
D
Daniel P. Berrange 已提交
1117 1118 1119
}


1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
/* Parse the XML definition for a character device
 * @param net pre-allocated & zero'd net record
 * @param node XML nodeset to parse for net definition
 * @return 0 on success, -1 on failure
 *
 * The XML we're dealing with looks like
 *
 * <serial type="pty">
 *   <source path="/dev/pts/3"/>
 *   <target port="1"/>
 * </serial>
 *
 * <serial type="dev">
 *   <source path="/dev/ttyS0"/>
 *   <target port="1"/>
 * </serial>
 *
 * <serial type="tcp">
 *   <source mode="connect" host="0.0.0.0" service="2445"/>
 *   <target port="1"/>
 * </serial>
 *
 * <serial type="tcp">
 *   <source mode="bind" host="0.0.0.0" service="2445"/>
 *   <target port="1"/>
 * </serial>
 *
 * <serial type="udp">
 *   <source mode="bind" host="0.0.0.0" service="2445"/>
 *   <source mode="connect" host="0.0.0.0" service="2445"/>
 *   <target port="1"/>
 * </serial>
 *
 * <serial type="unix">
 *   <source mode="bind" path="/tmp/foo"/>
 *   <target port="1"/>
 * </serial>
 *
 */
static int qemudParseCharXML(virConnectPtr conn,
                             struct qemud_vm_chr_def *chr,
                             int portNum,
                             xmlNodePtr node) {
    xmlNodePtr cur;
    xmlChar *type = NULL;
    xmlChar *bindHost = NULL;
    xmlChar *bindService = NULL;
    xmlChar *connectHost = NULL;
    xmlChar *connectService = NULL;
    xmlChar *path = NULL;
    xmlChar *mode = NULL;
    xmlChar *protocol = NULL;
    int ret = -1;

    chr->srcType = QEMUD_CHR_SRC_TYPE_PTY;
    type = xmlGetProp(node, BAD_CAST "type");
    if (type != NULL) {
        if (xmlStrEqual(type, BAD_CAST "null"))
            chr->srcType = QEMUD_CHR_SRC_TYPE_NULL;
        else if (xmlStrEqual(type, BAD_CAST "vc"))
            chr->srcType = QEMUD_CHR_SRC_TYPE_VC;
        else if (xmlStrEqual(type, BAD_CAST "pty"))
            chr->srcType = QEMUD_CHR_SRC_TYPE_PTY;
        else if (xmlStrEqual(type, BAD_CAST "dev"))
            chr->srcType = QEMUD_CHR_SRC_TYPE_DEV;
        else if (xmlStrEqual(type, BAD_CAST "file"))
            chr->srcType = QEMUD_CHR_SRC_TYPE_FILE;
        else if (xmlStrEqual(type, BAD_CAST "pipe"))
            chr->srcType = QEMUD_CHR_SRC_TYPE_PIPE;
        else if (xmlStrEqual(type, BAD_CAST "stdio"))
            chr->srcType = QEMUD_CHR_SRC_TYPE_STDIO;
        else if (xmlStrEqual(type, BAD_CAST "udp"))
            chr->srcType = QEMUD_CHR_SRC_TYPE_UDP;
        else if (xmlStrEqual(type, BAD_CAST "tcp"))
            chr->srcType = QEMUD_CHR_SRC_TYPE_TCP;
        else if (xmlStrEqual(type, BAD_CAST "unix"))
            chr->srcType = QEMUD_CHR_SRC_TYPE_UNIX;
        else
            chr->srcType = QEMUD_CHR_SRC_TYPE_NULL;
    }

    cur = node->children;
    while (cur != NULL) {
        if (cur->type == XML_ELEMENT_NODE) {
            if (xmlStrEqual(cur->name, BAD_CAST "source")) {
                if (mode == NULL)
                    mode = xmlGetProp(cur, BAD_CAST "mode");

                switch (chr->srcType) {
                case QEMUD_CHR_SRC_TYPE_PTY:
                case QEMUD_CHR_SRC_TYPE_DEV:
                case QEMUD_CHR_SRC_TYPE_FILE:
                case QEMUD_CHR_SRC_TYPE_PIPE:
                case QEMUD_CHR_SRC_TYPE_UNIX:
                    if (path == NULL)
                        path = xmlGetProp(cur, BAD_CAST "path");

                    break;

                case QEMUD_CHR_SRC_TYPE_UDP:
                case QEMUD_CHR_SRC_TYPE_TCP:
                    if (mode == NULL ||
                        STREQ((const char *)mode, "connect")) {

                        if (connectHost == NULL)
                            connectHost = xmlGetProp(cur, BAD_CAST "host");
                        if (connectService == NULL)
                            connectService = xmlGetProp(cur, BAD_CAST "service");
                    } else {
                        if (bindHost == NULL)
                            bindHost = xmlGetProp(cur, BAD_CAST "host");
                        if (bindService == NULL)
                            bindService = xmlGetProp(cur, BAD_CAST "service");
                    }

                    if (chr->srcType == QEMUD_CHR_SRC_TYPE_UDP) {
                        xmlFree(mode);
                        mode = NULL;
                    }
                }
            } else if (xmlStrEqual(cur->name, BAD_CAST "protocol")) {
                if (protocol == NULL)
                    protocol = xmlGetProp(cur, BAD_CAST "type");
            }
        }
        cur = cur->next;
    }


    chr->dstPort = portNum;

    switch (chr->srcType) {
    case QEMUD_CHR_SRC_TYPE_NULL:
        /* Nada */
        break;

    case QEMUD_CHR_SRC_TYPE_VC:
        break;

    case QEMUD_CHR_SRC_TYPE_PTY:
        /* @path attribute is an output only property - pty is auto-allocted */
        break;

    case QEMUD_CHR_SRC_TYPE_DEV:
    case QEMUD_CHR_SRC_TYPE_FILE:
    case QEMUD_CHR_SRC_TYPE_PIPE:
        if (path == NULL) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("Missing source path attribute for char device"));
            goto cleanup;
        }

        strncpy(chr->srcData.file.path, (const char *)path,
                sizeof(chr->srcData.file.path));
        NUL_TERMINATE(chr->srcData.file.path);
        break;

    case QEMUD_CHR_SRC_TYPE_STDIO:
        /* Nada */
        break;

    case QEMUD_CHR_SRC_TYPE_TCP:
        if (mode == NULL ||
            STREQ((const char *)mode, "connect")) {
            if (connectHost == NULL) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("Missing source host attribute for char device"));
                goto cleanup;
            }
            if (connectService == NULL) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("Missing source service attribute for char device"));
                goto cleanup;
            }

            strncpy(chr->srcData.tcp.host, (const char *)connectHost,
                    sizeof(chr->srcData.tcp.host));
            NUL_TERMINATE(chr->srcData.tcp.host);
            strncpy(chr->srcData.tcp.service, (const char *)connectService,
                    sizeof(chr->srcData.tcp.service));
            NUL_TERMINATE(chr->srcData.tcp.service);

            chr->srcData.tcp.listen = 0;
        } else {
            if (bindHost == NULL) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("Missing source host attribute for char device"));
                goto cleanup;
            }
            if (bindService == NULL) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("Missing source service attribute for char device"));
                goto cleanup;
            }

            strncpy(chr->srcData.tcp.host, (const char *)bindHost,
                    sizeof(chr->srcData.tcp.host));
            NUL_TERMINATE(chr->srcData.tcp.host);
            strncpy(chr->srcData.tcp.service, (const char *)bindService,
                    sizeof(chr->srcData.tcp.service));
            NUL_TERMINATE(chr->srcData.tcp.service);

            chr->srcData.tcp.listen = 1;
        }
        if (protocol != NULL &&
            STREQ((const char *)protocol, "telnet"))
            chr->srcData.tcp.protocol = QEMUD_CHR_SRC_TCP_PROTOCOL_TELNET;
        else
            chr->srcData.tcp.protocol = QEMUD_CHR_SRC_TCP_PROTOCOL_RAW;
        break;

    case QEMUD_CHR_SRC_TYPE_UDP:
        if (connectService == NULL) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("Missing source service attribute for char device"));
            goto cleanup;
        }

        if (connectHost != NULL) {
            strncpy(chr->srcData.udp.connectHost, (const char *)connectHost,
                    sizeof(chr->srcData.udp.connectHost));
            NUL_TERMINATE(chr->srcData.udp.connectHost);
        }
        strncpy(chr->srcData.udp.connectService, (const char *)connectService,
                sizeof(chr->srcData.udp.connectService));
        NUL_TERMINATE(chr->srcData.udp.connectService);

        if (bindHost != NULL) {
            strncpy(chr->srcData.udp.bindHost, (const char *)bindHost,
                    sizeof(chr->srcData.udp.bindHost));
            NUL_TERMINATE(chr->srcData.udp.bindHost);
        }
        if (bindService != NULL) {
            strncpy(chr->srcData.udp.bindService, (const char *)bindService,
                    sizeof(chr->srcData.udp.bindService));
            NUL_TERMINATE(chr->srcData.udp.bindService);
        }
        break;

    case QEMUD_CHR_SRC_TYPE_UNIX:
        if (path == NULL) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("Missing source path attribute for char device"));
            goto cleanup;
        }

        if (mode != NULL &&
            STRNEQ((const char *)mode, "connect"))
            chr->srcData.nix.listen = 1;
        else
            chr->srcData.nix.listen = 0;

        strncpy(chr->srcData.nix.path, (const char *)path,
                sizeof(chr->srcData.nix.path));
        NUL_TERMINATE(chr->srcData.nix.path);
        break;
    }

    ret = 0;

cleanup:
    xmlFree(mode);
    xmlFree(protocol);
    xmlFree(type);
    xmlFree(bindHost);
    xmlFree(bindService);
    xmlFree(connectHost);
    xmlFree(connectService);
    xmlFree(path);

    return ret;
}


static int qemudParseCharXMLDevices(virConnectPtr conn,
                                    xmlXPathContextPtr ctxt,
                                    const char *xpath,
                                    unsigned int *ndevs,
                                    struct qemud_vm_chr_def **devs)
{
    xmlXPathObjectPtr obj;
    int i, ret = -1;

    obj = xmlXPathEval(BAD_CAST xpath, ctxt);
    if ((obj != NULL) && (obj->type == XPATH_NODESET) &&
        (obj->nodesetval != NULL) && (obj->nodesetval->nodeNr >= 0)) {
        struct qemud_vm_chr_def *prev = *devs;
        if (ndevs == NULL &&
            obj->nodesetval->nodeNr > 1) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("too many character devices"));
            goto cleanup;
        }

        for (i = 0; i < obj->nodesetval->nodeNr; i++) {
            struct qemud_vm_chr_def *chr = calloc(1, sizeof(*chr));
            if (!chr) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                                 "%s",
                                 _("failed to allocate space for char device"));
                goto cleanup;
            }

            if (qemudParseCharXML(conn, chr, i, obj->nodesetval->nodeTab[i]) < 0) {
                free(chr);
                goto cleanup;
            }
            if (ndevs)
                (*ndevs)++;
            chr->next = NULL;
            if (i == 0) {
                *devs = chr;
            } else {
                prev->next = chr;
            }
            prev = chr;
        }
    }

    ret = 0;

cleanup:
    xmlXPathFreeObject(obj);
    return ret;
}


1447
/* Parse the XML definition for a network interface */
D
Daniel P. Berrange 已提交
1448
static int qemudParseInputXML(virConnectPtr conn,
1449
                              const struct qemud_vm_def *vm,
D
Daniel P. Berrange 已提交
1450 1451
                              struct qemud_vm_input_def *input,
                              xmlNodePtr node) {
1452 1453 1454 1455 1456 1457 1458
    xmlChar *type = NULL;
    xmlChar *bus = NULL;

    type = xmlGetProp(node, BAD_CAST "type");
    bus = xmlGetProp(node, BAD_CAST "bus");

    if (!type) {
1459 1460
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("missing input device type"));
1461 1462 1463
        goto error;
    }

1464
    if (STREQ((const char *)type, "mouse")) {
1465
        input->type = QEMU_INPUT_TYPE_MOUSE;
1466
    } else if (STREQ((const char *)type, "tablet")) {
1467 1468
        input->type = QEMU_INPUT_TYPE_TABLET;
    } else {
1469 1470 1471
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("unsupported input device type %s"),
                         (const char*)type);
1472 1473 1474 1475
        goto error;
    }

    if (bus) {
1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
        if (STREQ(vm->os.type, "hvm")) {
            if (STREQ((const char*)bus, "ps2")) { /* Only allow mouse */
                if (input->type != QEMU_INPUT_TYPE_MOUSE) {
                    qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                     _("ps2 bus does not support %s input device"),
                                     (const char*)type);
                    goto error;
                }
                input->bus = QEMU_INPUT_BUS_PS2;
            } else if (STREQ((const char *)bus, "usb")) { /* Allow mouse & tablet */
                input->bus = QEMU_INPUT_BUS_USB;
            } else {
1488
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1489
                                 _("unsupported input bus %s"), (const char*)bus);
1490 1491 1492
                goto error;
            }
        } else {
1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505
            if (STREQ((const char *)bus, "xen")) { /* Allow mouse only */
                input->bus = QEMU_INPUT_BUS_XEN;
                if (input->type != QEMU_INPUT_TYPE_MOUSE) {
                    qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                     _("xen bus does not support %s input device"),
                                     (const char*)type);
                    goto error;
                }
            } else {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 _("unsupported input bus %s"), (const char*)bus);
                goto error;
            }
1506 1507
        }
    } else {
D
Daniel P. Berrange 已提交
1508
        if (STREQ(vm->os.type, "hvm")) {
1509 1510 1511 1512 1513 1514 1515
            if (input->type == QEMU_INPUT_TYPE_MOUSE)
                input->bus = QEMU_INPUT_BUS_PS2;
            else
                input->bus = QEMU_INPUT_BUS_USB;
        } else {
            input->bus = QEMU_INPUT_BUS_XEN;
        }
1516 1517
    }

1518 1519
    xmlFree(type);
    xmlFree(bus);
1520

D
Daniel P. Berrange 已提交
1521
    return 0;
1522 1523

 error:
1524 1525
    xmlFree(type);
    xmlFree(bus);
1526

D
Daniel P. Berrange 已提交
1527
    return -1;
1528 1529
}

1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542
static int qemudDiskCompare(const void *aptr, const void *bptr) {
    struct qemud_vm_disk_def *a = (struct qemud_vm_disk_def *) aptr;
    struct qemud_vm_disk_def *b = (struct qemud_vm_disk_def *) bptr;
    if (a->bus == b->bus)
        return virDiskNameToIndex(a->dst) - virDiskNameToIndex(b->dst);
    else
        return a->bus - b->bus;
}

static const char *qemudBusIdToName(int busId, int qemuIF) {
    const char *busnames[] = { "ide",
                               (qemuIF ? "floppy" : "fdc"),
                               "scsi",
1543 1544
                               "virtio",
                               "xen"};
1545 1546 1547 1548 1549
    verify_true(ARRAY_CARDINALITY(busnames) == QEMUD_DISK_BUS_LAST);

    return busnames[busId];
}

D
Daniel Veillard 已提交
1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601
/* Sound device helper functions */
static int qemudSoundModelFromString(const char *model) {
    if (STREQ(model, "sb16")) {
        return QEMU_SOUND_SB16;
    } else if (STREQ(model, "es1370")) {
        return QEMU_SOUND_ES1370;
    } else if (STREQ(model, "pcspk")) {
        return QEMU_SOUND_PCSPK;
    }

    return -1;
}

static const char *qemudSoundModelToString(const int model) {

    if (model == QEMU_SOUND_SB16) {
        return "sb16";
    } else if (model == QEMU_SOUND_ES1370) {
        return "es1370";
    } else if (model == QEMU_SOUND_PCSPK) {
        return "pcspk";
    }

    return NULL;
}


static int qemudParseSoundXML(virConnectPtr conn,
                              struct qemud_vm_sound_def *sound,
                              const xmlNodePtr node) {

    int err = -1;
    xmlChar *model = NULL;
    model = xmlGetProp(node, BAD_CAST "model");

    if (!model) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("missing sound model"));
        goto error;
    }
    if ((sound->model = qemudSoundModelFromString((char *) model)) < 0) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("invalid sound model '%s'"), (char *) model);
        goto error;
    }

    err = 0;
 error:
    xmlFree(model);
    return err;
}

D
Daniel P. Berrange 已提交
1602 1603 1604 1605
/*
 * Parses a libvirt XML definition of a guest, and populates the
 * the qemud_vm struct with matching data about the guests config
 */
1606 1607
static struct qemud_vm_def *qemudParseXML(virConnectPtr conn,
                                          struct qemud_driver *driver,
1608
                                          xmlDocPtr xml) {
D
Daniel P. Berrange 已提交
1609 1610 1611 1612 1613 1614
    xmlNodePtr root = NULL;
    xmlChar *prop = NULL;
    xmlXPathContextPtr ctxt = NULL;
    xmlXPathObjectPtr obj = NULL;
    char *conv = NULL;
    int i;
1615 1616
    struct qemud_vm_def *def;

1617
    if (!(def = calloc(1, sizeof(*def)))) {
1618 1619
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for xmlXPathContext"));
1620 1621
        return NULL;
    }
D
Daniel P. Berrange 已提交
1622 1623 1624 1625

    /* Prepare parser / xpath context */
    root = xmlDocGetRootElement(xml);
    if ((root == NULL) || (!xmlStrEqual(root->name, BAD_CAST "domain"))) {
1626 1627
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("incorrect root element"));
D
Daniel P. Berrange 已提交
1628 1629 1630 1631 1632
        goto error;
    }

    ctxt = xmlXPathNewContext(xml);
    if (ctxt == NULL) {
1633 1634
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for xmlXPathContext"));
D
Daniel P. Berrange 已提交
1635 1636 1637 1638 1639 1640
        goto error;
    }


    /* Find out what type of QEMU virtualization to use */
    if (!(prop = xmlGetProp(root, BAD_CAST "type"))) {
1641 1642
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("missing domain type attribute"));
D
Daniel P. Berrange 已提交
1643 1644 1645
        goto error;
    }

1646
    if (STREQ((char *)prop, "qemu"))
1647
        def->virtType = QEMUD_VIRT_QEMU;
1648
    else if (STREQ((char *)prop, "kqemu"))
1649
        def->virtType = QEMUD_VIRT_KQEMU;
1650
    else if (STREQ((char *)prop, "kvm"))
1651
        def->virtType = QEMUD_VIRT_KVM;
D
Daniel P. Berrange 已提交
1652
    else {
1653 1654
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("invalid domain type attribute"));
D
Daniel P. Berrange 已提交
1655 1656 1657 1658 1659 1660 1661 1662 1663 1664
        goto error;
    }
    free(prop);
    prop = NULL;


    /* Extract domain name */
    obj = xmlXPathEval(BAD_CAST "string(/domain/name[1])", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
1665
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_NAME, NULL);
D
Daniel P. Berrange 已提交
1666 1667 1668
        goto error;
    }
    if (strlen((const char *)obj->stringval) >= (QEMUD_MAX_NAME_LEN-1)) {
1669 1670
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("domain name length too long"));
D
Daniel P. Berrange 已提交
1671 1672
        goto error;
    }
1673
    strcpy(def->name, (const char *)obj->stringval);
D
Daniel P. Berrange 已提交
1674 1675 1676 1677 1678 1679 1680
    xmlXPathFreeObject(obj);


    /* Extract domain uuid */
    obj = xmlXPathEval(BAD_CAST "string(/domain/uuid[1])", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
1681
        int err;
D
Daniel P. Berrange 已提交
1682
        if ((err = virUUIDGenerate(def->uuid))) {
1683
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1684
                             _("Failed to generate UUID: %s"), strerror(err));
1685 1686
            goto error;
        }
D
Daniel P. Berrange 已提交
1687
    } else if (virUUIDParse((const char *)obj->stringval, def->uuid) < 0) {
1688 1689
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("malformed uuid element"));
D
Daniel P. Berrange 已提交
1690 1691 1692 1693 1694 1695 1696 1697 1698
        goto error;
    }
    xmlXPathFreeObject(obj);


    /* Extract domain memory */
    obj = xmlXPathEval(BAD_CAST "string(/domain/memory[1])", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
1699 1700
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("missing memory element"));
D
Daniel P. Berrange 已提交
1701 1702 1703
        goto error;
    } else {
        conv = NULL;
1704
        def->maxmem = strtoll((const char*)obj->stringval, &conv, 10);
D
Daniel P. Berrange 已提交
1705
        if (conv == (const char*)obj->stringval) {
1706 1707
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("malformed memory information"));
D
Daniel P. Berrange 已提交
1708 1709 1710
            goto error;
        }
    }
1711
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1712 1713 1714 1715 1716 1717


    /* Extract domain memory */
    obj = xmlXPathEval(BAD_CAST "string(/domain/currentMemory[1])", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
1718
        def->memory = def->maxmem;
D
Daniel P. Berrange 已提交
1719 1720
    } else {
        conv = NULL;
1721 1722 1723
        def->memory = strtoll((const char*)obj->stringval, &conv, 10);
        if (def->memory > def->maxmem)
            def->memory = def->maxmem;
D
Daniel P. Berrange 已提交
1724
        if (conv == (const char*)obj->stringval) {
1725 1726
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("malformed memory information"));
D
Daniel P. Berrange 已提交
1727 1728 1729
            goto error;
        }
    }
1730
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1731 1732 1733 1734 1735

    /* Extract domain vcpu info */
    obj = xmlXPathEval(BAD_CAST "string(/domain/vcpu[1])", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
1736
        def->vcpus = 1;
D
Daniel P. Berrange 已提交
1737 1738
    } else {
        conv = NULL;
1739
        def->vcpus = strtoll((const char*)obj->stringval, &conv, 10);
D
Daniel P. Berrange 已提交
1740
        if (conv == (const char*)obj->stringval) {
1741 1742
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("malformed vcpu information"));
D
Daniel P. Berrange 已提交
1743 1744 1745
            goto error;
        }
    }
1746
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1747

1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
    /* Extract domain vcpu info */
    obj = xmlXPathEval(BAD_CAST "string(/domain/vcpu[1]/@cpuset)", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
        /* Allow use on all CPUS */
        memset(def->cpumask, 1, QEMUD_CPUMASK_LEN);
    } else {
        char *set = (char *)obj->stringval;
        memset(def->cpumask, 0, QEMUD_CPUMASK_LEN);
        if (virParseCpuSet(conn, (const char **)&set,
                           0, def->cpumask,
                           QEMUD_CPUMASK_LEN) < 0) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("malformed vcpu mask information"));
            goto error;
        }
    }
    xmlXPathFreeObject(obj);

D
Daniel P. Berrange 已提交
1767 1768 1769 1770
    /* See if ACPI feature is requested */
    obj = xmlXPathEval(BAD_CAST "/domain/features/acpi", ctxt);
    if ((obj != NULL) && (obj->type == XPATH_NODESET) &&
        (obj->nodesetval != NULL) && (obj->nodesetval->nodeNr == 1)) {
1771
        def->features |= QEMUD_FEATURE_ACPI;
D
Daniel P. Berrange 已提交
1772
    }
1773
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1774

D
Daniel P. Berrange 已提交
1775 1776 1777 1778 1779 1780 1781

    /* See if we disable reboots */
    obj = xmlXPathEval(BAD_CAST "string(/domain/on_reboot)", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
        def->noReboot = 0;
    } else {
1782
        if (STREQ((char*)obj->stringval, "destroy"))
D
Daniel P. Berrange 已提交
1783 1784 1785 1786
            def->noReboot = 1;
        else
            def->noReboot = 0;
    }
1787
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1788

1789 1790 1791 1792 1793 1794
    /* See if we set clock to localtime */
    obj = xmlXPathEval(BAD_CAST "string(/domain/clock/@offset)", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
        def->localtime = 0;
    } else {
1795
        if (STREQ((char*)obj->stringval, "localtime"))
1796 1797 1798 1799
            def->localtime = 1;
        else
            def->localtime = 0;
    }
1800
    xmlXPathFreeObject(obj);
1801

D
Daniel P. Berrange 已提交
1802

D
Daniel P. Berrange 已提交
1803 1804 1805 1806 1807 1808 1809 1810 1811 1812
    /* Extract bootloader */
    obj = xmlXPathEval(BAD_CAST "string(/domain/bootloader)", ctxt);
    if ((obj != NULL) && (obj->type == XPATH_STRING) &&
        (obj->stringval != NULL) && (obj->stringval[0] != 0)) {
        strncpy(def->os.bootloader, (const char*)obj->stringval, sizeof(def->os.bootloader));
        NUL_TERMINATE(def->os.bootloader);

        /* Set a default OS type, since <type> is optional with bootloader */
        strcpy(def->os.type, "xen");
    }
J
Jim Meyering 已提交
1813
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1814

D
Daniel P. Berrange 已提交
1815 1816 1817 1818
    /* Extract OS type info */
    obj = xmlXPathEval(BAD_CAST "string(/domain/os/type[1])", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
D
Daniel P. Berrange 已提交
1819 1820 1821 1822 1823 1824 1825
        if (!def->os.type[0]) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_OS_TYPE,
                             "%s", _("no OS type"));
            goto error;
        }
    } else {
        strcpy(def->os.type, (const char *)obj->stringval);
D
Daniel P. Berrange 已提交
1826
    }
J
Jim Meyering 已提交
1827 1828
    xmlXPathFreeObject(obj);
    obj = NULL;
D
Daniel P. Berrange 已提交
1829 1830

    if (!virCapabilitiesSupportsGuestOSType(driver->caps, def->os.type)) {
1831
        qemudReportError(conn, NULL, NULL, VIR_ERR_OS_TYPE,
D
Daniel P. Berrange 已提交
1832
                         "%s", def->os.type);
D
Daniel P. Berrange 已提交
1833 1834 1835 1836 1837 1838
        goto error;
    }

    obj = xmlXPathEval(BAD_CAST "string(/domain/os/type[1]/@arch)", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
1839 1840
        const char *defaultArch = virCapabilitiesDefaultGuestArch(driver->caps, def->os.type);
        if (defaultArch == NULL) {
1841 1842
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("unsupported architecture"));
1843 1844
            goto error;
        }
D
Daniel P. Berrange 已提交
1845
        if (strlen(defaultArch) >= (QEMUD_OS_TYPE_MAX_LEN-1)) {
1846 1847
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("architecture type too long"));
D
Daniel P. Berrange 已提交
1848 1849
            goto error;
        }
1850
        strcpy(def->os.arch, defaultArch);
D
Daniel P. Berrange 已提交
1851 1852
    } else {
        if (strlen((const char *)obj->stringval) >= (QEMUD_OS_TYPE_MAX_LEN-1)) {
1853 1854
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("architecture type too long"));
D
Daniel P. Berrange 已提交
1855 1856
            goto error;
        }
1857
        strcpy(def->os.arch, (const char *)obj->stringval);
D
Daniel P. Berrange 已提交
1858
    }
1859
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1860 1861 1862 1863

    obj = xmlXPathEval(BAD_CAST "string(/domain/os/type[1]/@machine)", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
1864 1865 1866 1867
        const char *defaultMachine = virCapabilitiesDefaultGuestMachine(driver->caps,
                                                                        def->os.type,
                                                                        def->os.arch);
        if (defaultMachine == NULL) {
1868 1869
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("unsupported architecture"));
1870 1871
            goto error;
        }
D
Daniel P. Berrange 已提交
1872
        if (strlen(defaultMachine) >= (QEMUD_OS_MACHINE_MAX_LEN-1)) {
1873 1874
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("machine type too long"));
D
Daniel P. Berrange 已提交
1875 1876
            goto error;
        }
1877
        strcpy(def->os.machine, defaultMachine);
D
Daniel P. Berrange 已提交
1878 1879
    } else {
        if (strlen((const char *)obj->stringval) >= (QEMUD_OS_MACHINE_MAX_LEN-1)) {
1880 1881
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("architecture type too long"));
D
Daniel P. Berrange 已提交
1882 1883
            goto error;
        }
1884
        strcpy(def->os.machine, (const char *)obj->stringval);
D
Daniel P. Berrange 已提交
1885
    }
1886
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1887 1888


D
Daniel P. Berrange 已提交
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898
    if (!def->os.bootloader[0]) {
        obj = xmlXPathEval(BAD_CAST "string(/domain/os/kernel[1])", ctxt);
        if ((obj != NULL) && (obj->type == XPATH_STRING) &&
            (obj->stringval != NULL) && (obj->stringval[0] != 0)) {
            if (strlen((const char *)obj->stringval) >= (PATH_MAX-1)) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("kernel path too long"));
                goto error;
            }
            strcpy(def->os.kernel, (const char *)obj->stringval);
D
Daniel P. Berrange 已提交
1899
        }
D
Daniel P. Berrange 已提交
1900
        xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1901 1902


D
Daniel P. Berrange 已提交
1903 1904 1905 1906 1907 1908 1909 1910 1911
        obj = xmlXPathEval(BAD_CAST "string(/domain/os/initrd[1])", ctxt);
        if ((obj != NULL) && (obj->type == XPATH_STRING) &&
            (obj->stringval != NULL) && (obj->stringval[0] != 0)) {
            if (strlen((const char *)obj->stringval) >= (PATH_MAX-1)) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("initrd path too long"));
                goto error;
            }
            strcpy(def->os.initrd, (const char *)obj->stringval);
D
Daniel P. Berrange 已提交
1912
        }
D
Daniel P. Berrange 已提交
1913
        xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1914 1915


D
Daniel P. Berrange 已提交
1916 1917 1918 1919 1920 1921 1922 1923 1924
        obj = xmlXPathEval(BAD_CAST "string(/domain/os/cmdline[1])", ctxt);
        if ((obj != NULL) && (obj->type == XPATH_STRING) &&
            (obj->stringval != NULL) && (obj->stringval[0] != 0)) {
            if (strlen((const char *)obj->stringval) >= (PATH_MAX-1)) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("cmdline arguments too long"));
                goto error;
            }
            strcpy(def->os.cmdline, (const char *)obj->stringval);
D
Daniel P. Berrange 已提交
1925
        }
D
Daniel P. Berrange 已提交
1926
        xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1927 1928


D
Daniel P. Berrange 已提交
1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950
        /* analysis of the disk devices */
        obj = xmlXPathEval(BAD_CAST "/domain/os/boot", ctxt);
        if ((obj != NULL) && (obj->type == XPATH_NODESET) &&
            (obj->nodesetval != NULL) && (obj->nodesetval->nodeNr >= 0)) {
            for (i = 0; i < obj->nodesetval->nodeNr && i < QEMUD_MAX_BOOT_DEVS ; i++) {
                if (!(prop = xmlGetProp(obj->nodesetval->nodeTab[i], BAD_CAST "dev")))
                    continue;
                if (STREQ((char *)prop, "hd")) {
                    def->os.bootDevs[def->os.nBootDevs++] = QEMUD_BOOT_DISK;
                } else if (STREQ((char *)prop, "fd")) {
                    def->os.bootDevs[def->os.nBootDevs++] = QEMUD_BOOT_FLOPPY;
                } else if (STREQ((char *)prop, "cdrom")) {
                    def->os.bootDevs[def->os.nBootDevs++] = QEMUD_BOOT_CDROM;
                } else if (STREQ((char *)prop, "network")) {
                    def->os.bootDevs[def->os.nBootDevs++] = QEMUD_BOOT_NET;
                } else {
                    qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                     _("unknown boot device \'%s\'"), (char*)prop);
                    goto error;
                }
                xmlFree(prop);
                prop = NULL;
D
Daniel P. Berrange 已提交
1951 1952
            }
        }
D
Daniel P. Berrange 已提交
1953 1954 1955 1956 1957
        xmlXPathFreeObject(obj);
        if (def->os.nBootDevs == 0) {
            def->os.nBootDevs = 1;
            def->os.bootDevs[0] = QEMUD_BOOT_DISK;
        }
D
Daniel P. Berrange 已提交
1958 1959 1960 1961 1962
    }

    obj = xmlXPathEval(BAD_CAST "string(/domain/devices/emulator[1])", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
1963 1964 1965 1966 1967 1968
        const char *type = qemudVirtTypeToString(def->virtType);
        if (!type) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("unknown virt type"));
            goto error;
        }
1969 1970 1971 1972 1973
        const char *emulator = virCapabilitiesDefaultGuestEmulator(driver->caps,
                                                                   def->os.type,
                                                                   def->os.arch,
                                                                   type);
        if (!emulator) {
1974 1975
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("unsupported guest type"));
D
Daniel P. Berrange 已提交
1976 1977
            goto error;
        }
1978
        strcpy(def->os.binary, emulator);
D
Daniel P. Berrange 已提交
1979 1980
    } else {
        if (strlen((const char *)obj->stringval) >= (PATH_MAX-1)) {
1981 1982
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("emulator path too long"));
D
Daniel P. Berrange 已提交
1983 1984
            goto error;
        }
1985
        strcpy(def->os.binary, (const char *)obj->stringval);
D
Daniel P. Berrange 已提交
1986
    }
1987
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1988 1989 1990 1991

    obj = xmlXPathEval(BAD_CAST "/domain/devices/graphics", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_NODESET) ||
        (obj->nodesetval == NULL) || (obj->nodesetval->nodeNr == 0)) {
1992
        def->graphicsType = QEMUD_GRAPHICS_NONE;
1993
    } else if ((prop = xmlGetProp(obj->nodesetval->nodeTab[0], BAD_CAST "type"))) {
1994
        if (STREQ((char *)prop, "vnc")) {
1995
            xmlChar *vncport, *vnclisten;
1996
            def->graphicsType = QEMUD_GRAPHICS_VNC;
1997 1998
            vncport = xmlGetProp(obj->nodesetval->nodeTab[0], BAD_CAST "port");
            if (vncport) {
D
Daniel P. Berrange 已提交
1999
                conv = NULL;
2000
                def->vncPort = strtoll((const char*)vncport, &conv, 10);
D
Daniel P. Berrange 已提交
2001
            } else {
2002
                def->vncPort = -1;
D
Daniel P. Berrange 已提交
2003
            }
2004 2005 2006 2007
            vnclisten = xmlGetProp(obj->nodesetval->nodeTab[0], BAD_CAST "listen");
            if (vnclisten && *vnclisten)
                strncpy(def->vncListen, (char *)vnclisten, BR_INET_ADDR_MAXLEN-1);
            else
D
Daniel P. Berrange 已提交
2008
                strcpy(def->vncListen, driver->vncListen);
2009
            def->vncListen[BR_INET_ADDR_MAXLEN-1] = '\0';
2010
            def->keymap = (char *) xmlGetProp(obj->nodesetval->nodeTab[0], BAD_CAST "keymap");
2011 2012
            xmlFree(vncport);
            xmlFree(vnclisten);
2013
        } else if (STREQ((char *)prop, "sdl")) {
2014
            def->graphicsType = QEMUD_GRAPHICS_SDL;
D
Daniel P. Berrange 已提交
2015
        } else {
2016 2017
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             _("Unsupported graphics type %s"), prop);
D
Daniel P. Berrange 已提交
2018 2019
            goto error;
        }
2020
        xmlFree(prop);
2021
        prop = NULL;
D
Daniel P. Berrange 已提交
2022
    }
2023
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
2024 2025 2026 2027 2028 2029

    /* analysis of the disk devices */
    obj = xmlXPathEval(BAD_CAST "/domain/devices/disk", ctxt);
    if ((obj != NULL) && (obj->type == XPATH_NODESET) &&
        (obj->nodesetval != NULL) && (obj->nodesetval->nodeNr >= 0)) {
        for (i = 0; i < obj->nodesetval->nodeNr; i++) {
2030
            struct qemud_vm_disk_def *disk = calloc(1, sizeof(*disk));
D
Daniel P. Berrange 已提交
2031
            if (!disk) {
2032 2033
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                           "%s", _("failed to allocate space for disk string"));
D
Daniel P. Berrange 已提交
2034 2035 2036 2037
                goto error;
            }
            if (qemudParseDiskXML(conn, disk, obj->nodesetval->nodeTab[i]) < 0) {
                free(disk);
D
Daniel P. Berrange 已提交
2038 2039
                goto error;
            }
2040
            def->ndisks++;
2041
            if (i == 0) {
2042
                disk->next = NULL;
2043 2044
                def->disks = disk;
            } else {
2045 2046 2047 2048 2049 2050 2051 2052 2053
                struct qemud_vm_disk_def *ptr = def->disks;
                while (ptr) {
                    if (!ptr->next || qemudDiskCompare(disk, ptr->next) < 0) {
                        disk->next = ptr->next;
                        ptr->next = disk;
                        break;
                    }
                    ptr = ptr->next;
                }
2054
            }
D
Daniel P. Berrange 已提交
2055 2056 2057
        }
    }
    xmlXPathFreeObject(obj);
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096
    obj = NULL;

    /* analysis of the character devices */
    if (qemudParseCharXMLDevices(conn, ctxt,
                                 "/domain/devices/parallel",
                                 &def->nparallels,
                                 &def->parallels) < 0)
        goto error;
    if (qemudParseCharXMLDevices(conn, ctxt,
                                 "/domain/devices/serial",
                                 &def->nserials,
                                 &def->serials) < 0)
        goto error;

    /*
     * If no serial devices were listed, then look for console
     * devices which is the legacy syntax for the same thing
     */
    if (def->nserials == 0) {
        obj = xmlXPathEval(BAD_CAST "/domain/devices/console", ctxt);
        if ((obj != NULL) && (obj->type == XPATH_NODESET) &&
            (obj->nodesetval != NULL) && (obj->nodesetval->nodeNr == 1)) {
            struct qemud_vm_chr_def *chr = calloc(1, sizeof(*chr));
            if (!chr) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                                 "%s",
                                 _("failed to allocate space for char device"));
                goto error;
            }

            if (qemudParseCharXML(conn, chr, 0, obj->nodesetval->nodeTab[0]) < 0) {
                free(chr);
                goto error;
            }
            def->nserials = 1;
            def->serials = chr;
        }
        xmlXPathFreeObject(obj);
    }
D
Daniel P. Berrange 已提交
2097 2098 2099 2100 2101 2102


    /* analysis of the network devices */
    obj = xmlXPathEval(BAD_CAST "/domain/devices/interface", ctxt);
    if ((obj != NULL) && (obj->type == XPATH_NODESET) &&
        (obj->nodesetval != NULL) && (obj->nodesetval->nodeNr >= 0)) {
2103
        struct qemud_vm_net_def *prev = NULL;
D
Daniel P. Berrange 已提交
2104
        for (i = 0; i < obj->nodesetval->nodeNr; i++) {
2105
            struct qemud_vm_net_def *net = calloc(1, sizeof(*net));
D
Daniel P. Berrange 已提交
2106
            if (!net) {
2107 2108
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                           "%s", _("failed to allocate space for net string"));
D
Daniel P. Berrange 已提交
2109 2110 2111 2112
                goto error;
            }
            if (qemudParseInterfaceXML(conn, net, obj->nodesetval->nodeTab[i]) < 0) {
                free(net);
D
Daniel P. Berrange 已提交
2113 2114
                goto error;
            }
2115
            def->nnets++;
2116 2117 2118 2119 2120 2121 2122
            net->next = NULL;
            if (i == 0) {
                def->nets = net;
            } else {
                prev->next = net;
            }
            prev = net;
D
Daniel P. Berrange 已提交
2123 2124 2125
        }
    }
    xmlXPathFreeObject(obj);
2126 2127 2128 2129 2130 2131 2132

    /* analysis of the input devices */
    obj = xmlXPathEval(BAD_CAST "/domain/devices/input", ctxt);
    if ((obj != NULL) && (obj->type == XPATH_NODESET) &&
        (obj->nodesetval != NULL) && (obj->nodesetval->nodeNr >= 0)) {
        struct qemud_vm_input_def *prev = NULL;
        for (i = 0; i < obj->nodesetval->nodeNr; i++) {
2133
            struct qemud_vm_input_def *input = calloc(1, sizeof(*input));
D
Daniel P. Berrange 已提交
2134
            if (!input) {
2135 2136
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for input string"));
D
Daniel P. Berrange 已提交
2137 2138
                goto error;
            }
2139
            if (qemudParseInputXML(conn, def, input, obj->nodesetval->nodeTab[i]) < 0) {
D
Daniel P. Berrange 已提交
2140
                free(input);
2141 2142 2143 2144 2145 2146 2147 2148 2149 2150
                goto error;
            }
            /* Mouse + PS/2 is implicit with graphics, so don't store it */
            if (input->bus == QEMU_INPUT_BUS_PS2 &&
                input->type == QEMU_INPUT_TYPE_MOUSE) {
                free(input);
                continue;
            }
            def->ninputs++;
            input->next = NULL;
2151
            if (def->inputs == NULL) {
2152 2153 2154 2155 2156 2157 2158 2159
                def->inputs = input;
            } else {
                prev->next = input;
            }
            prev = input;
        }
    }
    xmlXPathFreeObject(obj);
D
Daniel Veillard 已提交
2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203

    /* Parse sound driver xml */
    obj = xmlXPathEval(BAD_CAST "/domain/devices/sound", ctxt);
    if ((obj != NULL) && (obj->type == XPATH_NODESET) &&
        (obj->nodesetval != NULL) && (obj->nodesetval->nodeNr >= 0)) {
        struct qemud_vm_sound_def *prev = NULL;
        for (i = 0; i < obj->nodesetval->nodeNr; i++) {

            struct qemud_vm_sound_def *sound = calloc(1, sizeof(*sound));
            struct qemud_vm_sound_def *check = def->sounds;
            int collision = 0;
            if (!sound) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for sound dev"));
                goto error;
            }
            if (qemudParseSoundXML(conn, sound,
                                   obj->nodesetval->nodeTab[i]) < 0) {
                free(sound);
                goto error;
            }

            // Check that model type isn't already present in sound dev list
            while(check) {
                if (check->model == sound->model) {
                    collision = 1;
                    break;
                }
                check = check->next;
            }
            if (collision)
                continue;

            def->nsounds++;
            sound->next = NULL;
            if (def->sounds == NULL) {
                def->sounds = sound;
            } else {
                prev->next = sound;
            }
            prev = sound;
        }
    }
    xmlXPathFreeObject(obj);
2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217
    obj = NULL;

    /* If graphics are enabled, there's an implicit PS2 mouse */
    if (def->graphicsType != QEMUD_GRAPHICS_NONE) {
        int hasPS2mouse = 0;
        struct qemud_vm_input_def *input = def->inputs;
        while (input) {
            if (input->type == QEMU_INPUT_TYPE_MOUSE &&
                input->bus == QEMU_INPUT_BUS_PS2)
                hasPS2mouse = 1;
            input = input->next;
        }

        if (!hasPS2mouse) {
2218
            input = calloc(1, sizeof(*input));
2219
            if (!input) {
2220 2221
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for input string"));
2222 2223 2224 2225 2226 2227 2228 2229 2230 2231
                goto error;
            }
            input->type = QEMU_INPUT_TYPE_MOUSE;
            input->bus = QEMU_INPUT_BUS_PS2;
            input->next = def->inputs;
            def->inputs = input;
            def->ninputs++;
        }
    }

D
Daniel P. Berrange 已提交
2232 2233
    xmlXPathFreeContext(ctxt);

2234
    return def;
D
Daniel P. Berrange 已提交
2235 2236

 error:
2237
    free(prop);
2238
    xmlXPathFreeObject(obj);
2239
    xmlXPathFreeContext(ctxt);
2240 2241
    qemudFreeVMDef(def);
    return NULL;
D
Daniel P. Berrange 已提交
2242 2243 2244
}


2245
static char *
2246 2247
qemudNetworkIfaceConnect(virConnectPtr conn,
                         struct qemud_driver *driver,
2248
                         struct qemud_vm *vm,
2249 2250
                         struct qemud_vm_net_def *net,
                         int vlan)
2251
{
2252 2253 2254
    struct qemud_network *network = NULL;
    char *brname;
    char *ifname;
2255 2256 2257 2258 2259 2260
    char tapfdstr[4+3+32+7];
    char *retval = NULL;
    int err;
    int tapfd = -1;
    int *tapfds;

2261
    if (net->type == QEMUD_NET_NETWORK) {
2262
        if (!(network = qemudFindNetworkByName(driver, net->dst.network.name))) {
2263
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
2264 2265
                             _("Network '%s' not found"),
                             net->dst.network.name);
2266 2267
            goto error;
        } else if (network->bridge[0] == '\0') {
2268
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
2269 2270
                             _("Network '%s' not active"),
                             net->dst.network.name);
2271 2272 2273 2274
            goto error;
        }
        brname = network->bridge;
        if (net->dst.network.ifname[0] == '\0' ||
2275
            STRPREFIX(net->dst.network.ifname, "vnet") ||
2276 2277 2278 2279 2280 2281 2282
            strchr(net->dst.network.ifname, '%')) {
            strcpy(net->dst.network.ifname, "vnet%d");
        }
        ifname = net->dst.network.ifname;
    } else if (net->type == QEMUD_NET_BRIDGE) {
        brname = net->dst.bridge.brname;
        if (net->dst.bridge.ifname[0] == '\0' ||
2283
            STRPREFIX(net->dst.bridge.ifname, "vnet") ||
2284 2285 2286 2287 2288
            strchr(net->dst.bridge.ifname, '%')) {
            strcpy(net->dst.bridge.ifname, "vnet%d");
        }
        ifname = net->dst.bridge.ifname;
    } else {
2289
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
2290
                         _("Network type %d is not supported"), net->type);
2291 2292 2293
        goto error;
    }

2294
    if (!driver->brctl && (err = brInit(&driver->brctl))) {
2295
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
2296 2297
                         _("cannot initialize bridge support: %s"),
                         strerror(err));
2298 2299 2300
        goto error;
    }

2301
    if ((err = brAddTap(driver->brctl, brname,
2302
                        ifname, BR_IFNAME_MAXLEN, &tapfd))) {
2303
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
2304
                     _("Failed to add tap interface '%s' to bridge '%s' : %s"),
2305
                         ifname, brname, strerror(err));
2306 2307 2308
        goto error;
    }

2309 2310 2311
    snprintf(tapfdstr, sizeof(tapfdstr),
             "tap,fd=%d,script=,vlan=%d,ifname=%s",
             tapfd, vlan, ifname);
2312 2313 2314 2315

    if (!(retval = strdup(tapfdstr)))
        goto no_memory;

2316
    if (!(tapfds = realloc(vm->tapfds, sizeof(*tapfds) * (vm->ntapfds+2))))
2317 2318 2319 2320 2321 2322 2323 2324 2325
        goto no_memory;

    vm->tapfds = tapfds;
    vm->tapfds[vm->ntapfds++] = tapfd;
    vm->tapfds[vm->ntapfds]   = -1;

    return retval;

 no_memory:
2326 2327
    qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                     "%s", _("failed to allocate space for tapfds string"));
2328
 error:
2329
    free(retval);
2330 2331 2332 2333 2334
    if (tapfd != -1)
        close(tapfd);
    return NULL;
}

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
static int qemudBuildCommandLineChrDevStr(struct qemud_vm_chr_def *dev,
                                          char *buf,
                                          int buflen)
{
    switch (dev->srcType) {
    case QEMUD_CHR_SRC_TYPE_NULL:
        strncpy(buf, "null", buflen);
        buf[buflen-1] = '\0';
        break;

    case QEMUD_CHR_SRC_TYPE_VC:
        strncpy(buf, "vc", buflen);
        buf[buflen-1] = '\0';
        break;

    case QEMUD_CHR_SRC_TYPE_PTY:
        strncpy(buf, "pty", buflen);
        buf[buflen-1] = '\0';
        break;

    case QEMUD_CHR_SRC_TYPE_DEV:
        if (snprintf(buf, buflen, "%s",
                     dev->srcData.file.path) >= buflen)
            return -1;
        break;

    case QEMUD_CHR_SRC_TYPE_FILE:
        if (snprintf(buf, buflen, "file:%s",
                     dev->srcData.file.path) >= buflen)
            return -1;
        break;

    case QEMUD_CHR_SRC_TYPE_PIPE:
        if (snprintf(buf, buflen, "pipe:%s",
                     dev->srcData.file.path) >= buflen)
            return -1;
        break;

    case QEMUD_CHR_SRC_TYPE_STDIO:
        strncpy(buf, "stdio", buflen);
        buf[buflen-1] = '\0';
        break;

    case QEMUD_CHR_SRC_TYPE_UDP:
        if (snprintf(buf, buflen, "udp:%s:%s@%s:%s",
                     dev->srcData.udp.connectHost,
                     dev->srcData.udp.connectService,
                     dev->srcData.udp.bindHost,
                     dev->srcData.udp.bindService) >= buflen)
            return -1;
        break;

    case QEMUD_CHR_SRC_TYPE_TCP:
        if (snprintf(buf, buflen, "%s:%s:%s%s",
                     dev->srcData.tcp.protocol == QEMUD_CHR_SRC_TCP_PROTOCOL_TELNET ? "telnet" : "tcp",
                     dev->srcData.tcp.host,
                     dev->srcData.tcp.service,
                     dev->srcData.tcp.listen ? ",listen" : "") >= buflen)
            return -1;
        break;

    case QEMUD_CHR_SRC_TYPE_UNIX:
        if (snprintf(buf, buflen, "unix:%s%s",
                     dev->srcData.nix.path,
                     dev->srcData.nix.listen ? ",listen" : "") >= buflen)
            return -1;
        break;
    }

    return 0;
}

D
Daniel P. Berrange 已提交
2407 2408 2409 2410
/*
 * Constructs a argv suitable for launching qemu with config defined
 * for a given virtual machine.
 */
2411 2412
int qemudBuildCommandLine(virConnectPtr conn,
                          struct qemud_driver *driver,
D
Daniel P. Berrange 已提交
2413
                          struct qemud_vm *vm,
2414 2415
                          char ***retargv) {
    int i;
D
Daniel P. Berrange 已提交
2416 2417 2418
    char memory[50];
    char vcpus[50];
    char boot[QEMUD_MAX_BOOT_DEVS+1];
2419 2420
    struct qemud_vm_disk_def *disk = vm->def->disks;
    struct qemud_vm_net_def *net = vm->def->nets;
2421
    struct qemud_vm_input_def *input = vm->def->inputs;
D
Daniel Veillard 已提交
2422
    struct qemud_vm_sound_def *sound = vm->def->sounds;
2423 2424
    struct qemud_vm_chr_def *serial = vm->def->serials;
    struct qemud_vm_chr_def *parallel = vm->def->parallels;
2425 2426
    struct utsname ut;
    int disableKQEMU = 0;
2427 2428
    int qargc = 0, qarga = 0;
    char **qargv = NULL;
D
Daniel P. Berrange 已提交
2429

2430 2431 2432 2433 2434 2435
    if (vm->qemuVersion == 0) {
        if (qemudExtractVersionInfo(vm->def->os.binary,
                                    &(vm->qemuVersion),
                                    &(vm->qemuCmdFlags)) < 0)
            return -1;
    }
2436

2437 2438
    uname(&ut);

D
Daniel P. Berrange 已提交
2439
    /* Nasty hack make i?86 look like i686 to simplify next comparison */
2440 2441 2442 2443
    if (ut.machine[0] == 'i' &&
        ut.machine[2] == '8' &&
        ut.machine[3] == '6' &&
        !ut.machine[4])
D
Daniel P. Berrange 已提交
2444
        ut.machine[1] = '6';
2445 2446 2447 2448 2449 2450

    /* Need to explicitly disable KQEMU if
     * 1. Arch matches host arch
     * 2. Guest is 'qemu'
     * 3. The qemu binary has the -no-kqemu flag
     */
2451
    if ((vm->qemuCmdFlags & QEMUD_CMD_FLAG_KQEMU) &&
2452
        STREQ(ut.machine, vm->def->os.arch) &&
2453 2454 2455
        vm->def->virtType == QEMUD_VIRT_QEMU)
        disableKQEMU = 1;

2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476
#define ADD_ARG_SPACE                                                   \
    do { \
        if (qargc == qarga) {                                           \
            qarga += 10;                                                \
            if (VIR_REALLOC_N(qargv, qarga) < 0)                        \
                goto no_memory;                                         \
        }                                                               \
    } while (0)

#define ADD_ARG(thisarg)                                                \
    do {                                                                \
        ADD_ARG_SPACE;                                                  \
        qargv[qargc++] = thisarg;                                       \
    } while (0)

#define ADD_ARG_LIT(thisarg)                                            \
    do {                                                                \
        ADD_ARG_SPACE;                                                  \
        if ((qargv[qargc++] = strdup(thisarg)) == NULL)                 \
            goto no_memory;                                             \
    } while (0)
D
Daniel P. Berrange 已提交
2477

2478
    snprintf(memory, sizeof(memory), "%lu", vm->def->memory/1024);
2479
    snprintf(vcpus, sizeof(vcpus), "%d", vm->def->vcpus);
D
Daniel P. Berrange 已提交
2480

2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491

    ADD_ARG_LIT(vm->def->os.binary);
    ADD_ARG_LIT("-S");
    ADD_ARG_LIT("-M");
    ADD_ARG_LIT(vm->def->os.machine);
    if (disableKQEMU)
        ADD_ARG_LIT("-no-kqemu");
    ADD_ARG_LIT("-m");
    ADD_ARG_LIT(memory);
    ADD_ARG_LIT("-smp");
    ADD_ARG_LIT(vcpus);
D
Daniel P. Berrange 已提交
2492

2493
    if (vm->qemuCmdFlags & QEMUD_CMD_FLAG_NAME) {
2494 2495
        ADD_ARG_LIT("-name");
        ADD_ARG_LIT(vm->def->name);
2496
    }
2497 2498 2499 2500 2501 2502 2503
    /*
     * NB, -nographic *MUST* come before any serial, or monitor
     * or parallel port flags due to QEMU craziness, where it
     * decides to change the serial port & monitor to be on stdout
     * if you ask for nographic. So we have to make sure we override
     * these defaults ourselves...
     */
2504 2505
    if (vm->def->graphicsType == QEMUD_GRAPHICS_NONE)
        ADD_ARG_LIT("-nographic");
2506

2507 2508
    ADD_ARG_LIT("-monitor");
    ADD_ARG_LIT("pty");
D
Daniel P. Berrange 已提交
2509

2510 2511
    if (vm->def->localtime)
        ADD_ARG_LIT("-localtime");
2512

2513 2514 2515
    if ((vm->qemuCmdFlags & QEMUD_CMD_FLAG_NO_REBOOT) &&
        vm->def->noReboot)
        ADD_ARG_LIT("-no-reboot");
D
Daniel P. Berrange 已提交
2516

2517 2518
    if (!(vm->def->features & QEMUD_FEATURE_ACPI))
        ADD_ARG_LIT("-no-acpi");
D
Daniel P. Berrange 已提交
2519

D
Daniel P. Berrange 已提交
2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540
    if (!vm->def->os.bootloader[0]) {
        for (i = 0 ; i < vm->def->os.nBootDevs ; i++) {
            switch (vm->def->os.bootDevs[i]) {
            case QEMUD_BOOT_CDROM:
                boot[i] = 'd';
                break;
            case QEMUD_BOOT_FLOPPY:
                boot[i] = 'a';
                break;
            case QEMUD_BOOT_DISK:
                boot[i] = 'c';
                break;
            case QEMUD_BOOT_NET:
                boot[i] = 'n';
                break;
            default:
                boot[i] = 'c';
                break;
            }
        }
        boot[vm->def->os.nBootDevs] = '\0';
2541 2542
        ADD_ARG_LIT("-boot");
        ADD_ARG_LIT(boot);
D
Daniel P. Berrange 已提交
2543 2544

        if (vm->def->os.kernel[0]) {
2545 2546
            ADD_ARG_LIT("-kernel");
            ADD_ARG_LIT(vm->def->os.kernel);
D
Daniel P. Berrange 已提交
2547 2548
        }
        if (vm->def->os.initrd[0]) {
2549 2550
            ADD_ARG_LIT("-initrd");
            ADD_ARG_LIT(vm->def->os.initrd);
D
Daniel P. Berrange 已提交
2551 2552
        }
        if (vm->def->os.cmdline[0]) {
2553 2554
            ADD_ARG_LIT("-append");
            ADD_ARG_LIT(vm->def->os.cmdline);
D
Daniel P. Berrange 已提交
2555 2556
        }
    } else {
2557 2558
        ADD_ARG_LIT("-bootloader");
        ADD_ARG_LIT(vm->def->os.bootloader);
D
Daniel P. Berrange 已提交
2559 2560
    }

2561
    /* If QEMU supports -drive param instead of old -hda, -hdb, -cdrom .. */
2562
    if (vm->qemuCmdFlags & QEMUD_CMD_FLAG_DRIVE) {
2563 2564 2565
        int bootCD = 0, bootFloppy = 0, bootDisk = 0;

        /* If QEMU supports boot=on for -drive param... */
2566
        if (vm->qemuCmdFlags & QEMUD_CMD_FLAG_DRIVE_BOOT) {
2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578
            for (i = 0 ; i < vm->def->os.nBootDevs ; i++) {
                switch (vm->def->os.bootDevs[i]) {
                case QEMUD_BOOT_CDROM:
                    bootCD = 1;
                    break;
                case QEMUD_BOOT_FLOPPY:
                    bootFloppy = 1;
                    break;
                case QEMUD_BOOT_DISK:
                    bootDisk = 1;
                    break;
                }
2579
            }
2580
        }
D
Daniel P. Berrange 已提交
2581

2582 2583 2584 2585 2586
        while (disk) {
            char opt[PATH_MAX];
            const char *media = NULL;
            int bootable = 0;
            int idx = virDiskNameToIndex(disk->dst);
D
Daniel P. Berrange 已提交
2587

2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617
            if (idx < 0) {
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 _("unsupported disk type '%s'"), disk->dst);
                goto error;
            }

            if (disk->device == QEMUD_DISK_CDROM)
                media = "media=cdrom,";

            switch (disk->device) {
            case QEMUD_DISK_CDROM:
                bootable = bootCD;
                bootCD = 0;
                break;
            case QEMUD_DISK_FLOPPY:
                bootable = bootFloppy;
                bootFloppy = 0;
                break;
            case QEMUD_DISK_DISK:
                bootable = bootDisk;
                bootDisk = 0;
                break;
            }

            snprintf(opt, PATH_MAX, "file=%s,if=%s,%sindex=%d%s",
                     disk->src, qemudBusIdToName(disk->bus, 1),
                     media ? media : "",
                     idx,
                     bootable ? ",boot=on" : "");

2618 2619
            ADD_ARG_LIT("-drive");
            ADD_ARG_LIT(opt);
2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647
            disk = disk->next;
        }
    } else {
        while (disk) {
            char dev[NAME_MAX];
            char file[PATH_MAX];

            if (STREQ(disk->dst, "hdc") &&
                disk->device == QEMUD_DISK_CDROM) {
                if (disk->src[0]) {
                    snprintf(dev, NAME_MAX, "-%s", "cdrom");
                } else {
                    disk = disk->next;
                    continue;
                }
            } else {
                if (STRPREFIX(disk->dst, "hd") ||
                    STRPREFIX(disk->dst, "fd")) {
                    snprintf(dev, NAME_MAX, "-%s", disk->dst);
                } else {
                    qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                     _("unsupported disk type '%s'"), disk->dst);
                    goto error;
                }
            }

            snprintf(file, PATH_MAX, "%s", disk->src);

2648 2649
            ADD_ARG_LIT(dev);
            ADD_ARG_LIT(file);
2650 2651 2652

            disk = disk->next;
        }
D
Daniel P. Berrange 已提交
2653 2654 2655
    }

    if (!net) {
2656 2657
        ADD_ARG_LIT("-net");
        ADD_ARG_LIT("none");
D
Daniel P. Berrange 已提交
2658
    } else {
2659
        int vlan = 0;
D
Daniel P. Berrange 已提交
2660
        while (net) {
2661
            char nic[100];
2662

2663 2664
            if (snprintf(nic, sizeof(nic),
                         "nic,macaddr=%02x:%02x:%02x:%02x:%02x:%02x,vlan=%d%s%s",
2665 2666 2667
                         net->mac[0], net->mac[1],
                         net->mac[2], net->mac[3],
                         net->mac[4], net->mac[5],
2668 2669
                         vlan,
                         (net->model[0] ? ",model=" : ""), net->model) >= sizeof(nic))
2670
                goto error;
D
Daniel P. Berrange 已提交
2671

2672 2673 2674
            ADD_ARG_LIT("-net");
            ADD_ARG_LIT(nic);
            ADD_ARG_LIT("-net");
2675

2676 2677 2678
            switch (net->type) {
            case QEMUD_NET_NETWORK:
            case QEMUD_NET_BRIDGE:
2679
                ADD_ARG(qemudNetworkIfaceConnect(conn, driver, vm, net, vlan));
2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690
                break;

            case QEMUD_NET_ETHERNET:
                {
                    char arg[PATH_MAX];
                    if (snprintf(arg, PATH_MAX-1, "tap,ifname=%s,script=%s,vlan=%d",
                                 net->dst.ethernet.ifname,
                                 net->dst.ethernet.script,
                                 vlan) >= (PATH_MAX-1))
                        goto error;

2691
                    ADD_ARG_LIT(arg);
2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718
                }
                break;

            case QEMUD_NET_CLIENT:
            case QEMUD_NET_SERVER:
            case QEMUD_NET_MCAST:
                {
                    char arg[PATH_MAX];
                    const char *mode = NULL;
                    switch (net->type) {
                    case QEMUD_NET_CLIENT:
                        mode = "connect";
                        break;
                    case QEMUD_NET_SERVER:
                        mode = "listen";
                        break;
                    case QEMUD_NET_MCAST:
                        mode = "mcast";
                        break;
                    }
                    if (snprintf(arg, PATH_MAX-1, "socket,%s=%s:%d,vlan=%d",
                                 mode,
                                 net->dst.socket.address,
                                 net->dst.socket.port,
                                 vlan) >= (PATH_MAX-1))
                        goto error;

2719
                    ADD_ARG_LIT(arg);
2720 2721 2722 2723 2724 2725 2726 2727 2728 2729
                }
                break;

            case QEMUD_NET_USER:
            default:
                {
                    char arg[PATH_MAX];
                    if (snprintf(arg, PATH_MAX-1, "user,vlan=%d", vlan) >= (PATH_MAX-1))
                        goto error;

2730
                    ADD_ARG_LIT(arg);
2731
                }
2732
            }
D
Daniel P. Berrange 已提交
2733 2734

            net = net->next;
2735
            vlan++;
D
Daniel P. Berrange 已提交
2736 2737 2738
        }
    }

2739
    if (!serial) {
2740 2741
        ADD_ARG_LIT("-serial");
        ADD_ARG_LIT("none");
2742 2743 2744 2745 2746 2747 2748
    } else {
        while (serial) {
            char buf[4096];

            if (qemudBuildCommandLineChrDevStr(serial, buf, sizeof(buf)) < 0)
                goto error;

2749 2750
            ADD_ARG_LIT("-serial");
            ADD_ARG_LIT(buf);
2751 2752 2753 2754 2755 2756

            serial = serial->next;
        }
    }

    if (!parallel) {
2757 2758
        ADD_ARG_LIT("-parallel");
        ADD_ARG_LIT("none");
2759 2760 2761 2762 2763 2764 2765
    } else {
        while (parallel) {
            char buf[4096];

            if (qemudBuildCommandLineChrDevStr(parallel, buf, sizeof(buf)) < 0)
                goto error;

2766 2767
            ADD_ARG_LIT("-parallel");
            ADD_ARG_LIT(buf);
2768 2769 2770 2771 2772

            parallel = parallel->next;
        }
    }

2773
    ADD_ARG_LIT("-usb");
2774 2775
    while (input) {
        if (input->bus == QEMU_INPUT_BUS_USB) {
2776 2777
            ADD_ARG_LIT("-usbdevice");
            ADD_ARG_LIT(input->type == QEMU_INPUT_TYPE_MOUSE ? "mouse" : "tablet");
2778 2779 2780 2781 2782
        }

        input = input->next;
    }

2783
    if (vm->def->graphicsType == QEMUD_GRAPHICS_VNC) {
D
Daniel P. Berrange 已提交
2784
        char vncdisplay[PATH_MAX];
2785
        int ret;
D
Daniel P. Berrange 已提交
2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800

        if (vm->qemuCmdFlags & QEMUD_CMD_FLAG_VNC_COLON) {
            char options[PATH_MAX] = "";
            if (driver->vncTLS) {
                strcat(options, ",tls");
                if (driver->vncTLSx509verify) {
                    strcat(options, ",x509verify=");
                } else {
                    strcat(options, ",x509=");
                }
                strncat(options, driver->vncTLSx509certdir,
                        sizeof(options) - (strlen(driver->vncTLSx509certdir)-1));
                options[sizeof(options)-1] = '\0';
            }
            ret = snprintf(vncdisplay, sizeof(vncdisplay), "%s:%d%s",
2801
                           vm->def->vncListen,
D
Daniel P. Berrange 已提交
2802 2803 2804
                           vm->def->vncActivePort - 5900,
                           options);
        } else {
2805 2806
            ret = snprintf(vncdisplay, sizeof(vncdisplay), "%d",
                           vm->def->vncActivePort - 5900);
D
Daniel P. Berrange 已提交
2807
        }
2808
        if (ret < 0 || ret >= (int)sizeof(vncdisplay))
2809 2810
            goto error;

2811 2812
        ADD_ARG_LIT("-vnc");
        ADD_ARG_LIT(vncdisplay);
2813
        if (vm->def->keymap) {
2814 2815
            ADD_ARG_LIT("-k");
            ADD_ARG_LIT(vm->def->keymap);
2816
        }
2817
    } else if (vm->def->graphicsType == QEMUD_GRAPHICS_NONE) {
2818
        /* Nada - we added -nographic earlier in this function */
D
Daniel P. Berrange 已提交
2819 2820 2821 2822
    } else {
        /* SDL is the default. no args needed */
    }

D
Daniel Veillard 已提交
2823 2824 2825 2826 2827 2828 2829 2830 2831 2832
    /* Add sound hardware */
    if (sound) {
        int size = 100;
        char *modstr = calloc(1, size+1);
        if (!modstr)
            goto no_memory;

        while(sound && size > 0) {
            const char *model = qemudSoundModelToString(sound->model);
            if (!model) {
2833
                free(modstr);
2834 2835 2836
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("invalid sound model"));
                goto error;
D
Daniel Veillard 已提交
2837 2838 2839 2840 2841 2842 2843
            }
            strncat(modstr, model, size);
            size -= strlen(model);
            sound = sound->next;
            if (sound)
               strncat(modstr, ",", size--);
        }
2844 2845
        ADD_ARG_LIT("-soundhw");
        ADD_ARG(modstr);
D
Daniel Veillard 已提交
2846 2847
    }

2848
    if (vm->migrateFrom[0]) {
2849 2850
        ADD_ARG_LIT("-incoming");
        ADD_ARG_LIT(vm->migrateFrom);
2851 2852
    }

2853
    ADD_ARG(NULL);
D
Daniel P. Berrange 已提交
2854

2855
    *retargv = qargv;
D
Daniel P. Berrange 已提交
2856 2857 2858
    return 0;

 no_memory:
2859 2860
    qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                     "%s", _("failed to allocate space for argv string"));
2861 2862 2863 2864 2865 2866 2867 2868
 error:
    if (vm->tapfds) {
        for (i = 0; vm->tapfds[i] != -1; i++)
            close(vm->tapfds[i]);
        free(vm->tapfds);
        vm->tapfds = NULL;
        vm->ntapfds = 0;
    }
2869 2870 2871 2872
    if (qargv) {
        for (i = 0 ; i < qargc ; i++)
            free((qargv)[i]);
        free(qargv);
D
Daniel P. Berrange 已提交
2873 2874
    }
    return -1;
2875 2876 2877 2878

#undef ADD_ARG
#undef ADD_ARG_LIT
#undef ADD_ARG_SPACE
D
Daniel P. Berrange 已提交
2879 2880 2881 2882
}


/* Save a guest's config data into a persistent file */
2883 2884
static int qemudSaveConfig(virConnectPtr conn,
                           struct qemud_driver *driver,
2885 2886
                           struct qemud_vm *vm,
                           struct qemud_vm_def *def) {
D
Daniel P. Berrange 已提交
2887 2888 2889 2890
    char *xml;
    int fd = -1, ret = -1;
    int towrite;

2891
    if (!(xml = qemudGenerateXML(conn, driver, vm, def, 0)))
D
Daniel P. Berrange 已提交
2892 2893 2894 2895 2896
        return -1;

    if ((fd = open(vm->configFile,
                   O_WRONLY | O_CREAT | O_TRUNC,
                   S_IRUSR | S_IWUSR )) < 0) {
2897
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
2898
                         _("cannot create config file %s: %s"),
2899
                         vm->configFile, strerror(errno));
D
Daniel P. Berrange 已提交
2900 2901 2902 2903
        goto cleanup;
    }

    towrite = strlen(xml);
2904
    if (safewrite(fd, xml, towrite) < 0) {
2905
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
2906
                         _("cannot write config file %s: %s"),
2907
                         vm->configFile, strerror(errno));
D
Daniel P. Berrange 已提交
2908 2909 2910 2911
        goto cleanup;
    }

    if (close(fd) < 0) {
2912
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
2913
                         _("cannot save config file %s: %s"),
2914
                         vm->configFile, strerror(errno));
D
Daniel P. Berrange 已提交
2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928
        goto cleanup;
    }

    ret = 0;

 cleanup:
    if (fd != -1)
        close(fd);

    free(xml);

    return ret;
}

D
Daniel P. Berrange 已提交
2929 2930
struct qemud_vm_device_def *
qemudParseVMDeviceDef(virConnectPtr conn,
2931
                      const struct qemud_vm_def *def,
D
Daniel P. Berrange 已提交
2932 2933 2934 2935
                      const char *xmlStr)
{
    xmlDocPtr xml;
    xmlNodePtr node;
2936
    struct qemud_vm_device_def *dev = calloc(1, sizeof(*dev));
D
Daniel P. Berrange 已提交
2937 2938 2939 2940 2941 2942 2943 2944 2945 2946

    if (!(xml = xmlReadDoc(BAD_CAST xmlStr, "device.xml", NULL,
                           XML_PARSE_NOENT | XML_PARSE_NONET |
                           XML_PARSE_NOERROR | XML_PARSE_NOWARNING))) {
        qemudReportError(conn, NULL, NULL, VIR_ERR_XML_ERROR, NULL);
        return NULL;
    }

    node = xmlDocGetRootElement(xml);
    if (node == NULL) {
2947 2948
        qemudReportError(conn, NULL, NULL, VIR_ERR_XML_ERROR,
                         "%s", _("missing root element"));
D
Daniel P. Berrange 已提交
2949 2950 2951 2952 2953 2954 2955 2956 2957 2958
        goto error;
    }
    if (xmlStrEqual(node->name, BAD_CAST "disk")) {
        dev->type = QEMUD_DEVICE_DISK;
        qemudParseDiskXML(conn, &(dev->data.disk), node);
    } else if (xmlStrEqual(node->name, BAD_CAST "net")) {
        dev->type = QEMUD_DEVICE_NET;
        qemudParseInterfaceXML(conn, &(dev->data.net), node);
    } else if (xmlStrEqual(node->name, BAD_CAST "input")) {
        dev->type = QEMUD_DEVICE_DISK;
2959
        qemudParseInputXML(conn, def, &(dev->data.input), node);
D
Daniel Veillard 已提交
2960 2961 2962
    } else if (xmlStrEqual(node->name, BAD_CAST "sound")) {
        dev->type = QEMUD_DEVICE_SOUND;
        qemudParseSoundXML(conn, &(dev->data.sound), node);
D
Daniel P. Berrange 已提交
2963
    } else {
2964 2965
        qemudReportError(conn, NULL, NULL, VIR_ERR_XML_ERROR,
                         "%s", _("unknown device type"));
D
Daniel P. Berrange 已提交
2966 2967 2968 2969 2970 2971 2972 2973 2974
        goto error;
    }

    xmlFreeDoc(xml);

    return dev;

  error:
    if (xml) xmlFreeDoc(xml);
2975
    free(dev);
D
Daniel P. Berrange 已提交
2976 2977 2978
    return NULL;
}

2979
struct qemud_vm_def *
2980 2981
qemudParseVMDef(virConnectPtr conn,
                struct qemud_driver *driver,
2982 2983
                const char *xmlStr,
                const char *displayName) {
D
Daniel P. Berrange 已提交
2984
    xmlDocPtr xml;
2985
    struct qemud_vm_def *def = NULL;
D
Daniel P. Berrange 已提交
2986

2987
    if (!(xml = xmlReadDoc(BAD_CAST xmlStr, displayName ? displayName : "domain.xml", NULL,
D
Daniel P. Berrange 已提交
2988 2989
                           XML_PARSE_NOENT | XML_PARSE_NONET |
                           XML_PARSE_NOERROR | XML_PARSE_NOWARNING))) {
2990
        qemudReportError(conn, NULL, NULL, VIR_ERR_XML_ERROR, NULL);
D
Daniel P. Berrange 已提交
2991 2992 2993
        return NULL;
    }

2994
    def = qemudParseXML(conn, driver, xml);
2995

D
Daniel P. Berrange 已提交
2996 2997
    xmlFreeDoc(xml);

2998 2999 3000 3001
    return def;
}

struct qemud_vm *
3002 3003
qemudAssignVMDef(virConnectPtr conn,
                 struct qemud_driver *driver,
3004 3005 3006 3007
                 struct qemud_vm_def *def)
{
    struct qemud_vm *vm = NULL;

3008
    if ((vm = qemudFindVMByName(driver, def->name))) {
3009
        if (!qemudIsActiveVM(vm)) {
3010 3011 3012 3013 3014 3015 3016
            qemudFreeVMDef(vm->def);
            vm->def = def;
        } else {
            if (vm->newDef)
                qemudFreeVMDef(vm->newDef);
            vm->newDef = def;
        }
3017 3018 3019
        /* Reset version, because the emulator path might have changed */
        vm->qemuVersion = 0;
        vm->qemuCmdFlags = 0;
3020
        return vm;
D
Daniel P. Berrange 已提交
3021 3022
    }

3023
    if (!(vm = calloc(1, sizeof(*vm)))) {
3024 3025
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for vm string"));
3026 3027
        return NULL;
    }
D
Daniel P. Berrange 已提交
3028

3029
    vm->stdin = -1;
3030 3031 3032 3033 3034
    vm->stdout = -1;
    vm->stderr = -1;
    vm->monitor = -1;
    vm->pid = -1;
    vm->id = -1;
3035
    vm->state = VIR_DOMAIN_SHUTOFF;
3036
    vm->def = def;
3037
    vm->next = driver->vms;
3038

3039 3040
    driver->vms = vm;
    driver->ninactivevms++;
3041 3042 3043 3044 3045

    return vm;
}

void
3046
qemudRemoveInactiveVM(struct qemud_driver *driver,
3047 3048 3049 3050
                      struct qemud_vm *vm)
{
    struct qemud_vm *prev = NULL, *curr;

3051
    curr = driver->vms;
3052 3053 3054
    while (curr != vm) {
        prev = curr;
        curr = curr->next;
D
Daniel P. Berrange 已提交
3055 3056
    }

3057 3058 3059 3060
    if (curr) {
        if (prev)
            prev->next = curr->next;
        else
3061
            driver->vms = curr->next;
3062

3063
        driver->ninactivevms--;
3064 3065
    }

3066
    qemudFreeVM(vm);
D
Daniel P. Berrange 已提交
3067 3068
}

3069
int
3070 3071
qemudSaveVMDef(virConnectPtr conn,
               struct qemud_driver *driver,
3072 3073 3074 3075 3076
               struct qemud_vm *vm,
               struct qemud_vm_def *def) {
    if (vm->configFile[0] == '\0') {
        int err;

3077
        if ((err = virFileMakePath(driver->configDir))) {
3078
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3079
                             _("cannot create config directory %s: %s"),
3080
                             driver->configDir, strerror(err));
3081 3082 3083
            return -1;
        }

3084 3085
        if (virFileBuildPath(driver->configDir, def->name, ".xml",
                             vm->configFile, PATH_MAX) < 0) {
3086
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3087
                             "%s", _("cannot construct config file path"));
3088 3089
            return -1;
        }
3090

3091 3092
        if (virFileBuildPath(driver->autostartDir, def->name, ".xml",
                             vm->autostartLink, PATH_MAX) < 0) {
3093
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3094
                             "%s", _("cannot construct autostart link path"));
3095 3096 3097
            vm->configFile[0] = '\0';
            return -1;
        }
3098 3099
    }

3100
    return qemudSaveConfig(conn, driver, vm, def);
3101
}
D
Daniel P. Berrange 已提交
3102

3103 3104
static int qemudSaveNetworkConfig(virConnectPtr conn,
                                  struct qemud_driver *driver,
3105 3106
                                  struct qemud_network *network,
                                  struct qemud_network_def *def) {
3107 3108 3109
    char *xml;
    int fd, ret = -1;
    int towrite;
3110
    int err;
3111

3112
    if (!(xml = qemudGenerateNetworkXML(conn, driver, network, def))) {
3113 3114 3115
        return -1;
    }

3116
    if ((err = virFileMakePath(driver->networkConfigDir))) {
3117
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3118
                         _("cannot create config directory %s: %s"),
3119
                         driver->networkConfigDir, strerror(err));
3120 3121 3122 3123 3124 3125
        goto cleanup;
    }

    if ((fd = open(network->configFile,
                   O_WRONLY | O_CREAT | O_TRUNC,
                   S_IRUSR | S_IWUSR )) < 0) {
3126
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3127
                         _("cannot create config file %s: %s"),
3128
                         network->configFile, strerror(errno));
3129 3130 3131 3132
        goto cleanup;
    }

    towrite = strlen(xml);
3133
    if (safewrite(fd, xml, towrite) < 0) {
3134
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3135
                         _("cannot write config file %s: %s"),
3136
                         network->configFile, strerror(errno));
3137 3138 3139 3140
        goto cleanup;
    }

    if (close(fd) < 0) {
3141
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3142
                         _("cannot save config file %s: %s"),
3143
                         network->configFile, strerror(errno));
3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155
        goto cleanup;
    }

    ret = 0;

 cleanup:

    free(xml);

    return ret;
}

3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171
void qemudFreeNetworkDef(struct qemud_network_def *def) {
    struct qemud_dhcp_range_def *range = def->ranges;
    while (range) {
        struct qemud_dhcp_range_def *next = range->next;
        free(range);
        range = next;
    }
    free(def);
}

void qemudFreeNetwork(struct qemud_network *network) {
    qemudFreeNetworkDef(network->def);
    if (network->newDef)
        qemudFreeNetworkDef(network->newDef);
    free(network);
}
3172

3173
static int qemudParseBridgeXML(struct qemud_driver *driver ATTRIBUTE_UNUSED,
3174
                               struct qemud_network_def *def,
3175 3176 3177 3178 3179
                               xmlNodePtr node) {
    xmlChar *name, *stp, *delay;

    name = xmlGetProp(node, BAD_CAST "name");
    if (name != NULL) {
3180 3181
        strncpy(def->bridge, (const char *)name, IF_NAMESIZE-1);
        def->bridge[IF_NAMESIZE-1] = '\0';
3182 3183 3184 3185 3186 3187 3188
        xmlFree(name);
        name = NULL;
    }

    stp = xmlGetProp(node, BAD_CAST "stp");
    if (stp != NULL) {
        if (xmlStrEqual(stp, BAD_CAST "off")) {
3189
            def->disableSTP = 1;
3190 3191 3192 3193 3194 3195 3196
        }
        xmlFree(stp);
        stp = NULL;
    }

    delay = xmlGetProp(node, BAD_CAST "delay");
    if (delay != NULL) {
3197
        def->forwardDelay = strtol((const char *)delay, NULL, 10);
3198 3199 3200 3201 3202 3203 3204
        xmlFree(delay);
        delay = NULL;
    }

    return 1;
}

3205 3206
static int qemudParseDhcpRangesXML(virConnectPtr conn,
                                   struct qemud_driver *driver ATTRIBUTE_UNUSED,
3207
                                   struct qemud_network_def *def,
3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222
                                   xmlNodePtr node) {

    xmlNodePtr cur;

    cur = node->children;
    while (cur != NULL) {
        struct qemud_dhcp_range_def *range;
        xmlChar *start, *end;

        if (cur->type != XML_ELEMENT_NODE ||
            !xmlStrEqual(cur->name, BAD_CAST "range")) {
            cur = cur->next;
            continue;
        }

3223
        if (!(range = calloc(1, sizeof(*range)))) {
3224 3225
            qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for range string"));
3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238
            return 0;
        }

        start = xmlGetProp(cur, BAD_CAST "start");
        end = xmlGetProp(cur, BAD_CAST "end");

        if (start && start[0] && end && end[0]) {
            strncpy(range->start, (const char *)start, BR_INET_ADDR_MAXLEN-1);
            range->start[BR_INET_ADDR_MAXLEN-1] = '\0';

            strncpy(range->end, (const char *)end, BR_INET_ADDR_MAXLEN-1);
            range->end[BR_INET_ADDR_MAXLEN-1] = '\0';

3239 3240 3241
            range->next = def->ranges;
            def->ranges = range;
            def->nranges++;
3242 3243 3244 3245
        } else {
            free(range);
        }

3246 3247
        xmlFree(start);
        xmlFree(end);
3248 3249 3250 3251 3252 3253

        cur = cur->next;
    }

    return 1;
}
3254

3255 3256
static int qemudParseInetXML(virConnectPtr conn,
                             struct qemud_driver *driver ATTRIBUTE_UNUSED,
3257
                             struct qemud_network_def *def,
3258 3259
                             xmlNodePtr node) {
    xmlChar *address, *netmask;
3260
    xmlNodePtr cur;
3261 3262 3263

    address = xmlGetProp(node, BAD_CAST "address");
    if (address != NULL) {
3264 3265
        strncpy(def->ipAddress, (const char *)address, BR_INET_ADDR_MAXLEN-1);
        def->ipAddress[BR_INET_ADDR_MAXLEN-1] = '\0';
3266 3267 3268 3269 3270 3271
        xmlFree(address);
        address = NULL;
    }

    netmask = xmlGetProp(node, BAD_CAST "netmask");
    if (netmask != NULL) {
3272 3273
        strncpy(def->netmask, (const char *)netmask, BR_INET_ADDR_MAXLEN-1);
        def->netmask[BR_INET_ADDR_MAXLEN-1] = '\0';
3274 3275 3276 3277
        xmlFree(netmask);
        netmask = NULL;
    }

3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292
    if (def->ipAddress[0] && def->netmask[0]) {
        struct in_addr inaddress, innetmask;
        char *netaddr;

        inet_aton((const char*)def->ipAddress, &inaddress);
        inet_aton((const char*)def->netmask, &innetmask);

        inaddress.s_addr &= innetmask.s_addr;

        netaddr = inet_ntoa(inaddress);

        snprintf(def->network,sizeof(def->network)-1,
                 "%s/%s", netaddr, (const char *)def->netmask);
    }

3293 3294 3295 3296
    cur = node->children;
    while (cur != NULL) {
        if (cur->type == XML_ELEMENT_NODE &&
            xmlStrEqual(cur->name, BAD_CAST "dhcp") &&
3297
            !qemudParseDhcpRangesXML(conn, driver, def, cur))
3298 3299 3300 3301
            return 0;
        cur = cur->next;
    }

3302 3303 3304 3305
    return 1;
}


3306 3307
static struct qemud_network_def *qemudParseNetworkXML(virConnectPtr conn,
                                                      struct qemud_driver *driver,
3308
                                                      xmlDocPtr xml) {
3309 3310
    xmlNodePtr root = NULL;
    xmlXPathContextPtr ctxt = NULL;
3311
    xmlXPathObjectPtr obj = NULL, tmp = NULL;
3312 3313
    struct qemud_network_def *def;

3314
    if (!(def = calloc(1, sizeof(*def)))) {
3315 3316
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                   "%s", _("failed to allocate space for network_def string"));
3317 3318
        return NULL;
    }
3319 3320 3321 3322

    /* Prepare parser / xpath context */
    root = xmlDocGetRootElement(xml);
    if ((root == NULL) || (!xmlStrEqual(root->name, BAD_CAST "network"))) {
3323 3324
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("incorrect root element"));
3325 3326 3327 3328 3329
        goto error;
    }

    ctxt = xmlXPathNewContext(xml);
    if (ctxt == NULL) {
3330 3331
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
               "%s", _("failed to allocate space for xmlXPathContext string"));
3332 3333 3334 3335 3336 3337 3338 3339
        goto error;
    }


    /* Extract network name */
    obj = xmlXPathEval(BAD_CAST "string(/network/name[1])", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
3340
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_NAME, NULL);
3341 3342 3343
        goto error;
    }
    if (strlen((const char *)obj->stringval) >= (QEMUD_MAX_NAME_LEN-1)) {
3344 3345
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("network name length too long"));
3346 3347
        goto error;
    }
3348
    strcpy(def->name, (const char *)obj->stringval);
3349 3350 3351 3352 3353 3354 3355
    xmlXPathFreeObject(obj);


    /* Extract network uuid */
    obj = xmlXPathEval(BAD_CAST "string(/network/uuid[1])", ctxt);
    if ((obj == NULL) || (obj->type != XPATH_STRING) ||
        (obj->stringval == NULL) || (obj->stringval[0] == 0)) {
3356
        int err;
D
Daniel P. Berrange 已提交
3357
        if ((err = virUUIDGenerate(def->uuid))) {
3358
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3359
                             _("Failed to generate UUID: %s"), strerror(err));
3360 3361
            goto error;
        }
D
Daniel P. Berrange 已提交
3362
    } else if (virUUIDParse((const char *)obj->stringval, def->uuid) < 0) {
3363 3364
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("malformed uuid element"));
3365 3366 3367 3368
        goto error;
    }
    xmlXPathFreeObject(obj);

3369 3370 3371 3372
    /* Parse bridge information */
    obj = xmlXPathEval(BAD_CAST "/network/bridge[1]", ctxt);
    if ((obj != NULL) && (obj->type == XPATH_NODESET) &&
        (obj->nodesetval != NULL) && (obj->nodesetval->nodeNr > 0)) {
3373
        if (!qemudParseBridgeXML(driver, def, obj->nodesetval->nodeTab[0])) {
3374 3375 3376 3377 3378 3379 3380 3381 3382
            goto error;
        }
    }
    xmlXPathFreeObject(obj);

    /* Parse IP information */
    obj = xmlXPathEval(BAD_CAST "/network/ip[1]", ctxt);
    if ((obj != NULL) && (obj->type == XPATH_NODESET) &&
        (obj->nodesetval != NULL) && (obj->nodesetval->nodeNr > 0)) {
3383
        if (!qemudParseInetXML(conn, driver, def, obj->nodesetval->nodeTab[0])) {
3384 3385 3386 3387 3388 3389
            goto error;
        }
    }
    xmlXPathFreeObject(obj);

    /* IPv4 forwarding setup */
3390 3391 3392
    obj = xmlXPathEval(BAD_CAST "count(/network/forward) > 0", ctxt);
    if ((obj != NULL) && (obj->type == XPATH_BOOLEAN) &&
        obj->boolval) {
3393 3394
        if (!def->ipAddress[0] ||
            !def->netmask[0]) {
3395
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3396
                             "%s", _("Forwarding requested, but no IPv4 address/netmask provided"));
3397 3398 3399
            goto error;
        }

3400
        def->forward = 1;
3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411

        tmp = xmlXPathEval(BAD_CAST "string(/network/forward[1]/@mode)", ctxt);
        if ((tmp != NULL) && (tmp->type == XPATH_STRING) &&
            (tmp->stringval != NULL) && (xmlStrEqual(tmp->stringval, BAD_CAST "route"))) {
            def->forwardMode = QEMUD_NET_FORWARD_ROUTE;
        } else {
            def->forwardMode = QEMUD_NET_FORWARD_NAT;
        }
        xmlXPathFreeObject(tmp);
        tmp = NULL;

3412 3413 3414 3415 3416
        tmp = xmlXPathEval(BAD_CAST "string(/network/forward[1]/@dev)", ctxt);
        if ((tmp != NULL) && (tmp->type == XPATH_STRING) &&
            (tmp->stringval != NULL) && (tmp->stringval[0] != 0)) {
            int len;
            if ((len = xmlStrlen(tmp->stringval)) >= (BR_IFNAME_MAXLEN-1)) {
3417
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3418
                                 _("forward device name '%s' is too long"),
3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432
                                 (char*)tmp->stringval);
                goto error;
            }
            strcpy(def->forwardDev, (char*)tmp->stringval);
        } else {
            def->forwardDev[0] = '\0';
        }
        xmlXPathFreeObject(tmp);
        tmp = NULL;
    } else {
        def->forward = 0;
    }
    xmlXPathFreeObject(obj);

3433 3434
    xmlXPathFreeContext(ctxt);

3435
    return def;
3436 3437 3438 3439

 error:
    /* XXX free all the stuff in the qemud_network struct, or leave it upto
       the caller ? */
3440 3441
    xmlXPathFreeObject(obj);
    xmlXPathFreeObject(tmp);
3442
    xmlXPathFreeContext(ctxt);
3443 3444
    qemudFreeNetworkDef(def);
    return NULL;
3445 3446
}

3447
struct qemud_network_def *
3448 3449
qemudParseNetworkDef(virConnectPtr conn,
                     struct qemud_driver *driver,
3450 3451
                     const char *xmlStr,
                     const char *displayName) {
3452
    xmlDocPtr xml;
3453
    struct qemud_network_def *def;
3454

3455
    if (!(xml = xmlReadDoc(BAD_CAST xmlStr, displayName ? displayName : "network.xml", NULL,
3456 3457
                           XML_PARSE_NOENT | XML_PARSE_NONET |
                           XML_PARSE_NOERROR | XML_PARSE_NOWARNING))) {
3458
        qemudReportError(conn, NULL, NULL, VIR_ERR_XML_ERROR, NULL);
3459 3460 3461
        return NULL;
    }

3462
    def = qemudParseNetworkXML(conn, driver, xml);
3463

3464 3465
    xmlFreeDoc(xml);

3466 3467 3468 3469
    return def;
}

struct qemud_network *
3470 3471
qemudAssignNetworkDef(virConnectPtr conn,
                      struct qemud_driver *driver,
3472 3473 3474
                      struct qemud_network_def *def) {
    struct qemud_network *network;

3475
    if ((network = qemudFindNetworkByName(driver, def->name))) {
3476
        if (!qemudIsActiveNetwork(network)) {
3477 3478 3479 3480 3481 3482 3483 3484
            qemudFreeNetworkDef(network->def);
            network->def = def;
        } else {
            if (network->newDef)
                qemudFreeNetworkDef(network->newDef);
            network->newDef = def;
        }

3485
        return network;
3486 3487
    }

3488
    if (!(network = calloc(1, sizeof(*network)))) {
3489 3490
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for network string"));
3491 3492
        return NULL;
    }
3493

3494
    network->def = def;
3495
    network->next = driver->networks;
3496

3497 3498
    driver->networks = network;
    driver->ninactivenetworks++;
3499 3500 3501 3502 3503

    return network;
}

void
3504
qemudRemoveInactiveNetwork(struct qemud_driver *driver,
3505 3506 3507 3508
                           struct qemud_network *network)
{
    struct qemud_network *prev = NULL, *curr;

3509
    curr = driver->networks;
3510 3511 3512
    while (curr != network) {
        prev = curr;
        curr = curr->next;
3513 3514
    }

3515 3516 3517 3518
    if (curr) {
        if (prev)
            prev->next = curr->next;
        else
3519
            driver->networks = curr->next;
3520

3521
        driver->ninactivenetworks--;
3522 3523
    }

3524
    qemudFreeNetwork(network);
3525 3526
}

3527
int
3528 3529
qemudSaveNetworkDef(virConnectPtr conn,
                    struct qemud_driver *driver,
3530 3531 3532 3533 3534 3535
                    struct qemud_network *network,
                    struct qemud_network_def *def) {

    if (network->configFile[0] == '\0') {
        int err;

3536
        if ((err = virFileMakePath(driver->networkConfigDir))) {
3537
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3538
                             _("cannot create config directory %s: %s"),
3539
                             driver->networkConfigDir, strerror(err));
3540 3541 3542
            return -1;
        }

3543 3544
        if (virFileBuildPath(driver->networkConfigDir, def->name, ".xml",
                             network->configFile, PATH_MAX) < 0) {
3545
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3546
                             "%s", _("cannot construct config file path"));
3547 3548
            return -1;
        }
3549

3550 3551
        if (virFileBuildPath(driver->networkAutostartDir, def->name, ".xml",
                             network->autostartLink, PATH_MAX) < 0) {
3552
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3553
                             "%s", _("cannot construct autostart link path"));
3554 3555 3556
            network->configFile[0] = '\0';
            return -1;
        }
3557 3558
    }

3559
    return qemudSaveNetworkConfig(conn, driver, network, def);
3560
}
3561

3562

3563
static struct qemud_vm *
3564
qemudLoadConfig(struct qemud_driver *driver,
3565 3566
                const char *file,
                const char *path,
3567 3568
                const char *xml,
                const char *autostartLink) {
3569 3570 3571
    struct qemud_vm_def *def;
    struct qemud_vm *vm;

3572
    if (!(def = qemudParseVMDef(NULL, driver, xml, file))) {
3573
        virErrorPtr err = virGetLastError();
3574 3575 3576
        qemudLog(QEMUD_WARN, _("Error parsing QEMU guest config '%s' : %s"),
                 path, (err ? err->message :
                        _("BUG: unknown error - please report it\n")));
3577 3578 3579
        return NULL;
    }

3580
    if (!virFileMatchesNameSuffix(file, def->name, ".xml")) {
3581 3582 3583
        qemudLog(QEMUD_WARN,
                 _("QEMU guest config filename '%s'"
                   " does not match guest name '%s'"),
3584 3585 3586 3587 3588
                 path, def->name);
        qemudFreeVMDef(def);
        return NULL;
    }

3589
    if (!(vm = qemudAssignVMDef(NULL, driver, def))) {
3590 3591 3592
        qemudLog(QEMUD_WARN,
                 _("Failed to load QEMU guest config '%s': out of memory"),
                 path);
3593 3594 3595 3596 3597 3598 3599
        qemudFreeVMDef(def);
        return NULL;
    }

    strncpy(vm->configFile, path, PATH_MAX);
    vm->configFile[PATH_MAX-1] = '\0';

3600 3601 3602
    strncpy(vm->autostartLink, autostartLink, PATH_MAX);
    vm->autostartLink[PATH_MAX-1] = '\0';

3603
    vm->autostart = virFileLinkPointsTo(vm->autostartLink, vm->configFile);
3604

3605 3606 3607 3608
    return vm;
}

static struct qemud_network *
3609
qemudLoadNetworkConfig(struct qemud_driver *driver,
3610 3611
                       const char *file,
                       const char *path,
3612 3613
                       const char *xml,
                       const char *autostartLink) {
3614 3615 3616
    struct qemud_network_def *def;
    struct qemud_network *network;

3617
    if (!(def = qemudParseNetworkDef(NULL, driver, xml, file))) {
3618
        virErrorPtr err = virGetLastError();
3619
        qemudLog(QEMUD_WARN, _("Error parsing network config '%s' : %s"),
3620
                 path, err->message);
3621 3622 3623
        return NULL;
    }

3624
    if (!virFileMatchesNameSuffix(file, def->name, ".xml")) {
3625 3626 3627
        qemudLog(QEMUD_WARN,
                 _("Network config filename '%s'"
                   " does not match network name '%s'"),
3628 3629 3630 3631 3632
                 path, def->name);
        qemudFreeNetworkDef(def);
        return NULL;
    }

3633
    if (!(network = qemudAssignNetworkDef(NULL, driver, def))) {
3634 3635
        qemudLog(QEMUD_WARN,
                 _("Failed to load network config '%s': out of memory"), path);
3636 3637 3638 3639 3640 3641 3642
        qemudFreeNetworkDef(def);
        return NULL;
    }

    strncpy(network->configFile, path, PATH_MAX);
    network->configFile[PATH_MAX-1] = '\0';

3643 3644 3645
    strncpy(network->autostartLink, autostartLink, PATH_MAX);
    network->autostartLink[PATH_MAX-1] = '\0';

3646
    network->autostart = virFileLinkPointsTo(network->autostartLink, network->configFile);
3647

3648 3649
    return network;
}
D
Daniel P. Berrange 已提交
3650

3651
static
3652
int qemudScanConfigDir(struct qemud_driver *driver,
3653
                       const char *configDir,
3654
                       const char *autostartDir,
3655
                       int isGuest) {
D
Daniel P. Berrange 已提交
3656 3657 3658
    DIR *dir;
    struct dirent *entry;

3659
    if (!(dir = opendir(configDir))) {
D
Daniel P. Berrange 已提交
3660 3661
        if (errno == ENOENT)
            return 0;
3662
        qemudLog(QEMUD_ERR, _("Failed to open dir '%s': %s"),
3663
                 configDir, strerror(errno));
D
Daniel P. Berrange 已提交
3664 3665 3666 3667
        return -1;
    }

    while ((entry = readdir(dir))) {
3668
        char *xml;
3669
        char path[PATH_MAX];
3670
        char autostartLink[PATH_MAX];
3671

D
Daniel P. Berrange 已提交
3672 3673 3674
        if (entry->d_name[0] == '.')
            continue;

3675
        if (!virFileHasSuffix(entry->d_name, ".xml"))
3676 3677
            continue;

3678
        if (virFileBuildPath(configDir, entry->d_name, NULL, path, PATH_MAX) < 0) {
3679
            qemudLog(QEMUD_WARN, _("Config filename '%s/%s' is too long"),
3680 3681 3682 3683
                     configDir, entry->d_name);
            continue;
        }

3684 3685 3686
        if (virFileBuildPath(autostartDir, entry->d_name, NULL,
                             autostartLink, PATH_MAX) < 0) {
            qemudLog(QEMUD_WARN, _("Autostart link path '%s/%s' is too long"),
3687 3688 3689 3690
                     autostartDir, entry->d_name);
            continue;
        }

3691
        if (virFileReadAll(path, QEMUD_MAX_XML_LEN, &xml) < 0)
D
Daniel P. Berrange 已提交
3692 3693
            continue;

3694
        if (isGuest)
3695
            qemudLoadConfig(driver, entry->d_name, path, xml, autostartLink);
3696
        else
3697
            qemudLoadNetworkConfig(driver, entry->d_name, path, xml, autostartLink);
3698 3699

        free(xml);
D
Daniel P. Berrange 已提交
3700 3701 3702
    }

    closedir(dir);
3703

D
Daniel P. Berrange 已提交
3704 3705 3706
    return 0;
}

3707
/* Scan for all guest and network config files */
3708 3709
int qemudScanConfigs(struct qemud_driver *driver) {
    if (qemudScanConfigDir(driver, driver->configDir, driver->autostartDir, 1) < 0)
3710
        return -1;
3711

3712
    if (qemudScanConfigDir(driver, driver->networkConfigDir, driver->networkAutostartDir, 0) < 0)
3713 3714 3715
        return -1;

    return 0;
3716
}
D
Daniel P. Berrange 已提交
3717

3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733
static int qemudGenerateXMLChar(virBufferPtr buf,
                                const struct qemud_vm_chr_def *dev,
                                const char *type)
{
    const char *const types[] = {
        "null",
        "vc",
        "pty",
        "dev",
        "file",
        "pipe",
        "stdio",
        "udp",
        "tcp",
        "unix"
    };
3734
    verify_true(ARRAY_CARDINALITY(types) == QEMUD_CHR_SRC_TYPE_LAST);
3735 3736 3737 3738 3739

    /* Compat with legacy  <console tty='/dev/pts/5'/> syntax */
    if (STREQ(type, "console") &&
        dev->srcType == QEMUD_CHR_SRC_TYPE_PTY &&
        dev->srcData.file.path[0] != '\0') {
3740 3741 3742
        virBufferVSprintf(buf, "    <%s type='%s' tty='%s'>\n",
                          type, types[dev->srcType],
                          dev->srcData.file.path);
3743
    } else {
3744 3745
        virBufferVSprintf(buf, "    <%s type='%s'>\n",
                          type, types[dev->srcType]);
3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760
    }

    switch (dev->srcType) {
    case QEMUD_CHR_SRC_TYPE_NULL:
    case QEMUD_CHR_SRC_TYPE_VC:
    case QEMUD_CHR_SRC_TYPE_STDIO:
        /* nada */
        break;

    case QEMUD_CHR_SRC_TYPE_PTY:
    case QEMUD_CHR_SRC_TYPE_DEV:
    case QEMUD_CHR_SRC_TYPE_FILE:
    case QEMUD_CHR_SRC_TYPE_PIPE:
        if (dev->srcType != QEMUD_CHR_SRC_TYPE_PTY ||
            dev->srcData.file.path[0]) {
3761 3762
            virBufferVSprintf(buf, "      <source path='%s'/>\n",
                              dev->srcData.file.path);
3763 3764 3765 3766 3767 3768
        }
        break;

    case QEMUD_CHR_SRC_TYPE_UDP:
        if (dev->srcData.udp.bindService[0] != '\0' &&
            dev->srcData.udp.bindHost[0] != '\0') {
3769 3770 3771
            virBufferVSprintf(buf, "      <source mode='bind' host='%s' service='%s'/>\n",
                              dev->srcData.udp.bindHost,
                              dev->srcData.udp.bindService);
3772
        } else if (dev->srcData.udp.bindHost[0] !='\0') {
3773 3774
            virBufferVSprintf(buf, "      <source mode='bind' host='%s'/>\n",
                              dev->srcData.udp.bindHost);
3775
        } else if (dev->srcData.udp.bindService[0] != '\0') {
3776 3777
            virBufferVSprintf(buf, "      <source mode='bind' service='%s'/>\n",
                              dev->srcData.udp.bindService);
3778 3779 3780 3781
        }

        if (dev->srcData.udp.connectService[0] != '\0' &&
            dev->srcData.udp.connectHost[0] != '\0') {
3782 3783 3784
            virBufferVSprintf(buf, "      <source mode='connect' host='%s' service='%s'/>\n",
                              dev->srcData.udp.connectHost,
                              dev->srcData.udp.connectService);
3785
        } else if (dev->srcData.udp.connectHost[0] != '\0') {
3786 3787
            virBufferVSprintf(buf, "      <source mode='connect' host='%s'/>\n",
                              dev->srcData.udp.connectHost);
3788
        } else if (dev->srcData.udp.connectService[0] != '\0') {
3789 3790
            virBufferVSprintf(buf, "      <source mode='connect' service='%s'/>\n",
                              dev->srcData.udp.connectService);
3791 3792 3793 3794
        }
        break;

    case QEMUD_CHR_SRC_TYPE_TCP:
3795 3796 3797 3798 3799 3800 3801
        virBufferVSprintf(buf, "      <source mode='%s' host='%s' service='%s'/>\n",
                          dev->srcData.tcp.listen ? "bind" : "connect",
                          dev->srcData.tcp.host,
                          dev->srcData.tcp.service);
        virBufferVSprintf(buf, "      <protocol type='%s'/>\n",
                          dev->srcData.tcp.protocol == QEMUD_CHR_SRC_TCP_PROTOCOL_TELNET
                          ? "telnet" : "raw");
3802 3803 3804
        break;

    case QEMUD_CHR_SRC_TYPE_UNIX:
3805 3806 3807
        virBufferVSprintf(buf, "      <source mode='%s' path='%s'/>\n",
                          dev->srcData.nix.listen ? "bind" : "connect",
                          dev->srcData.nix.path);
3808 3809 3810
        break;
    }

3811 3812
    virBufferVSprintf(buf, "      <target port='%d'/>\n",
                      dev->dstPort);
3813

3814 3815
    virBufferVSprintf(buf, "    </%s>\n",
                      type);
3816 3817 3818 3819 3820

    return 0;
}


D
Daniel P. Berrange 已提交
3821
/* Generate an XML document describing the guest's configuration */
3822 3823
char *qemudGenerateXML(virConnectPtr conn,
                       struct qemud_driver *driver ATTRIBUTE_UNUSED,
3824 3825 3826
                       struct qemud_vm *vm,
                       struct qemud_vm_def *def,
                       int live) {
3827
    virBuffer buf = VIR_BUFFER_INITIALIZER;
D
Daniel P. Berrange 已提交
3828
    unsigned char *uuid;
3829
    char uuidstr[VIR_UUID_STRING_BUFLEN];
3830 3831 3832
    const struct qemud_vm_disk_def *disk;
    const struct qemud_vm_net_def *net;
    const struct qemud_vm_input_def *input;
D
Daniel Veillard 已提交
3833
    const struct qemud_vm_sound_def *sound;
3834
    const struct qemud_vm_chr_def *chr;
D
Daniel P. Berrange 已提交
3835
    const char *type = NULL;
3836
    int n, allones = 1;
D
Daniel P. Berrange 已提交
3837

3838
    if (!(type = qemudVirtTypeToString(def->virtType))) {
3839 3840
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("unexpected domain type %d"), def->virtType);
D
Daniel P. Berrange 已提交
3841 3842 3843
        goto cleanup;
    }

3844 3845 3846 3847
    if (qemudIsActiveVM(vm) && live)
        virBufferVSprintf(&buf, "<domain type='%s' id='%d'>\n", type, vm->id);
    else
        virBufferVSprintf(&buf, "<domain type='%s'>\n", type);
D
Daniel P. Berrange 已提交
3848

3849
    virBufferVSprintf(&buf, "  <name>%s</name>\n", def->name);
D
Daniel P. Berrange 已提交
3850

3851
    uuid = def->uuid;
3852
    virUUIDFormat(uuid, uuidstr);
3853
    virBufferVSprintf(&buf, "  <uuid>%s</uuid>\n", uuidstr);
D
Daniel P. Berrange 已提交
3854

3855 3856
    virBufferVSprintf(&buf, "  <memory>%lu</memory>\n", def->maxmem);
    virBufferVSprintf(&buf, "  <currentMemory>%lu</currentMemory>\n", def->memory);
3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874

    for (n = 0 ; n < QEMUD_CPUMASK_LEN ; n++)
        if (def->cpumask[n] != 1)
            allones = 0;

    if (allones) {
        virBufferVSprintf(&buf, "  <vcpu>%d</vcpu>\n", def->vcpus);
    } else {
        char *cpumask = NULL;
        if ((cpumask = virSaveCpuSet(conn, def->cpumask, QEMUD_CPUMASK_LEN)) == NULL) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                             "%s", _("allocating cpu mask"));
            goto cleanup;
        }
        virBufferVSprintf(&buf, "  <vcpu cpuset='%s'>%d</vcpu>\n", cpumask, def->vcpus);
        free(cpumask);
    }

D
Daniel P. Berrange 已提交
3875 3876
    if (def->os.bootloader[0])
        virBufferVSprintf(&buf, "  <bootloader>%s</bootloader>\n", def->os.bootloader);
3877
    virBufferAddLit(&buf, "  <os>\n");
D
Daniel P. Berrange 已提交
3878

3879 3880 3881 3882 3883
    if (def->virtType == QEMUD_VIRT_QEMU)
        virBufferVSprintf(&buf, "    <type arch='%s' machine='%s'>%s</type>\n",
                          def->os.arch, def->os.machine, def->os.type);
    else
        virBufferVSprintf(&buf, "    <type>%s</type>\n", def->os.type);
D
Daniel P. Berrange 已提交
3884

D
Daniel P. Berrange 已提交
3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910
    if (!def->os.bootloader[0]) {
        if (def->os.kernel[0])
            virBufferVSprintf(&buf, "    <kernel>%s</kernel>\n", def->os.kernel);
        if (def->os.initrd[0])
            virBufferVSprintf(&buf, "    <initrd>%s</initrd>\n", def->os.initrd);
        if (def->os.cmdline[0])
            virBufferVSprintf(&buf, "    <cmdline>%s</cmdline>\n", def->os.cmdline);

        for (n = 0 ; n < def->os.nBootDevs ; n++) {
            const char *boottype = "hd";
            switch (def->os.bootDevs[n]) {
            case QEMUD_BOOT_FLOPPY:
                boottype = "fd";
                break;
            case QEMUD_BOOT_DISK:
                boottype = "hd";
                break;
            case QEMUD_BOOT_CDROM:
                boottype = "cdrom";
                break;
            case QEMUD_BOOT_NET:
                boottype = "network";
                break;
            }
            virBufferVSprintf(&buf, "    <boot dev='%s'/>\n", boottype);
        }
D
Daniel P. Berrange 已提交
3911 3912
    }

3913
    virBufferAddLit(&buf, "  </os>\n");
D
Daniel P. Berrange 已提交
3914

3915
    if (def->features & QEMUD_FEATURE_ACPI) {
3916 3917 3918
        virBufferAddLit(&buf, "  <features>\n");
        virBufferAddLit(&buf, "    <acpi/>\n");
        virBufferAddLit(&buf, "  </features>\n");
3919 3920
    }

3921
    virBufferVSprintf(&buf, "  <clock offset='%s'/>\n", def->localtime ? "localtime" : "utc");
3922

3923 3924 3925 3926 3927
    virBufferAddLit(&buf, "  <on_poweroff>destroy</on_poweroff>\n");
    if (def->noReboot)
        virBufferAddLit(&buf, "  <on_reboot>destroy</on_reboot>\n");
    else
        virBufferAddLit(&buf, "  <on_reboot>restart</on_reboot>\n");
3928

3929 3930
    virBufferAddLit(&buf, "  <on_crash>destroy</on_crash>\n");
    virBufferAddLit(&buf, "  <devices>\n");
D
Daniel P. Berrange 已提交
3931

3932
    virBufferVSprintf(&buf, "    <emulator>%s</emulator>\n", def->os.binary);
D
Daniel P. Berrange 已提交
3933

3934
    disk = def->disks;
D
Daniel P. Berrange 已提交
3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948
    while (disk) {
        const char *types[] = {
            "block",
            "file",
        };
        const char *typeAttrs[] = {
            "dev",
            "file",
        };
        const char *devices[] = {
            "disk",
            "cdrom",
            "floppy",
        };
3949 3950
        virBufferVSprintf(&buf, "    <disk type='%s' device='%s'>\n",
                          types[disk->type], devices[disk->device]);
D
Daniel P. Berrange 已提交
3951

3952
        if (disk->src[0])
3953 3954
            virBufferVSprintf(&buf, "      <source %s='%s'/>\n",
                              typeAttrs[disk->type], disk->src);
D
Daniel P. Berrange 已提交
3955

3956 3957
        virBufferVSprintf(&buf, "      <target dev='%s' bus='%s'/>\n",
                          disk->dst, qemudBusIdToName(disk->bus, 0));
D
Daniel P. Berrange 已提交
3958 3959

        if (disk->readonly)
3960
            virBufferAddLit(&buf, "      <readonly/>\n");
D
Daniel P. Berrange 已提交
3961

3962
        virBufferAddLit(&buf, "    </disk>\n");
D
Daniel P. Berrange 已提交
3963 3964 3965 3966

        disk = disk->next;
    }

3967
    net = def->nets;
3968
    while (net) {
D
Daniel P. Berrange 已提交
3969 3970
        const char *types[] = {
            "user",
3971
            "ethernet",
D
Daniel P. Berrange 已提交
3972 3973 3974
            "server",
            "client",
            "mcast",
3975
            "network",
3976
            "bridge",
D
Daniel P. Berrange 已提交
3977
        };
3978 3979
        virBufferVSprintf(&buf, "    <interface type='%s'>\n",
                          types[net->type]);
D
Daniel P. Berrange 已提交
3980

3981 3982 3983
        virBufferVSprintf(&buf, "      <mac address='%02x:%02x:%02x:%02x:%02x:%02x'/>\n",
                          net->mac[0], net->mac[1], net->mac[2],
                          net->mac[3], net->mac[4], net->mac[5]);
D
Daniel P. Berrange 已提交
3984

3985 3986
        switch (net->type) {
        case QEMUD_NET_NETWORK:
3987
            virBufferVSprintf(&buf, "      <source network='%s'/>\n", net->dst.network.name);
3988

3989 3990
            if (net->dst.network.ifname[0] != '\0')
                virBufferVSprintf(&buf, "      <target dev='%s'/>\n", net->dst.network.ifname);
3991
            break;
3992

3993
        case QEMUD_NET_ETHERNET:
3994 3995 3996 3997
            if (net->dst.ethernet.ifname[0] != '\0')
                virBufferVSprintf(&buf, "      <target dev='%s'/>\n", net->dst.ethernet.ifname);
            if (net->dst.ethernet.script[0] != '\0')
                virBufferVSprintf(&buf, "      <script path='%s'/>\n", net->dst.ethernet.script);
3998 3999 4000
            break;

        case QEMUD_NET_BRIDGE:
4001 4002 4003
            virBufferVSprintf(&buf, "      <source bridge='%s'/>\n", net->dst.bridge.brname);
            if (net->dst.bridge.ifname[0] != '\0')
                virBufferVSprintf(&buf, "      <target dev='%s'/>\n", net->dst.bridge.ifname);
4004 4005 4006 4007 4008
            break;

        case QEMUD_NET_SERVER:
        case QEMUD_NET_CLIENT:
        case QEMUD_NET_MCAST:
4009 4010 4011 4012 4013 4014
            if (net->dst.socket.address[0] != '\0')
                virBufferVSprintf(&buf, "      <source address='%s' port='%d'/>\n",
                                  net->dst.socket.address, net->dst.socket.port);
            else
                virBufferVSprintf(&buf, "      <source port='%d'/>\n",
                                  net->dst.socket.port);
4015 4016
        }

4017 4018 4019 4020 4021
        if (net->model && net->model[0] != '\0') {
            virBufferVSprintf(&buf, "      <model type='%s'/>\n",
                              net->model);
        }

4022
        virBufferAddLit(&buf, "    </interface>\n");
D
Daniel P. Berrange 已提交
4023

4024
        net = net->next;
D
Daniel P. Berrange 已提交
4025 4026
    }

4027 4028
    chr = def->serials;
    while (chr) {
4029
        if (qemudGenerateXMLChar(&buf, chr, "serial") < 0)
4030 4031 4032 4033 4034 4035 4036
            goto no_memory;

        chr = chr->next;
    }

    chr = def->parallels;
    while (chr) {
4037
        if (qemudGenerateXMLChar(&buf, chr, "parallel") < 0)
4038 4039 4040 4041 4042 4043 4044
            goto no_memory;

        chr = chr->next;
    }

    /* First serial device is the primary console */
    if (def->nserials > 0 &&
4045
        qemudGenerateXMLChar(&buf, def->serials, "console") < 0)
4046 4047
        goto no_memory;

4048 4049
    input = def->inputs;
    while (input) {
4050
        if (input->bus == QEMU_INPUT_BUS_USB)
4051 4052
            virBufferVSprintf(&buf, "    <input type='%s' bus='usb'/>\n",
                              input->type == QEMU_INPUT_TYPE_MOUSE ? "mouse" : "tablet");
4053 4054 4055 4056
        input = input->next;
    }
    /* If graphics is enable, add implicit mouse */
    if (def->graphicsType != QEMUD_GRAPHICS_NONE)
4057 4058
        virBufferVSprintf(&buf, "    <input type='mouse' bus='%s'/>\n",
                          STREQ(def->os.type, "hvm") ? "ps2" : "xen");
4059

4060 4061
    switch (def->graphicsType) {
    case QEMUD_GRAPHICS_VNC:
4062
        virBufferAddLit(&buf, "    <graphics type='vnc'");
4063

4064 4065 4066
        if (def->vncPort)
            virBufferVSprintf(&buf, " port='%d'",
                              qemudIsActiveVM(vm) && live ? def->vncActivePort : def->vncPort);
4067

4068 4069 4070
        if (def->vncListen[0])
            virBufferVSprintf(&buf, " listen='%s'",
                              def->vncListen);
4071

4072 4073 4074
        if (def->keymap)
            virBufferVSprintf(&buf, " keymap='%s'",
                              def->keymap);
4075

4076
        virBufferAddLit(&buf, "/>\n");
4077 4078 4079
        break;

    case QEMUD_GRAPHICS_SDL:
4080
        virBufferAddLit(&buf, "    <graphics type='sdl'/>\n");
4081 4082 4083 4084 4085 4086 4087
        break;

    case QEMUD_GRAPHICS_NONE:
    default:
        break;
    }

D
Daniel Veillard 已提交
4088 4089 4090 4091 4092
    sound = def->sounds;
    while(sound) {
        const char *model = qemudSoundModelToString(sound->model);
        if (!model) {
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
4093
                             "%s", _("invalid sound model"));
D
Daniel Veillard 已提交
4094 4095 4096 4097 4098 4099
            goto cleanup;
        }
        virBufferVSprintf(&buf, "    <sound model='%s'/>\n", model);
        sound = sound->next;
    }

4100 4101
    virBufferAddLit(&buf, "  </devices>\n");
    virBufferAddLit(&buf, "</domain>\n");
D
Daniel P. Berrange 已提交
4102

4103
    if (virBufferError(&buf))
D
Daniel P. Berrange 已提交
4104 4105
        goto no_memory;

4106
    return virBufferContentAndReset(&buf);
D
Daniel P. Berrange 已提交
4107 4108

 no_memory:
4109 4110
    qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                     "%s", _("failed to generate XML: out of memory"));
D
Daniel P. Berrange 已提交
4111
 cleanup:
4112
    free(virBufferContentAndReset(&buf));
D
Daniel P. Berrange 已提交
4113 4114 4115 4116
    return NULL;
}


4117 4118
char *qemudGenerateNetworkXML(virConnectPtr conn,
                              struct qemud_driver *driver ATTRIBUTE_UNUSED,
4119
                              struct qemud_network *network,
4120
                              struct qemud_network_def *def) {
4121
    virBuffer buf = VIR_BUFFER_INITIALIZER;
4122
    unsigned char *uuid;
4123
    char uuidstr[VIR_UUID_STRING_BUFLEN];
4124

4125
    virBufferAddLit(&buf, "<network>\n");
4126

4127
    virBufferVSprintf(&buf, "  <name>%s</name>\n", def->name);
4128

4129
    uuid = def->uuid;
4130
    virUUIDFormat(uuid, uuidstr);
4131
    virBufferVSprintf(&buf, "  <uuid>%s</uuid>\n", uuidstr);
4132

4133 4134
    if (def->forward) {
        if (def->forwardDev[0]) {
4135
            virBufferVSprintf(&buf, "  <forward dev='%s' mode='%s'/>\n",
4136
                              def->forwardDev, (def->forwardMode == QEMUD_NET_FORWARD_ROUTE ? "route" : "nat"));
4137
        } else {
4138
            virBufferVSprintf(&buf, "  <forward mode='%s'/>\n", (def->forwardMode == QEMUD_NET_FORWARD_ROUTE ? "route" : "nat"));
4139 4140 4141
        }
    }

4142
    virBufferAddLit(&buf, "  <bridge");
4143
    if (qemudIsActiveNetwork(network)) {
4144
        virBufferVSprintf(&buf, " name='%s'", network->bridge);
4145
    } else if (def->bridge[0]) {
4146
        virBufferVSprintf(&buf, " name='%s'", def->bridge);
4147
    }
4148 4149 4150
    virBufferVSprintf(&buf, " stp='%s' forwardDelay='%d' />\n",
                      def->disableSTP ? "off" : "on",
                      def->forwardDelay);
4151

4152
    if (def->ipAddress[0] || def->netmask[0]) {
4153
        virBufferAddLit(&buf, "  <ip");
4154

4155 4156
        if (def->ipAddress[0])
            virBufferVSprintf(&buf, " address='%s'", def->ipAddress);
4157

4158 4159
        if (def->netmask[0])
            virBufferVSprintf(&buf, " netmask='%s'", def->netmask);
4160

4161
        virBufferAddLit(&buf, ">\n");
4162

4163 4164
        if (def->ranges) {
            struct qemud_dhcp_range_def *range = def->ranges;
4165
            virBufferAddLit(&buf, "    <dhcp>\n");
4166
            while (range) {
4167 4168
                virBufferVSprintf(&buf, "      <range start='%s' end='%s' />\n",
                                  range->start, range->end);
4169 4170
                range = range->next;
            }
4171
            virBufferAddLit(&buf, "    </dhcp>\n");
4172 4173
        }

4174
        virBufferAddLit(&buf, "  </ip>\n");
D
Daniel P. Berrange 已提交
4175 4176
    }

4177 4178 4179
    virBufferAddLit(&buf, "</network>\n");

    if (virBufferError(&buf))
4180 4181
        goto no_memory;

4182
    return virBufferContentAndReset(&buf);
4183 4184

 no_memory:
4185 4186
    qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                     "%s", _("failed to generate XML: out of memory"));
4187
    free(virBufferContentAndReset(&buf));
4188 4189 4190 4191
    return NULL;
}


4192 4193
int qemudDeleteConfig(virConnectPtr conn,
                      struct qemud_driver *driver ATTRIBUTE_UNUSED,
4194 4195 4196
                      const char *configFile,
                      const char *name) {
    if (!configFile[0]) {
4197 4198
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("no config file for %s"), name);
D
Daniel P. Berrange 已提交
4199 4200 4201
        return -1;
    }

4202
    if (unlink(configFile) < 0) {
4203 4204
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("cannot remove config for %s"), name);
4205 4206
        return -1;
    }
4207

D
Daniel P. Berrange 已提交
4208 4209 4210
    return 0;
}

4211
#endif /* WITH_QEMU */