qemu_domain.c 74.7 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 44
#include "storage/storage_driver.h"

45
#include <sys/time.h>
46
#include <fcntl.h>
47

48 49 50 51
#include <libxml/xpathInternals.h>

#define VIR_FROM_THIS VIR_FROM_QEMU

52 53
VIR_LOG_INIT("qemu.qemu_domain");

54 55
#define QEMU_NAMESPACE_HREF "http://libvirt.org/schemas/domain/qemu/1.0"

56 57 58 59 60 61
VIR_ENUM_IMPL(qemuDomainJob, QEMU_JOB_LAST,
              "none",
              "query",
              "destroy",
              "suspend",
              "modify",
62
              "abort",
63
              "migration operation",
64 65 66 67 68 69 70 71 72 73
              "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",
74
              "snapshot",
75 76
);

77

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

J
Jiri Denemark 已提交
87 88
    case QEMU_ASYNC_JOB_SAVE:
    case QEMU_ASYNC_JOB_DUMP:
89
    case QEMU_ASYNC_JOB_SNAPSHOT:
J
Jiri Denemark 已提交
90 91 92 93 94 95 96 97 98
    case QEMU_ASYNC_JOB_NONE:
    case QEMU_ASYNC_JOB_LAST:
        ; /* fall through */
    }

    return "none";
}

int
99
qemuDomainAsyncJobPhaseFromString(qemuDomainAsyncJob job,
J
Jiri Denemark 已提交
100 101 102 103 104 105 106 107
                                  const char *phase)
{
    if (!phase)
        return 0;

    switch (job) {
    case QEMU_ASYNC_JOB_MIGRATION_OUT:
    case QEMU_ASYNC_JOB_MIGRATION_IN:
108 109
        return qemuMigrationJobPhaseTypeFromString(phase);

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

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

124

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


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

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

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

145 146 147 148 149 150 151 152 153
    return 0;
}

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

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

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

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

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

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

    qemuDomainObjResetJob(priv);
    qemuDomainObjResetAsyncJob(priv);
}

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

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

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

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

213

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

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

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

228 229 230
    if (virCondInit(&priv->unplugFinished) < 0)
        goto error;

231
    if (!(priv->devs = virChrdevAlloc()))
232 233
        goto error;

234
    priv->migMaxBandwidth = QEMU_DOMAIN_MIG_BANDWIDTH_MAX;
235

236
    return priv;
237

238
 error:
239 240
    VIR_FREE(priv);
    return NULL;
241 242
}

243 244
static void
qemuDomainObjPrivateFree(void *data)
245 246 247
{
    qemuDomainObjPrivatePtr priv = data;

248
    virObjectUnref(priv->qemuCaps);
249

250
    virCgroupFree(&priv->cgroup);
251
    virDomainPCIAddressSetFree(priv->pciaddrs);
J
Ján Tomko 已提交
252
    virDomainCCWAddressSetFree(priv->ccwaddrs);
253
    virDomainChrSourceDefFree(priv->monConfig);
254
    qemuDomainObjFreeJob(priv);
255
    VIR_FREE(priv->vcpupids);
256
    VIR_FREE(priv->lockState);
J
Jiri Denemark 已提交
257
    VIR_FREE(priv->origname);
258

259
    virCondDestroy(&priv->unplugFinished);
260
    virChrdevFree(priv->devs);
261

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


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

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

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


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

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

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

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

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

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

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

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

366 367 368
    return 0;
}

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

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

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

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

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

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

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

423
        for (i = 0; i < n; i++) {
424 425 426 427 428 429 430 431 432 433 434 435 436
            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);
    }

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

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

461
        priv->qemuCaps = qemuCaps;
462 463 464
    }
    VIR_FREE(nodes);

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

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

        if ((type = qemuDomainJobTypeFromString(tmp)) < 0) {
471 472
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown job type %s"), tmp);
473 474 475 476 477 478 479 480 481 482 483
            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) {
484 485
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown async job type %s"), tmp);
486 487 488 489 490
            VIR_FREE(tmp);
            goto error;
        }
        VIR_FREE(tmp);
        priv->job.asyncJob = async;
J
Jiri Denemark 已提交
491 492 493 494

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

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

506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
    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);

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

529 530
    return 0;

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


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


550 551 552 553 554
static void
qemuDomainDefNamespaceFree(void *nsdata)
{
    qemuDomainCmdlineDefPtr cmd = nsdata;

555
    qemuDomainCmdlineDefFree(cmd);
556 557 558
}

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

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

577
    if (VIR_ALLOC(cmd) < 0)
578 579 580 581 582 583
        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 已提交
584
    uses_qemu_ns |= n > 0;
585 586

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

    for (i = 0; i < n; i++) {
        cmd->args[cmd->num_args] = virXMLPropString(nodes[i], "value");
        if (cmd->args[cmd->num_args] == NULL) {
592 593
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No qemu command-line argument specified"));
594 595 596 597 598 599 600 601 602 603 604
            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 已提交
605
    uses_qemu_ns |= n > 0;
606 607

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

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

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

        tmp = virXMLPropString(nodes[i], "name");
        if (tmp == NULL) {
618 619
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No qemu environment name specified"));
620 621 622
            goto error;
        }
        if (tmp[0] == '\0') {
623 624
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Empty qemu environment name specified"));
625 626 627
            goto error;
        }
        if (!c_isalpha(tmp[0]) && tmp[0] != '_') {
628 629
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Invalid environment name, it must begin with a letter or underscore"));
630 631 632
            goto error;
        }
        if (strspn(tmp, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_") != strlen(tmp)) {
633 634
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Invalid environment name, it must contain only alphanumerics and underscore"));
635 636 637 638 639 640 641 642 643 644 645 646
            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 已提交
647 648 649 650
    if (uses_qemu_ns)
        *data = cmd;
    else
        VIR_FREE(cmd);
651 652 653

    return 0;

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

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

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

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

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

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

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


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

702

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

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

721 722 723 724 725 726
    /* 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 已提交
727
        if (STREQ(def->os.machine, "isapc")) {
728
            addDefaultUSB = false;
729
            break;
730
        }
L
Laine Stump 已提交
731 732 733 734
        if (STRPREFIX(def->os.machine, "pc-q35") ||
            STREQ(def->os.machine, "q35")) {
           addPCIeRoot = true;
           addDefaultUSB = false;
735
           addImplicitSATA = true;
L
Laine Stump 已提交
736 737
           break;
        }
738 739
        if (!STRPREFIX(def->os.machine, "pc-0.") &&
            !STRPREFIX(def->os.machine, "pc-1.") &&
740
            !STRPREFIX(def->os.machine, "pc-i440") &&
741 742 743 744 745 746
            !STREQ(def->os.machine, "pc") &&
            !STRPREFIX(def->os.machine, "rhel"))
            break;
        addPCIRoot = true;
        break;

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

756 757 758 759 760 761
    case VIR_ARCH_PPC64:
        addPCIRoot = true;
        addDefaultUSBKBD = true;
        addDefaultUSBMouse = true;
        break;

762 763 764 765 766 767 768 769 770 771 772
    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;
    }

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

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

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

789 790 791 792 793 794 795 796 797 798 799 800 801 802
    /* 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 已提交
803
        return -1;
804 805
        }
    }
806

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

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

816 817 818 819 820 821 822 823 824 825 826 827 828 829
    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;

830 831 832
    return 0;
}

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

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

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

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

    return "rtl8139";
}
855

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

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

874 875 876 877 878 879 880 881 882
    /* 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 */
883
                if (virDomainDiskGetFormat(disk) == VIR_STORAGE_FILE_NONE &&
E
Eric Blake 已提交
884 885
                    (virDomainDiskGetType(disk) == VIR_STORAGE_TYPE_FILE ||
                     virDomainDiskGetType(disk) == VIR_STORAGE_TYPE_BLOCK))
886
                    virDomainDiskSetFormat(disk, VIR_STORAGE_FILE_AUTO);
887 888 889

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

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

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

912 913 914 915 916 917 918
    /* 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;

919 920 921 922 923 924 925 926
    /* 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;

927 928 929 930 931 932 933 934 935 936 937
    /* 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,
938
                        dev->data.chr->target.name) < 0)
939
            goto cleanup;
940 941 942
        dev->data.chr->source.data.nix.listen = true;
    }

943 944 945 946 947 948 949 950 951 952
    /* forbid capabilities mode hostdev in this kind of hypervisor */
    if (dev->type == VIR_DOMAIN_DEVICE_HOSTDEV &&
        dev->data.hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_CAPABILITIES) {
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                       _("hostdev mode 'capabilities' is not "
                         "supported in %s"),
                       virDomainVirtTypeToString(def->virtType));
        goto cleanup;
    }

953 954
    ret = 0;

955
 cleanup:
956 957
    virObjectUnref(cfg);
    return ret;
958 959 960 961 962
}


virDomainDefParserConfig virQEMUDriverDomainDefParserConfig = {
    .devicesPostParseCallback = qemuDomainDeviceDefPostParse,
963
    .domainPostParseCallback = qemuDomainDefPostParse,
964 965 966
};


967
static void
968
qemuDomainObjSaveJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
969
{
970 971 972
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);

    if (virDomainObjIsActive(obj)) {
973
        if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, obj) < 0)
974
            VIR_WARN("Failed to save status on vm %s", obj->def->name);
975
    }
976

977
    virObjectUnref(cfg);
978 979
}

J
Jiri Denemark 已提交
980
void
981
qemuDomainObjSetJobPhase(virQEMUDriverPtr driver,
J
Jiri Denemark 已提交
982 983 984 985
                         virDomainObjPtr obj,
                         int phase)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
986
    unsigned long long me = virThreadSelfID();
J
Jiri Denemark 已提交
987 988 989 990

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

991 992 993 994 995
    VIR_DEBUG("Setting '%s' phase to '%s'",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              qemuDomainAsyncJobPhaseToString(priv->job.asyncJob, phase));

    if (priv->job.asyncOwner && me != priv->job.asyncOwner) {
996
        VIR_WARN("'%s' async job is owned by thread %llu",
997 998 999 1000
                 qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
                 priv->job.asyncOwner);
    }

J
Jiri Denemark 已提交
1001
    priv->job.phase = phase;
1002
    priv->job.asyncOwner = me;
J
Jiri Denemark 已提交
1003 1004 1005
    qemuDomainObjSaveJob(driver, obj);
}

1006
void
1007 1008
qemuDomainObjSetAsyncJobMask(virDomainObjPtr obj,
                             unsigned long long allowedJobs)
1009 1010 1011
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

1012 1013 1014 1015 1016 1017 1018
    if (!priv->job.asyncJob)
        return;

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

void
1019
qemuDomainObjDiscardAsyncJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
1020 1021 1022 1023 1024 1025
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    if (priv->job.active == QEMU_JOB_ASYNC_NESTED)
        qemuDomainObjResetJob(priv);
    qemuDomainObjResetAsyncJob(priv);
1026
    qemuDomainObjSaveJob(driver, obj);
1027 1028
}

1029 1030 1031 1032 1033 1034 1035 1036 1037
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()) {
1038
        VIR_WARN("'%s' async job is owned by thread %llu",
1039 1040 1041 1042 1043 1044
                 qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
                 priv->job.asyncOwner);
    }
    priv->job.asyncOwner = 0;
}

1045
static bool
1046
qemuDomainNestedJobAllowed(qemuDomainObjPrivatePtr priv, qemuDomainJob job)
1047 1048
{
    return !priv->job.asyncJob || (priv->job.mask & JOB_MASK(job)) != 0;
1049 1050
}

1051
bool
1052
qemuDomainJobAllowed(qemuDomainObjPrivatePtr priv, qemuDomainJob job)
1053 1054 1055 1056
{
    return !priv->job.active && qemuDomainNestedJobAllowed(priv, job);
}

1057 1058 1059
/* Give up waiting for mutex after 30 seconds */
#define QEMU_JOB_WAIT_TIME (1000ull * 30)

1060
/*
1061
 * obj must be locked before calling
1062
 */
1063
static int ATTRIBUTE_NONNULL(1)
1064
qemuDomainObjBeginJobInternal(virQEMUDriverPtr driver,
1065
                              virDomainObjPtr obj,
1066 1067
                              qemuDomainJob job,
                              qemuDomainAsyncJob asyncJob)
1068 1069
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
J
Jiri Denemark 已提交
1070
    unsigned long long now;
1071
    unsigned long long then;
1072
    bool nested = job == QEMU_JOB_ASYNC_NESTED;
1073
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1074
    int ret;
1075

1076 1077 1078 1079 1080 1081
    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);

1082 1083
    priv->jobs_queued++;

1084 1085
    if (virTimeMillisNow(&now) < 0) {
        virObjectUnref(cfg);
1086
        return -1;
1087 1088
    }

J
Jiri Denemark 已提交
1089
    then = now + QEMU_JOB_WAIT_TIME;
1090

1091
    virObjectRef(obj);
1092

1093
 retry:
1094 1095
    if (cfg->maxQueuedJobs &&
        priv->jobs_queued > cfg->maxQueuedJobs) {
1096 1097 1098
        goto error;
    }

1099
    while (!nested && !qemuDomainNestedJobAllowed(priv, job)) {
1100
        VIR_DEBUG("Waiting for async job (vm=%p name=%s)", obj, obj->def->name);
1101
        if (virCondWaitUntil(&priv->job.asyncCond, &obj->parent.lock, then) < 0)
1102 1103 1104
            goto error;
    }

1105
    while (priv->job.active) {
1106
        VIR_DEBUG("Waiting for job (vm=%p name=%s)", obj, obj->def->name);
1107
        if (virCondWaitUntil(&priv->job.cond, &obj->parent.lock, then) < 0)
1108
            goto error;
1109
    }
1110 1111 1112

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

1116
    qemuDomainObjResetJob(priv);
1117 1118

    if (job != QEMU_JOB_ASYNC) {
1119
        VIR_DEBUG("Started job: %s (async=%s vm=%p name=%s)",
1120
                   qemuDomainJobTypeToString(job),
1121 1122
                  qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
                  obj, obj->def->name);
1123
        priv->job.active = job;
1124
        priv->job.owner = virThreadSelfID();
1125
    } else {
1126 1127 1128
        VIR_DEBUG("Started async job: %s (vm=%p name=%s)",
                  qemuDomainAsyncJobTypeToString(asyncJob),
                  obj, obj->def->name);
1129 1130
        qemuDomainObjResetAsyncJob(priv);
        priv->job.asyncJob = asyncJob;
1131
        priv->job.asyncOwner = virThreadSelfID();
1132 1133
        priv->job.start = now;
    }
1134

1135 1136
    if (qemuDomainTrackJob(job))
        qemuDomainObjSaveJob(driver, obj);
1137

1138
    virObjectUnref(cfg);
1139
    return 0;
1140

1141
 error:
1142
    VIR_WARN("Cannot start job (%s, %s) for domain %s;"
1143
             " current job is (%s, %s) owned by (%llu, %llu)",
1144 1145 1146 1147 1148 1149 1150
             qemuDomainJobTypeToString(job),
             qemuDomainAsyncJobTypeToString(asyncJob),
             obj->def->name,
             qemuDomainJobTypeToString(priv->job.active),
             qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
             priv->job.owner, priv->job.asyncOwner);

1151 1152
    ret = -1;
    if (errno == ETIMEDOUT) {
1153 1154
        virReportError(VIR_ERR_OPERATION_TIMEOUT,
                       "%s", _("cannot acquire state change lock"));
1155 1156 1157
        ret = -2;
    } else if (cfg->maxQueuedJobs &&
               priv->jobs_queued > cfg->maxQueuedJobs) {
1158 1159 1160
        virReportError(VIR_ERR_OPERATION_FAILED,
                       "%s", _("cannot acquire state change lock "
                               "due to max_queued limit"));
1161 1162
        ret = -2;
    } else {
1163 1164
        virReportSystemError(errno,
                             "%s", _("cannot acquire job mutex"));
1165
    }
1166
    priv->jobs_queued--;
1167
    virObjectUnref(obj);
1168
    virObjectUnref(cfg);
1169
    return ret;
1170 1171 1172
}

/*
1173
 * obj must be locked before calling
1174 1175 1176 1177 1178 1179 1180
 *
 * 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
 */
1181
int qemuDomainObjBeginJob(virQEMUDriverPtr driver,
1182
                          virDomainObjPtr obj,
1183
                          qemuDomainJob job)
1184
{
1185 1186 1187 1188 1189
    if (qemuDomainObjBeginJobInternal(driver, obj, job,
                                      QEMU_ASYNC_JOB_NONE) < 0)
        return -1;
    else
        return 0;
1190 1191
}

1192
int qemuDomainObjBeginAsyncJob(virQEMUDriverPtr driver,
1193
                               virDomainObjPtr obj,
1194
                               qemuDomainAsyncJob asyncJob)
1195
{
1196 1197 1198 1199 1200
    if (qemuDomainObjBeginJobInternal(driver, obj, QEMU_JOB_ASYNC,
                                      asyncJob) < 0)
        return -1;
    else
        return 0;
1201 1202
}

1203
static int ATTRIBUTE_RETURN_CHECK
1204 1205
qemuDomainObjBeginNestedJob(virQEMUDriverPtr driver,
                            virDomainObjPtr obj,
1206
                            qemuDomainAsyncJob asyncJob)
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
{
    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()) {
1217
        VIR_WARN("This thread doesn't seem to be the async job owner: %llu",
1218 1219 1220 1221 1222 1223 1224 1225
                 priv->job.asyncOwner);
    }

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

1226

1227
/*
1228
 * obj must be locked before calling
1229 1230 1231 1232
 *
 * To be called after completing the work associated with the
 * earlier qemuDomainBeginJob() call
 *
1233 1234
 * Returns true if @obj was still referenced, false if it was
 * disposed of.
1235
 */
1236
bool qemuDomainObjEndJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
1237 1238
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1239
    qemuDomainJob job = priv->job.active;
1240

1241 1242
    priv->jobs_queued--;

1243
    VIR_DEBUG("Stopping job: %s (async=%s vm=%p name=%s)",
1244
              qemuDomainJobTypeToString(job),
1245 1246
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              obj, obj->def->name);
1247

1248
    qemuDomainObjResetJob(priv);
1249 1250
    if (qemuDomainTrackJob(job))
        qemuDomainObjSaveJob(driver, obj);
1251
    virCondSignal(&priv->job.cond);
1252

1253
    return virObjectUnref(obj);
1254 1255
}

1256
bool
1257
qemuDomainObjEndAsyncJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
1258 1259
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1260

1261 1262
    priv->jobs_queued--;

1263 1264 1265
    VIR_DEBUG("Stopping async job: %s (vm=%p name=%s)",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              obj, obj->def->name);
1266

1267
    qemuDomainObjResetAsyncJob(priv);
1268
    qemuDomainObjSaveJob(driver, obj);
1269 1270
    virCondBroadcast(&priv->job.asyncCond);

1271
    return virObjectUnref(obj);
1272 1273
}

1274 1275 1276 1277 1278
void
qemuDomainObjAbortAsyncJob(virDomainObjPtr obj)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

1279 1280 1281
    VIR_DEBUG("Requesting abort of async job: %s (vm=%p name=%s)",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              obj, obj->def->name);
1282 1283 1284 1285

    priv->job.asyncAbort = true;
}

1286 1287 1288 1289 1290 1291 1292 1293 1294
/*
 * 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
 */
1295
static int
1296
qemuDomainObjEnterMonitorInternal(virQEMUDriverPtr driver,
1297
                                  virDomainObjPtr obj,
1298
                                  qemuDomainAsyncJob asyncJob)
1299 1300 1301
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

1302
    if (asyncJob != QEMU_ASYNC_JOB_NONE) {
1303 1304 1305
        int ret;
        if ((ret = qemuDomainObjBeginNestedJob(driver, obj, asyncJob)) < 0)
            return ret;
1306
        if (!virDomainObjIsActive(obj)) {
1307 1308
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("domain is no longer running"));
1309 1310
            /* Still referenced by the containing async job.  */
            ignore_value(qemuDomainObjEndJob(driver, obj));
1311 1312
            return -1;
        }
1313 1314 1315
    } 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");
1316 1317
    }

1318 1319
    VIR_DEBUG("Entering monitor (mon=%p vm=%p name=%s)",
              priv->mon, obj, obj->def->name);
1320
    virObjectLock(priv->mon);
1321
    virObjectRef(priv->mon);
1322
    ignore_value(virTimeMillisNow(&priv->monStart));
1323
    virObjectUnlock(obj);
1324 1325

    return 0;
1326 1327
}

1328
static void ATTRIBUTE_NONNULL(1)
1329
qemuDomainObjExitMonitorInternal(virQEMUDriverPtr driver,
1330
                                 virDomainObjPtr obj)
1331 1332
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1333
    bool hasRefs;
1334

1335
    hasRefs = virObjectUnref(priv->mon);
1336

1337
    if (hasRefs)
1338
        virObjectUnlock(priv->mon);
1339

1340
    virObjectLock(obj);
1341 1342
    VIR_DEBUG("Exited monitor (mon=%p vm=%p name=%s)",
              priv->mon, obj, obj->def->name);
1343

1344
    priv->monStart = 0;
1345
    if (!hasRefs)
1346
        priv->mon = NULL;
1347

1348 1349 1350 1351 1352
    if (priv->job.active == QEMU_JOB_ASYNC_NESTED) {
        qemuDomainObjResetJob(priv);
        qemuDomainObjSaveJob(driver, obj);
        virCondSignal(&priv->job.cond);

1353
        virObjectUnref(obj);
1354
    }
1355 1356
}

1357
void qemuDomainObjEnterMonitor(virQEMUDriverPtr driver,
1358
                               virDomainObjPtr obj)
1359
{
1360
    ignore_value(qemuDomainObjEnterMonitorInternal(driver, obj,
1361
                                                   QEMU_ASYNC_JOB_NONE));
1362 1363
}

1364
/* obj must NOT be locked before calling
1365 1366 1367
 *
 * Should be paired with an earlier qemuDomainObjEnterMonitor() call
 */
1368
void qemuDomainObjExitMonitor(virQEMUDriverPtr driver,
1369
                              virDomainObjPtr obj)
1370
{
1371
    qemuDomainObjExitMonitorInternal(driver, obj);
1372
}
1373 1374

/*
1375
 * obj must be locked before calling
1376 1377
 *
 * To be called immediately before any QEMU monitor API call.
1378
 * Must have already either called qemuDomainObjBeginJob()
1379 1380 1381 1382 1383
 * 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
1384 1385 1386
 * 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).
1387 1388
 */
int
1389
qemuDomainObjEnterMonitorAsync(virQEMUDriverPtr driver,
1390
                               virDomainObjPtr obj,
1391
                               qemuDomainAsyncJob asyncJob)
1392
{
1393
    return qemuDomainObjEnterMonitorInternal(driver, obj, asyncJob);
1394 1395
}

D
Daniel P. Berrange 已提交
1396 1397


1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408
/*
 * 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 已提交
1409 1410 1411
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

1412 1413
    VIR_DEBUG("Entering agent (agent=%p vm=%p name=%s)",
              priv->agent, obj, obj->def->name);
1414
    virObjectLock(priv->agent);
1415
    virObjectRef(priv->agent);
D
Daniel P. Berrange 已提交
1416
    ignore_value(virTimeMillisNow(&priv->agentStart));
1417
    virObjectUnlock(obj);
D
Daniel P. Berrange 已提交
1418 1419
}

1420 1421 1422 1423 1424 1425 1426

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

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

1433
    if (hasRefs)
1434
        virObjectUnlock(priv->agent);
D
Daniel P. Berrange 已提交
1435

1436
    virObjectLock(obj);
1437 1438
    VIR_DEBUG("Exited agent (agent=%p vm=%p name=%s)",
              priv->agent, obj, obj->def->name);
D
Daniel P. Berrange 已提交
1439 1440

    priv->agentStart = 0;
1441
    if (!hasRefs)
D
Daniel P. Berrange 已提交
1442 1443 1444
        priv->agent = NULL;
}

1445
void qemuDomainObjEnterRemote(virDomainObjPtr obj)
1446
{
1447 1448
    VIR_DEBUG("Entering remote (vm=%p name=%s)",
              obj, obj->def->name);
1449
    virObjectRef(obj);
1450
    virObjectUnlock(obj);
1451 1452
}

1453
void qemuDomainObjExitRemote(virDomainObjPtr obj)
1454
{
1455
    virObjectLock(obj);
1456 1457
    VIR_DEBUG("Exited remote (vm=%p name=%s)",
              obj, obj->def->name);
1458
    virObjectUnref(obj);
1459
}
1460 1461


1462 1463 1464 1465 1466 1467 1468 1469
virDomainDefPtr
qemuDomainDefCopy(virQEMUDriverPtr driver,
                  virDomainDefPtr src,
                  unsigned int flags)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    virDomainDefPtr ret = NULL;
    virCapsPtr caps = NULL;
1470
    char *xml = NULL;
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484

    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;

1485
 cleanup:
1486 1487 1488 1489 1490
    VIR_FREE(xml);
    virObjectUnref(caps);
    return ret;
}

1491
int
1492
qemuDomainDefFormatBuf(virQEMUDriverPtr driver,
1493 1494 1495
                       virDomainDefPtr def,
                       unsigned int flags,
                       virBuffer *buf)
1496
{
1497
    int ret = -1;
1498
    virCPUDefPtr cpu = NULL;
1499
    virCPUDefPtr def_cpu = def->cpu;
1500 1501
    virDomainControllerDefPtr *controllers = NULL;
    int ncontrollers = 0;
1502 1503 1504 1505
    virCapsPtr caps = NULL;

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

    /* Update guest CPU requirements according to host CPU */
1508 1509 1510
    if ((flags & VIR_DOMAIN_XML_UPDATE_CPU) &&
        def_cpu &&
        (def_cpu->mode != VIR_CPU_MODE_CUSTOM || def_cpu->model)) {
1511 1512
        if (!caps->host.cpu ||
            !caps->host.cpu->model) {
1513 1514
            virReportError(VIR_ERR_OPERATION_FAILED,
                           "%s", _("cannot get host CPU capabilities"));
1515 1516 1517
            goto cleanup;
        }

1518
        if (!(cpu = virCPUDefCopy(def_cpu)) ||
1519
            cpuUpdate(cpu, caps->host.cpu) < 0)
1520 1521 1522 1523
            goto cleanup;
        def->cpu = cpu;
    }

1524
    if ((flags & VIR_DOMAIN_XML_MIGRATABLE)) {
1525
        size_t i;
1526
        int toremove = 0;
1527
        virDomainControllerDefPtr usb = NULL, pci = NULL;
1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545

        /* 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);
1546
            toremove++;
1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564
        } 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 已提交
1565
            VIR_DEBUG("Removing default pci-root from domain '%s'"
1566
                      " for migration compatibility", def->name);
1567
            toremove++;
1568 1569 1570 1571
        } else {
            pci = NULL;
        }

1572
        if (toremove) {
1573 1574
            controllers = def->controllers;
            ncontrollers = def->ncontrollers;
1575
            if (VIR_ALLOC_N(def->controllers, ncontrollers - toremove) < 0) {
1576 1577 1578 1579 1580 1581
                controllers = NULL;
                goto cleanup;
            }

            def->ncontrollers = 0;
            for (i = 0; i < ncontrollers; i++) {
1582
                if (controllers[i] != usb && controllers[i] != pci)
1583 1584 1585
                    def->controllers[def->ncontrollers++] = controllers[i];
            }
        }
1586 1587


1588 1589
    }

1590
    ret = virDomainDefFormatInternal(def, flags, buf);
1591

1592
 cleanup:
1593 1594
    def->cpu = def_cpu;
    virCPUDefFree(cpu);
1595 1596 1597 1598 1599
    if (controllers) {
        VIR_FREE(def->controllers);
        def->controllers = controllers;
        def->ncontrollers = ncontrollers;
    }
1600
    virObjectUnref(caps);
1601 1602
    return ret;
}
1603

1604
char *qemuDomainDefFormatXML(virQEMUDriverPtr driver,
1605
                             virDomainDefPtr def,
1606
                             unsigned int flags)
1607 1608 1609
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

1610
    if (qemuDomainDefFormatBuf(driver, def, flags, &buf) < 0) {
1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
        virBufferFreeAndReset(&buf);
        return NULL;
    }

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

    return virBufferContentAndReset(&buf);
}

1624
char *qemuDomainFormatXML(virQEMUDriverPtr driver,
1625
                          virDomainObjPtr vm,
1626
                          unsigned int flags)
1627 1628 1629 1630 1631 1632 1633 1634
{
    virDomainDefPtr def;

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

1635
    return qemuDomainDefFormatXML(driver, def, flags);
1636 1637
}

1638
char *
1639
qemuDomainDefFormatLive(virQEMUDriverPtr driver,
1640
                        virDomainDefPtr def,
1641 1642
                        bool inactive,
                        bool compatible)
1643 1644 1645 1646 1647
{
    unsigned int flags = QEMU_DOMAIN_FORMAT_LIVE_FLAGS;

    if (inactive)
        flags |= VIR_DOMAIN_XML_INACTIVE;
1648 1649
    if (compatible)
        flags |= VIR_DOMAIN_XML_MIGRATABLE;
1650

1651
    return qemuDomainDefFormatXML(driver, def, flags);
1652 1653
}

1654

1655
void qemuDomainObjTaint(virQEMUDriverPtr driver,
1656
                        virDomainObjPtr obj,
1657
                        virDomainTaintFlags taint,
1658
                        int logFD)
1659
{
1660 1661
    virErrorPtr orig_err = NULL;

1662 1663 1664 1665 1666 1667 1668 1669 1670
    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));
1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684

        /* 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);
        }
1685 1686 1687 1688
    }
}


1689
void qemuDomainObjCheckTaint(virQEMUDriverPtr driver,
1690 1691
                             virDomainObjPtr obj,
                             int logFD)
1692
{
1693
    size_t i;
1694
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1695
    qemuDomainObjPrivatePtr priv = obj->privateData;
1696

1697 1698 1699 1700
    if (cfg->privileged &&
        (!cfg->clearEmulatorCapabilities ||
         cfg->user == 0 ||
         cfg->group == 0))
1701
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HIGH_PRIVILEGES, logFD);
1702

1703 1704 1705
    if (priv->hookRun)
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HOOK, logFD);

1706 1707 1708
    if (obj->def->namespaceData) {
        qemuDomainCmdlineDefPtr qemucmd = obj->def->namespaceData;
        if (qemucmd->num_args || qemucmd->num_env)
1709
            qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_CUSTOM_ARGV, logFD);
1710 1711
    }

1712 1713 1714
    if (obj->def->cpu && obj->def->cpu->mode == VIR_CPU_MODE_HOST_PASSTHROUGH)
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HOST_CPU, logFD);

1715
    for (i = 0; i < obj->def->ndisks; i++)
1716
        qemuDomainObjCheckDiskTaint(driver, obj, obj->def->disks[i], logFD);
1717

1718
    for (i = 0; i < obj->def->nnets; i++)
1719
        qemuDomainObjCheckNetTaint(driver, obj, obj->def->nets[i], logFD);
1720 1721

    virObjectUnref(cfg);
1722 1723 1724
}


1725
void qemuDomainObjCheckDiskTaint(virQEMUDriverPtr driver,
1726
                                 virDomainObjPtr obj,
1727 1728
                                 virDomainDiskDefPtr disk,
                                 int logFD)
1729
{
1730
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1731
    int format = virDomainDiskGetFormat(disk);
1732

1733
    if ((!format || format == VIR_STORAGE_FILE_AUTO) &&
1734
        cfg->allowDiskFormatProbing)
1735
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_DISK_PROBING, logFD);
1736

1737
    if (disk->rawio == 1)
1738
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HIGH_PRIVILEGES, logFD);
1739 1740

    virObjectUnref(cfg);
1741 1742 1743
}


1744
void qemuDomainObjCheckNetTaint(virQEMUDriverPtr driver,
1745
                                virDomainObjPtr obj,
1746 1747
                                virDomainNetDefPtr net,
                                int logFD)
1748
{
1749 1750 1751 1752 1753 1754
    /* 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)
1755
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_SHELL_SCRIPTS, logFD);
1756
}
1757 1758 1759


static int
1760
qemuDomainOpenLogHelper(virQEMUDriverConfigPtr cfg,
1761
                        virDomainObjPtr vm,
E
Eric Blake 已提交
1762
                        int oflags,
1763 1764 1765 1766
                        mode_t mode)
{
    char *logfile;
    int fd = -1;
1767
    bool trunc = false;
1768

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

1772 1773 1774 1775 1776 1777 1778 1779 1780
    /* 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 已提交
1781
    if ((fd = open(logfile, oflags, mode)) < 0) {
1782 1783 1784 1785 1786 1787 1788
        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);
1789 1790 1791 1792 1793 1794 1795
        VIR_FORCE_CLOSE(fd);
        goto cleanup;
    }
    if (trunc &&
        ftruncate(fd, 0) < 0) {
        virReportSystemError(errno, _("failed to truncate %s"),
                             logfile);
1796 1797 1798 1799
        VIR_FORCE_CLOSE(fd);
        goto cleanup;
    }

1800
 cleanup:
1801 1802 1803 1804 1805 1806
    VIR_FREE(logfile);
    return fd;
}


int
1807
qemuDomainCreateLog(virQEMUDriverPtr driver, virDomainObjPtr vm,
E
Eric Blake 已提交
1808
                    bool append)
1809
{
1810
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
E
Eric Blake 已提交
1811
    int oflags;
1812
    int ret;
1813

E
Eric Blake 已提交
1814
    oflags = O_CREAT | O_WRONLY;
1815
    /* Only logrotate files in /var/log, so only append if running privileged */
1816
    if (cfg->privileged || append)
E
Eric Blake 已提交
1817
        oflags |= O_APPEND;
1818
    else
E
Eric Blake 已提交
1819
        oflags |= O_TRUNC;
1820

1821 1822 1823
    ret = qemuDomainOpenLogHelper(cfg, vm, oflags, S_IRUSR | S_IWUSR);
    virObjectUnref(cfg);
    return ret;
1824 1825 1826 1827
}


int
1828
qemuDomainOpenLog(virQEMUDriverPtr driver, virDomainObjPtr vm, off_t pos)
1829
{
1830
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1831 1832 1833 1834
    int fd;
    off_t off;
    int whence;

1835 1836 1837
    fd = qemuDomainOpenLogHelper(cfg, vm, O_RDONLY, 0);
    virObjectUnref(cfg);
    if (fd < 0)
1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863
        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;
}


1864
int qemuDomainAppendLog(virQEMUDriverPtr driver,
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879
                        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;

1880
    if (virVasprintf(&message, fmt, argptr) < 0)
1881 1882 1883 1884 1885 1886 1887 1888 1889
        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;

1890
 cleanup:
1891 1892 1893 1894 1895
    va_end(argptr);

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

O
Osier Yang 已提交
1896
    VIR_FREE(message);
1897 1898
    return ret;
}
1899 1900 1901

/* Locate an appropriate 'qemu-img' binary.  */
const char *
1902
qemuFindQemuImgBinary(virQEMUDriverPtr driver)
1903
{
1904 1905 1906
    if (!driver->qemuImgBinary)
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("unable to find kvm-img or qemu-img"));
1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923

    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,
1924 1925
                                        QEMU_DOMAIN_FORMAT_LIVE_FLAGS, 1);
    if (newxml == NULL)
1926 1927
        return -1;

1928
    if (virAsprintf(&snapDir, "%s/%s", snapshotDir, vm->def->name) < 0)
1929 1930 1931 1932 1933 1934 1935
        goto cleanup;
    if (virFileMakePath(snapDir) < 0) {
        virReportSystemError(errno, _("cannot create snapshot directory '%s'"),
                             snapDir);
        goto cleanup;
    }

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

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

1941
 cleanup:
1942 1943 1944 1945 1946 1947 1948 1949
    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.  */
1950
static int
1951
qemuDomainSnapshotForEachQcow2Raw(virQEMUDriverPtr driver,
1952 1953 1954 1955 1956
                                  virDomainDefPtr def,
                                  const char *name,
                                  const char *op,
                                  bool try_all,
                                  int ndisks)
1957 1958
{
    const char *qemuimgarg[] = { NULL, "snapshot", NULL, NULL, NULL, NULL };
1959
    size_t i;
1960 1961 1962 1963 1964 1965 1966 1967 1968
    bool skipped = false;

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

    qemuimgarg[2] = op;
1969
    qemuimgarg[3] = name;
1970

1971
    for (i = 0; i < ndisks; i++) {
1972
        /* FIXME: we also need to handle LVM here */
1973
        if (def->disks[i]->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
1974 1975 1976
            int format = virDomainDiskGetFormat(def->disks[i]);

            if (format > 0 && format != VIR_STORAGE_FILE_QCOW2) {
1977 1978 1979 1980 1981
                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",
1982
                             def->disks[i]->dst);
1983 1984
                    skipped = true;
                    continue;
1985 1986 1987 1988 1989
                } else if (STREQ(op, "-c") && i) {
                    /* We must roll back partial creation by deleting
                     * all earlier snapshots.  */
                    qemuDomainSnapshotForEachQcow2Raw(driver, def, name,
                                                      "-d", false, i);
1990
                }
1991 1992 1993 1994
                virReportError(VIR_ERR_OPERATION_INVALID,
                               _("Disk device '%s' does not support"
                                 " snapshotting"),
                               def->disks[i]->dst);
1995 1996 1997
                return -1;
            }

1998
            qemuimgarg[4] = virDomainDiskGetSource(def->disks[i]);
1999 2000 2001 2002

            if (virRun(qemuimgarg, NULL) < 0) {
                if (try_all) {
                    VIR_WARN("skipping snapshot action on %s",
2003
                             def->disks[i]->dst);
2004 2005
                    skipped = true;
                    continue;
2006 2007 2008 2009 2010
                } else if (STREQ(op, "-c") && i) {
                    /* We must roll back partial creation by deleting
                     * all earlier snapshots.  */
                    qemuDomainSnapshotForEachQcow2Raw(driver, def, name,
                                                      "-d", false, i);
2011 2012 2013 2014 2015 2016 2017 2018 2019
                }
                return -1;
            }
        }
    }

    return skipped ? 1 : 0;
}

2020 2021 2022
/* 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
2023
qemuDomainSnapshotForEachQcow2(virQEMUDriverPtr driver,
2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039
                               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);
}

2040 2041
/* Discard one snapshot (or its metadata), without reparenting any children.  */
int
2042
qemuDomainSnapshotDiscard(virQEMUDriverPtr driver,
2043 2044 2045 2046 2047 2048 2049 2050 2051
                          virDomainObjPtr vm,
                          virDomainSnapshotObjPtr snap,
                          bool update_current,
                          bool metadata_only)
{
    char *snapFile = NULL;
    int ret = -1;
    qemuDomainObjPrivatePtr priv;
    virDomainSnapshotObjPtr parentsnap = NULL;
2052
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
2053 2054 2055 2056 2057 2058 2059 2060 2061

    if (!metadata_only) {
        if (!virDomainObjIsActive(vm)) {
            /* Ignore any skipped disks */
            if (qemuDomainSnapshotForEachQcow2(driver, vm, snap, "-d",
                                               true) < 0)
                goto cleanup;
        } else {
            priv = vm->privateData;
2062
            qemuDomainObjEnterMonitor(driver, vm);
2063 2064
            /* we continue on even in the face of error */
            qemuMonitorDeleteSnapshot(priv->mon, snap->def->name);
2065
            qemuDomainObjExitMonitor(driver, vm);
2066 2067 2068
        }
    }

2069
    if (virAsprintf(&snapFile, "%s/%s/%s.xml", cfg->snapshotDir,
2070
                    vm->def->name, snap->def->name) < 0)
2071 2072 2073 2074
        goto cleanup;

    if (snap == vm->current_snapshot) {
        if (update_current && snap->def->parent) {
2075
            parentsnap = virDomainSnapshotFindByName(vm->snapshots,
2076 2077 2078 2079 2080 2081 2082
                                                     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,
2083
                                                    cfg->snapshotDir) < 0) {
2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095
                    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);
2096
    virDomainSnapshotObjListRemove(vm->snapshots, snap);
2097 2098 2099

    ret = 0;

2100
 cleanup:
2101
    VIR_FREE(snapFile);
2102
    virObjectUnref(cfg);
2103 2104 2105 2106 2107 2108 2109 2110 2111
    return ret;
}

/* Hash iterator callback to discard multiple snapshots.  */
void qemuDomainSnapshotDiscardAll(void *payload,
                                  const void *name ATTRIBUTE_UNUSED,
                                  void *data)
{
    virDomainSnapshotObjPtr snap = payload;
2112
    virQEMUSnapRemovePtr curr = data;
2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123
    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
2124
qemuDomainSnapshotDiscardAllMetadata(virQEMUDriverPtr driver,
2125 2126
                                     virDomainObjPtr vm)
{
2127
    virQEMUSnapRemove rem;
2128 2129 2130 2131 2132

    rem.driver = driver;
    rem.vm = vm;
    rem.metadata_only = true;
    rem.err = 0;
2133 2134
    virDomainSnapshotForEach(vm->snapshots, qemuDomainSnapshotDiscardAll,
                             &rem);
2135 2136 2137 2138 2139

    return rem.err;
}

/*
2140
 * The caller must hold a lock the vm and there must
2141 2142 2143
 * be no remaining references to vm.
 */
void
2144
qemuDomainRemoveInactive(virQEMUDriverPtr driver,
2145 2146
                         virDomainObjPtr vm)
{
2147
    char *snapDir;
2148
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
2149

2150 2151 2152 2153 2154
    /* 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);
    }
2155
    else if (virAsprintf(&snapDir, "%s/%s", cfg->snapshotDir,
2156 2157
                         vm->def->name) < 0) {
        VIR_WARN("unable to remove snapshot directory %s/%s",
2158
                 cfg->snapshotDir, vm->def->name);
2159 2160 2161 2162 2163
    } else {
        if (rmdir(snapDir) < 0 && errno != ENOENT)
            VIR_WARN("unable to remove snapshot directory %s", snapDir);
        VIR_FREE(snapDir);
    }
2164
    virDomainObjListRemove(driver->domains, vm);
2165
    virObjectUnref(cfg);
2166
}
2167 2168

void
2169
qemuDomainSetFakeReboot(virQEMUDriverPtr driver,
2170 2171 2172 2173
                        virDomainObjPtr vm,
                        bool value)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2174
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
2175 2176

    if (priv->fakeReboot == value)
2177
        goto cleanup;
2178 2179 2180

    priv->fakeReboot = value;

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

2184
 cleanup:
2185
    virObjectUnref(cfg);
2186
}
M
Michal Privoznik 已提交
2187

2188 2189 2190
static int
qemuDomainCheckRemoveOptionalDisk(virQEMUDriverPtr driver,
                                  virDomainObjPtr vm,
2191
                                  size_t diskIndex)
2192 2193
{
    char uuid[VIR_UUID_STRING_BUFLEN];
2194
    virObjectEventPtr event = NULL;
2195
    virDomainDiskDefPtr disk = vm->def->disks[diskIndex];
2196
    const char *src = virDomainDiskGetSource(disk);
2197 2198 2199 2200 2201

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

    VIR_DEBUG("Dropping disk '%s' on domain '%s' (UUID '%s') "
              "due to inaccessible source '%s'",
2202
              disk->dst, vm->def->name, uuid, src);
2203 2204 2205 2206

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

2207
        event = virDomainEventDiskChangeNewFromObj(vm, src, NULL,
2208 2209
                                                   disk->info.alias,
                                                   VIR_DOMAIN_EVENT_DISK_CHANGE_MISSING_ON_START);
2210
        ignore_value(virDomainDiskSetSource(disk, NULL));
2211
    } else {
2212
        event = virDomainEventDiskChangeNewFromObj(vm, src, NULL,
2213 2214
                                                   disk->info.alias,
                                                   VIR_DOMAIN_EVENT_DISK_DROP_MISSING_ON_START);
2215 2216
        virDomainDiskRemove(vm->def, diskIndex);
        virDomainDiskDefFree(disk);
2217 2218 2219 2220 2221 2222 2223 2224
    }

    if (event)
        qemuDomainEventQueue(driver, event);

    return 0;
}

2225 2226 2227
static int
qemuDomainCheckDiskStartupPolicy(virQEMUDriverPtr driver,
                                 virDomainObjPtr vm,
2228
                                 size_t diskIndex,
2229 2230 2231
                                 bool cold_boot)
{
    char uuid[VIR_UUID_STRING_BUFLEN];
2232
    int startupPolicy = vm->def->disks[diskIndex]->startupPolicy;
2233
    int device = vm->def->disks[diskIndex]->device;
2234 2235 2236

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

2237
    switch ((virDomainStartupPolicy) startupPolicy) {
2238
        case VIR_DOMAIN_STARTUP_POLICY_OPTIONAL:
2239 2240 2241 2242 2243 2244 2245
            /* Once started with an optional disk, qemu saves its section
             * in the migration stream, so later, when restoring from it
             * we must make sure the sections match. */
            if (!cold_boot &&
                device != VIR_DOMAIN_DISK_DEVICE_FLOPPY &&
                device != VIR_DOMAIN_DISK_DEVICE_CDROM)
                goto error;
2246 2247 2248 2249 2250 2251
            break;

        case VIR_DOMAIN_STARTUP_POLICY_MANDATORY:
            goto error;

        case VIR_DOMAIN_STARTUP_POLICY_REQUISITE:
2252
            if (cold_boot)
2253 2254 2255 2256 2257 2258 2259 2260 2261
                goto error;
            break;

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

2262
    if (qemuDomainCheckRemoveOptionalDisk(driver, vm, diskIndex) < 0)
2263
        goto error;
2264 2265 2266

    return 0;

2267
 error:
2268 2269 2270
    return -1;
}

2271 2272 2273 2274 2275
static int
qemuDiskChainCheckBroken(virDomainDiskDefPtr disk)
{
    char *brokenFile = NULL;

2276
    if (!virDomainDiskGetSource(disk))
2277 2278
        return 0;

2279
    if (virStorageFileChainGetBroken(disk->src, &brokenFile) < 0)
2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292
        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 已提交
2293
int
2294
qemuDomainCheckDiskPresence(virQEMUDriverPtr driver,
M
Michal Privoznik 已提交
2295
                            virDomainObjPtr vm,
2296
                            bool cold_boot)
M
Michal Privoznik 已提交
2297 2298
{
    int ret = -1;
2299
    size_t i;
M
Michal Privoznik 已提交
2300

2301
    VIR_DEBUG("Checking for disk presence");
2302
    for (i = vm->def->ndisks; i > 0; i--) {
2303 2304
        size_t idx = i - 1;
        virDomainDiskDefPtr disk = vm->def->disks[idx];
2305
        const char *path = virDomainDiskGetSource(disk);
2306
        virStorageFileFormat format = virDomainDiskGetFormat(disk);
2307
        virStorageType type = virStorageSourceGetActualType(disk->src);
M
Michal Privoznik 已提交
2308

2309 2310 2311 2312 2313 2314
        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 */
2315 2316
        if (type != VIR_STORAGE_TYPE_NETWORK &&
            format >= VIR_STORAGE_FILE_NONE &&
2317 2318
            format < VIR_STORAGE_FILE_BACKING &&
            virFileExists(path))
M
Michal Privoznik 已提交
2319 2320
            continue;

2321
        if (qemuDomainDetermineDiskChain(driver, vm, disk, false) >= 0 &&
2322
            qemuDiskChainCheckBroken(disk) >= 0)
M
Michal Privoznik 已提交
2323
            continue;
2324

2325
        if (disk->startupPolicy &&
2326
            qemuDomainCheckDiskStartupPolicy(driver, vm, idx,
2327 2328 2329
                                             cold_boot) >= 0) {
            virResetLastError();
            continue;
M
Michal Privoznik 已提交
2330 2331
        }

2332
        goto error;
M
Michal Privoznik 已提交
2333 2334 2335 2336
    }

    ret = 0;

2337
 error:
M
Michal Privoznik 已提交
2338 2339
    return ret;
}
2340 2341 2342 2343 2344 2345 2346 2347 2348 2349

/*
 * The vm must be locked when any of the following cleanup functions is
 * called.
 */
int
qemuDomainCleanupAdd(virDomainObjPtr vm,
                     qemuDomainCleanupCallback cb)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2350
    size_t i;
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360

    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,
2361
                     priv->ncleanupCallbacks, 1) < 0)
2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372
        return -1;

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

void
qemuDomainCleanupRemove(virDomainObjPtr vm,
                        qemuDomainCleanupCallback cb)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2373
    size_t i;
2374 2375 2376 2377

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

    for (i = 0; i < priv->ncleanupCallbacks; i++) {
2378 2379 2380
        if (priv->cleanupCallbacks[i] == cb)
            VIR_DELETE_ELEMENT_INPLACE(priv->cleanupCallbacks,
                                       i, priv->ncleanupCallbacks);
2381 2382 2383 2384 2385 2386 2387 2388
    }

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

void
2389
qemuDomainCleanupRun(virQEMUDriverPtr driver,
2390 2391 2392
                     virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
2393
    size_t i;
2394 2395 2396 2397

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

    /* run cleanup callbacks in reverse order */
2398 2399
    for (i = 0; i < priv->ncleanupCallbacks; i++) {
        if (priv->cleanupCallbacks[priv->ncleanupCallbacks - (i + 1)])
2400 2401 2402 2403 2404 2405 2406
            priv->cleanupCallbacks[i](driver, vm);
    }

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

2408 2409 2410
static void
qemuDomainGetImageIds(virQEMUDriverConfigPtr cfg,
                      virDomainObjPtr vm,
2411
                      virStorageSourcePtr src,
2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429
                      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;
    }

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

2434
    if ((disklabel = virStorageSourceGetSecurityLabelDef(src, "dac")) &&
2435
        disklabel->label)
2436 2437 2438 2439
        virParseOwnershipIds(disklabel->label, uid, gid);
}


2440
int
2441
qemuDomainDetermineDiskChain(virQEMUDriverPtr driver,
2442
                             virDomainObjPtr vm,
2443 2444 2445
                             virDomainDiskDefPtr disk,
                             bool force)
{
2446 2447
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    int ret = 0;
2448 2449
    uid_t uid;
    gid_t gid;
2450
    int type = virStorageSourceGetActualType(disk->src);
2451

2452
    if (type != VIR_STORAGE_TYPE_NETWORK &&
2453
        !disk->src->path)
2454
        goto cleanup;
2455

2456
    if (disk->src->backingStore) {
2457
        if (force)
2458
            virStorageSourceBackingStoreClear(disk->src);
2459
        else
2460
            goto cleanup;
2461
    }
2462

2463
    qemuDomainGetImageIds(cfg, vm, disk->src, &uid, &gid);
2464

2465
    if (virStorageFileGetMetadata(disk->src,
2466 2467
                                  uid, gid,
                                  cfg->allowDiskFormatProbing) < 0)
2468 2469
        ret = -1;

2470
 cleanup:
2471 2472
    virObjectUnref(cfg);
    return ret;
2473
}
2474

2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495
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;
}
2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512

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

2513
 cleanup:
2514 2515 2516 2517
    virDomainDefFree(migratableDefSrc);
    virDomainDefFree(migratableDefDst);
    return ret;
}
2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539

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;
}