qemu_domain.c 74.0 KB
Newer Older
1
/*
2
 * qemu_domain.c: QEMU domain private state
3
 *
4
 * Copyright (C) 2006-2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * 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
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25 26 27
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

#include "qemu_domain.h"
#include "qemu_command.h"
28
#include "qemu_capabilities.h"
29
#include "qemu_migration.h"
30
#include "viralloc.h"
31
#include "virlog.h"
32
#include "virerror.h"
33
#include "c-ctype.h"
34
#include "cpu/cpu.h"
35
#include "viruuid.h"
E
Eric Blake 已提交
36
#include "virfile.h"
37
#include "domain_addr.h"
38
#include "domain_event.h"
39
#include "virtime.h"
40
#include "virstoragefile.h"
41
#include "virstring.h"
42

43
#include <sys/time.h>
44
#include <fcntl.h>
45

46 47 48 49
#include <libxml/xpathInternals.h>

#define VIR_FROM_THIS VIR_FROM_QEMU

50 51
VIR_LOG_INIT("qemu.qemu_domain");

52 53
#define QEMU_NAMESPACE_HREF "http://libvirt.org/schemas/domain/qemu/1.0"

54 55 56 57 58 59
VIR_ENUM_IMPL(qemuDomainJob, QEMU_JOB_LAST,
              "none",
              "query",
              "destroy",
              "suspend",
              "modify",
60
              "abort",
61
              "migration operation",
62 63 64 65 66 67 68 69 70 71
              "none",   /* async job is never stored in job.active */
              "async nested",
);

VIR_ENUM_IMPL(qemuDomainAsyncJob, QEMU_ASYNC_JOB_LAST,
              "none",
              "migration out",
              "migration in",
              "save",
              "dump",
72
              "snapshot",
73 74
);

75

J
Jiri Denemark 已提交
76 77 78 79 80 81 82
const char *
qemuDomainAsyncJobPhaseToString(enum qemuDomainAsyncJob job,
                                int phase ATTRIBUTE_UNUSED)
{
    switch (job) {
    case QEMU_ASYNC_JOB_MIGRATION_OUT:
    case QEMU_ASYNC_JOB_MIGRATION_IN:
83 84
        return qemuMigrationJobPhaseTypeToString(phase);

J
Jiri Denemark 已提交
85 86
    case QEMU_ASYNC_JOB_SAVE:
    case QEMU_ASYNC_JOB_DUMP:
87
    case QEMU_ASYNC_JOB_SNAPSHOT:
J
Jiri Denemark 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
    case QEMU_ASYNC_JOB_NONE:
    case QEMU_ASYNC_JOB_LAST:
        ; /* fall through */
    }

    return "none";
}

int
qemuDomainAsyncJobPhaseFromString(enum qemuDomainAsyncJob job,
                                  const char *phase)
{
    if (!phase)
        return 0;

    switch (job) {
    case QEMU_ASYNC_JOB_MIGRATION_OUT:
    case QEMU_ASYNC_JOB_MIGRATION_IN:
106 107
        return qemuMigrationJobPhaseTypeFromString(phase);

J
Jiri Denemark 已提交
108 109
    case QEMU_ASYNC_JOB_SAVE:
    case QEMU_ASYNC_JOB_DUMP:
110
    case QEMU_ASYNC_JOB_SNAPSHOT:
J
Jiri Denemark 已提交
111 112 113 114 115 116 117 118 119 120 121
    case QEMU_ASYNC_JOB_NONE:
    case QEMU_ASYNC_JOB_LAST:
        ; /* fall through */
    }

    if (STREQ(phase, "none"))
        return 0;
    else
        return -1;
}

122

123
void qemuDomainEventQueue(virQEMUDriverPtr driver,
124
                          virObjectEventPtr event)
125
{
126
    virObjectEventStateQueue(driver->domainEventState, event);
127 128 129
}


130 131 132 133 134 135 136 137
static int
qemuDomainObjInitJob(qemuDomainObjPrivatePtr priv)
{
    memset(&priv->job, 0, sizeof(priv->job));

    if (virCondInit(&priv->job.cond) < 0)
        return -1;

138
    if (virCondInit(&priv->job.asyncCond) < 0) {
139
        virCondDestroy(&priv->job.cond);
140 141 142
        return -1;
    }

143 144 145 146 147 148 149 150 151
    return 0;
}

static void
qemuDomainObjResetJob(qemuDomainObjPrivatePtr priv)
{
    struct qemuDomainJobObj *job = &priv->job;

    job->active = QEMU_JOB_NONE;
152
    job->owner = 0;
153 154 155 156 157 158 159 160
}

static void
qemuDomainObjResetAsyncJob(qemuDomainObjPrivatePtr priv)
{
    struct qemuDomainJobObj *job = &priv->job;

    job->asyncJob = QEMU_ASYNC_JOB_NONE;
161
    job->asyncOwner = 0;
J
Jiri Denemark 已提交
162
    job->phase = 0;
163
    job->mask = DEFAULT_JOB_MASK;
164
    job->start = 0;
165
    job->dump_memory_only = false;
166
    job->asyncAbort = false;
167
    memset(&job->status, 0, sizeof(job->status));
168 169 170
    memset(&job->info, 0, sizeof(job->info));
}

171 172 173 174 175 176 177 178
void
qemuDomainObjRestoreJob(virDomainObjPtr obj,
                        struct qemuDomainJobObj *job)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    memset(job, 0, sizeof(*job));
    job->active = priv->job.active;
179
    job->owner = priv->job.owner;
180
    job->asyncJob = priv->job.asyncJob;
181
    job->asyncOwner = priv->job.asyncOwner;
J
Jiri Denemark 已提交
182
    job->phase = priv->job.phase;
183 184 185 186 187

    qemuDomainObjResetJob(priv);
    qemuDomainObjResetAsyncJob(priv);
}

188 189 190 191 192
void
qemuDomainObjTransferJob(virDomainObjPtr obj)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

193
    VIR_DEBUG("Changing job owner from %llu to %llu",
194 195 196 197
              priv->job.owner, virThreadSelfID());
    priv->job.owner = virThreadSelfID();
}

198 199 200
static void
qemuDomainObjFreeJob(qemuDomainObjPrivatePtr priv)
{
201 202
    virCondDestroy(&priv->job.cond);
    virCondDestroy(&priv->job.asyncCond);
203 204
}

205 206 207 208 209 210
static bool
qemuDomainTrackJob(enum qemuDomainJob job)
{
    return (QEMU_DOMAIN_TRACK_JOBS & JOB_MASK(job)) != 0;
}

211

212 213
static void *
qemuDomainObjPrivateAlloc(void)
214 215 216 217 218 219
{
    qemuDomainObjPrivatePtr priv;

    if (VIR_ALLOC(priv) < 0)
        return NULL;

220 221 222
    if (qemuDomainObjInitJob(priv) < 0) {
        virReportSystemError(errno, "%s",
                             _("Unable to init qemu driver mutexes"));
223
        goto error;
224
    }
225

226 227 228
    if (virCondInit(&priv->unplugFinished) < 0)
        goto error;

229
    if (!(priv->devs = virChrdevAlloc()))
230 231
        goto error;

232
    priv->migMaxBandwidth = QEMU_DOMAIN_MIG_BANDWIDTH_MAX;
233

234
    return priv;
235

236
 error:
237 238
    VIR_FREE(priv);
    return NULL;
239 240
}

241 242
static void
qemuDomainObjPrivateFree(void *data)
243 244 245
{
    qemuDomainObjPrivatePtr priv = data;

246
    virObjectUnref(priv->qemuCaps);
247

248
    virCgroupFree(&priv->cgroup);
249
    virDomainPCIAddressSetFree(priv->pciaddrs);
250
    qemuDomainCCWAddressSetFree(priv->ccwaddrs);
251
    virDomainChrSourceDefFree(priv->monConfig);
252
    qemuDomainObjFreeJob(priv);
253
    VIR_FREE(priv->vcpupids);
254
    VIR_FREE(priv->lockState);
J
Jiri Denemark 已提交
255
    VIR_FREE(priv->origname);
256

257
    virCondDestroy(&priv->unplugFinished);
258
    virChrdevFree(priv->devs);
259

260 261
    /* This should never be non-NULL if we get here, but just in case... */
    if (priv->mon) {
262
        VIR_ERROR(_("Unexpected QEMU monitor still active during domain deletion"));
263 264
        qemuMonitorClose(priv->mon);
    }
D
Daniel P. Berrange 已提交
265 266 267 268
    if (priv->agent) {
        VIR_ERROR(_("Unexpected QEMU agent still active during domain deletion"));
        qemuAgentClose(priv->agent);
    }
269
    VIR_FREE(priv->cleanupCallbacks);
270 271 272 273
    VIR_FREE(priv);
}


274 275
static int
qemuDomainObjPrivateXMLFormat(virBufferPtr buf, void *data)
276 277 278
{
    qemuDomainObjPrivatePtr priv = data;
    const char *monitorpath;
279
    enum qemuDomainJob job;
280 281 282

    /* priv->monitor_chr is set only for qemu */
    if (priv->monConfig) {
283
        switch (priv->monConfig->type) {
284
        case VIR_DOMAIN_CHR_TYPE_UNIX:
285
            monitorpath = priv->monConfig->data.nix.path;
286 287 288
            break;
        default:
        case VIR_DOMAIN_CHR_TYPE_PTY:
289
            monitorpath = priv->monConfig->data.file.path;
290 291 292
            break;
        }

293
        virBufferEscapeString(buf, "<monitor path='%s'", monitorpath);
294 295
        if (priv->monJSON)
            virBufferAddLit(buf, " json='1'");
296
        virBufferAsprintf(buf, " type='%s'/>\n",
297
                          virDomainChrTypeToString(priv->monConfig->type));
298 299 300 301
    }


    if (priv->nvcpupids) {
302
        size_t i;
303 304
        virBufferAddLit(buf, "<vcpus>\n");
        virBufferAdjustIndent(buf, 2);
305
        for (i = 0; i < priv->nvcpupids; i++) {
306
            virBufferAsprintf(buf, "<vcpu pid='%d'/>\n", priv->vcpupids[i]);
307
        }
308 309
        virBufferAdjustIndent(buf, -2);
        virBufferAddLit(buf, "</vcpus>\n");
310 311
    }

312
    if (priv->qemuCaps) {
313
        size_t i;
314 315
        virBufferAddLit(buf, "<qemuCaps>\n");
        virBufferAdjustIndent(buf, 2);
316
        for (i = 0; i < QEMU_CAPS_LAST; i++) {
317
            if (virQEMUCapsGet(priv->qemuCaps, i)) {
318
                virBufferAsprintf(buf, "<flag name='%s'/>\n",
319
                                  virQEMUCapsTypeToString(i));
320 321
            }
        }
322 323
        virBufferAdjustIndent(buf, -2);
        virBufferAddLit(buf, "</qemuCaps>\n");
324 325
    }

326
    if (priv->lockState)
327
        virBufferAsprintf(buf, "<lockstate>%s</lockstate>\n", priv->lockState);
328

329 330 331 332
    job = priv->job.active;
    if (!qemuDomainTrackJob(job))
        priv->job.active = QEMU_JOB_NONE;

333
    if (priv->job.active || priv->job.asyncJob) {
334
        virBufferAsprintf(buf, "<job type='%s' async='%s'",
335 336
                          qemuDomainJobTypeToString(priv->job.active),
                          qemuDomainAsyncJobTypeToString(priv->job.asyncJob));
J
Jiri Denemark 已提交
337 338 339 340 341 342
        if (priv->job.phase) {
            virBufferAsprintf(buf, " phase='%s'",
                              qemuDomainAsyncJobPhaseToString(
                                    priv->job.asyncJob, priv->job.phase));
        }
        virBufferAddLit(buf, "/>\n");
343
    }
344
    priv->job.active = job;
345

346
    if (priv->fakeReboot)
347
        virBufferAddLit(buf, "<fakereboot/>\n");
348

349 350
    if (priv->qemuDevices && *priv->qemuDevices) {
        char **tmp = priv->qemuDevices;
351 352
        virBufferAddLit(buf, "<devices>\n");
        virBufferAdjustIndent(buf, 2);
353
        while (*tmp) {
354
            virBufferAsprintf(buf, "<device alias='%s'/>\n", *tmp);
355 356
            tmp++;
        }
357 358
        virBufferAdjustIndent(buf, -2);
        virBufferAddLit(buf, "</devices>\n");
359 360
    }

361 362 363
    if (priv->quiesced)
        virBufferAddLit(buf, "<quiesced/>\n");

364 365 366
    return 0;
}

367 368
static int
qemuDomainObjPrivateXMLParse(xmlXPathContextPtr ctxt, void *data)
369 370 371 372
{
    qemuDomainObjPrivatePtr priv = data;
    char *monitorpath;
    char *tmp;
373 374
    int n;
    size_t i;
375
    xmlNodePtr *nodes = NULL;
376
    virQEMUCapsPtr qemuCaps = NULL;
377

378
    if (VIR_ALLOC(priv->monConfig) < 0)
379 380 381 382
        goto error;

    if (!(monitorpath =
          virXPathString("string(./monitor[1]/@path)", ctxt))) {
383 384
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("no monitor path"));
385 386 387 388 389
        goto error;
    }

    tmp = virXPathString("string(./monitor[1]/@type)", ctxt);
    if (tmp)
390
        priv->monConfig->type = virDomainChrTypeFromString(tmp);
391
    else
392
        priv->monConfig->type = VIR_DOMAIN_CHR_TYPE_PTY;
393 394
    VIR_FREE(tmp);

E
Eric Blake 已提交
395 396
    priv->monJSON = virXPathBoolean("count(./monitor[@json = '1']) > 0",
                                    ctxt) > 0;
397

398
    switch (priv->monConfig->type) {
399
    case VIR_DOMAIN_CHR_TYPE_PTY:
400
        priv->monConfig->data.file.path = monitorpath;
401 402
        break;
    case VIR_DOMAIN_CHR_TYPE_UNIX:
403
        priv->monConfig->data.nix.path = monitorpath;
404 405 406
        break;
    default:
        VIR_FREE(monitorpath);
407 408 409
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported monitor type '%s'"),
                       virDomainChrTypeToString(priv->monConfig->type));
410 411 412 413 414 415 416 417
        goto error;
    }

    n = virXPathNodeSet("./vcpus/vcpu", ctxt, &nodes);
    if (n < 0)
        goto error;
    if (n) {
        priv->nvcpupids = n;
418
        if (VIR_REALLOC_N(priv->vcpupids, priv->nvcpupids) < 0)
419 420
            goto error;

421
        for (i = 0; i < n; i++) {
422 423 424 425 426 427 428 429 430 431 432 433 434
            char *pidstr = virXMLPropString(nodes[i], "pid");
            if (!pidstr)
                goto error;

            if (virStrToLong_i(pidstr, NULL, 10, &(priv->vcpupids[i])) < 0) {
                VIR_FREE(pidstr);
                goto error;
            }
            VIR_FREE(pidstr);
        }
        VIR_FREE(nodes);
    }

435
    if ((n = virXPathNodeSet("./qemuCaps/flag", ctxt, &nodes)) < 0) {
436 437
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("failed to parse qemu capabilities flags"));
438 439 440
        goto error;
    }
    if (n > 0) {
441
        if (!(qemuCaps = virQEMUCapsNew()))
442 443
            goto error;

444
        for (i = 0; i < n; i++) {
445 446
            char *str = virXMLPropString(nodes[i], "name");
            if (str) {
447
                int flag = virQEMUCapsTypeFromString(str);
448
                if (flag < 0) {
449 450
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Unknown qemu capabilities flag %s"), str);
451
                    VIR_FREE(str);
452 453
                    goto error;
                }
454
                VIR_FREE(str);
455
                virQEMUCapsSet(qemuCaps, flag);
456 457 458
            }
        }

459
        priv->qemuCaps = qemuCaps;
460 461 462
    }
    VIR_FREE(nodes);

463
    priv->lockState = virXPathString("string(./lockstate)", ctxt);
464

465 466 467 468
    if ((tmp = virXPathString("string(./job[1]/@type)", ctxt))) {
        int type;

        if ((type = qemuDomainJobTypeFromString(tmp)) < 0) {
469 470
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown job type %s"), tmp);
471 472 473 474 475 476 477 478 479 480 481
            VIR_FREE(tmp);
            goto error;
        }
        VIR_FREE(tmp);
        priv->job.active = type;
    }

    if ((tmp = virXPathString("string(./job[1]/@async)", ctxt))) {
        int async;

        if ((async = qemuDomainAsyncJobTypeFromString(tmp)) < 0) {
482 483
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown async job type %s"), tmp);
484 485 486 487 488
            VIR_FREE(tmp);
            goto error;
        }
        VIR_FREE(tmp);
        priv->job.asyncJob = async;
J
Jiri Denemark 已提交
489 490 491 492

        if ((tmp = virXPathString("string(./job[1]/@phase)", ctxt))) {
            priv->job.phase = qemuDomainAsyncJobPhaseFromString(async, tmp);
            if (priv->job.phase < 0) {
493 494
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Unknown job phase %s"), tmp);
J
Jiri Denemark 已提交
495 496 497 498 499
                VIR_FREE(tmp);
                goto error;
            }
            VIR_FREE(tmp);
        }
500 501
    }

502 503
    priv->fakeReboot = virXPathBoolean("boolean(./fakereboot)", ctxt) == 1;

504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
    if ((n = virXPathNodeSet("./devices/device", ctxt, &nodes)) < 0) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("failed to parse qemu device list"));
        goto error;
    }
    if (n > 0) {
        /* NULL-terminated list */
        if (VIR_ALLOC_N(priv->qemuDevices, n + 1) < 0)
            goto error;

        for (i = 0; i < n; i++) {
            priv->qemuDevices[i] = virXMLPropString(nodes[i], "alias");
            if (!priv->qemuDevices[i]) {
                virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                               _("failed to parse qemu device list"));
                goto error;
            }
        }
    }
    VIR_FREE(nodes);

525 526
    priv->quiesced = virXPathBoolean("boolean(./quiesced)", ctxt) == 1;

527 528
    return 0;

529
 error:
530
    virDomainChrSourceDefFree(priv->monConfig);
531 532
    priv->monConfig = NULL;
    VIR_FREE(nodes);
533 534
    virStringFreeList(priv->qemuDevices);
    priv->qemuDevices = NULL;
535
    virObjectUnref(qemuCaps);
536 537 538 539
    return -1;
}


540 541 542 543 544 545 546 547
virDomainXMLPrivateDataCallbacks virQEMUDriverPrivateDataCallbacks = {
    .alloc = qemuDomainObjPrivateAlloc,
    .free = qemuDomainObjPrivateFree,
    .parse = qemuDomainObjPrivateXMLParse,
    .format = qemuDomainObjPrivateXMLFormat,
};


548 549 550 551 552
static void
qemuDomainDefNamespaceFree(void *nsdata)
{
    qemuDomainCmdlineDefPtr cmd = nsdata;

553
    qemuDomainCmdlineDefFree(cmd);
554 555 556
}

static int
P
Philipp Hahn 已提交
557 558
qemuDomainDefNamespaceParse(xmlDocPtr xml ATTRIBUTE_UNUSED,
                            xmlNodePtr root ATTRIBUTE_UNUSED,
559 560 561 562
                            xmlXPathContextPtr ctxt,
                            void **data)
{
    qemuDomainCmdlineDefPtr cmd = NULL;
P
Philipp Hahn 已提交
563
    bool uses_qemu_ns = false;
564
    xmlNodePtr *nodes = NULL;
565 566
    int n;
    size_t i;
567

P
Philipp Hahn 已提交
568
    if (xmlXPathRegisterNs(ctxt, BAD_CAST "qemu", BAD_CAST QEMU_NAMESPACE_HREF) < 0) {
569 570 571
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to register xml namespace '%s'"),
                       QEMU_NAMESPACE_HREF);
572 573 574
        return -1;
    }

575
    if (VIR_ALLOC(cmd) < 0)
576 577 578 579 580 581
        return -1;

    /* first handle the extra command-line arguments */
    n = virXPathNodeSet("./qemu:commandline/qemu:arg", ctxt, &nodes);
    if (n < 0)
        goto error;
P
Philipp Hahn 已提交
582
    uses_qemu_ns |= n > 0;
583 584

    if (n && VIR_ALLOC_N(cmd->args, n) < 0)
585
        goto error;
586 587 588 589

    for (i = 0; i < n; i++) {
        cmd->args[cmd->num_args] = virXMLPropString(nodes[i], "value");
        if (cmd->args[cmd->num_args] == NULL) {
590 591
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No qemu command-line argument specified"));
592 593 594 595 596 597 598 599 600 601 602
            goto error;
        }
        cmd->num_args++;
    }

    VIR_FREE(nodes);

    /* now handle the extra environment variables */
    n = virXPathNodeSet("./qemu:commandline/qemu:env", ctxt, &nodes);
    if (n < 0)
        goto error;
P
Philipp Hahn 已提交
603
    uses_qemu_ns |= n > 0;
604 605

    if (n && VIR_ALLOC_N(cmd->env_name, n) < 0)
606
        goto error;
607 608

    if (n && VIR_ALLOC_N(cmd->env_value, n) < 0)
609
        goto error;
610 611 612 613 614 615

    for (i = 0; i < n; i++) {
        char *tmp;

        tmp = virXMLPropString(nodes[i], "name");
        if (tmp == NULL) {
616 617
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No qemu environment name specified"));
618 619 620
            goto error;
        }
        if (tmp[0] == '\0') {
621 622
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Empty qemu environment name specified"));
623 624 625
            goto error;
        }
        if (!c_isalpha(tmp[0]) && tmp[0] != '_') {
626 627
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Invalid environment name, it must begin with a letter or underscore"));
628 629 630
            goto error;
        }
        if (strspn(tmp, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_") != strlen(tmp)) {
631 632
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Invalid environment name, it must contain only alphanumerics and underscore"));
633 634 635 636 637 638 639 640 641 642 643 644
            goto error;
        }

        cmd->env_name[cmd->num_env] = tmp;

        cmd->env_value[cmd->num_env] = virXMLPropString(nodes[i], "value");
        /* a NULL value for command is allowed, since it might be empty */
        cmd->num_env++;
    }

    VIR_FREE(nodes);

P
Philipp Hahn 已提交
645 646 647 648
    if (uses_qemu_ns)
        *data = cmd;
    else
        VIR_FREE(cmd);
649 650 651

    return 0;

652
 error:
653 654 655 656 657 658 659 660 661 662
    VIR_FREE(nodes);
    qemuDomainDefNamespaceFree(cmd);
    return -1;
}

static int
qemuDomainDefNamespaceFormatXML(virBufferPtr buf,
                                void *nsdata)
{
    qemuDomainCmdlineDefPtr cmd = nsdata;
663
    size_t i;
664 665 666 667

    if (!cmd->num_args && !cmd->num_env)
        return 0;

668 669 670
    virBufferAddLit(buf, "<qemu:commandline>\n");
    virBufferAdjustIndent(buf, 2);

671
    for (i = 0; i < cmd->num_args; i++)
672
        virBufferEscapeString(buf, "<qemu:arg value='%s'/>\n",
673 674
                              cmd->args[i]);
    for (i = 0; i < cmd->num_env; i++) {
675
        virBufferAsprintf(buf, "<qemu:env name='%s'", cmd->env_name[i]);
676 677 678 679 680
        if (cmd->env_value[i])
            virBufferEscapeString(buf, " value='%s'", cmd->env_value[i]);
        virBufferAddLit(buf, "/>\n");
    }

681 682
    virBufferAdjustIndent(buf, -2);
    virBufferAddLit(buf, "</qemu:commandline>\n");
683 684 685 686 687 688 689 690 691 692
    return 0;
}

static const char *
qemuDomainDefNamespaceHref(void)
{
    return "xmlns:qemu='" QEMU_NAMESPACE_HREF "'";
}


693 694 695 696 697 698
virDomainXMLNamespace virQEMUDriverDomainXMLNamespace = {
    .parse = qemuDomainDefNamespaceParse,
    .free = qemuDomainDefNamespaceFree,
    .format = qemuDomainDefNamespaceFormatXML,
    .href = qemuDomainDefNamespaceHref,
};
699

700

701 702 703 704 705
static int
qemuDomainDefPostParse(virDomainDefPtr def,
                       virCapsPtr caps,
                       void *opaque ATTRIBUTE_UNUSED)
{
706
    bool addDefaultUSB = true;
707
    bool addImplicitSATA = false;
708
    bool addPCIRoot = false;
L
Laine Stump 已提交
709
    bool addPCIeRoot = false;
710
    bool addDefaultMemballoon = true;
711 712
    bool addDefaultUSBKBD = false;
    bool addDefaultUSBMouse = false;
713

714 715 716 717 718
    /* check for emulator and create a default one if needed */
    if (!def->emulator &&
        !(def->emulator = virDomainDefGetDefaultEmulator(def, caps)))
        return -1;

719 720 721 722 723 724
    /* Add implicit PCI root controller if the machine has one */
    switch (def->os.arch) {
    case VIR_ARCH_I686:
    case VIR_ARCH_X86_64:
        if (!def->os.machine)
            break;
L
Laine Stump 已提交
725
        if (STREQ(def->os.machine, "isapc")) {
726
            addDefaultUSB = false;
727
            break;
728
        }
L
Laine Stump 已提交
729 730 731 732
        if (STRPREFIX(def->os.machine, "pc-q35") ||
            STREQ(def->os.machine, "q35")) {
           addPCIeRoot = true;
           addDefaultUSB = false;
733
           addImplicitSATA = true;
L
Laine Stump 已提交
734 735
           break;
        }
736 737
        if (!STRPREFIX(def->os.machine, "pc-0.") &&
            !STRPREFIX(def->os.machine, "pc-1.") &&
738
            !STRPREFIX(def->os.machine, "pc-i440") &&
739 740 741 742 743 744
            !STREQ(def->os.machine, "pc") &&
            !STRPREFIX(def->os.machine, "rhel"))
            break;
        addPCIRoot = true;
        break;

745 746
    case VIR_ARCH_ARMV7L:
       addDefaultUSB = false;
747
       addDefaultMemballoon = false;
748
       break;
749 750 751 752
    case VIR_ARCH_AARCH64:
       addDefaultUSB = false;
       addDefaultMemballoon = false;
       break;
753

754 755 756 757 758 759
    case VIR_ARCH_PPC64:
        addPCIRoot = true;
        addDefaultUSBKBD = true;
        addDefaultUSBMouse = true;
        break;

760 761 762 763 764 765 766 767 768 769 770
    case VIR_ARCH_ALPHA:
    case VIR_ARCH_PPC:
    case VIR_ARCH_PPCEMB:
    case VIR_ARCH_SH4:
    case VIR_ARCH_SH4EB:
        addPCIRoot = true;
        break;
    default:
        break;
    }

771 772 773 774 775
    if (addDefaultUSB &&
        virDomainDefMaybeAddController(
            def, VIR_DOMAIN_CONTROLLER_TYPE_USB, 0, -1) < 0)
        return -1;

776 777 778 779 780
    if (addImplicitSATA &&
        virDomainDefMaybeAddController(
            def, VIR_DOMAIN_CONTROLLER_TYPE_SATA, 0, -1) < 0)
        return -1;

781 782 783 784 785 786
    if (addPCIRoot &&
        virDomainDefMaybeAddController(
            def, VIR_DOMAIN_CONTROLLER_TYPE_PCI, 0,
            VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT) < 0)
        return -1;

787 788 789 790 791 792 793 794 795 796 797 798 799 800
    /* When a machine has a pcie-root, make sure that there is always
     * a dmi-to-pci-bridge controller added as bus 1, and a pci-bridge
     * as bus 2, so that standard PCI devices can be connected
     */
    if (addPCIeRoot) {
        if (virDomainDefMaybeAddController(
                def, VIR_DOMAIN_CONTROLLER_TYPE_PCI, 0,
                VIR_DOMAIN_CONTROLLER_MODEL_PCIE_ROOT) < 0 ||
            virDomainDefMaybeAddController(
                def, VIR_DOMAIN_CONTROLLER_TYPE_PCI, 1,
                VIR_DOMAIN_CONTROLLER_MODEL_DMI_TO_PCI_BRIDGE) < 0 ||
            virDomainDefMaybeAddController(
                def, VIR_DOMAIN_CONTROLLER_TYPE_PCI, 2,
                VIR_DOMAIN_CONTROLLER_MODEL_PCI_BRIDGE) < 0) {
L
Laine Stump 已提交
801
        return -1;
802 803
        }
    }
804

805
    if (addDefaultMemballoon && !def->memballoon) {
806 807 808 809 810 811 812 813
        virDomainMemballoonDefPtr memballoon;
        if (VIR_ALLOC(memballoon) < 0)
            return -1;

        memballoon->model = VIR_DOMAIN_MEMBALLOON_MODEL_VIRTIO;
        def->memballoon = memballoon;
    }

814 815 816 817 818 819 820 821 822 823 824 825 826 827
    if (addDefaultUSBKBD &&
        def->ngraphics > 0 &&
        virDomainDefMaybeAddInput(def,
                                  VIR_DOMAIN_INPUT_TYPE_KBD,
                                  VIR_DOMAIN_INPUT_BUS_USB) < 0)
        return -1;

    if (addDefaultUSBMouse &&
        def->ngraphics > 0 &&
        virDomainDefMaybeAddInput(def,
                                  VIR_DOMAIN_INPUT_TYPE_MOUSE,
                                  VIR_DOMAIN_INPUT_BUS_USB) < 0)
        return -1;

828 829 830
    return 0;
}

831
static const char *
832 833
qemuDomainDefaultNetModel(const virDomainDef *def)
{
834 835 836 837
    if (def->os.arch == VIR_ARCH_S390 ||
        def->os.arch == VIR_ARCH_S390X)
        return "virtio";

838 839
    if (def->os.arch == VIR_ARCH_ARMV7L ||
        def->os.arch == VIR_ARCH_AARCH64) {
840 841 842
        if (STREQ(def->os.machine, "versatilepb"))
            return "smc91c111";

843 844 845
        if (STREQ(def->os.machine, "virt"))
            return "virtio";

846 847 848 849 850 851 852
        /* Incomplete. vexpress (and a few others) use this, but not all
         * arm boards */
        return "lan9118";
    }

    return "rtl8139";
}
853

854 855
static int
qemuDomainDeviceDefPostParse(virDomainDeviceDefPtr dev,
856
                             const virDomainDef *def,
857
                             virCapsPtr caps ATTRIBUTE_UNUSED,
858
                             void *opaque)
859
{
860 861 862 863
    int ret = -1;
    virQEMUDriverPtr driver = opaque;
    virQEMUDriverConfigPtr cfg = NULL;

864
    if (dev->type == VIR_DOMAIN_DEVICE_NET &&
865 866
        dev->data.net->type != VIR_DOMAIN_NET_TYPE_HOSTDEV &&
        !dev->data.net->model) {
867
        if (VIR_STRDUP(dev->data.net->model,
868
                       qemuDomainDefaultNetModel(def)) < 0)
869
            goto cleanup;
870
    }
871

872 873 874 875 876 877 878 879 880
    /* set default disk types and drivers */
    if (dev->type == VIR_DOMAIN_DEVICE_DISK) {
        virDomainDiskDefPtr disk = dev->data.disk;

        /* both of these require data from the driver config */
        if (driver && (cfg = virQEMUDriverGetConfig(driver))) {
            /* assign default storage format and driver according to config */
            if (cfg->allowDiskFormatProbing) {
                /* default disk format for drives */
881
                if (virDomainDiskGetFormat(disk) == VIR_STORAGE_FILE_NONE &&
E
Eric Blake 已提交
882 883
                    (virDomainDiskGetType(disk) == VIR_STORAGE_TYPE_FILE ||
                     virDomainDiskGetType(disk) == VIR_STORAGE_TYPE_BLOCK))
884
                    virDomainDiskSetFormat(disk, VIR_STORAGE_FILE_AUTO);
885 886 887 888 889 890 891

                 /* default disk format for mirrored drive */
                if (disk->mirror &&
                    disk->mirrorFormat == VIR_STORAGE_FILE_NONE)
                    disk->mirrorFormat = VIR_STORAGE_FILE_AUTO;
            } else {
                /* default driver if probing is forbidden */
892 893
                if (!virDomainDiskGetDriver(disk) &&
                    virDomainDiskSetDriver(disk, "qemu") < 0)
894
                        goto cleanup;
895 896

                /* default disk format for drives */
897
                if (virDomainDiskGetFormat(disk) == VIR_STORAGE_FILE_NONE &&
E
Eric Blake 已提交
898 899
                    (virDomainDiskGetType(disk) == VIR_STORAGE_TYPE_FILE ||
                     virDomainDiskGetType(disk) == VIR_STORAGE_TYPE_BLOCK))
900
                    virDomainDiskSetFormat(disk, VIR_STORAGE_FILE_RAW);
901 902 903 904 905 906

                 /* default disk format for mirrored drive */
                if (disk->mirror &&
                    disk->mirrorFormat == VIR_STORAGE_FILE_NONE)
                    disk->mirrorFormat = VIR_STORAGE_FILE_RAW;
            }
907 908 909
        }
    }

910 911 912 913 914 915 916
    /* set the default console type for S390 arches */
    if (dev->type == VIR_DOMAIN_DEVICE_CHR &&
        dev->data.chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE &&
        dev->data.chr->targetType == VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_NONE &&
        (def->os.arch == VIR_ARCH_S390 || def->os.arch == VIR_ARCH_S390X))
        dev->data.chr->targetType = VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_VIRTIO;

917 918 919 920 921 922 923 924
    /* set the default USB model to none for s390 unless an address is found */
    if (dev->type == VIR_DOMAIN_DEVICE_CONTROLLER &&
        dev->data.controller->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
        dev->data.controller->model == -1 &&
        dev->data.controller->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
        (def->os.arch == VIR_ARCH_S390 || def->os.arch == VIR_ARCH_S390X))
        dev->data.controller->model = VIR_DOMAIN_CONTROLLER_MODEL_USB_NONE;

925 926 927 928 929 930 931 932 933 934 935
    /* auto generate unix socket path */
    if (dev->type == VIR_DOMAIN_DEVICE_CHR &&
        dev->data.chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
        dev->data.chr->targetType == VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO &&
        dev->data.chr->source.type == VIR_DOMAIN_CHR_TYPE_UNIX &&
        !dev->data.chr->source.data.nix.path &&
        (driver && (cfg = virQEMUDriverGetConfig(driver)))) {

        if (virAsprintf(&dev->data.chr->source.data.nix.path,
                        "%s/channel/target/%s.%s",
                        cfg->libDir, def->name,
936
                        dev->data.chr->target.name) < 0)
937
            goto cleanup;
938 939 940
        dev->data.chr->source.data.nix.listen = true;
    }

941 942
    ret = 0;

943
 cleanup:
944 945
    virObjectUnref(cfg);
    return ret;
946 947 948 949 950
}


virDomainDefParserConfig virQEMUDriverDomainDefParserConfig = {
    .devicesPostParseCallback = qemuDomainDeviceDefPostParse,
951
    .domainPostParseCallback = qemuDomainDefPostParse,
952 953 954
};


955
static void
956
qemuDomainObjSaveJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
957
{
958 959 960
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);

    if (virDomainObjIsActive(obj)) {
961
        if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, obj) < 0)
962
            VIR_WARN("Failed to save status on vm %s", obj->def->name);
963
    }
964

965
    virObjectUnref(cfg);
966 967
}

J
Jiri Denemark 已提交
968
void
969
qemuDomainObjSetJobPhase(virQEMUDriverPtr driver,
J
Jiri Denemark 已提交
970 971 972 973
                         virDomainObjPtr obj,
                         int phase)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
974
    unsigned long long me = virThreadSelfID();
J
Jiri Denemark 已提交
975 976 977 978

    if (!priv->job.asyncJob)
        return;

979 980 981 982 983
    VIR_DEBUG("Setting '%s' phase to '%s'",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              qemuDomainAsyncJobPhaseToString(priv->job.asyncJob, phase));

    if (priv->job.asyncOwner && me != priv->job.asyncOwner) {
984
        VIR_WARN("'%s' async job is owned by thread %llu",
985 986 987 988
                 qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
                 priv->job.asyncOwner);
    }

J
Jiri Denemark 已提交
989
    priv->job.phase = phase;
990
    priv->job.asyncOwner = me;
J
Jiri Denemark 已提交
991 992 993
    qemuDomainObjSaveJob(driver, obj);
}

994
void
995 996
qemuDomainObjSetAsyncJobMask(virDomainObjPtr obj,
                             unsigned long long allowedJobs)
997 998 999
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

1000 1001 1002 1003 1004 1005 1006
    if (!priv->job.asyncJob)
        return;

    priv->job.mask = allowedJobs | JOB_MASK(QEMU_JOB_DESTROY);
}

void
1007
qemuDomainObjDiscardAsyncJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
1008 1009 1010 1011 1012 1013
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    if (priv->job.active == QEMU_JOB_ASYNC_NESTED)
        qemuDomainObjResetJob(priv);
    qemuDomainObjResetAsyncJob(priv);
1014
    qemuDomainObjSaveJob(driver, obj);
1015 1016
}

1017 1018 1019 1020 1021 1022 1023 1024 1025
void
qemuDomainObjReleaseAsyncJob(virDomainObjPtr obj)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    VIR_DEBUG("Releasing ownership of '%s' async job",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob));

    if (priv->job.asyncOwner != virThreadSelfID()) {
1026
        VIR_WARN("'%s' async job is owned by thread %llu",
1027 1028 1029 1030 1031 1032
                 qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
                 priv->job.asyncOwner);
    }
    priv->job.asyncOwner = 0;
}

1033
static bool
1034
qemuDomainNestedJobAllowed(qemuDomainObjPrivatePtr priv, enum qemuDomainJob job)
1035 1036
{
    return !priv->job.asyncJob || (priv->job.mask & JOB_MASK(job)) != 0;
1037 1038
}

1039 1040 1041 1042 1043 1044
bool
qemuDomainJobAllowed(qemuDomainObjPrivatePtr priv, enum qemuDomainJob job)
{
    return !priv->job.active && qemuDomainNestedJobAllowed(priv, job);
}

1045 1046 1047
/* Give up waiting for mutex after 30 seconds */
#define QEMU_JOB_WAIT_TIME (1000ull * 30)

1048
/*
1049
 * obj must be locked before calling
1050
 */
1051
static int ATTRIBUTE_NONNULL(1)
1052
qemuDomainObjBeginJobInternal(virQEMUDriverPtr driver,
1053 1054 1055
                              virDomainObjPtr obj,
                              enum qemuDomainJob job,
                              enum qemuDomainAsyncJob asyncJob)
1056 1057
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
J
Jiri Denemark 已提交
1058
    unsigned long long now;
1059
    unsigned long long then;
1060
    bool nested = job == QEMU_JOB_ASYNC_NESTED;
1061
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1062
    int ret;
1063

1064 1065 1066 1067 1068 1069
    VIR_DEBUG("Starting %s: %s (async=%s vm=%p name=%s)",
              job == QEMU_JOB_ASYNC ? "async job" : "job",
              qemuDomainJobTypeToString(job),
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              obj, obj->def->name);

1070 1071
    priv->jobs_queued++;

1072 1073
    if (virTimeMillisNow(&now) < 0) {
        virObjectUnref(cfg);
1074
        return -1;
1075 1076
    }

J
Jiri Denemark 已提交
1077
    then = now + QEMU_JOB_WAIT_TIME;
1078

1079
    virObjectRef(obj);
1080

1081
 retry:
1082 1083
    if (cfg->maxQueuedJobs &&
        priv->jobs_queued > cfg->maxQueuedJobs) {
1084 1085 1086
        goto error;
    }

1087
    while (!nested && !qemuDomainNestedJobAllowed(priv, job)) {
1088
        VIR_DEBUG("Waiting for async job (vm=%p name=%s)", obj, obj->def->name);
1089
        if (virCondWaitUntil(&priv->job.asyncCond, &obj->parent.lock, then) < 0)
1090 1091 1092
            goto error;
    }

1093
    while (priv->job.active) {
1094
        VIR_DEBUG("Waiting for job (vm=%p name=%s)", obj, obj->def->name);
1095
        if (virCondWaitUntil(&priv->job.cond, &obj->parent.lock, then) < 0)
1096
            goto error;
1097
    }
1098 1099 1100

    /* No job is active but a new async job could have been started while obj
     * was unlocked, so we need to recheck it. */
1101
    if (!nested && !qemuDomainNestedJobAllowed(priv, job))
1102 1103
        goto retry;

1104
    qemuDomainObjResetJob(priv);
1105 1106

    if (job != QEMU_JOB_ASYNC) {
1107
        VIR_DEBUG("Started job: %s (async=%s vm=%p name=%s)",
1108
                   qemuDomainJobTypeToString(job),
1109 1110
                  qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
                  obj, obj->def->name);
1111
        priv->job.active = job;
1112
        priv->job.owner = virThreadSelfID();
1113
    } else {
1114 1115 1116
        VIR_DEBUG("Started async job: %s (vm=%p name=%s)",
                  qemuDomainAsyncJobTypeToString(asyncJob),
                  obj, obj->def->name);
1117 1118
        qemuDomainObjResetAsyncJob(priv);
        priv->job.asyncJob = asyncJob;
1119
        priv->job.asyncOwner = virThreadSelfID();
1120 1121
        priv->job.start = now;
    }
1122

1123 1124
    if (qemuDomainTrackJob(job))
        qemuDomainObjSaveJob(driver, obj);
1125

1126
    virObjectUnref(cfg);
1127
    return 0;
1128

1129
 error:
1130
    VIR_WARN("Cannot start job (%s, %s) for domain %s;"
1131
             " current job is (%s, %s) owned by (%llu, %llu)",
1132 1133 1134 1135 1136 1137 1138
             qemuDomainJobTypeToString(job),
             qemuDomainAsyncJobTypeToString(asyncJob),
             obj->def->name,
             qemuDomainJobTypeToString(priv->job.active),
             qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
             priv->job.owner, priv->job.asyncOwner);

1139 1140
    ret = -1;
    if (errno == ETIMEDOUT) {
1141 1142
        virReportError(VIR_ERR_OPERATION_TIMEOUT,
                       "%s", _("cannot acquire state change lock"));
1143 1144 1145
        ret = -2;
    } else if (cfg->maxQueuedJobs &&
               priv->jobs_queued > cfg->maxQueuedJobs) {
1146 1147 1148
        virReportError(VIR_ERR_OPERATION_FAILED,
                       "%s", _("cannot acquire state change lock "
                               "due to max_queued limit"));
1149 1150
        ret = -2;
    } else {
1151 1152
        virReportSystemError(errno,
                             "%s", _("cannot acquire job mutex"));
1153
    }
1154
    priv->jobs_queued--;
1155
    virObjectUnref(obj);
1156
    virObjectUnref(cfg);
1157
    return ret;
1158 1159 1160
}

/*
1161
 * obj must be locked before calling
1162 1163 1164 1165 1166 1167 1168
 *
 * This must be called by anything that will change the VM state
 * in any way, or anything that will use the QEMU monitor.
 *
 * Upon successful return, the object will have its ref count increased,
 * successful calls must be followed by EndJob eventually
 */
1169
int qemuDomainObjBeginJob(virQEMUDriverPtr driver,
1170 1171
                          virDomainObjPtr obj,
                          enum qemuDomainJob job)
1172
{
1173 1174 1175 1176 1177
    if (qemuDomainObjBeginJobInternal(driver, obj, job,
                                      QEMU_ASYNC_JOB_NONE) < 0)
        return -1;
    else
        return 0;
1178 1179
}

1180
int qemuDomainObjBeginAsyncJob(virQEMUDriverPtr driver,
1181
                               virDomainObjPtr obj,
1182
                               enum qemuDomainAsyncJob asyncJob)
1183
{
1184 1185 1186 1187 1188
    if (qemuDomainObjBeginJobInternal(driver, obj, QEMU_JOB_ASYNC,
                                      asyncJob) < 0)
        return -1;
    else
        return 0;
1189 1190
}

1191
static int ATTRIBUTE_RETURN_CHECK
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
qemuDomainObjBeginNestedJob(virQEMUDriverPtr driver,
                            virDomainObjPtr obj,
                            enum qemuDomainAsyncJob asyncJob)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    if (asyncJob != priv->job.asyncJob) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unexpected async job %d"), asyncJob);
        return -1;
    }

    if (priv->job.asyncOwner != virThreadSelfID()) {
1205
        VIR_WARN("This thread doesn't seem to be the async job owner: %llu",
1206 1207 1208 1209 1210 1211 1212 1213
                 priv->job.asyncOwner);
    }

    return qemuDomainObjBeginJobInternal(driver, obj,
                                         QEMU_JOB_ASYNC_NESTED,
                                         QEMU_ASYNC_JOB_NONE);
}

1214

1215
/*
1216
 * obj must be locked before calling
1217 1218 1219 1220
 *
 * To be called after completing the work associated with the
 * earlier qemuDomainBeginJob() call
 *
1221 1222
 * Returns true if @obj was still referenced, false if it was
 * disposed of.
1223
 */
1224
bool qemuDomainObjEndJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
1225 1226
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1227
    enum qemuDomainJob job = priv->job.active;
1228

1229 1230
    priv->jobs_queued--;

1231
    VIR_DEBUG("Stopping job: %s (async=%s vm=%p name=%s)",
1232
              qemuDomainJobTypeToString(job),
1233 1234
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              obj, obj->def->name);
1235

1236
    qemuDomainObjResetJob(priv);
1237 1238
    if (qemuDomainTrackJob(job))
        qemuDomainObjSaveJob(driver, obj);
1239
    virCondSignal(&priv->job.cond);
1240

1241
    return virObjectUnref(obj);
1242 1243
}

1244
bool
1245
qemuDomainObjEndAsyncJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
1246 1247
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1248

1249 1250
    priv->jobs_queued--;

1251 1252 1253
    VIR_DEBUG("Stopping async job: %s (vm=%p name=%s)",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              obj, obj->def->name);
1254

1255
    qemuDomainObjResetAsyncJob(priv);
1256
    qemuDomainObjSaveJob(driver, obj);
1257 1258
    virCondBroadcast(&priv->job.asyncCond);

1259
    return virObjectUnref(obj);
1260 1261
}

1262 1263 1264 1265 1266
void
qemuDomainObjAbortAsyncJob(virDomainObjPtr obj)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

1267 1268 1269
    VIR_DEBUG("Requesting abort of async job: %s (vm=%p name=%s)",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              obj, obj->def->name);
1270 1271 1272 1273

    priv->job.asyncAbort = true;
}

1274 1275 1276 1277 1278 1279 1280 1281 1282
/*
 * obj must be locked before calling
 *
 * To be called immediately before any QEMU monitor API call
 * Must have already either called qemuDomainObjBeginJob() and checked
 * that the VM is still active; may not be used for nested async jobs.
 *
 * To be followed with qemuDomainObjExitMonitor() once complete
 */
1283
static int
1284
qemuDomainObjEnterMonitorInternal(virQEMUDriverPtr driver,
1285 1286
                                  virDomainObjPtr obj,
                                  enum qemuDomainAsyncJob asyncJob)
1287 1288 1289
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

1290
    if (asyncJob != QEMU_ASYNC_JOB_NONE) {
1291 1292 1293
        int ret;
        if ((ret = qemuDomainObjBeginNestedJob(driver, obj, asyncJob)) < 0)
            return ret;
1294
        if (!virDomainObjIsActive(obj)) {
1295 1296
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("domain is no longer running"));
1297 1298
            /* Still referenced by the containing async job.  */
            ignore_value(qemuDomainObjEndJob(driver, obj));
1299 1300
            return -1;
        }
1301 1302 1303
    } else if (priv->job.asyncOwner == virThreadSelfID()) {
        VIR_WARN("This thread seems to be the async job owner; entering"
                 " monitor without asking for a nested job is dangerous");
1304 1305
    }

1306 1307
    VIR_DEBUG("Entering monitor (mon=%p vm=%p name=%s)",
              priv->mon, obj, obj->def->name);
1308
    virObjectLock(priv->mon);
1309
    virObjectRef(priv->mon);
1310
    ignore_value(virTimeMillisNow(&priv->monStart));
1311
    virObjectUnlock(obj);
1312 1313

    return 0;
1314 1315
}

1316
static void ATTRIBUTE_NONNULL(1)
1317
qemuDomainObjExitMonitorInternal(virQEMUDriverPtr driver,
1318
                                 virDomainObjPtr obj)
1319 1320
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1321
    bool hasRefs;
1322

1323
    hasRefs = virObjectUnref(priv->mon);
1324

1325
    if (hasRefs)
1326
        virObjectUnlock(priv->mon);
1327

1328
    virObjectLock(obj);
1329 1330
    VIR_DEBUG("Exited monitor (mon=%p vm=%p name=%s)",
              priv->mon, obj, obj->def->name);
1331

1332
    priv->monStart = 0;
1333
    if (!hasRefs)
1334
        priv->mon = NULL;
1335

1336 1337 1338 1339 1340
    if (priv->job.active == QEMU_JOB_ASYNC_NESTED) {
        qemuDomainObjResetJob(priv);
        qemuDomainObjSaveJob(driver, obj);
        virCondSignal(&priv->job.cond);

1341
        virObjectUnref(obj);
1342
    }
1343 1344
}

1345
void qemuDomainObjEnterMonitor(virQEMUDriverPtr driver,
1346
                               virDomainObjPtr obj)
1347
{
1348
    ignore_value(qemuDomainObjEnterMonitorInternal(driver, obj,
1349
                                                   QEMU_ASYNC_JOB_NONE));
1350 1351
}

1352
/* obj must NOT be locked before calling
1353 1354 1355
 *
 * Should be paired with an earlier qemuDomainObjEnterMonitor() call
 */
1356
void qemuDomainObjExitMonitor(virQEMUDriverPtr driver,
1357
                              virDomainObjPtr obj)
1358
{
1359
    qemuDomainObjExitMonitorInternal(driver, obj);
1360
}
1361 1362

/*
1363
 * obj must be locked before calling
1364 1365
 *
 * To be called immediately before any QEMU monitor API call.
1366
 * Must have already either called qemuDomainObjBeginJob()
1367 1368 1369 1370 1371
 * and checked that the VM is still active, with asyncJob of
 * QEMU_ASYNC_JOB_NONE; or already called qemuDomainObjBeginAsyncJob,
 * with the same asyncJob.
 *
 * Returns 0 if job was started, in which case this must be followed with
1372 1373 1374
 * qemuDomainObjExitMonitor(); -2 if waiting for the nested job times out;
 * or -1 if the job could not be started (probably because the vm exited
 * in the meantime).
1375 1376
 */
int
1377
qemuDomainObjEnterMonitorAsync(virQEMUDriverPtr driver,
1378 1379
                               virDomainObjPtr obj,
                               enum qemuDomainAsyncJob asyncJob)
1380
{
1381
    return qemuDomainObjEnterMonitorInternal(driver, obj, asyncJob);
1382 1383
}

D
Daniel P. Berrange 已提交
1384 1385


1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396
/*
 * obj must be locked before calling
 *
 * To be called immediately before any QEMU agent API call.
 * Must have already called qemuDomainObjBeginJob() and checked
 * that the VM is still active.
 *
 * To be followed with qemuDomainObjExitAgent() once complete
 */
void
qemuDomainObjEnterAgent(virDomainObjPtr obj)
D
Daniel P. Berrange 已提交
1397 1398 1399
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

1400 1401
    VIR_DEBUG("Entering agent (agent=%p vm=%p name=%s)",
              priv->agent, obj, obj->def->name);
1402
    virObjectLock(priv->agent);
1403
    virObjectRef(priv->agent);
D
Daniel P. Berrange 已提交
1404
    ignore_value(virTimeMillisNow(&priv->agentStart));
1405
    virObjectUnlock(obj);
D
Daniel P. Berrange 已提交
1406 1407
}

1408 1409 1410 1411 1412 1413 1414

/* obj must NOT be locked before calling
 *
 * Should be paired with an earlier qemuDomainObjEnterAgent() call
 */
void
qemuDomainObjExitAgent(virDomainObjPtr obj)
D
Daniel P. Berrange 已提交
1415 1416
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1417
    bool hasRefs;
D
Daniel P. Berrange 已提交
1418

1419
    hasRefs = virObjectUnref(priv->agent);
D
Daniel P. Berrange 已提交
1420

1421
    if (hasRefs)
1422
        virObjectUnlock(priv->agent);
D
Daniel P. Berrange 已提交
1423

1424
    virObjectLock(obj);
1425 1426
    VIR_DEBUG("Exited agent (agent=%p vm=%p name=%s)",
              priv->agent, obj, obj->def->name);
D
Daniel P. Berrange 已提交
1427 1428

    priv->agentStart = 0;
1429
    if (!hasRefs)
D
Daniel P. Berrange 已提交
1430 1431 1432
        priv->agent = NULL;
}

1433
void qemuDomainObjEnterRemote(virDomainObjPtr obj)
1434
{
1435 1436
    VIR_DEBUG("Entering remote (vm=%p name=%s)",
              obj, obj->def->name);
1437
    virObjectRef(obj);
1438
    virObjectUnlock(obj);
1439 1440
}

1441
void qemuDomainObjExitRemote(virDomainObjPtr obj)
1442
{
1443
    virObjectLock(obj);
1444 1445
    VIR_DEBUG("Exited remote (vm=%p name=%s)",
              obj, obj->def->name);
1446
    virObjectUnref(obj);
1447
}
1448 1449


1450 1451 1452 1453 1454 1455 1456 1457
virDomainDefPtr
qemuDomainDefCopy(virQEMUDriverPtr driver,
                  virDomainDefPtr src,
                  unsigned int flags)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    virDomainDefPtr ret = NULL;
    virCapsPtr caps = NULL;
1458
    char *xml = NULL;
1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472

    if (qemuDomainDefFormatBuf(driver, src, flags, &buf) < 0)
        goto cleanup;

    xml = virBufferContentAndReset(&buf);

    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;

    if (!(ret = virDomainDefParseString(xml, caps, driver->xmlopt,
                                        QEMU_EXPECTED_VIRT_TYPES,
                                        VIR_DOMAIN_XML_INACTIVE)))
        goto cleanup;

1473
 cleanup:
1474 1475 1476 1477 1478
    VIR_FREE(xml);
    virObjectUnref(caps);
    return ret;
}

1479
int
1480
qemuDomainDefFormatBuf(virQEMUDriverPtr driver,
1481 1482 1483
                       virDomainDefPtr def,
                       unsigned int flags,
                       virBuffer *buf)
1484
{
1485
    int ret = -1;
1486
    virCPUDefPtr cpu = NULL;
1487
    virCPUDefPtr def_cpu = def->cpu;
1488 1489
    virDomainControllerDefPtr *controllers = NULL;
    int ncontrollers = 0;
1490 1491 1492 1493
    virCapsPtr caps = NULL;

    if (!(caps = virQEMUDriverGetCapabilities(driver, false)))
        goto cleanup;
1494 1495

    /* Update guest CPU requirements according to host CPU */
1496 1497 1498
    if ((flags & VIR_DOMAIN_XML_UPDATE_CPU) &&
        def_cpu &&
        (def_cpu->mode != VIR_CPU_MODE_CUSTOM || def_cpu->model)) {
1499 1500
        if (!caps->host.cpu ||
            !caps->host.cpu->model) {
1501 1502
            virReportError(VIR_ERR_OPERATION_FAILED,
                           "%s", _("cannot get host CPU capabilities"));
1503 1504 1505
            goto cleanup;
        }

1506
        if (!(cpu = virCPUDefCopy(def_cpu)) ||
1507
            cpuUpdate(cpu, caps->host.cpu) < 0)
1508 1509 1510 1511
            goto cleanup;
        def->cpu = cpu;
    }

1512
    if ((flags & VIR_DOMAIN_XML_MIGRATABLE)) {
1513
        size_t i;
1514
        int toremove = 0;
1515
        virDomainControllerDefPtr usb = NULL, pci = NULL;
1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533

        /* If only the default USB controller is present, we can remove it
         * and make the XML compatible with older versions of libvirt which
         * didn't support USB controllers in the XML but always added the
         * default one to qemu anyway.
         */
        for (i = 0; i < def->ncontrollers; i++) {
            if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_USB) {
                if (usb) {
                    usb = NULL;
                    break;
                }
                usb = def->controllers[i];
            }
        }
        if (usb && usb->idx == 0 && usb->model == -1) {
            VIR_DEBUG("Removing default USB controller from domain '%s'"
                      " for migration compatibility", def->name);
1534
            toremove++;
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552
        } else {
            usb = NULL;
        }

        /* Remove the default PCI controller if there is only one present
         * and its model is pci-root */
        for (i = 0; i < def->ncontrollers; i++) {
            if (def->controllers[i]->type == VIR_DOMAIN_CONTROLLER_TYPE_PCI) {
                if (pci) {
                    pci = NULL;
                    break;
                }
                pci = def->controllers[i];
            }
        }

        if (pci && pci->idx == 0 &&
            pci->model == VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT) {
L
Laine Stump 已提交
1553
            VIR_DEBUG("Removing default pci-root from domain '%s'"
1554
                      " for migration compatibility", def->name);
1555
            toremove++;
1556 1557 1558 1559
        } else {
            pci = NULL;
        }

1560
        if (toremove) {
1561 1562
            controllers = def->controllers;
            ncontrollers = def->ncontrollers;
1563
            if (VIR_ALLOC_N(def->controllers, ncontrollers - toremove) < 0) {
1564 1565 1566 1567 1568 1569
                controllers = NULL;
                goto cleanup;
            }

            def->ncontrollers = 0;
            for (i = 0; i < ncontrollers; i++) {
1570
                if (controllers[i] != usb && controllers[i] != pci)
1571 1572 1573
                    def->controllers[def->ncontrollers++] = controllers[i];
            }
        }
1574 1575


1576 1577
    }

1578
    ret = virDomainDefFormatInternal(def, flags, buf);
1579

1580
 cleanup:
1581 1582
    def->cpu = def_cpu;
    virCPUDefFree(cpu);
1583 1584 1585 1586 1587
    if (controllers) {
        VIR_FREE(def->controllers);
        def->controllers = controllers;
        def->ncontrollers = ncontrollers;
    }
1588
    virObjectUnref(caps);
1589 1590
    return ret;
}
1591

1592
char *qemuDomainDefFormatXML(virQEMUDriverPtr driver,
1593
                             virDomainDefPtr def,
1594
                             unsigned int flags)
1595 1596 1597
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

1598
    if (qemuDomainDefFormatBuf(driver, def, flags, &buf) < 0) {
1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611
        virBufferFreeAndReset(&buf);
        return NULL;
    }

    if (virBufferError(&buf)) {
        virReportOOMError();
        virBufferFreeAndReset(&buf);
        return NULL;
    }

    return virBufferContentAndReset(&buf);
}

1612
char *qemuDomainFormatXML(virQEMUDriverPtr driver,
1613
                          virDomainObjPtr vm,
1614
                          unsigned int flags)
1615 1616 1617 1618 1619 1620 1621 1622
{
    virDomainDefPtr def;

    if ((flags & VIR_DOMAIN_XML_INACTIVE) && vm->newDef)
        def = vm->newDef;
    else
        def = vm->def;

1623
    return qemuDomainDefFormatXML(driver, def, flags);
1624 1625
}

1626
char *
1627
qemuDomainDefFormatLive(virQEMUDriverPtr driver,
1628
                        virDomainDefPtr def,
1629 1630
                        bool inactive,
                        bool compatible)
1631 1632 1633 1634 1635
{
    unsigned int flags = QEMU_DOMAIN_FORMAT_LIVE_FLAGS;

    if (inactive)
        flags |= VIR_DOMAIN_XML_INACTIVE;
1636 1637
    if (compatible)
        flags |= VIR_DOMAIN_XML_MIGRATABLE;
1638

1639
    return qemuDomainDefFormatXML(driver, def, flags);
1640 1641
}

1642

1643
void qemuDomainObjTaint(virQEMUDriverPtr driver,
1644
                        virDomainObjPtr obj,
1645 1646
                        enum virDomainTaintFlags taint,
                        int logFD)
1647
{
1648 1649
    virErrorPtr orig_err = NULL;

1650 1651 1652 1653 1654 1655 1656 1657 1658
    if (virDomainObjTaint(obj, taint)) {
        char uuidstr[VIR_UUID_STRING_BUFLEN];
        virUUIDFormat(obj->def->uuid, uuidstr);

        VIR_WARN("Domain id=%d name='%s' uuid=%s is tainted: %s",
                 obj->def->id,
                 obj->def->name,
                 uuidstr,
                 virDomainTaintTypeToString(taint));
1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672

        /* We don't care about errors logging taint info, so
         * preserve original error, and clear any error that
         * is raised */
        orig_err = virSaveLastError();
        if (qemuDomainAppendLog(driver, obj, logFD,
                                "Domain id=%d is tainted: %s\n",
                                obj->def->id,
                                virDomainTaintTypeToString(taint)) < 0)
            virResetLastError();
        if (orig_err) {
            virSetError(orig_err);
            virFreeError(orig_err);
        }
1673 1674 1675 1676
    }
}


1677
void qemuDomainObjCheckTaint(virQEMUDriverPtr driver,
1678 1679
                             virDomainObjPtr obj,
                             int logFD)
1680
{
1681
    size_t i;
1682
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1683
    qemuDomainObjPrivatePtr priv = obj->privateData;
1684

1685 1686 1687 1688
    if (cfg->privileged &&
        (!cfg->clearEmulatorCapabilities ||
         cfg->user == 0 ||
         cfg->group == 0))
1689
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HIGH_PRIVILEGES, logFD);
1690

1691 1692 1693
    if (priv->hookRun)
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HOOK, logFD);

1694 1695 1696
    if (obj->def->namespaceData) {
        qemuDomainCmdlineDefPtr qemucmd = obj->def->namespaceData;
        if (qemucmd->num_args || qemucmd->num_env)
1697
            qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_CUSTOM_ARGV, logFD);
1698 1699
    }

1700 1701 1702
    if (obj->def->cpu && obj->def->cpu->mode == VIR_CPU_MODE_HOST_PASSTHROUGH)
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HOST_CPU, logFD);

1703
    for (i = 0; i < obj->def->ndisks; i++)
1704
        qemuDomainObjCheckDiskTaint(driver, obj, obj->def->disks[i], logFD);
1705

1706
    for (i = 0; i < obj->def->nnets; i++)
1707
        qemuDomainObjCheckNetTaint(driver, obj, obj->def->nets[i], logFD);
1708 1709

    virObjectUnref(cfg);
1710 1711 1712
}


1713
void qemuDomainObjCheckDiskTaint(virQEMUDriverPtr driver,
1714
                                 virDomainObjPtr obj,
1715 1716
                                 virDomainDiskDefPtr disk,
                                 int logFD)
1717
{
1718
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1719
    int format = virDomainDiskGetFormat(disk);
1720

1721
    if ((!format || format == VIR_STORAGE_FILE_AUTO) &&
1722
        cfg->allowDiskFormatProbing)
1723
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_DISK_PROBING, logFD);
1724

1725
    if (disk->rawio == 1)
1726
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HIGH_PRIVILEGES, logFD);
1727 1728

    virObjectUnref(cfg);
1729 1730 1731
}


1732
void qemuDomainObjCheckNetTaint(virQEMUDriverPtr driver,
1733
                                virDomainObjPtr obj,
1734 1735
                                virDomainNetDefPtr net,
                                int logFD)
1736
{
1737 1738 1739 1740 1741 1742
    /* script is only useful for NET_TYPE_ETHERNET (qemu) and
     * NET_TYPE_BRIDGE (xen), but could be (incorrectly) specified for
     * any interface type. In any case, it's adding user sauce into
     * the soup, so it should taint the domain.
     */
    if (net->script != NULL)
1743
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_SHELL_SCRIPTS, logFD);
1744
}
1745 1746 1747


static int
1748
qemuDomainOpenLogHelper(virQEMUDriverConfigPtr cfg,
1749
                        virDomainObjPtr vm,
E
Eric Blake 已提交
1750
                        int oflags,
1751 1752 1753 1754
                        mode_t mode)
{
    char *logfile;
    int fd = -1;
1755
    bool trunc = false;
1756

1757
    if (virAsprintf(&logfile, "%s/%s.log", cfg->logDir, vm->def->name) < 0)
1758 1759
        return -1;

1760 1761 1762 1763 1764 1765 1766 1767 1768
    /* To make SELinux happy we always need to open in append mode.
     * So we fake O_TRUNC by calling ftruncate after open instead
     */
    if (oflags & O_TRUNC) {
        oflags &= ~O_TRUNC;
        oflags |= O_APPEND;
        trunc = true;
    }

E
Eric Blake 已提交
1769
    if ((fd = open(logfile, oflags, mode)) < 0) {
1770 1771 1772 1773 1774 1775 1776
        virReportSystemError(errno, _("failed to create logfile %s"),
                             logfile);
        goto cleanup;
    }
    if (virSetCloseExec(fd) < 0) {
        virReportSystemError(errno, _("failed to set close-on-exec flag on %s"),
                             logfile);
1777 1778 1779 1780 1781 1782 1783
        VIR_FORCE_CLOSE(fd);
        goto cleanup;
    }
    if (trunc &&
        ftruncate(fd, 0) < 0) {
        virReportSystemError(errno, _("failed to truncate %s"),
                             logfile);
1784 1785 1786 1787
        VIR_FORCE_CLOSE(fd);
        goto cleanup;
    }

1788
 cleanup:
1789 1790 1791 1792 1793 1794
    VIR_FREE(logfile);
    return fd;
}


int
1795
qemuDomainCreateLog(virQEMUDriverPtr driver, virDomainObjPtr vm,
E
Eric Blake 已提交
1796
                    bool append)
1797
{
1798
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
E
Eric Blake 已提交
1799
    int oflags;
1800
    int ret;
1801

E
Eric Blake 已提交
1802
    oflags = O_CREAT | O_WRONLY;
1803
    /* Only logrotate files in /var/log, so only append if running privileged */
1804
    if (cfg->privileged || append)
E
Eric Blake 已提交
1805
        oflags |= O_APPEND;
1806
    else
E
Eric Blake 已提交
1807
        oflags |= O_TRUNC;
1808

1809 1810 1811
    ret = qemuDomainOpenLogHelper(cfg, vm, oflags, S_IRUSR | S_IWUSR);
    virObjectUnref(cfg);
    return ret;
1812 1813 1814 1815
}


int
1816
qemuDomainOpenLog(virQEMUDriverPtr driver, virDomainObjPtr vm, off_t pos)
1817
{
1818
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1819 1820 1821 1822
    int fd;
    off_t off;
    int whence;

1823 1824 1825
    fd = qemuDomainOpenLogHelper(cfg, vm, O_RDONLY, 0);
    virObjectUnref(cfg);
    if (fd < 0)
1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851
        return -1;

    if (pos < 0) {
        off = 0;
        whence = SEEK_END;
    } else {
        off = pos;
        whence = SEEK_SET;
    }

    if (lseek(fd, off, whence) < 0) {
        if (whence == SEEK_END)
            virReportSystemError(errno,
                                 _("unable to seek to end of log for %s"),
                                 vm->def->name);
        else
            virReportSystemError(errno,
                                 _("unable to seek to %lld from start for %s"),
                                 (long long)off, vm->def->name);
        VIR_FORCE_CLOSE(fd);
    }

    return fd;
}


1852
int qemuDomainAppendLog(virQEMUDriverPtr driver,
1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867
                        virDomainObjPtr obj,
                        int logFD,
                        const char *fmt, ...)
{
    int fd = logFD;
    va_list argptr;
    char *message = NULL;
    int ret = -1;

    va_start(argptr, fmt);

    if ((fd == -1) &&
        (fd = qemuDomainCreateLog(driver, obj, true)) < 0)
        goto cleanup;

1868
    if (virVasprintf(&message, fmt, argptr) < 0)
1869 1870 1871 1872 1873 1874 1875 1876 1877
        goto cleanup;
    if (safewrite(fd, message, strlen(message)) < 0) {
        virReportSystemError(errno, _("Unable to write to domain logfile %s"),
                             obj->def->name);
        goto cleanup;
    }

    ret = 0;

1878
 cleanup:
1879 1880 1881 1882 1883
    va_end(argptr);

    if (fd != logFD)
        VIR_FORCE_CLOSE(fd);

O
Osier Yang 已提交
1884
    VIR_FREE(message);
1885 1886
    return ret;
}
1887 1888 1889

/* Locate an appropriate 'qemu-img' binary.  */
const char *
1890
qemuFindQemuImgBinary(virQEMUDriverPtr driver)
1891
{
1892 1893 1894
    if (!driver->qemuImgBinary)
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("unable to find kvm-img or qemu-img"));
1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911

    return driver->qemuImgBinary;
}

int
qemuDomainSnapshotWriteMetadata(virDomainObjPtr vm,
                                virDomainSnapshotObjPtr snapshot,
                                char *snapshotDir)
{
    char *newxml = NULL;
    int ret = -1;
    char *snapDir = NULL;
    char *snapFile = NULL;
    char uuidstr[VIR_UUID_STRING_BUFLEN];

    virUUIDFormat(vm->def->uuid, uuidstr);
    newxml = virDomainSnapshotDefFormat(uuidstr, snapshot->def,
1912 1913
                                        QEMU_DOMAIN_FORMAT_LIVE_FLAGS, 1);
    if (newxml == NULL)
1914 1915
        return -1;

1916
    if (virAsprintf(&snapDir, "%s/%s", snapshotDir, vm->def->name) < 0)
1917 1918 1919 1920 1921 1922 1923
        goto cleanup;
    if (virFileMakePath(snapDir) < 0) {
        virReportSystemError(errno, _("cannot create snapshot directory '%s'"),
                             snapDir);
        goto cleanup;
    }

1924
    if (virAsprintf(&snapFile, "%s/%s.xml", snapDir, snapshot->def->name) < 0)
1925 1926
        goto cleanup;

J
Ján Tomko 已提交
1927
    ret = virXMLSaveFile(snapFile, NULL, "snapshot-edit", newxml);
1928

1929
 cleanup:
1930 1931 1932 1933 1934 1935 1936 1937
    VIR_FREE(snapFile);
    VIR_FREE(snapDir);
    VIR_FREE(newxml);
    return ret;
}

/* The domain is expected to be locked and inactive. Return -1 on normal
 * failure, 1 if we skipped a disk due to try_all.  */
1938
static int
1939
qemuDomainSnapshotForEachQcow2Raw(virQEMUDriverPtr driver,
1940 1941 1942 1943 1944
                                  virDomainDefPtr def,
                                  const char *name,
                                  const char *op,
                                  bool try_all,
                                  int ndisks)
1945 1946
{
    const char *qemuimgarg[] = { NULL, "snapshot", NULL, NULL, NULL, NULL };
1947
    size_t i;
1948 1949 1950 1951 1952 1953 1954 1955 1956
    bool skipped = false;

    qemuimgarg[0] = qemuFindQemuImgBinary(driver);
    if (qemuimgarg[0] == NULL) {
        /* qemuFindQemuImgBinary set the error */
        return -1;
    }

    qemuimgarg[2] = op;
1957
    qemuimgarg[3] = name;
1958

1959
    for (i = 0; i < ndisks; i++) {
1960
        /* FIXME: we also need to handle LVM here */
1961
        if (def->disks[i]->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
1962 1963 1964
            int format = virDomainDiskGetFormat(def->disks[i]);

            if (format > 0 && format != VIR_STORAGE_FILE_QCOW2) {
1965 1966 1967 1968 1969
                if (try_all) {
                    /* Continue on even in the face of error, since other
                     * disks in this VM may have the same snapshot name.
                     */
                    VIR_WARN("skipping snapshot action on %s",
1970
                             def->disks[i]->dst);
1971 1972
                    skipped = true;
                    continue;
1973 1974 1975 1976 1977
                } else if (STREQ(op, "-c") && i) {
                    /* We must roll back partial creation by deleting
                     * all earlier snapshots.  */
                    qemuDomainSnapshotForEachQcow2Raw(driver, def, name,
                                                      "-d", false, i);
1978
                }
1979 1980 1981 1982
                virReportError(VIR_ERR_OPERATION_INVALID,
                               _("Disk device '%s' does not support"
                                 " snapshotting"),
                               def->disks[i]->dst);
1983 1984 1985
                return -1;
            }

1986
            qemuimgarg[4] = virDomainDiskGetSource(def->disks[i]);
1987 1988 1989 1990

            if (virRun(qemuimgarg, NULL) < 0) {
                if (try_all) {
                    VIR_WARN("skipping snapshot action on %s",
1991
                             def->disks[i]->dst);
1992 1993
                    skipped = true;
                    continue;
1994 1995 1996 1997 1998
                } else if (STREQ(op, "-c") && i) {
                    /* We must roll back partial creation by deleting
                     * all earlier snapshots.  */
                    qemuDomainSnapshotForEachQcow2Raw(driver, def, name,
                                                      "-d", false, i);
1999 2000 2001 2002 2003 2004 2005 2006 2007
                }
                return -1;
            }
        }
    }

    return skipped ? 1 : 0;
}

2008 2009 2010
/* The domain is expected to be locked and inactive. Return -1 on normal
 * failure, 1 if we skipped a disk due to try_all.  */
int
2011
qemuDomainSnapshotForEachQcow2(virQEMUDriverPtr driver,
2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027
                               virDomainObjPtr vm,
                               virDomainSnapshotObjPtr snap,
                               const char *op,
                               bool try_all)
{
    /* Prefer action on the disks in use at the time the snapshot was
     * created; but fall back to current definition if dealing with a
     * snapshot created prior to libvirt 0.9.5.  */
    virDomainDefPtr def = snap->def->dom;

    if (!def)
        def = vm->def;
    return qemuDomainSnapshotForEachQcow2Raw(driver, def, snap->def->name,
                                             op, try_all, def->ndisks);
}

2028 2029
/* Discard one snapshot (or its metadata), without reparenting any children.  */
int
2030
qemuDomainSnapshotDiscard(virQEMUDriverPtr driver,
2031 2032 2033 2034 2035 2036 2037 2038 2039
                          virDomainObjPtr vm,
                          virDomainSnapshotObjPtr snap,
                          bool update_current,
                          bool metadata_only)
{
    char *snapFile = NULL;
    int ret = -1;
    qemuDomainObjPrivatePtr priv;
    virDomainSnapshotObjPtr parentsnap = NULL;
2040
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
2041 2042 2043 2044 2045 2046 2047 2048 2049

    if (!metadata_only) {
        if (!virDomainObjIsActive(vm)) {
            /* Ignore any skipped disks */
            if (qemuDomainSnapshotForEachQcow2(driver, vm, snap, "-d",
                                               true) < 0)
                goto cleanup;
        } else {
            priv = vm->privateData;
2050
            qemuDomainObjEnterMonitor(driver, vm);
2051 2052
            /* we continue on even in the face of error */
            qemuMonitorDeleteSnapshot(priv->mon, snap->def->name);
2053
            qemuDomainObjExitMonitor(driver, vm);
2054 2055 2056
        }
    }

2057
    if (virAsprintf(&snapFile, "%s/%s/%s.xml", cfg->snapshotDir,
2058
                    vm->def->name, snap->def->name) < 0)
2059 2060 2061 2062
        goto cleanup;

    if (snap == vm->current_snapshot) {
        if (update_current && snap->def->parent) {
2063
            parentsnap = virDomainSnapshotFindByName(vm->snapshots,
2064 2065 2066 2067 2068 2069 2070
                                                     snap->def->parent);
            if (!parentsnap) {
                VIR_WARN("missing parent snapshot matching name '%s'",
                         snap->def->parent);
            } else {
                parentsnap->def->current = true;
                if (qemuDomainSnapshotWriteMetadata(vm, parentsnap,
2071
                                                    cfg->snapshotDir) < 0) {
2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083
                    VIR_WARN("failed to set parent snapshot '%s' as current",
                             snap->def->parent);
                    parentsnap->def->current = false;
                    parentsnap = NULL;
                }
            }
        }
        vm->current_snapshot = parentsnap;
    }

    if (unlink(snapFile) < 0)
        VIR_WARN("Failed to unlink %s", snapFile);
2084
    virDomainSnapshotObjListRemove(vm->snapshots, snap);
2085 2086 2087

    ret = 0;

2088
 cleanup:
2089
    VIR_FREE(snapFile);
2090
    virObjectUnref(cfg);
2091 2092 2093 2094 2095 2096 2097 2098 2099
    return ret;
}

/* Hash iterator callback to discard multiple snapshots.  */
void qemuDomainSnapshotDiscardAll(void *payload,
                                  const void *name ATTRIBUTE_UNUSED,
                                  void *data)
{
    virDomainSnapshotObjPtr snap = payload;
2100
    virQEMUSnapRemovePtr curr = data;
2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111
    int err;

    if (snap->def->current)
        curr->current = true;
    err = qemuDomainSnapshotDiscard(curr->driver, curr->vm, snap, false,
                                    curr->metadata_only);
    if (err && !curr->err)
        curr->err = err;
}

int
2112
qemuDomainSnapshotDiscardAllMetadata(virQEMUDriverPtr driver,
2113 2114
                                     virDomainObjPtr vm)
{
2115
    virQEMUSnapRemove rem;
2116 2117 2118 2119 2120

    rem.driver = driver;
    rem.vm = vm;
    rem.metadata_only = true;
    rem.err = 0;
2121 2122
    virDomainSnapshotForEach(vm->snapshots, qemuDomainSnapshotDiscardAll,
                             &rem);
2123 2124 2125 2126 2127

    return rem.err;
}

/*
2128
 * The caller must hold a lock the vm and there must
2129 2130 2131
 * be no remaining references to vm.
 */
void
2132
qemuDomainRemoveInactive(virQEMUDriverPtr driver,
2133 2134
                         virDomainObjPtr vm)
{
2135
    char *snapDir;
2136
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
2137

2138 2139 2140 2141 2142
    /* Remove any snapshot metadata prior to removing the domain */
    if (qemuDomainSnapshotDiscardAllMetadata(driver, vm) < 0) {
        VIR_WARN("unable to remove all snapshots for domain %s",
                 vm->def->name);
    }
2143
    else if (virAsprintf(&snapDir, "%s/%s", cfg->snapshotDir,
2144 2145
                         vm->def->name) < 0) {
        VIR_WARN("unable to remove snapshot directory %s/%s",
2146
                 cfg->snapshotDir, vm->def->name);
2147 2148 2149 2150 2151
    } else {
        if (rmdir(snapDir) < 0 && errno != ENOENT)
            VIR_WARN("unable to remove snapshot directory %s", snapDir);
        VIR_FREE(snapDir);
    }
2152
    virDomainObjListRemove(driver->domains, vm);
2153
    virObjectUnref(cfg);
2154
}
2155 2156

void
2157
qemuDomainSetFakeReboot(virQEMUDriverPtr driver,
2158 2159 2160 2161
                        virDomainObjPtr vm,
                        bool value)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2162
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
2163 2164

    if (priv->fakeReboot == value)
2165
        goto cleanup;
2166 2167 2168

    priv->fakeReboot = value;

2169
    if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, vm) < 0)
2170
        VIR_WARN("Failed to save status on vm %s", vm->def->name);
2171

2172
 cleanup:
2173
    virObjectUnref(cfg);
2174
}
M
Michal Privoznik 已提交
2175

2176 2177 2178
static int
qemuDomainCheckRemoveOptionalDisk(virQEMUDriverPtr driver,
                                  virDomainObjPtr vm,
2179
                                  size_t diskIndex)
2180 2181
{
    char uuid[VIR_UUID_STRING_BUFLEN];
2182
    virObjectEventPtr event = NULL;
2183
    virDomainDiskDefPtr disk = vm->def->disks[diskIndex];
2184
    const char *src = virDomainDiskGetSource(disk);
2185 2186 2187 2188 2189

    virUUIDFormat(vm->def->uuid, uuid);

    VIR_DEBUG("Dropping disk '%s' on domain '%s' (UUID '%s') "
              "due to inaccessible source '%s'",
2190
              disk->dst, vm->def->name, uuid, src);
2191 2192 2193 2194

    if (disk->device == VIR_DOMAIN_DISK_DEVICE_CDROM ||
        disk->device == VIR_DOMAIN_DISK_DEVICE_FLOPPY) {

2195
        event = virDomainEventDiskChangeNewFromObj(vm, src, NULL,
2196 2197
                                                   disk->info.alias,
                                                   VIR_DOMAIN_EVENT_DISK_CHANGE_MISSING_ON_START);
2198
        ignore_value(virDomainDiskSetSource(disk, NULL));
2199
    } else {
2200
        event = virDomainEventDiskChangeNewFromObj(vm, src, NULL,
2201 2202
                                                   disk->info.alias,
                                                   VIR_DOMAIN_EVENT_DISK_DROP_MISSING_ON_START);
2203 2204
        virDomainDiskRemove(vm->def, diskIndex);
        virDomainDiskDefFree(disk);
2205 2206 2207 2208 2209 2210 2211 2212
    }

    if (event)
        qemuDomainEventQueue(driver, event);

    return 0;
}

2213 2214 2215
static int
qemuDomainCheckDiskStartupPolicy(virQEMUDriverPtr driver,
                                 virDomainObjPtr vm,
2216
                                 size_t diskIndex,
2217 2218 2219
                                 bool cold_boot)
{
    char uuid[VIR_UUID_STRING_BUFLEN];
2220
    int startupPolicy = vm->def->disks[diskIndex]->startupPolicy;
2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231

    virUUIDFormat(vm->def->uuid, uuid);

    switch ((enum virDomainStartupPolicy) startupPolicy) {
        case VIR_DOMAIN_STARTUP_POLICY_OPTIONAL:
            break;

        case VIR_DOMAIN_STARTUP_POLICY_MANDATORY:
            goto error;

        case VIR_DOMAIN_STARTUP_POLICY_REQUISITE:
2232
            if (cold_boot)
2233 2234 2235 2236 2237 2238 2239 2240 2241
                goto error;
            break;

        case VIR_DOMAIN_STARTUP_POLICY_DEFAULT:
        case VIR_DOMAIN_STARTUP_POLICY_LAST:
            /* this should never happen */
            break;
    }

2242
    if (qemuDomainCheckRemoveOptionalDisk(driver, vm, diskIndex) < 0)
2243
        goto error;
2244 2245 2246

    return 0;

2247
 error:
2248 2249 2250
    return -1;
}

2251 2252 2253 2254 2255
static int
qemuDiskChainCheckBroken(virDomainDiskDefPtr disk)
{
    char *brokenFile = NULL;

2256
    if (!virDomainDiskGetSource(disk))
2257 2258
        return 0;

2259
    if (virStorageFileChainGetBroken(&disk->src, &brokenFile) < 0)
2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272
        return -1;

    if (brokenFile) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("Backing file '%s' of image '%s' is missing."),
                       brokenFile, virDomainDiskGetSource(disk));
        VIR_FREE(brokenFile);
        return -1;
    }

    return 0;
}

M
Michal Privoznik 已提交
2273
int
2274
qemuDomainCheckDiskPresence(virQEMUDriverPtr driver,
M
Michal Privoznik 已提交
2275
                            virDomainObjPtr vm,
2276
                            bool cold_boot)
M
Michal Privoznik 已提交
2277 2278
{
    int ret = -1;
2279
    size_t i;
M
Michal Privoznik 已提交
2280

2281
    VIR_DEBUG("Checking for disk presence");
2282
    for (i = vm->def->ndisks; i > 0; i--) {
2283 2284
        size_t idx = i - 1;
        virDomainDiskDefPtr disk = vm->def->disks[idx];
2285
        const char *path = virDomainDiskGetSource(disk);
2286 2287
        virStorageFileFormat format = virDomainDiskGetFormat(disk);
        virStorageType type = virStorageSourceGetActualType(&disk->src);
M
Michal Privoznik 已提交
2288

2289 2290 2291 2292 2293 2294
        if (!path)
            continue;

        /* There is no need to check the backing chain for disks
         * without backing support, the fact that the file exists is
         * more than enough */
2295 2296
        if (type != VIR_STORAGE_TYPE_NETWORK &&
            format >= VIR_STORAGE_FILE_NONE &&
2297 2298
            format < VIR_STORAGE_FILE_BACKING &&
            virFileExists(path))
M
Michal Privoznik 已提交
2299 2300
            continue;

2301
        if (qemuDomainDetermineDiskChain(driver, vm, disk, false) >= 0 &&
2302
            qemuDiskChainCheckBroken(disk) >= 0)
M
Michal Privoznik 已提交
2303
            continue;
2304

2305
        if (disk->startupPolicy &&
2306
            qemuDomainCheckDiskStartupPolicy(driver, vm, idx,
2307 2308 2309
                                             cold_boot) >= 0) {
            virResetLastError();
            continue;
M
Michal Privoznik 已提交
2310 2311
        }

2312
        goto error;
M
Michal Privoznik 已提交
2313 2314 2315 2316
    }

    ret = 0;

2317
 error:
M
Michal Privoznik 已提交
2318 2319
    return ret;
}
2320 2321 2322 2323 2324 2325 2326 2327 2328 2329

/*
 * The vm must be locked when any of the following cleanup functions is
 * called.
 */
int
qemuDomainCleanupAdd(virDomainObjPtr vm,
                     qemuDomainCleanupCallback cb)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2330
    size_t i;
2331 2332 2333 2334 2335 2336 2337 2338 2339 2340

    VIR_DEBUG("vm=%s, cb=%p", vm->def->name, cb);

    for (i = 0; i < priv->ncleanupCallbacks; i++) {
        if (priv->cleanupCallbacks[i] == cb)
            return 0;
    }

    if (VIR_RESIZE_N(priv->cleanupCallbacks,
                     priv->ncleanupCallbacks_max,
2341
                     priv->ncleanupCallbacks, 1) < 0)
2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352
        return -1;

    priv->cleanupCallbacks[priv->ncleanupCallbacks++] = cb;
    return 0;
}

void
qemuDomainCleanupRemove(virDomainObjPtr vm,
                        qemuDomainCleanupCallback cb)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2353
    size_t i;
2354 2355 2356 2357

    VIR_DEBUG("vm=%s, cb=%p", vm->def->name, cb);

    for (i = 0; i < priv->ncleanupCallbacks; i++) {
2358 2359 2360
        if (priv->cleanupCallbacks[i] == cb)
            VIR_DELETE_ELEMENT_INPLACE(priv->cleanupCallbacks,
                                       i, priv->ncleanupCallbacks);
2361 2362 2363 2364 2365 2366 2367 2368
    }

    VIR_SHRINK_N(priv->cleanupCallbacks,
                 priv->ncleanupCallbacks_max,
                 priv->ncleanupCallbacks_max - priv->ncleanupCallbacks);
}

void
2369
qemuDomainCleanupRun(virQEMUDriverPtr driver,
2370 2371 2372
                     virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2373
    size_t i;
2374 2375 2376 2377

    VIR_DEBUG("driver=%p, vm=%s", driver, vm->def->name);

    /* run cleanup callbacks in reverse order */
2378 2379
    for (i = 0; i < priv->ncleanupCallbacks; i++) {
        if (priv->cleanupCallbacks[priv->ncleanupCallbacks - (i + 1)])
2380 2381 2382 2383 2384 2385 2386
            priv->cleanupCallbacks[i](driver, vm);
    }

    VIR_FREE(priv->cleanupCallbacks);
    priv->ncleanupCallbacks = 0;
    priv->ncleanupCallbacks_max = 0;
}
2387

2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412
static void
qemuDomainGetImageIds(virQEMUDriverConfigPtr cfg,
                      virDomainObjPtr vm,
                      virDomainDiskDefPtr disk,
                      uid_t *uid, gid_t *gid)
{
    virSecurityLabelDefPtr vmlabel;
    virSecurityDeviceLabelDefPtr disklabel;

    if (uid)
        *uid = -1;
    if (gid)
        *gid = -1;

    if (cfg) {
        if (uid)
            *uid = cfg->user;

        if (gid)
            *gid = cfg->group;
    }

    if (vm && (vmlabel = virDomainDefGetSecurityLabelDef(vm->def, "dac")))
        virParseOwnershipIds(vmlabel->label, uid, gid);

2413 2414
    if ((disklabel = virDomainDiskDefGetSecurityLabelDef(disk, "dac")) &&
        disklabel->label)
2415 2416 2417 2418
        virParseOwnershipIds(disklabel->label, uid, gid);
}


2419
int
2420
qemuDomainDetermineDiskChain(virQEMUDriverPtr driver,
2421
                             virDomainObjPtr vm,
2422 2423 2424
                             virDomainDiskDefPtr disk,
                             bool force)
{
2425 2426
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    int ret = 0;
2427 2428
    uid_t uid;
    gid_t gid;
2429 2430
    const char *src = virDomainDiskGetSource(disk);
    int type = virDomainDiskGetType(disk);
2431

2432
    if (!src ||
E
Eric Blake 已提交
2433 2434
        type == VIR_STORAGE_TYPE_NETWORK ||
        type == VIR_STORAGE_TYPE_VOLUME)
2435
        goto cleanup;
2436

2437
    if (disk->src.backingStore) {
2438 2439 2440
        if (force)
            virStorageSourceClearBackingStore(&disk->src);
        else
2441
            goto cleanup;
2442
    }
2443 2444 2445

    qemuDomainGetImageIds(cfg, vm, disk, &uid, &gid);

2446 2447 2448
    if (virStorageFileGetMetadata(&disk->src,
                                  uid, gid,
                                  cfg->allowDiskFormatProbing) < 0)
2449 2450
        ret = -1;

2451
 cleanup:
2452 2453
    virObjectUnref(cfg);
    return ret;
2454
}
2455

2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476
int
qemuDomainUpdateDeviceList(virQEMUDriverPtr driver,
                           virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    char **aliases;

    if (!virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_DEVICE_DEL_EVENT))
        return 0;

    qemuDomainObjEnterMonitor(driver, vm);
    if (qemuMonitorGetDeviceAliases(priv->mon, &aliases) < 0) {
        qemuDomainObjExitMonitor(driver, vm);
        return -1;
    }
    qemuDomainObjExitMonitor(driver, vm);

    virStringFreeList(priv->qemuDevices);
    priv->qemuDevices = aliases;
    return 0;
}
2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493

bool
qemuDomainDefCheckABIStability(virQEMUDriverPtr driver,
                               virDomainDefPtr src,
                               virDomainDefPtr dst)
{
    virDomainDefPtr migratableDefSrc = NULL;
    virDomainDefPtr migratableDefDst = NULL;
    const int flags = VIR_DOMAIN_XML_SECURE | VIR_DOMAIN_XML_UPDATE_CPU | VIR_DOMAIN_XML_MIGRATABLE;
    bool ret = false;

    if (!(migratableDefSrc = qemuDomainDefCopy(driver, src, flags)) ||
        !(migratableDefDst = qemuDomainDefCopy(driver, dst, flags)))
        goto cleanup;

    ret = virDomainDefCheckABIStability(migratableDefSrc, migratableDefDst);

2494
 cleanup:
2495 2496 2497 2498
    virDomainDefFree(migratableDefSrc);
    virDomainDefFree(migratableDefDst);
    return ret;
}
2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520

bool
qemuDomainAgentAvailable(qemuDomainObjPrivatePtr priv,
                         bool reportError)
{
    if (priv->agentError) {
        if (reportError) {
            virReportError(VIR_ERR_AGENT_UNRESPONSIVE, "%s",
                           _("QEMU guest agent is not "
                             "available due to an error"));
        }
        return false;
    }
    if (!priv->agent) {
        if (reportError) {
            virReportError(VIR_ERR_ARGUMENT_UNSUPPORTED, "%s",
                           _("QEMU guest agent is not configured"));
        }
        return false;
    }
    return true;
}