qemu_domain.c 56.1 KB
Newer Older
1 2 3
/*
 * qemu_domain.h: QEMU domain private state
 *
4
 * Copyright (C) 2006-2013 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_event.h"
38
#include "virtime.h"
39
#include "virstoragefile.h"
40

41
#include <sys/time.h>
42
#include <fcntl.h>
43

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

#define VIR_FROM_THIS VIR_FROM_QEMU

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

50 51 52 53 54 55
VIR_ENUM_IMPL(qemuDomainJob, QEMU_JOB_LAST,
              "none",
              "query",
              "destroy",
              "suspend",
              "modify",
56
              "abort",
57
              "migration operation",
58 59 60 61 62 63 64 65 66 67
              "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",
68
              "snapshot",
69 70
);

71

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

J
Jiri Denemark 已提交
81 82
    case QEMU_ASYNC_JOB_SAVE:
    case QEMU_ASYNC_JOB_DUMP:
83
    case QEMU_ASYNC_JOB_SNAPSHOT:
J
Jiri Denemark 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
    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:
102 103
        return qemuMigrationJobPhaseTypeFromString(phase);

J
Jiri Denemark 已提交
104 105
    case QEMU_ASYNC_JOB_SAVE:
    case QEMU_ASYNC_JOB_DUMP:
106
    case QEMU_ASYNC_JOB_SNAPSHOT:
J
Jiri Denemark 已提交
107 108 109 110 111 112 113 114 115 116 117
    case QEMU_ASYNC_JOB_NONE:
    case QEMU_ASYNC_JOB_LAST:
        ; /* fall through */
    }

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

118

119
void qemuDomainEventQueue(virQEMUDriverPtr driver,
120 121
                          virDomainEventPtr event)
{
122
    virDomainEventStateQueue(driver->domainEventState, event);
123 124 125
}


126 127 128 129 130 131 132 133
static int
qemuDomainObjInitJob(qemuDomainObjPrivatePtr priv)
{
    memset(&priv->job, 0, sizeof(priv->job));

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

134
    if (virCondInit(&priv->job.asyncCond) < 0) {
135
        virCondDestroy(&priv->job.cond);
136 137 138
        return -1;
    }

139 140 141 142 143 144 145 146 147
    return 0;
}

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

    job->active = QEMU_JOB_NONE;
148
    job->owner = 0;
149 150 151 152 153 154 155 156
}

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

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

167 168 169 170 171 172 173 174
void
qemuDomainObjRestoreJob(virDomainObjPtr obj,
                        struct qemuDomainJobObj *job)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    memset(job, 0, sizeof(*job));
    job->active = priv->job.active;
175
    job->owner = priv->job.owner;
176
    job->asyncJob = priv->job.asyncJob;
177
    job->asyncOwner = priv->job.asyncOwner;
J
Jiri Denemark 已提交
178
    job->phase = priv->job.phase;
179 180 181 182 183

    qemuDomainObjResetJob(priv);
    qemuDomainObjResetAsyncJob(priv);
}

184 185 186 187 188 189 190 191 192 193
void
qemuDomainObjTransferJob(virDomainObjPtr obj)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    VIR_DEBUG("Changing job owner from %d to %d",
              priv->job.owner, virThreadSelfID());
    priv->job.owner = virThreadSelfID();
}

194 195 196
static void
qemuDomainObjFreeJob(qemuDomainObjPrivatePtr priv)
{
197 198
    virCondDestroy(&priv->job.cond);
    virCondDestroy(&priv->job.asyncCond);
199 200
}

201 202 203 204 205 206
static bool
qemuDomainTrackJob(enum qemuDomainJob job)
{
    return (QEMU_DOMAIN_TRACK_JOBS & JOB_MASK(job)) != 0;
}

207

208 209
static void
*qemuDomainObjPrivateAlloc(void)
210 211 212 213 214 215
{
    qemuDomainObjPrivatePtr priv;

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

216
    if (qemuDomainObjInitJob(priv) < 0)
217
        goto error;
218

219
    if (!(priv->devs = virChrdevAlloc()))
220 221
        goto error;

222
    priv->migMaxBandwidth = QEMU_DOMAIN_MIG_BANDWIDTH_MAX;
223

224
    return priv;
225 226 227 228

error:
    VIR_FREE(priv);
    return NULL;
229 230
}

231 232
static void
qemuDomainObjPrivateFree(void *data)
233 234 235
{
    qemuDomainObjPrivatePtr priv = data;

236
    virObjectUnref(priv->qemuCaps);
237

238
    qemuDomainPCIAddressSetFree(priv->pciaddrs);
239
    qemuDomainCCWAddressSetFree(priv->ccwaddrs);
240
    virDomainChrSourceDefFree(priv->monConfig);
241
    qemuDomainObjFreeJob(priv);
242
    VIR_FREE(priv->vcpupids);
243
    VIR_FREE(priv->lockState);
J
Jiri Denemark 已提交
244
    VIR_FREE(priv->origname);
245

246
    virChrdevFree(priv->devs);
247

248 249
    /* This should never be non-NULL if we get here, but just in case... */
    if (priv->mon) {
250
        VIR_ERROR(_("Unexpected QEMU monitor still active during domain deletion"));
251 252
        qemuMonitorClose(priv->mon);
    }
D
Daniel P. Berrange 已提交
253 254 255 256
    if (priv->agent) {
        VIR_ERROR(_("Unexpected QEMU agent still active during domain deletion"));
        qemuAgentClose(priv->agent);
    }
257
    VIR_FREE(priv->cleanupCallbacks);
258 259 260 261
    VIR_FREE(priv);
}


262 263
static int
qemuDomainObjPrivateXMLFormat(virBufferPtr buf, void *data)
264 265 266
{
    qemuDomainObjPrivatePtr priv = data;
    const char *monitorpath;
267
    enum qemuDomainJob job;
268 269 270

    /* priv->monitor_chr is set only for qemu */
    if (priv->monConfig) {
271
        switch (priv->monConfig->type) {
272
        case VIR_DOMAIN_CHR_TYPE_UNIX:
273
            monitorpath = priv->monConfig->data.nix.path;
274 275 276
            break;
        default:
        case VIR_DOMAIN_CHR_TYPE_PTY:
277
            monitorpath = priv->monConfig->data.file.path;
278 279 280 281 282 283
            break;
        }

        virBufferEscapeString(buf, "  <monitor path='%s'", monitorpath);
        if (priv->monJSON)
            virBufferAddLit(buf, " json='1'");
284
        virBufferAsprintf(buf, " type='%s'/>\n",
285
                          virDomainChrTypeToString(priv->monConfig->type));
286 287 288 289 290 291 292
    }


    if (priv->nvcpupids) {
        int i;
        virBufferAddLit(buf, "  <vcpus>\n");
        for (i = 0 ; i < priv->nvcpupids ; i++) {
293
            virBufferAsprintf(buf, "    <vcpu pid='%d'/>\n", priv->vcpupids[i]);
294 295 296 297
        }
        virBufferAddLit(buf, "  </vcpus>\n");
    }

298
    if (priv->qemuCaps) {
299 300 301
        int i;
        virBufferAddLit(buf, "  <qemuCaps>\n");
        for (i = 0 ; i < QEMU_CAPS_LAST ; i++) {
302
            if (virQEMUCapsGet(priv->qemuCaps, i)) {
303
                virBufferAsprintf(buf, "    <flag name='%s'/>\n",
304
                                  virQEMUCapsTypeToString(i));
305 306 307 308 309
            }
        }
        virBufferAddLit(buf, "  </qemuCaps>\n");
    }

310 311 312
    if (priv->lockState)
        virBufferAsprintf(buf, "  <lockstate>%s</lockstate>\n", priv->lockState);

313 314 315 316
    job = priv->job.active;
    if (!qemuDomainTrackJob(job))
        priv->job.active = QEMU_JOB_NONE;

317
    if (priv->job.active || priv->job.asyncJob) {
J
Jiri Denemark 已提交
318
        virBufferAsprintf(buf, "  <job type='%s' async='%s'",
319 320
                          qemuDomainJobTypeToString(priv->job.active),
                          qemuDomainAsyncJobTypeToString(priv->job.asyncJob));
J
Jiri Denemark 已提交
321 322 323 324 325 326
        if (priv->job.phase) {
            virBufferAsprintf(buf, " phase='%s'",
                              qemuDomainAsyncJobPhaseToString(
                                    priv->job.asyncJob, priv->job.phase));
        }
        virBufferAddLit(buf, "/>\n");
327
    }
328
    priv->job.active = job;
329

330 331 332
    if (priv->fakeReboot)
        virBufferAsprintf(buf, "  <fakereboot/>\n");

333 334 335
    return 0;
}

336 337
static int
qemuDomainObjPrivateXMLParse(xmlXPathContextPtr ctxt, void *data)
338 339 340 341 342 343
{
    qemuDomainObjPrivatePtr priv = data;
    char *monitorpath;
    char *tmp;
    int n, i;
    xmlNodePtr *nodes = NULL;
344
    virQEMUCapsPtr qemuCaps = NULL;
345 346 347 348 349 350 351 352

    if (VIR_ALLOC(priv->monConfig) < 0) {
        virReportOOMError();
        goto error;
    }

    if (!(monitorpath =
          virXPathString("string(./monitor[1]/@path)", ctxt))) {
353 354
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("no monitor path"));
355 356 357 358 359
        goto error;
    }

    tmp = virXPathString("string(./monitor[1]/@type)", ctxt);
    if (tmp)
360
        priv->monConfig->type = virDomainChrTypeFromString(tmp);
361
    else
362
        priv->monConfig->type = VIR_DOMAIN_CHR_TYPE_PTY;
363 364 365 366 367 368 369 370
    VIR_FREE(tmp);

    if (virXPathBoolean("count(./monitor[@json = '1']) > 0", ctxt)) {
        priv->monJSON = 1;
    } else {
        priv->monJSON = 0;
    }

371
    switch (priv->monConfig->type) {
372
    case VIR_DOMAIN_CHR_TYPE_PTY:
373
        priv->monConfig->data.file.path = monitorpath;
374 375
        break;
    case VIR_DOMAIN_CHR_TYPE_UNIX:
376
        priv->monConfig->data.nix.path = monitorpath;
377 378 379
        break;
    default:
        VIR_FREE(monitorpath);
380 381 382
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported monitor type '%s'"),
                       virDomainChrTypeToString(priv->monConfig->type));
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
        goto error;
    }

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

        for (i = 0 ; i < n ; i++) {
            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);
    }

410
    if ((n = virXPathNodeSet("./qemuCaps/flag", ctxt, &nodes)) < 0) {
411 412
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("failed to parse qemu capabilities flags"));
413 414 415
        goto error;
    }
    if (n > 0) {
416
        if (!(qemuCaps = virQEMUCapsNew()))
417 418 419 420 421
            goto error;

        for (i = 0 ; i < n ; i++) {
            char *str = virXMLPropString(nodes[i], "name");
            if (str) {
422
                int flag = virQEMUCapsTypeFromString(str);
423
                if (flag < 0) {
424 425
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Unknown qemu capabilities flag %s"), str);
426
                    VIR_FREE(str);
427 428
                    goto error;
                }
429
                VIR_FREE(str);
430
                virQEMUCapsSet(qemuCaps, flag);
431 432 433
            }
        }

434
        priv->qemuCaps = qemuCaps;
435 436 437
    }
    VIR_FREE(nodes);

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

440 441 442 443
    if ((tmp = virXPathString("string(./job[1]/@type)", ctxt))) {
        int type;

        if ((type = qemuDomainJobTypeFromString(tmp)) < 0) {
444 445
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown job type %s"), tmp);
446 447 448 449 450 451 452 453 454 455 456
            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) {
457 458
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown async job type %s"), tmp);
459 460 461 462 463
            VIR_FREE(tmp);
            goto error;
        }
        VIR_FREE(tmp);
        priv->job.asyncJob = async;
J
Jiri Denemark 已提交
464 465 466 467

        if ((tmp = virXPathString("string(./job[1]/@phase)", ctxt))) {
            priv->job.phase = qemuDomainAsyncJobPhaseFromString(async, tmp);
            if (priv->job.phase < 0) {
468 469
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Unknown job phase %s"), tmp);
J
Jiri Denemark 已提交
470 471 472 473 474
                VIR_FREE(tmp);
                goto error;
            }
            VIR_FREE(tmp);
        }
475 476
    }

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

479 480 481
    return 0;

error:
482
    virDomainChrSourceDefFree(priv->monConfig);
483 484
    priv->monConfig = NULL;
    VIR_FREE(nodes);
485
    virObjectUnref(qemuCaps);
486 487 488 489
    return -1;
}


490 491 492 493 494 495 496 497
virDomainXMLPrivateDataCallbacks virQEMUDriverPrivateDataCallbacks = {
    .alloc = qemuDomainObjPrivateAlloc,
    .free = qemuDomainObjPrivateFree,
    .parse = qemuDomainObjPrivateXMLParse,
    .format = qemuDomainObjPrivateXMLFormat,
};


498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
static void
qemuDomainDefNamespaceFree(void *nsdata)
{
    qemuDomainCmdlineDefPtr cmd = nsdata;
    unsigned int i;

    if (!cmd)
        return;

    for (i = 0; i < cmd->num_args; i++)
        VIR_FREE(cmd->args[i]);
    for (i = 0; i < cmd->num_env; i++) {
        VIR_FREE(cmd->env_name[i]);
        VIR_FREE(cmd->env_value[i]);
    }
    VIR_FREE(cmd->args);
    VIR_FREE(cmd->env_name);
    VIR_FREE(cmd->env_value);
    VIR_FREE(cmd);
}

static int
P
Philipp Hahn 已提交
520 521
qemuDomainDefNamespaceParse(xmlDocPtr xml ATTRIBUTE_UNUSED,
                            xmlNodePtr root ATTRIBUTE_UNUSED,
522 523 524 525
                            xmlXPathContextPtr ctxt,
                            void **data)
{
    qemuDomainCmdlineDefPtr cmd = NULL;
P
Philipp Hahn 已提交
526
    bool uses_qemu_ns = false;
527 528 529
    xmlNodePtr *nodes = NULL;
    int n, i;

P
Philipp Hahn 已提交
530
    if (xmlXPathRegisterNs(ctxt, BAD_CAST "qemu", BAD_CAST QEMU_NAMESPACE_HREF) < 0) {
531 532 533
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to register xml namespace '%s'"),
                       QEMU_NAMESPACE_HREF);
534 535 536 537 538 539 540 541 542 543 544 545
        return -1;
    }

    if (VIR_ALLOC(cmd) < 0) {
        virReportOOMError();
        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 已提交
546
    uses_qemu_ns |= n > 0;
547 548 549 550 551 552 553

    if (n && VIR_ALLOC_N(cmd->args, n) < 0)
        goto no_memory;

    for (i = 0; i < n; i++) {
        cmd->args[cmd->num_args] = virXMLPropString(nodes[i], "value");
        if (cmd->args[cmd->num_args] == NULL) {
554 555
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No qemu command-line argument specified"));
556 557 558 559 560 561 562 563 564 565 566
            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 已提交
567
    uses_qemu_ns |= n > 0;
568 569 570 571 572 573 574 575 576 577 578 579

    if (n && VIR_ALLOC_N(cmd->env_name, n) < 0)
        goto no_memory;

    if (n && VIR_ALLOC_N(cmd->env_value, n) < 0)
        goto no_memory;

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

        tmp = virXMLPropString(nodes[i], "name");
        if (tmp == NULL) {
580 581
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No qemu environment name specified"));
582 583 584
            goto error;
        }
        if (tmp[0] == '\0') {
585 586
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Empty qemu environment name specified"));
587 588 589
            goto error;
        }
        if (!c_isalpha(tmp[0]) && tmp[0] != '_') {
590 591
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Invalid environment name, it must begin with a letter or underscore"));
592 593 594
            goto error;
        }
        if (strspn(tmp, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_") != strlen(tmp)) {
595 596
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Invalid environment name, it must contain only alphanumerics and underscore"));
597 598 599 600 601 602 603 604 605 606 607 608
            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 已提交
609 610 611 612
    if (uses_qemu_ns)
        *data = cmd;
    else
        VIR_FREE(cmd);
613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639

    return 0;

no_memory:
    virReportOOMError();

error:
    VIR_FREE(nodes);
    qemuDomainDefNamespaceFree(cmd);
    return -1;
}

static int
qemuDomainDefNamespaceFormatXML(virBufferPtr buf,
                                void *nsdata)
{
    qemuDomainCmdlineDefPtr cmd = nsdata;
    unsigned int i;

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

    virBufferAddLit(buf, "  <qemu:commandline>\n");
    for (i = 0; i < cmd->num_args; i++)
        virBufferEscapeString(buf, "    <qemu:arg value='%s'/>\n",
                              cmd->args[i]);
    for (i = 0; i < cmd->num_env; i++) {
640
        virBufferAsprintf(buf, "    <qemu:env name='%s'", cmd->env_name[i]);
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
        if (cmd->env_value[i])
            virBufferEscapeString(buf, " value='%s'", cmd->env_value[i]);
        virBufferAddLit(buf, "/>\n");
    }
    virBufferAddLit(buf, "  </qemu:commandline>\n");

    return 0;
}

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


657 658 659 660 661 662
virDomainXMLNamespace virQEMUDriverDomainXMLNamespace = {
    .parse = qemuDomainDefNamespaceParse,
    .free = qemuDomainDefNamespaceFree,
    .format = qemuDomainDefNamespaceFormatXML,
    .href = qemuDomainDefNamespaceHref,
};
663

664

665
static void
666
qemuDomainObjSaveJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
667
{
668 669 670
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);

    if (virDomainObjIsActive(obj)) {
671
        if (virDomainSaveStatus(driver->xmlconf, cfg->stateDir, obj) < 0)
672
            VIR_WARN("Failed to save status on vm %s", obj->def->name);
673
    }
674

675
    virObjectUnref(cfg);
676 677
}

J
Jiri Denemark 已提交
678
void
679
qemuDomainObjSetJobPhase(virQEMUDriverPtr driver,
J
Jiri Denemark 已提交
680 681 682 683
                         virDomainObjPtr obj,
                         int phase)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
684
    int me = virThreadSelfID();
J
Jiri Denemark 已提交
685 686 687 688

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

689 690 691 692 693 694 695 696 697 698
    VIR_DEBUG("Setting '%s' phase to '%s'",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              qemuDomainAsyncJobPhaseToString(priv->job.asyncJob, phase));

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

J
Jiri Denemark 已提交
699
    priv->job.phase = phase;
700
    priv->job.asyncOwner = me;
J
Jiri Denemark 已提交
701 702 703
    qemuDomainObjSaveJob(driver, obj);
}

704
void
705 706
qemuDomainObjSetAsyncJobMask(virDomainObjPtr obj,
                             unsigned long long allowedJobs)
707 708 709
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

710 711 712 713 714 715 716
    if (!priv->job.asyncJob)
        return;

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

void
717
qemuDomainObjDiscardAsyncJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
718 719 720 721 722 723
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    if (priv->job.active == QEMU_JOB_ASYNC_NESTED)
        qemuDomainObjResetJob(priv);
    qemuDomainObjResetAsyncJob(priv);
724
    qemuDomainObjSaveJob(driver, obj);
725 726
}

727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
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()) {
        VIR_WARN("'%s' async job is owned by thread %d",
                 qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
                 priv->job.asyncOwner);
    }
    priv->job.asyncOwner = 0;
}

743
static bool
744
qemuDomainNestedJobAllowed(qemuDomainObjPrivatePtr priv, enum qemuDomainJob job)
745 746
{
    return !priv->job.asyncJob || (priv->job.mask & JOB_MASK(job)) != 0;
747 748
}

749 750 751 752 753 754
bool
qemuDomainJobAllowed(qemuDomainObjPrivatePtr priv, enum qemuDomainJob job)
{
    return !priv->job.active && qemuDomainNestedJobAllowed(priv, job);
}

755 756 757
/* Give up waiting for mutex after 30 seconds */
#define QEMU_JOB_WAIT_TIME (1000ull * 30)

758
/*
759
 * obj must be locked before calling
760
 */
761
static int ATTRIBUTE_NONNULL(1)
762
qemuDomainObjBeginJobInternal(virQEMUDriverPtr driver,
763 764 765
                              virDomainObjPtr obj,
                              enum qemuDomainJob job,
                              enum qemuDomainAsyncJob asyncJob)
766 767
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
J
Jiri Denemark 已提交
768
    unsigned long long now;
769
    unsigned long long then;
770
    bool nested = job == QEMU_JOB_ASYNC_NESTED;
771
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
772

773 774
    priv->jobs_queued++;

775 776
    if (virTimeMillisNow(&now) < 0) {
        virObjectUnref(cfg);
777
        return -1;
778 779
    }

J
Jiri Denemark 已提交
780
    then = now + QEMU_JOB_WAIT_TIME;
781

782
    virObjectRef(obj);
783

784
retry:
785 786
    if (cfg->maxQueuedJobs &&
        priv->jobs_queued > cfg->maxQueuedJobs) {
787 788 789
        goto error;
    }

790
    while (!nested && !qemuDomainNestedJobAllowed(priv, job)) {
791
        if (virCondWaitUntil(&priv->job.asyncCond, &obj->parent.lock, then) < 0)
792 793 794
            goto error;
    }

795
    while (priv->job.active) {
796
        if (virCondWaitUntil(&priv->job.cond, &obj->parent.lock, then) < 0)
797
            goto error;
798
    }
799 800 801

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

805
    qemuDomainObjResetJob(priv);
806 807

    if (job != QEMU_JOB_ASYNC) {
808 809 810
        VIR_DEBUG("Starting job: %s (async=%s)",
                   qemuDomainJobTypeToString(job),
                   qemuDomainAsyncJobTypeToString(priv->job.asyncJob));
811
        priv->job.active = job;
812
        priv->job.owner = virThreadSelfID();
813
    } else {
814 815
        VIR_DEBUG("Starting async job: %s",
                  qemuDomainAsyncJobTypeToString(asyncJob));
816 817
        qemuDomainObjResetAsyncJob(priv);
        priv->job.asyncJob = asyncJob;
818
        priv->job.asyncOwner = virThreadSelfID();
819 820
        priv->job.start = now;
    }
821

822 823
    if (qemuDomainTrackJob(job))
        qemuDomainObjSaveJob(driver, obj);
824

825
    virObjectUnref(cfg);
826
    return 0;
827 828

error:
829 830 831 832 833 834 835 836 837
    VIR_WARN("Cannot start job (%s, %s) for domain %s;"
             " current job is (%s, %s) owned by (%d, %d)",
             qemuDomainJobTypeToString(job),
             qemuDomainAsyncJobTypeToString(asyncJob),
             obj->def->name,
             qemuDomainJobTypeToString(priv->job.active),
             qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
             priv->job.owner, priv->job.asyncOwner);

838
    if (errno == ETIMEDOUT)
839 840
        virReportError(VIR_ERR_OPERATION_TIMEOUT,
                       "%s", _("cannot acquire state change lock"));
841 842
    else if (cfg->maxQueuedJobs &&
             priv->jobs_queued > cfg->maxQueuedJobs)
843 844 845
        virReportError(VIR_ERR_OPERATION_FAILED,
                       "%s", _("cannot acquire state change lock "
                               "due to max_queued limit"));
846 847 848
    else
        virReportSystemError(errno,
                             "%s", _("cannot acquire job mutex"));
849
    priv->jobs_queued--;
850
    virObjectUnref(obj);
851
    virObjectUnref(cfg);
852
    return -1;
853 854 855
}

/*
856
 * obj must be locked before calling
857 858 859 860 861 862 863
 *
 * 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
 */
864
int qemuDomainObjBeginJob(virQEMUDriverPtr driver,
865 866
                          virDomainObjPtr obj,
                          enum qemuDomainJob job)
867
{
868
    return qemuDomainObjBeginJobInternal(driver, obj, job,
869 870 871
                                         QEMU_ASYNC_JOB_NONE);
}

872
int qemuDomainObjBeginAsyncJob(virQEMUDriverPtr driver,
873
                               virDomainObjPtr obj,
874
                               enum qemuDomainAsyncJob asyncJob)
875
{
876
    return qemuDomainObjBeginJobInternal(driver, obj, QEMU_JOB_ASYNC,
877
                                         asyncJob);
878 879
}

880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902
int
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()) {
        VIR_WARN("This thread doesn't seem to be the async job owner: %d",
                 priv->job.asyncOwner);
    }

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

903

904
/*
905
 * obj must be locked before calling
906 907 908 909
 *
 * To be called after completing the work associated with the
 * earlier qemuDomainBeginJob() call
 *
910 911
 * Returns true if @obj was still referenced, false if it was
 * disposed of.
912
 */
913
bool qemuDomainObjEndJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
914 915
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
916
    enum qemuDomainJob job = priv->job.active;
917

918 919
    priv->jobs_queued--;

920
    VIR_DEBUG("Stopping job: %s (async=%s)",
921
              qemuDomainJobTypeToString(job),
922 923
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob));

924
    qemuDomainObjResetJob(priv);
925 926
    if (qemuDomainTrackJob(job))
        qemuDomainObjSaveJob(driver, obj);
927
    virCondSignal(&priv->job.cond);
928

929
    return virObjectUnref(obj);
930 931
}

932
bool
933
qemuDomainObjEndAsyncJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
934 935
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
936

937 938
    priv->jobs_queued--;

939 940 941
    VIR_DEBUG("Stopping async job: %s",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob));

942
    qemuDomainObjResetAsyncJob(priv);
943
    qemuDomainObjSaveJob(driver, obj);
944 945
    virCondBroadcast(&priv->job.asyncCond);

946
    return virObjectUnref(obj);
947 948
}

949 950 951 952 953 954 955 956 957 958 959
void
qemuDomainObjAbortAsyncJob(virDomainObjPtr obj)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    VIR_DEBUG("Requesting abort of async job: %s",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob));

    priv->job.asyncAbort = true;
}

960 961 962 963 964 965 966 967 968
/*
 * 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
 */
969
static int
970
qemuDomainObjEnterMonitorInternal(virQEMUDriverPtr driver,
971 972
                                  virDomainObjPtr obj,
                                  enum qemuDomainAsyncJob asyncJob)
973 974 975
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

976
    if (asyncJob != QEMU_ASYNC_JOB_NONE) {
977
        if (qemuDomainObjBeginNestedJob(driver, obj, asyncJob) < 0)
978 979
            return -1;
        if (!virDomainObjIsActive(obj)) {
980 981
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("domain is no longer running"));
982 983
            /* Still referenced by the containing async job.  */
            ignore_value(qemuDomainObjEndJob(driver, obj));
984 985
            return -1;
        }
986 987 988
    } 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");
989 990
    }

991
    virObjectLock(priv->mon);
992
    virObjectRef(priv->mon);
993
    ignore_value(virTimeMillisNow(&priv->monStart));
994
    virObjectUnlock(obj);
995 996

    return 0;
997 998
}

999
static void ATTRIBUTE_NONNULL(1)
1000
qemuDomainObjExitMonitorInternal(virQEMUDriverPtr driver,
1001
                                 virDomainObjPtr obj)
1002 1003
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1004
    bool hasRefs;
1005

1006
    hasRefs = virObjectUnref(priv->mon);
1007

1008
    if (hasRefs)
1009
        virObjectUnlock(priv->mon);
1010

1011
    virObjectLock(obj);
1012

1013
    priv->monStart = 0;
1014
    if (!hasRefs)
1015
        priv->mon = NULL;
1016

1017 1018 1019 1020 1021
    if (priv->job.active == QEMU_JOB_ASYNC_NESTED) {
        qemuDomainObjResetJob(priv);
        qemuDomainObjSaveJob(driver, obj);
        virCondSignal(&priv->job.cond);

1022
        virObjectUnref(obj);
1023
    }
1024 1025
}

1026
void qemuDomainObjEnterMonitor(virQEMUDriverPtr driver,
1027
                               virDomainObjPtr obj)
1028
{
1029
    ignore_value(qemuDomainObjEnterMonitorInternal(driver, obj,
1030
                                                   QEMU_ASYNC_JOB_NONE));
1031 1032
}

1033
/* obj must NOT be locked before calling
1034 1035 1036
 *
 * Should be paired with an earlier qemuDomainObjEnterMonitor() call
 */
1037
void qemuDomainObjExitMonitor(virQEMUDriverPtr driver,
1038
                              virDomainObjPtr obj)
1039
{
1040
    qemuDomainObjExitMonitorInternal(driver, obj);
1041
}
1042 1043

/*
1044
 * obj must be locked before calling
1045 1046
 *
 * To be called immediately before any QEMU monitor API call.
1047
 * Must have already either called qemuDomainObjBeginJob()
1048 1049 1050 1051 1052
 * 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
1053
 * qemuDomainObjExitMonitor(); or -1 if the job could not be
1054 1055 1056
 * started (probably because the vm exited in the meantime).
 */
int
1057
qemuDomainObjEnterMonitorAsync(virQEMUDriverPtr driver,
1058 1059
                               virDomainObjPtr obj,
                               enum qemuDomainAsyncJob asyncJob)
1060
{
1061
    return qemuDomainObjEnterMonitorInternal(driver, obj, asyncJob);
1062 1063
}

D
Daniel P. Berrange 已提交
1064 1065


1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
/*
 * 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 已提交
1077 1078 1079
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

1080
    virObjectLock(priv->agent);
1081
    virObjectRef(priv->agent);
D
Daniel P. Berrange 已提交
1082
    ignore_value(virTimeMillisNow(&priv->agentStart));
1083
    virObjectUnlock(obj);
D
Daniel P. Berrange 已提交
1084 1085
}

1086 1087 1088 1089 1090 1091 1092

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

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

1099
    if (hasRefs)
1100
        virObjectUnlock(priv->agent);
D
Daniel P. Berrange 已提交
1101

1102
    virObjectLock(obj);
D
Daniel P. Berrange 已提交
1103 1104

    priv->agentStart = 0;
1105
    if (!hasRefs)
D
Daniel P. Berrange 已提交
1106 1107 1108
        priv->agent = NULL;
}

1109
void qemuDomainObjEnterRemote(virDomainObjPtr obj)
1110
{
1111
    virObjectRef(obj);
1112
    virObjectUnlock(obj);
1113 1114
}

1115
void qemuDomainObjExitRemote(virDomainObjPtr obj)
1116
{
1117
    virObjectLock(obj);
1118
    virObjectUnref(obj);
1119
}
1120 1121


1122
int
1123
qemuDomainDefFormatBuf(virQEMUDriverPtr driver,
1124 1125 1126
                       virDomainDefPtr def,
                       unsigned int flags,
                       virBuffer *buf)
1127
{
1128
    int ret = -1;
1129
    virCPUDefPtr cpu = NULL;
1130
    virCPUDefPtr def_cpu = def->cpu;
1131 1132
    virDomainControllerDefPtr *controllers = NULL;
    int ncontrollers = 0;
1133 1134 1135 1136
    virCapsPtr caps = NULL;

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

    /* Update guest CPU requirements according to host CPU */
1139 1140 1141
    if ((flags & VIR_DOMAIN_XML_UPDATE_CPU) &&
        def_cpu &&
        (def_cpu->mode != VIR_CPU_MODE_CUSTOM || def_cpu->model)) {
1142 1143
        if (!caps->host.cpu ||
            !caps->host.cpu->model) {
1144 1145
            virReportError(VIR_ERR_OPERATION_FAILED,
                           "%s", _("cannot get host CPU capabilities"));
1146 1147 1148
            goto cleanup;
        }

1149
        if (!(cpu = virCPUDefCopy(def_cpu)) ||
1150
            cpuUpdate(cpu, caps->host.cpu) < 0)
1151 1152 1153 1154
            goto cleanup;
        def->cpu = cpu;
    }

1155
    if ((flags & VIR_DOMAIN_XML_MIGRATABLE)) {
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
        int i;
        virDomainControllerDefPtr usb = NULL;

        /* 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);
            controllers = def->controllers;
            ncontrollers = def->ncontrollers;
            if (VIR_ALLOC_N(def->controllers, ncontrollers - 1) < 0) {
                controllers = NULL;
                virReportOOMError();
                goto cleanup;
            }

            def->ncontrollers = 0;
            for (i = 0; i < ncontrollers; i++) {
                if (controllers[i] != usb)
                    def->controllers[def->ncontrollers++] = controllers[i];
            }
        }
    }

1192
    ret = virDomainDefFormatInternal(def, flags, buf);
1193 1194 1195 1196

cleanup:
    def->cpu = def_cpu;
    virCPUDefFree(cpu);
1197 1198 1199 1200 1201
    if (controllers) {
        VIR_FREE(def->controllers);
        def->controllers = controllers;
        def->ncontrollers = ncontrollers;
    }
1202
    virObjectUnref(caps);
1203 1204
    return ret;
}
1205

1206
char *qemuDomainDefFormatXML(virQEMUDriverPtr driver,
1207
                             virDomainDefPtr def,
1208
                             unsigned int flags)
1209 1210 1211
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

1212
    if (qemuDomainDefFormatBuf(driver, def, flags, &buf) < 0) {
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
        virBufferFreeAndReset(&buf);
        return NULL;
    }

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

    return virBufferContentAndReset(&buf);
}

1226
char *qemuDomainFormatXML(virQEMUDriverPtr driver,
1227
                          virDomainObjPtr vm,
1228
                          unsigned int flags)
1229 1230 1231 1232 1233 1234 1235 1236
{
    virDomainDefPtr def;

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

1237
    return qemuDomainDefFormatXML(driver, def, flags);
1238 1239
}

1240
char *
1241
qemuDomainDefFormatLive(virQEMUDriverPtr driver,
1242
                        virDomainDefPtr def,
1243 1244
                        bool inactive,
                        bool compatible)
1245 1246 1247 1248 1249
{
    unsigned int flags = QEMU_DOMAIN_FORMAT_LIVE_FLAGS;

    if (inactive)
        flags |= VIR_DOMAIN_XML_INACTIVE;
1250 1251
    if (compatible)
        flags |= VIR_DOMAIN_XML_MIGRATABLE;
1252

1253
    return qemuDomainDefFormatXML(driver, def, flags);
1254 1255
}

1256

1257
void qemuDomainObjTaint(virQEMUDriverPtr driver,
1258
                        virDomainObjPtr obj,
1259 1260
                        enum virDomainTaintFlags taint,
                        int logFD)
1261
{
1262 1263
    virErrorPtr orig_err = NULL;

1264 1265 1266 1267 1268 1269 1270 1271 1272
    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));
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286

        /* 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);
        }
1287 1288 1289 1290
    }
}


1291
void qemuDomainObjCheckTaint(virQEMUDriverPtr driver,
1292 1293
                             virDomainObjPtr obj,
                             int logFD)
1294 1295
{
    int i;
1296
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1297

1298 1299 1300 1301
    if (cfg->privileged &&
        (!cfg->clearEmulatorCapabilities ||
         cfg->user == 0 ||
         cfg->group == 0))
1302
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HIGH_PRIVILEGES, logFD);
1303 1304 1305 1306

    if (obj->def->namespaceData) {
        qemuDomainCmdlineDefPtr qemucmd = obj->def->namespaceData;
        if (qemucmd->num_args || qemucmd->num_env)
1307
            qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_CUSTOM_ARGV, logFD);
1308 1309
    }

1310 1311 1312
    if (obj->def->cpu && obj->def->cpu->mode == VIR_CPU_MODE_HOST_PASSTHROUGH)
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HOST_CPU, logFD);

1313
    for (i = 0 ; i < obj->def->ndisks ; i++)
1314
        qemuDomainObjCheckDiskTaint(driver, obj, obj->def->disks[i], logFD);
1315 1316

    for (i = 0 ; i < obj->def->nnets ; i++)
1317
        qemuDomainObjCheckNetTaint(driver, obj, obj->def->nets[i], logFD);
1318 1319

    virObjectUnref(cfg);
1320 1321 1322
}


1323
void qemuDomainObjCheckDiskTaint(virQEMUDriverPtr driver,
1324
                                 virDomainObjPtr obj,
1325 1326
                                 virDomainDiskDefPtr disk,
                                 int logFD)
1327
{
1328 1329
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);

1330
    if ((!disk->format || disk->format == VIR_STORAGE_FILE_AUTO) &&
1331
        cfg->allowDiskFormatProbing)
1332
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_DISK_PROBING, logFD);
1333

1334
    if (disk->rawio == 1)
1335
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HIGH_PRIVILEGES, logFD);
1336 1337

    virObjectUnref(cfg);
1338 1339 1340
}


1341
void qemuDomainObjCheckNetTaint(virQEMUDriverPtr driver,
1342
                                virDomainObjPtr obj,
1343 1344
                                virDomainNetDefPtr net,
                                int logFD)
1345
{
1346 1347 1348 1349 1350 1351
    /* 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)
1352
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_SHELL_SCRIPTS, logFD);
1353
}
1354 1355 1356


static int
1357
qemuDomainOpenLogHelper(virQEMUDriverConfigPtr cfg,
1358
                        virDomainObjPtr vm,
E
Eric Blake 已提交
1359
                        int oflags,
1360 1361 1362 1363
                        mode_t mode)
{
    char *logfile;
    int fd = -1;
1364
    bool trunc = false;
1365

1366
    if (virAsprintf(&logfile, "%s/%s.log", cfg->logDir, vm->def->name) < 0) {
1367 1368 1369 1370
        virReportOOMError();
        return -1;
    }

1371 1372 1373 1374 1375 1376 1377 1378 1379
    /* 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 已提交
1380
    if ((fd = open(logfile, oflags, mode)) < 0) {
1381 1382 1383 1384 1385 1386 1387
        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);
1388 1389 1390 1391 1392 1393 1394
        VIR_FORCE_CLOSE(fd);
        goto cleanup;
    }
    if (trunc &&
        ftruncate(fd, 0) < 0) {
        virReportSystemError(errno, _("failed to truncate %s"),
                             logfile);
1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
        VIR_FORCE_CLOSE(fd);
        goto cleanup;
    }

cleanup:
    VIR_FREE(logfile);
    return fd;
}


int
1406
qemuDomainCreateLog(virQEMUDriverPtr driver, virDomainObjPtr vm,
E
Eric Blake 已提交
1407
                    bool append)
1408
{
1409
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
E
Eric Blake 已提交
1410
    int oflags;
1411
    int ret;
1412

E
Eric Blake 已提交
1413
    oflags = O_CREAT | O_WRONLY;
1414
    /* Only logrotate files in /var/log, so only append if running privileged */
1415
    if (cfg->privileged || append)
E
Eric Blake 已提交
1416
        oflags |= O_APPEND;
1417
    else
E
Eric Blake 已提交
1418
        oflags |= O_TRUNC;
1419

1420 1421 1422
    ret = qemuDomainOpenLogHelper(cfg, vm, oflags, S_IRUSR | S_IWUSR);
    virObjectUnref(cfg);
    return ret;
1423 1424 1425 1426
}


int
1427
qemuDomainOpenLog(virQEMUDriverPtr driver, virDomainObjPtr vm, off_t pos)
1428
{
1429
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1430 1431 1432 1433
    int fd;
    off_t off;
    int whence;

1434 1435 1436
    fd = qemuDomainOpenLogHelper(cfg, vm, O_RDONLY, 0);
    virObjectUnref(cfg);
    if (fd < 0)
1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462
        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;
}


1463
int qemuDomainAppendLog(virQEMUDriverPtr driver,
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496
                        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;

    if (virVasprintf(&message, fmt, argptr) < 0) {
        virReportOOMError();
        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;

cleanup:
    va_end(argptr);

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

O
Osier Yang 已提交
1497
    VIR_FREE(message);
1498 1499
    return ret;
}
1500 1501 1502

/* Locate an appropriate 'qemu-img' binary.  */
const char *
1503
qemuFindQemuImgBinary(virQEMUDriverPtr driver)
1504
{
1505 1506 1507
    if (!driver->qemuImgBinary)
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("unable to find kvm-img or qemu-img"));
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524

    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,
1525 1526
                                        QEMU_DOMAIN_FORMAT_LIVE_FLAGS, 1);
    if (newxml == NULL)
1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543
        return -1;

    if (virAsprintf(&snapDir, "%s/%s", snapshotDir, vm->def->name) < 0) {
        virReportOOMError();
        goto cleanup;
    }
    if (virFileMakePath(snapDir) < 0) {
        virReportSystemError(errno, _("cannot create snapshot directory '%s'"),
                             snapDir);
        goto cleanup;
    }

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

J
Ján Tomko 已提交
1544
    ret = virXMLSaveFile(snapFile, NULL, "snapshot-edit", newxml);
1545 1546 1547 1548 1549 1550 1551 1552 1553 1554

cleanup:
    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.  */
1555
static int
1556
qemuDomainSnapshotForEachQcow2Raw(virQEMUDriverPtr driver,
1557 1558 1559 1560 1561
                                  virDomainDefPtr def,
                                  const char *name,
                                  const char *op,
                                  bool try_all,
                                  int ndisks)
1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573
{
    const char *qemuimgarg[] = { NULL, "snapshot", NULL, NULL, NULL, NULL };
    int i;
    bool skipped = false;

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

    qemuimgarg[2] = op;
1574
    qemuimgarg[3] = name;
1575

1576
    for (i = 0; i < ndisks; i++) {
1577
        /* FIXME: we also need to handle LVM here */
1578
        if (def->disks[i]->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
1579 1580
            if (def->disks[i]->format > 0 &&
                def->disks[i]->format != VIR_STORAGE_FILE_QCOW2) {
1581 1582 1583 1584 1585
                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",
1586
                             def->disks[i]->dst);
1587 1588
                    skipped = true;
                    continue;
1589 1590 1591 1592 1593
                } else if (STREQ(op, "-c") && i) {
                    /* We must roll back partial creation by deleting
                     * all earlier snapshots.  */
                    qemuDomainSnapshotForEachQcow2Raw(driver, def, name,
                                                      "-d", false, i);
1594
                }
1595 1596 1597 1598
                virReportError(VIR_ERR_OPERATION_INVALID,
                               _("Disk device '%s' does not support"
                                 " snapshotting"),
                               def->disks[i]->dst);
1599 1600 1601
                return -1;
            }

1602
            qemuimgarg[4] = def->disks[i]->src;
1603 1604 1605 1606

            if (virRun(qemuimgarg, NULL) < 0) {
                if (try_all) {
                    VIR_WARN("skipping snapshot action on %s",
1607
                             def->disks[i]->dst);
1608 1609
                    skipped = true;
                    continue;
1610 1611 1612 1613 1614
                } else if (STREQ(op, "-c") && i) {
                    /* We must roll back partial creation by deleting
                     * all earlier snapshots.  */
                    qemuDomainSnapshotForEachQcow2Raw(driver, def, name,
                                                      "-d", false, i);
1615 1616 1617 1618 1619 1620 1621 1622 1623
                }
                return -1;
            }
        }
    }

    return skipped ? 1 : 0;
}

1624 1625 1626
/* 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
1627
qemuDomainSnapshotForEachQcow2(virQEMUDriverPtr driver,
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
                               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);
}

1644 1645
/* Discard one snapshot (or its metadata), without reparenting any children.  */
int
1646
qemuDomainSnapshotDiscard(virQEMUDriverPtr driver,
1647 1648 1649 1650 1651 1652 1653 1654 1655
                          virDomainObjPtr vm,
                          virDomainSnapshotObjPtr snap,
                          bool update_current,
                          bool metadata_only)
{
    char *snapFile = NULL;
    int ret = -1;
    qemuDomainObjPrivatePtr priv;
    virDomainSnapshotObjPtr parentsnap = NULL;
1656
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1657 1658 1659 1660 1661 1662 1663 1664 1665

    if (!metadata_only) {
        if (!virDomainObjIsActive(vm)) {
            /* Ignore any skipped disks */
            if (qemuDomainSnapshotForEachQcow2(driver, vm, snap, "-d",
                                               true) < 0)
                goto cleanup;
        } else {
            priv = vm->privateData;
1666
            qemuDomainObjEnterMonitor(driver, vm);
1667 1668
            /* we continue on even in the face of error */
            qemuMonitorDeleteSnapshot(priv->mon, snap->def->name);
1669
            qemuDomainObjExitMonitor(driver, vm);
1670 1671 1672
        }
    }

1673
    if (virAsprintf(&snapFile, "%s/%s/%s.xml", cfg->snapshotDir,
1674 1675 1676 1677 1678 1679 1680
                    vm->def->name, snap->def->name) < 0) {
        virReportOOMError();
        goto cleanup;
    }

    if (snap == vm->current_snapshot) {
        if (update_current && snap->def->parent) {
1681
            parentsnap = virDomainSnapshotFindByName(vm->snapshots,
1682 1683 1684 1685 1686 1687 1688
                                                     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,
1689
                                                    cfg->snapshotDir) < 0) {
1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701
                    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);
1702
    virDomainSnapshotObjListRemove(vm->snapshots, snap);
1703 1704 1705 1706 1707

    ret = 0;

cleanup:
    VIR_FREE(snapFile);
1708
    virObjectUnref(cfg);
1709 1710 1711 1712 1713 1714 1715 1716 1717
    return ret;
}

/* Hash iterator callback to discard multiple snapshots.  */
void qemuDomainSnapshotDiscardAll(void *payload,
                                  const void *name ATTRIBUTE_UNUSED,
                                  void *data)
{
    virDomainSnapshotObjPtr snap = payload;
1718
    virQEMUSnapRemovePtr curr = data;
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729
    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
1730
qemuDomainSnapshotDiscardAllMetadata(virQEMUDriverPtr driver,
1731 1732
                                     virDomainObjPtr vm)
{
1733
    virQEMUSnapRemove rem;
1734 1735 1736 1737 1738

    rem.driver = driver;
    rem.vm = vm;
    rem.metadata_only = true;
    rem.err = 0;
1739 1740
    virDomainSnapshotForEach(vm->snapshots, qemuDomainSnapshotDiscardAll,
                             &rem);
1741 1742 1743 1744 1745

    return rem.err;
}

/*
1746
 * The caller must hold a lock the vm and there must
1747 1748 1749
 * be no remaining references to vm.
 */
void
1750
qemuDomainRemoveInactive(virQEMUDriverPtr driver,
1751 1752
                         virDomainObjPtr vm)
{
1753
    char *snapDir;
1754
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1755

1756 1757 1758 1759 1760
    /* 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);
    }
1761
    else if (virAsprintf(&snapDir, "%s/%s", cfg->snapshotDir,
1762 1763
                         vm->def->name) < 0) {
        VIR_WARN("unable to remove snapshot directory %s/%s",
1764
                 cfg->snapshotDir, vm->def->name);
1765 1766 1767 1768 1769
    } else {
        if (rmdir(snapDir) < 0 && errno != ENOENT)
            VIR_WARN("unable to remove snapshot directory %s", snapDir);
        VIR_FREE(snapDir);
    }
1770
    virDomainObjListRemove(driver->domains, vm);
1771
    virObjectUnref(cfg);
1772
}
1773 1774

void
1775
qemuDomainSetFakeReboot(virQEMUDriverPtr driver,
1776 1777 1778 1779
                        virDomainObjPtr vm,
                        bool value)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
1780
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1781 1782

    if (priv->fakeReboot == value)
1783
        goto cleanup;
1784 1785 1786

    priv->fakeReboot = value;

1787
    if (virDomainSaveStatus(driver->xmlconf, cfg->stateDir, vm) < 0)
1788
        VIR_WARN("Failed to save status on vm %s", vm->def->name);
1789

1790
cleanup:
1791
    virObjectUnref(cfg);
1792
}
M
Michal Privoznik 已提交
1793 1794

int
1795
qemuDomainCheckDiskPresence(virQEMUDriverPtr driver,
M
Michal Privoznik 已提交
1796
                            virDomainObjPtr vm,
1797
                            bool cold_boot)
M
Michal Privoznik 已提交
1798 1799 1800 1801
{
    int ret = -1;
    int i;
    virDomainDiskDefPtr disk;
M
Michal Privoznik 已提交
1802
    char uuid[VIR_UUID_STRING_BUFLEN];
1803
    virDomainEventPtr event = NULL;
1804
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
M
Michal Privoznik 已提交
1805 1806 1807 1808 1809 1810 1811 1812 1813

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

    for (i = 0; i < vm->def->ndisks; i++) {
        disk = vm->def->disks[i];

        if (!disk->startupPolicy || !disk->src)
            continue;

M
Michal Privoznik 已提交
1814
        if (virFileAccessibleAs(disk->src, F_OK,
1815 1816
                                cfg->user,
                                cfg->group) >= 0) {
M
Michal Privoznik 已提交
1817
            /* disk accessible */
M
Michal Privoznik 已提交
1818 1819 1820 1821 1822 1823 1824 1825
            continue;
        }

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

            case VIR_DOMAIN_STARTUP_POLICY_MANDATORY:
M
Michal Privoznik 已提交
1826
                virReportSystemError(errno,
M
Michal Privoznik 已提交
1827 1828 1829 1830 1831 1832
                                     _("cannot access file '%s'"),
                                     disk->src);
                goto cleanup;
                break;

            case VIR_DOMAIN_STARTUP_POLICY_REQUISITE:
1833
                if (cold_boot) {
M
Michal Privoznik 已提交
1834
                    virReportSystemError(errno,
M
Michal Privoznik 已提交
1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846
                                         _("cannot access file '%s'"),
                                         disk->src);
                    goto cleanup;
                }
                break;

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

M
Michal Privoznik 已提交
1847 1848
        VIR_DEBUG("Dropping disk '%s' on domain '%s' (UUID '%s') "
                  "due to inaccessible source '%s'",
M
Michal Privoznik 已提交
1849 1850
                  disk->dst, vm->def->name, uuid, disk->src);

1851
        event = virDomainEventDiskChangeNewFromObj(vm, disk->src, NULL, disk->info.alias,
1852
                                                   VIR_DOMAIN_EVENT_DISK_CHANGE_MISSING_ON_START);
1853 1854 1855
        if (event)
            qemuDomainEventQueue(driver, event);

M
Michal Privoznik 已提交
1856 1857 1858 1859 1860 1861
        VIR_FREE(disk->src);
    }

    ret = 0;

cleanup:
1862
    virObjectUnref(cfg);
M
Michal Privoznik 已提交
1863 1864
    return ret;
}
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918

/*
 * The vm must be locked when any of the following cleanup functions is
 * called.
 */
int
qemuDomainCleanupAdd(virDomainObjPtr vm,
                     qemuDomainCleanupCallback cb)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int i;

    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,
                     priv->ncleanupCallbacks, 1) < 0) {
        virReportOOMError();
        return -1;
    }

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

void
qemuDomainCleanupRemove(virDomainObjPtr vm,
                        qemuDomainCleanupCallback cb)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int i;

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

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

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

void
1919
qemuDomainCleanupRun(virQEMUDriverPtr driver,
1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936
                     virDomainObjPtr vm)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int i;

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

    /* run cleanup callbacks in reverse order */
    for (i = priv->ncleanupCallbacks - 1; i >= 0; i--) {
        if (priv->cleanupCallbacks[i])
            priv->cleanupCallbacks[i](driver, vm);
    }

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

int
1939
qemuDomainDetermineDiskChain(virQEMUDriverPtr driver,
1940 1941 1942
                             virDomainDiskDefPtr disk,
                             bool force)
{
1943 1944
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    int ret = 0;
1945

S
Scott Sullivan 已提交
1946
    if (!disk->src || disk->type == VIR_DOMAIN_DISK_TYPE_NETWORK)
1947
        goto cleanup;
1948 1949 1950 1951 1952 1953

    if (disk->backingChain) {
        if (force) {
            virStorageFileFreeMetadata(disk->backingChain);
            disk->backingChain = NULL;
        } else {
1954
            goto cleanup;
1955 1956 1957
        }
    }
    disk->backingChain = virStorageFileGetMetadata(disk->src, disk->format,
1958 1959
                                                   cfg->user, cfg->group,
                                                   cfg->allowDiskFormatProbing);
1960
    if (!disk->backingChain)
1961 1962 1963 1964 1965
        ret = -1;

cleanup:
    virObjectUnref(cfg);
    return ret;
1966
}