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 "internal.h"
50
#include "qemu_conf.h"
51
#include "uuid.h"
52
#include "buf.h"
D
Daniel P. Berrange 已提交
53
#include "conf.h"
54
#include "util.h"
55
#include "memory.h"
J
Jim Meyering 已提交
56 57
#include "verify.h"
#include "c-ctype.h"
58
#include "xml.h"
59

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

62 63 64 65 66 67
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 已提交
68
    const char *virerr;
69 70 71 72 73 74 75 76

    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 已提交
77

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

D
Daniel P. Berrange 已提交
83 84 85 86 87 88 89 90 91
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,
92
                         "%s", _("failed to allocate vncTLSx509certdir"));
D
Daniel P. Berrange 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
        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,
127
                             "%s", _("failed to allocate vncTLSx509certdir"));
D
Daniel P. Berrange 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
            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;
}


145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
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) {
162
        if (!memcmp(vm->def->uuid, uuid, VIR_UUID_BUFLEN))
163 164 165 166 167 168 169 170 171 172 173 174
            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) {
175
        if (STREQ(vm->def->name, name))
176 177 178 179 180 181 182 183 184 185 186 187
            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) {
188
        if (!memcmp(network->def->uuid, uuid, VIR_UUID_BUFLEN))
189 190 191 192 193 194 195 196 197 198 199 200
            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) {
201
        if (STREQ(network->def->name, name))
202 203 204 205 206 207 208
            return network;
        network = network->next;
    }

    return NULL;
}

209

210 211 212 213
/* 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 已提交
214
    struct qemud_vm_input_def *input = def->inputs;
215 216
    struct qemud_vm_chr_def *serial = def->serials;
    struct qemud_vm_chr_def *parallel = def->parallels;
217 218 219 220 221 222 223 224 225 226 227

    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 已提交
228 229 230 231 232
    while (input) {
        struct qemud_vm_input_def *prev = input;
        input = input->next;
        free(prev);
    }
233 234 235 236 237 238 239 240 241 242
    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);
    }
243
    xmlFree(def->keymap);
244
    free(def);
245 246 247 248 249 250 251 252
}

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

254

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

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

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

D
Daniel P. Berrange 已提交
303
/* The archicture tables for supported QEMU archs */
304 305 306 307 308 309 310 311 312 313 314 315 316
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 已提交
317 318
};

319 320 321 322 323 324
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 已提交
325

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

334 335 336 337 338 339 340 341 342
    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 已提交
343

344 345 346 347 348 349 350 351 352 353
    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 已提交
354

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
        /* 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 已提交
384

385 386 387 388 389 390 391
    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 已提交
392 393 394
        }
    }

395
    return 0;
D
Daniel P. Berrange 已提交
396 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
#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

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

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

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

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

472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
    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 已提交
490 491
    }

492 493 494 495 496
    return caps;

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

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

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 */
518 519 520
        /* Just in case QEMU is translated someday we force to C locale.. */
        const char *const qemuenv[] = { "LANG=C", NULL };

521 522 523 524 525 526 527 528 529
        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;

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

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

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

D
Daniel P. Berrange 已提交
544 545 546 547 548 549 550 551 552 553
        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;
554 555 556 557 558 559 560 561 562 563
        }
        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 已提交
564 565
        if (strstr(help, "-no-reboot"))
            *flags |= QEMUD_CMD_FLAG_NO_REBOOT;
566 567 568 569
        if (strstr(help, "-name"))
            *flags |= QEMUD_CMD_FLAG_NAME;
        if (strstr(help, "-drive"))
            *flags |= QEMUD_CMD_FLAG_DRIVE;
570
        if (strstr(help, "boot=on"))
571
            *flags |= QEMUD_CMD_FLAG_DRIVE_BOOT;
572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
        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;
            }
588 589 590
            qemudLog(QEMUD_ERR,
                     _("Unexpected exit status from qemu %d pid %lu"),
                     got, (unsigned long)child);
591 592 593 594 595
            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 */
596
        if (WEXITSTATUS(got) != 0) {
597 598 599
            qemudLog(QEMUD_WARN,
                     _("Unexpected exit status '%d', qemu probably failed"),
                     got);
600 601 602 603 604 605
        }

        return ret;
    }
}

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

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

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

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

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

    return 0;
}

635 636 637 638 639 640 641 642 643 644 645 646 647 648 649
/* 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;
}
650

D
Daniel P. Berrange 已提交
651 652 653 654 655 656 657 658
/* 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 已提交
659 660 661 662 663
    xmlNodePtr cur;
    xmlChar *device = NULL;
    xmlChar *source = NULL;
    xmlChar *target = NULL;
    xmlChar *type = NULL;
664
    xmlChar *bus = NULL;
D
Daniel P. Berrange 已提交
665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
    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");
681

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

D
Daniel P. Berrange 已提交
688 689 690 691 692 693 694
                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");
695
                bus = xmlGetProp(cur, BAD_CAST "bus");
D
Daniel P. Berrange 已提交
696 697 698 699 700 701 702 703
            } else if (xmlStrEqual(cur->name, BAD_CAST "readonly")) {
                disk->readonly = 1;
            }
        }
        cur = cur->next;
    }

    if (source == NULL) {
704 705 706 707 708 709 710 711
        /* 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 已提交
712
    }
713

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

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

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

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

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

750
    strncpy(disk->src, (source ? (const char *) source : "\0"), NAME_MAX-1);
D
Daniel P. Berrange 已提交
751 752 753 754 755 756 757 758
    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;
759
    else if (STREQ((const char *)device, "disk"))
D
Daniel P. Berrange 已提交
760
        disk->device = QEMUD_DISK_DISK;
761
    else if (STREQ((const char *)device, "cdrom"))
D
Daniel P. Berrange 已提交
762
        disk->device = QEMUD_DISK_CDROM;
763
    else if (STREQ((const char *)device, "floppy"))
D
Daniel P. Berrange 已提交
764 765
        disk->device = QEMUD_DISK_FLOPPY;
    else {
766 767
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         _("Invalid device type: %s"), device);
D
Daniel P. Berrange 已提交
768 769 770
        goto error;
    }

771
    if (!bus) {
772
        if (disk->device == QEMUD_DISK_FLOPPY) {
773
            disk->bus = QEMUD_DISK_BUS_FDC;
774 775 776 777 778 779 780 781 782 783 784 785
        } 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;
        }
786 787 788 789 790 791 792 793
    } 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;
794 795
    else if (STREQ((const char *)bus, "xen"))
        disk->bus = QEMUD_DISK_BUS_XEN;
796 797 798 799 800 801 802 803 804 805 806 807 808
    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 已提交
809 810 811
    xmlFree(device);
    xmlFree(target);
    xmlFree(source);
812
    xmlFree(bus);
D
Daniel P. Berrange 已提交
813

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

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

825 826 827 828 829 830 831 832 833
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 已提交
834

D
Daniel P. Berrange 已提交
835 836 837 838 839 840 841 842
/* 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 已提交
843 844 845
    xmlNodePtr cur;
    xmlChar *macaddr = NULL;
    xmlChar *type = NULL;
846
    xmlChar *network = NULL;
847 848 849 850 851
    xmlChar *bridge = NULL;
    xmlChar *ifname = NULL;
    xmlChar *script = NULL;
    xmlChar *address = NULL;
    xmlChar *port = NULL;
852
    xmlChar *model = NULL;
D
Daniel P. Berrange 已提交
853 854 855 856 857 858 859

    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;
860 861
        else if (xmlStrEqual(type, BAD_CAST "ethernet"))
            net->type = QEMUD_NET_ETHERNET;
D
Daniel P. Berrange 已提交
862 863 864 865 866 867
        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;
868 869
        else if (xmlStrEqual(type, BAD_CAST "network"))
            net->type = QEMUD_NET_NETWORK;
870 871
        else if (xmlStrEqual(type, BAD_CAST "bridge"))
            net->type = QEMUD_NET_BRIDGE;
D
Daniel P. Berrange 已提交
872 873 874 875 876 877 878 879 880 881 882 883
        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");
884 885 886 887
            } else if ((network == NULL) &&
                       (net->type == QEMUD_NET_NETWORK) &&
                       (xmlStrEqual(cur->name, BAD_CAST "source"))) {
                network = xmlGetProp(cur, BAD_CAST "network");
888 889 890
            } else if ((network == NULL) &&
                       (net->type == QEMUD_NET_BRIDGE) &&
                       (xmlStrEqual(cur->name, BAD_CAST "source"))) {
891
                bridge = xmlGetProp(cur, BAD_CAST "bridge");
892 893 894 895 896 897 898 899 900 901 902 903 904
            } 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");
905
                if (STRPREFIX((const char*)ifname, "vnet")) {
906 907 908 909
                    /* An auto-generated target name, blank it out */
                    xmlFree(ifname);
                    ifname = NULL;
                }
910 911 912 913
            } else if ((script == NULL) &&
                       (net->type == QEMUD_NET_ETHERNET) &&
                       xmlStrEqual(cur->name, BAD_CAST "script")) {
                script = xmlGetProp(cur, BAD_CAST "path");
914 915
            } else if (xmlStrEqual (cur->name, BAD_CAST "model")) {
                model = xmlGetProp (cur, BAD_CAST "type");
D
Daniel P. Berrange 已提交
916 917 918 919 920 921
            }
        }
        cur = cur->next;
    }

    if (macaddr) {
922
        unsigned int mac[6];
D
Daniel P. Berrange 已提交
923
        sscanf((const char *)macaddr, "%02x:%02x:%02x:%02x:%02x:%02x",
924 925 926 927 928 929 930 931 932 933 934 935
               (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 已提交
936 937

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

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

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

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

        if (ifname != NULL) {
            if ((len = xmlStrlen(ifname)) >= (BR_IFNAME_MAXLEN-1)) {
966
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
967 968
                                 _("TAP interface name '%s' is too long"),
                                 ifname);
969 970 971 972 973 974 975 976 977 978
                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;
979

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

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

        xmlFree(bridge);
        bridge = NULL;

        if (ifname != NULL) {
            if ((len = xmlStrlen(ifname)) >= (BR_IFNAME_MAXLEN-1)) {
1025
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1026
                                 _("TAP interface name '%s' is too long"), ifname);
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
                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) {
1037
        int len = 0;
1038 1039 1040
        char *ret;

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

        if (address == NULL) {
            if (net->type == QEMUD_NET_CLIENT ||
                net->type == QEMUD_NET_MCAST) {
1057
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1058
                                 "%s", _("No <source> 'address' attribute specified with socket interface"));
1059 1060 1061
                goto error;
            }
        } else if ((len = xmlStrlen(address)) >= (BR_INET_ADDR_MAXLEN)) {
1062
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1063
                             _("IP address '%s' is too long"), address);
1064 1065 1066 1067 1068 1069 1070 1071 1072
            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);
1073 1074
    }

1075 1076 1077 1078 1079 1080
    /* 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 已提交
1081
        int i, len;
1082 1083 1084 1085 1086 1087 1088 1089

        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 已提交
1090
            int char_ok = c_isalnum(model[i]) || model[i] == '_';
1091
            if (!char_ok) {
1092
                qemudReportError (conn, NULL, NULL, VIR_ERR_INVALID_ARG, "%s",
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
                                  _("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 已提交
1105
    return 0;
1106 1107

 error:
1108 1109 1110 1111 1112 1113
    xmlFree(network);
    xmlFree(address);
    xmlFree(port);
    xmlFree(ifname);
    xmlFree(script);
    xmlFree(bridge);
1114
    xmlFree(model);
D
Daniel P. Berrange 已提交
1115
    return -1;
D
Daniel P. Berrange 已提交
1116 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
/* 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;
}


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

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

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

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

    if (bus) {
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486
        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 {
1487
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1488
                                 _("unsupported input bus %s"), (const char*)bus);
1489 1490 1491
                goto error;
            }
        } else {
1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504
            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;
            }
1505 1506
        }
    } else {
D
Daniel P. Berrange 已提交
1507
        if (STREQ(vm->os.type, "hvm")) {
1508 1509 1510 1511 1512 1513 1514
            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;
        }
1515 1516
    }

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

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

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

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

1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541
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",
1542 1543
                               "virtio",
                               "xen"};
1544 1545 1546 1547 1548
    verify_true(ARRAY_CARDINALITY(busnames) == QEMUD_DISK_BUS_LAST);

    return busnames[busId];
}

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

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

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

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


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

1645
    if (STREQ((char *)prop, "qemu"))
1646
        def->virtType = QEMUD_VIRT_QEMU;
1647
    else if (STREQ((char *)prop, "kqemu"))
1648
        def->virtType = QEMUD_VIRT_KQEMU;
1649
    else if (STREQ((char *)prop, "kvm"))
1650
        def->virtType = QEMUD_VIRT_KVM;
D
Daniel P. Berrange 已提交
1651
    else {
1652 1653
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("invalid domain type attribute"));
D
Daniel P. Berrange 已提交
1654 1655 1656 1657 1658 1659 1660 1661 1662 1663
        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)) {
1664
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_NAME, NULL);
D
Daniel P. Berrange 已提交
1665 1666 1667
        goto error;
    }
    if (strlen((const char *)obj->stringval) >= (QEMUD_MAX_NAME_LEN-1)) {
1668 1669
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("domain name length too long"));
D
Daniel P. Berrange 已提交
1670 1671
        goto error;
    }
1672
    strcpy(def->name, (const char *)obj->stringval);
D
Daniel P. Berrange 已提交
1673 1674 1675 1676 1677 1678 1679
    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)) {
1680
        int err;
D
Daniel P. Berrange 已提交
1681
        if ((err = virUUIDGenerate(def->uuid))) {
1682
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
1683
                             _("Failed to generate UUID: %s"), strerror(err));
1684 1685
            goto error;
        }
D
Daniel P. Berrange 已提交
1686
    } else if (virUUIDParse((const char *)obj->stringval, def->uuid) < 0) {
1687 1688
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("malformed uuid element"));
D
Daniel P. Berrange 已提交
1689 1690 1691 1692 1693 1694 1695 1696 1697
        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)) {
1698 1699
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("missing memory element"));
D
Daniel P. Berrange 已提交
1700 1701 1702
        goto error;
    } else {
        conv = NULL;
1703
        def->maxmem = strtoll((const char*)obj->stringval, &conv, 10);
D
Daniel P. Berrange 已提交
1704
        if (conv == (const char*)obj->stringval) {
1705 1706
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("malformed memory information"));
D
Daniel P. Berrange 已提交
1707 1708 1709
            goto error;
        }
    }
1710
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1711 1712 1713 1714 1715 1716


    /* 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)) {
1717
        def->memory = def->maxmem;
D
Daniel P. Berrange 已提交
1718 1719
    } else {
        conv = NULL;
1720 1721 1722
        def->memory = strtoll((const char*)obj->stringval, &conv, 10);
        if (def->memory > def->maxmem)
            def->memory = def->maxmem;
D
Daniel P. Berrange 已提交
1723
        if (conv == (const char*)obj->stringval) {
1724 1725
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("malformed memory information"));
D
Daniel P. Berrange 已提交
1726 1727 1728
            goto error;
        }
    }
1729
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1730 1731 1732 1733 1734

    /* 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)) {
1735
        def->vcpus = 1;
D
Daniel P. Berrange 已提交
1736 1737
    } else {
        conv = NULL;
1738
        def->vcpus = strtoll((const char*)obj->stringval, &conv, 10);
D
Daniel P. Berrange 已提交
1739
        if (conv == (const char*)obj->stringval) {
1740 1741
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("malformed vcpu information"));
D
Daniel P. Berrange 已提交
1742 1743 1744
            goto error;
        }
    }
1745
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1746

1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765
    /* 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 已提交
1766 1767 1768 1769
    /* 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)) {
1770
        def->features |= QEMUD_FEATURE_ACPI;
D
Daniel P. Berrange 已提交
1771
    }
1772
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1773

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

    /* 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 {
1781
        if (STREQ((char*)obj->stringval, "destroy"))
D
Daniel P. Berrange 已提交
1782 1783 1784 1785
            def->noReboot = 1;
        else
            def->noReboot = 0;
    }
1786
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1787

1788 1789 1790 1791 1792 1793
    /* 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 {
1794
        if (STREQ((char*)obj->stringval, "localtime"))
1795 1796 1797 1798
            def->localtime = 1;
        else
            def->localtime = 0;
    }
1799
    xmlXPathFreeObject(obj);
1800

D
Daniel P. Berrange 已提交
1801

D
Daniel P. Berrange 已提交
1802 1803 1804 1805 1806 1807 1808 1809 1810 1811
    /* 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 已提交
1812
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1813

D
Daniel P. Berrange 已提交
1814 1815 1816 1817
    /* 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 已提交
1818 1819 1820 1821 1822 1823 1824
        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 已提交
1825
    }
J
Jim Meyering 已提交
1826 1827
    xmlXPathFreeObject(obj);
    obj = NULL;
D
Daniel P. Berrange 已提交
1828 1829

    if (!virCapabilitiesSupportsGuestOSType(driver->caps, def->os.type)) {
1830
        qemudReportError(conn, NULL, NULL, VIR_ERR_OS_TYPE,
D
Daniel P. Berrange 已提交
1831
                         "%s", def->os.type);
D
Daniel P. Berrange 已提交
1832 1833 1834 1835 1836 1837
        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)) {
1838 1839
        const char *defaultArch = virCapabilitiesDefaultGuestArch(driver->caps, def->os.type);
        if (defaultArch == NULL) {
1840 1841
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("unsupported architecture"));
1842 1843
            goto error;
        }
D
Daniel P. Berrange 已提交
1844
        if (strlen(defaultArch) >= (QEMUD_OS_TYPE_MAX_LEN-1)) {
1845 1846
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("architecture type too long"));
D
Daniel P. Berrange 已提交
1847 1848
            goto error;
        }
1849
        strcpy(def->os.arch, defaultArch);
D
Daniel P. Berrange 已提交
1850 1851
    } else {
        if (strlen((const char *)obj->stringval) >= (QEMUD_OS_TYPE_MAX_LEN-1)) {
1852 1853
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                             "%s", _("architecture type too long"));
D
Daniel P. Berrange 已提交
1854 1855
            goto error;
        }
1856
        strcpy(def->os.arch, (const char *)obj->stringval);
D
Daniel P. Berrange 已提交
1857
    }
1858
    xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1859 1860 1861 1862

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


D
Daniel P. Berrange 已提交
1888 1889 1890 1891 1892 1893 1894 1895 1896 1897
    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 已提交
1898
        }
D
Daniel P. Berrange 已提交
1899
        xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1900 1901


D
Daniel P. Berrange 已提交
1902 1903 1904 1905 1906 1907 1908 1909 1910
        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 已提交
1911
        }
D
Daniel P. Berrange 已提交
1912
        xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1913 1914


D
Daniel P. Berrange 已提交
1915 1916 1917 1918 1919 1920 1921 1922 1923
        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 已提交
1924
        }
D
Daniel P. Berrange 已提交
1925
        xmlXPathFreeObject(obj);
D
Daniel P. Berrange 已提交
1926 1927


D
Daniel P. Berrange 已提交
1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949
        /* 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 已提交
1950 1951
            }
        }
D
Daniel P. Berrange 已提交
1952 1953 1954 1955 1956
        xmlXPathFreeObject(obj);
        if (def->os.nBootDevs == 0) {
            def->os.nBootDevs = 1;
            def->os.bootDevs[0] = QEMUD_BOOT_DISK;
        }
D
Daniel P. Berrange 已提交
1957 1958 1959 1960 1961
    }

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

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

    /* 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++) {
2029
            struct qemud_vm_disk_def *disk = calloc(1, sizeof(*disk));
D
Daniel P. Berrange 已提交
2030
            if (!disk) {
2031 2032
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                           "%s", _("failed to allocate space for disk string"));
D
Daniel P. Berrange 已提交
2033 2034 2035 2036
                goto error;
            }
            if (qemudParseDiskXML(conn, disk, obj->nodesetval->nodeTab[i]) < 0) {
                free(disk);
D
Daniel P. Berrange 已提交
2037 2038
                goto error;
            }
2039
            def->ndisks++;
2040
            if (i == 0) {
2041
                disk->next = NULL;
2042 2043
                def->disks = disk;
            } else {
2044 2045 2046 2047 2048 2049 2050 2051 2052
                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;
                }
2053
            }
D
Daniel P. Berrange 已提交
2054 2055 2056
        }
    }
    xmlXPathFreeObject(obj);
2057 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
    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 已提交
2096 2097 2098 2099 2100 2101


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

    /* 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++) {
2132
            struct qemud_vm_input_def *input = calloc(1, sizeof(*input));
D
Daniel P. Berrange 已提交
2133
            if (!input) {
2134 2135
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for input string"));
D
Daniel P. Berrange 已提交
2136 2137
                goto error;
            }
2138
            if (qemudParseInputXML(conn, def, input, obj->nodesetval->nodeTab[i]) < 0) {
D
Daniel P. Berrange 已提交
2139
                free(input);
2140 2141 2142 2143 2144 2145 2146 2147 2148 2149
                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;
2150
            if (def->inputs == NULL) {
2151 2152 2153 2154 2155 2156 2157 2158
                def->inputs = input;
            } else {
                prev->next = input;
            }
            prev = input;
        }
    }
    xmlXPathFreeObject(obj);
D
Daniel Veillard 已提交
2159 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

    /* 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);
2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216
    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) {
2217
            input = calloc(1, sizeof(*input));
2218
            if (!input) {
2219 2220
                qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for input string"));
2221 2222 2223 2224 2225 2226 2227 2228 2229 2230
                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 已提交
2231 2232
    xmlXPathFreeContext(ctxt);

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

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


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

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

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

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

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

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

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

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

    return retval;

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

2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405
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 已提交
2406 2407 2408 2409
/*
 * Constructs a argv suitable for launching qemu with config defined
 * for a given virtual machine.
 */
2410 2411
int qemudBuildCommandLine(virConnectPtr conn,
                          struct qemud_driver *driver,
D
Daniel P. Berrange 已提交
2412
                          struct qemud_vm *vm,
2413 2414
                          char ***retargv) {
    int i;
D
Daniel P. Berrange 已提交
2415 2416 2417
    char memory[50];
    char vcpus[50];
    char boot[QEMUD_MAX_BOOT_DEVS+1];
2418 2419
    struct qemud_vm_disk_def *disk = vm->def->disks;
    struct qemud_vm_net_def *net = vm->def->nets;
2420
    struct qemud_vm_input_def *input = vm->def->inputs;
D
Daniel Veillard 已提交
2421
    struct qemud_vm_sound_def *sound = vm->def->sounds;
2422 2423
    struct qemud_vm_chr_def *serial = vm->def->serials;
    struct qemud_vm_chr_def *parallel = vm->def->parallels;
2424 2425
    struct utsname ut;
    int disableKQEMU = 0;
2426 2427
    int qargc = 0, qarga = 0;
    char **qargv = NULL;
D
Daniel P. Berrange 已提交
2428

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

2436 2437
    uname(&ut);

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

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

2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475
#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 已提交
2476

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

2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490

    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 已提交
2491

2492
    if (vm->qemuCmdFlags & QEMUD_CMD_FLAG_NAME) {
2493 2494
        ADD_ARG_LIT("-name");
        ADD_ARG_LIT(vm->def->name);
2495
    }
2496 2497 2498 2499 2500 2501 2502
    /*
     * 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...
     */
2503 2504
    if (vm->def->graphicsType == QEMUD_GRAPHICS_NONE)
        ADD_ARG_LIT("-nographic");
2505

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

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

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

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

D
Daniel P. Berrange 已提交
2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539
    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';
2540 2541
        ADD_ARG_LIT("-boot");
        ADD_ARG_LIT(boot);
D
Daniel P. Berrange 已提交
2542 2543

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

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

        /* If QEMU supports boot=on for -drive param... */
2565
        if (vm->qemuCmdFlags & QEMUD_CMD_FLAG_DRIVE_BOOT) {
2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577
            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;
                }
2578
            }
2579
        }
D
Daniel P. Berrange 已提交
2580

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

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
            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" : "");

2617 2618
            ADD_ARG_LIT("-drive");
            ADD_ARG_LIT(opt);
2619 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
            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);

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

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

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

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

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

2675 2676 2677
            switch (net->type) {
            case QEMUD_NET_NETWORK:
            case QEMUD_NET_BRIDGE:
2678
                ADD_ARG(qemudNetworkIfaceConnect(conn, driver, vm, net, vlan));
2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689
                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;

2690
                    ADD_ARG_LIT(arg);
2691 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
                }
                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;

2718
                    ADD_ARG_LIT(arg);
2719 2720 2721 2722 2723 2724 2725 2726 2727 2728
                }
                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;

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

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

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

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

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

            serial = serial->next;
        }
    }

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

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

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

            parallel = parallel->next;
        }
    }

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

        input = input->next;
    }

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

        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",
2800
                           vm->def->vncListen,
D
Daniel P. Berrange 已提交
2801 2802 2803
                           vm->def->vncActivePort - 5900,
                           options);
        } else {
2804 2805
            ret = snprintf(vncdisplay, sizeof(vncdisplay), "%d",
                           vm->def->vncActivePort - 5900);
D
Daniel P. Berrange 已提交
2806
        }
2807
        if (ret < 0 || ret >= (int)sizeof(vncdisplay))
2808 2809
            goto error;

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

D
Daniel Veillard 已提交
2822 2823 2824 2825 2826 2827 2828 2829 2830 2831
    /* 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) {
2832
                free(modstr);
2833 2834 2835
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                                 "%s", _("invalid sound model"));
                goto error;
D
Daniel Veillard 已提交
2836 2837 2838 2839 2840 2841 2842
            }
            strncat(modstr, model, size);
            size -= strlen(model);
            sound = sound->next;
            if (sound)
               strncat(modstr, ",", size--);
        }
2843 2844
        ADD_ARG_LIT("-soundhw");
        ADD_ARG(modstr);
D
Daniel Veillard 已提交
2845 2846
    }

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

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

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

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

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


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

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

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

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

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

    ret = 0;

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

    free(xml);

    return ret;
}

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

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

    xmlFreeDoc(xml);

    return dev;

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

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

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

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

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

2997 2998 2999 3000
    return def;
}

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

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

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

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

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

    return vm;
}

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

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

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

3062
        driver->ninactivevms--;
3063 3064
    }

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

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

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

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

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

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

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

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

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

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

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

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

    ret = 0;

 cleanup:

    free(xml);

    return ret;
}

3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170
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);
}
3171

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

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

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

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

    return 1;
}

3204 3205
static int qemudParseDhcpRangesXML(virConnectPtr conn,
                                   struct qemud_driver *driver ATTRIBUTE_UNUSED,
3206
                                   struct qemud_network_def *def,
3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221
                                   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;
        }

3222
        if (!(range = calloc(1, sizeof(*range)))) {
3223 3224
            qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
                         "%s", _("failed to allocate space for range string"));
3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237
            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';

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

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

        cur = cur->next;
    }

    return 1;
}
3253

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

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

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

3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291
    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);
    }

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

3301 3302 3303 3304
    return 1;
}


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

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

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

    ctxt = xmlXPathNewContext(xml);
    if (ctxt == NULL) {
3329 3330
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_MEMORY,
               "%s", _("failed to allocate space for xmlXPathContext string"));
3331 3332 3333 3334 3335 3336 3337 3338
        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)) {
3339
        qemudReportError(conn, NULL, NULL, VIR_ERR_NO_NAME, NULL);
3340 3341 3342
        goto error;
    }
    if (strlen((const char *)obj->stringval) >= (QEMUD_MAX_NAME_LEN-1)) {
3343 3344
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("network name length too long"));
3345 3346
        goto error;
    }
3347
    strcpy(def->name, (const char *)obj->stringval);
3348 3349 3350 3351 3352 3353 3354
    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)) {
3355
        int err;
D
Daniel P. Berrange 已提交
3356
        if ((err = virUUIDGenerate(def->uuid))) {
3357
            qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3358
                             _("Failed to generate UUID: %s"), strerror(err));
3359 3360
            goto error;
        }
D
Daniel P. Berrange 已提交
3361
    } else if (virUUIDParse((const char *)obj->stringval, def->uuid) < 0) {
3362 3363
        qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
                         "%s", _("malformed uuid element"));
3364 3365 3366 3367
        goto error;
    }
    xmlXPathFreeObject(obj);

3368 3369 3370 3371
    /* 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)) {
3372
        if (!qemudParseBridgeXML(driver, def, obj->nodesetval->nodeTab[0])) {
3373 3374 3375 3376 3377 3378 3379 3380 3381
            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)) {
3382
        if (!qemudParseInetXML(conn, driver, def, obj->nodesetval->nodeTab[0])) {
3383 3384 3385 3386 3387 3388
            goto error;
        }
    }
    xmlXPathFreeObject(obj);

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

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

        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;

3411 3412 3413 3414 3415
        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)) {
3416
                qemudReportError(conn, NULL, NULL, VIR_ERR_INTERNAL_ERROR,
3417
                                 _("forward device name '%s' is too long"),
3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431
                                 (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);

3432 3433
    xmlXPathFreeContext(ctxt);

3434
    return def;
3435 3436 3437 3438

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

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

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

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

3463 3464
    xmlFreeDoc(xml);

3465 3466 3467 3468
    return def;
}

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

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

3484
        return network;
3485 3486
    }

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

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

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

    return network;
}

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

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

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

3520
        driver->ninactivenetworks--;
3521 3522
    }

3523
    qemudFreeNetwork(network);
3524 3525
}

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

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

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

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

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

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

3561

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

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

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

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

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

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

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

3604 3605 3606 3607
    return vm;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    closedir(dir);
3702

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

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

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

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

3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732
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"
    };
3733
    verify_true(ARRAY_CARDINALITY(types) == QEMUD_CHR_SRC_TYPE_LAST);
3734 3735 3736 3737 3738

    /* 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') {
3739 3740 3741
        virBufferVSprintf(buf, "    <%s type='%s' tty='%s'>\n",
                          type, types[dev->srcType],
                          dev->srcData.file.path);
3742
    } else {
3743 3744
        virBufferVSprintf(buf, "    <%s type='%s'>\n",
                          type, types[dev->srcType]);
3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759
    }

    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]) {
3760 3761
            virBufferVSprintf(buf, "      <source path='%s'/>\n",
                              dev->srcData.file.path);
3762 3763 3764 3765 3766 3767
        }
        break;

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

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

    case QEMUD_CHR_SRC_TYPE_TCP:
3794 3795 3796 3797 3798 3799 3800
        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");
3801 3802 3803
        break;

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

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

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

    return 0;
}


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

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

3843 3844 3845 3846
    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 已提交
3847

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

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

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

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

3878 3879 3880 3881 3882
    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 已提交
3883

D
Daniel P. Berrange 已提交
3884 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
    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 已提交
3910 3911
    }

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

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

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

3922 3923 3924 3925 3926
    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");
3927

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

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

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

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

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

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

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

        disk = disk->next;
    }

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

3980 3981 3982
        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 已提交
3983

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

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

3992
        case QEMUD_NET_ETHERNET:
3993 3994 3995 3996
            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);
3997 3998 3999
            break;

        case QEMUD_NET_BRIDGE:
4000 4001 4002
            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);
4003 4004 4005 4006 4007
            break;

        case QEMUD_NET_SERVER:
        case QEMUD_NET_CLIENT:
        case QEMUD_NET_MCAST:
4008 4009 4010 4011 4012 4013
            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);
4014 4015
        }

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

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

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

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

        chr = chr->next;
    }

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

        chr = chr->next;
    }

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

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

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

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

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

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

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

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

    case QEMUD_GRAPHICS_NONE:
    default:
        break;
    }

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

4181
    return virBufferContentAndReset(&buf);
4182 4183

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


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

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

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

4210
#endif /* WITH_QEMU */