qemu_domain.c 59.3 KB
Newer Older
1 2 3
/*
 * qemu_domain.h: QEMU domain private state
 *
4
 * Copyright (C) 2006-2012 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 31 32 33
#include "memory.h"
#include "logging.h"
#include "virterror_internal.h"
#include "c-ctype.h"
34
#include "cpu/cpu.h"
35
#include "uuid.h"
E
Eric Blake 已提交
36
#include "virfile.h"
37
#include "domain_event.h"
38
#include "virtime.h"
39
#include "storage_file.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 68 69
              "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",
);

70

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

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

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

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

115 116 117 118 119

/* driver must be locked before calling */
void qemuDomainEventQueue(struct qemud_driver *driver,
                          virDomainEventPtr event)
{
120
    virDomainEventStateQueue(driver->domainEventState, event);
121 122 123
}


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

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

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

137 138 139 140 141 142 143 144 145
    return 0;
}

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

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

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

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

163 164 165 166 167 168 169 170
void
qemuDomainObjRestoreJob(virDomainObjPtr obj,
                        struct qemuDomainJobObj *job)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    memset(job, 0, sizeof(*job));
    job->active = priv->job.active;
171
    job->owner = priv->job.owner;
172
    job->asyncJob = priv->job.asyncJob;
173
    job->asyncOwner = priv->job.asyncOwner;
J
Jiri Denemark 已提交
174
    job->phase = priv->job.phase;
175 176 177 178 179

    qemuDomainObjResetJob(priv);
    qemuDomainObjResetAsyncJob(priv);
}

180 181 182 183 184 185 186 187 188 189
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();
}

190 191 192 193
static void
qemuDomainObjFreeJob(qemuDomainObjPrivatePtr priv)
{
    ignore_value(virCondDestroy(&priv->job.cond));
194
    ignore_value(virCondDestroy(&priv->job.asyncCond));
195 196
}

197 198 199 200 201 202
static bool
qemuDomainTrackJob(enum qemuDomainJob job)
{
    return (QEMU_DOMAIN_TRACK_JOBS & JOB_MASK(job)) != 0;
}

203

204 205 206 207 208 209 210
static void *qemuDomainObjPrivateAlloc(void)
{
    qemuDomainObjPrivatePtr priv;

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

211
    if (qemuDomainObjInitJob(priv) < 0)
212
        goto error;
213

214 215 216
    if (!(priv->cons = virConsoleAlloc()))
        goto error;

217
    priv->migMaxBandwidth = QEMU_DOMAIN_MIG_BANDWIDTH_MAX;
218

219
    return priv;
220 221 222 223

error:
    VIR_FREE(priv);
    return NULL;
224 225 226 227 228 229
}

static void qemuDomainObjPrivateFree(void *data)
{
    qemuDomainObjPrivatePtr priv = data;

230
    virObjectUnref(priv->caps);
231

232
    qemuDomainPCIAddressSetFree(priv->pciaddrs);
233
    virDomainChrSourceDefFree(priv->monConfig);
234
    qemuDomainObjFreeJob(priv);
235
    VIR_FREE(priv->vcpupids);
236
    VIR_FREE(priv->lockState);
J
Jiri Denemark 已提交
237
    VIR_FREE(priv->origname);
238

239 240
    virConsoleFree(priv->cons);

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


static int qemuDomainObjPrivateXMLFormat(virBufferPtr buf, void *data)
{
    qemuDomainObjPrivatePtr priv = data;
    const char *monitorpath;
259
    enum qemuDomainJob job;
260 261 262

    /* priv->monitor_chr is set only for qemu */
    if (priv->monConfig) {
263
        switch (priv->monConfig->type) {
264
        case VIR_DOMAIN_CHR_TYPE_UNIX:
265
            monitorpath = priv->monConfig->data.nix.path;
266 267 268
            break;
        default:
        case VIR_DOMAIN_CHR_TYPE_PTY:
269
            monitorpath = priv->monConfig->data.file.path;
270 271 272 273 274 275
            break;
        }

        virBufferEscapeString(buf, "  <monitor path='%s'", monitorpath);
        if (priv->monJSON)
            virBufferAddLit(buf, " json='1'");
276
        virBufferAsprintf(buf, " type='%s'/>\n",
277
                          virDomainChrTypeToString(priv->monConfig->type));
278 279 280 281 282 283 284
    }


    if (priv->nvcpupids) {
        int i;
        virBufferAddLit(buf, "  <vcpus>\n");
        for (i = 0 ; i < priv->nvcpupids ; i++) {
285
            virBufferAsprintf(buf, "    <vcpu pid='%d'/>\n", priv->vcpupids[i]);
286 287 288 289
        }
        virBufferAddLit(buf, "  </vcpus>\n");
    }

290
    if (priv->caps) {
291 292 293
        int i;
        virBufferAddLit(buf, "  <qemuCaps>\n");
        for (i = 0 ; i < QEMU_CAPS_LAST ; i++) {
294
            if (qemuCapsGet(priv->caps, i)) {
295
                virBufferAsprintf(buf, "    <flag name='%s'/>\n",
296 297 298 299 300 301
                                  qemuCapsTypeToString(i));
            }
        }
        virBufferAddLit(buf, "  </qemuCaps>\n");
    }

302 303 304
    if (priv->lockState)
        virBufferAsprintf(buf, "  <lockstate>%s</lockstate>\n", priv->lockState);

305 306 307 308
    job = priv->job.active;
    if (!qemuDomainTrackJob(job))
        priv->job.active = QEMU_JOB_NONE;

309
    if (priv->job.active || priv->job.asyncJob) {
J
Jiri Denemark 已提交
310
        virBufferAsprintf(buf, "  <job type='%s' async='%s'",
311 312
                          qemuDomainJobTypeToString(priv->job.active),
                          qemuDomainAsyncJobTypeToString(priv->job.asyncJob));
J
Jiri Denemark 已提交
313 314 315 316 317 318
        if (priv->job.phase) {
            virBufferAsprintf(buf, " phase='%s'",
                              qemuDomainAsyncJobPhaseToString(
                                    priv->job.asyncJob, priv->job.phase));
        }
        virBufferAddLit(buf, "/>\n");
319
    }
320
    priv->job.active = job;
321

322 323 324
    if (priv->fakeReboot)
        virBufferAsprintf(buf, "  <fakereboot/>\n");

325 326 327 328 329 330 331 332 333 334
    return 0;
}

static int qemuDomainObjPrivateXMLParse(xmlXPathContextPtr ctxt, void *data)
{
    qemuDomainObjPrivatePtr priv = data;
    char *monitorpath;
    char *tmp;
    int n, i;
    xmlNodePtr *nodes = NULL;
335
    qemuCapsPtr caps = NULL;
336 337 338 339 340 341 342 343

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

    if (!(monitorpath =
          virXPathString("string(./monitor[1]/@path)", ctxt))) {
344 345
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("no monitor path"));
346 347 348 349 350
        goto error;
    }

    tmp = virXPathString("string(./monitor[1]/@type)", ctxt);
    if (tmp)
351
        priv->monConfig->type = virDomainChrTypeFromString(tmp);
352
    else
353
        priv->monConfig->type = VIR_DOMAIN_CHR_TYPE_PTY;
354 355 356 357 358 359 360 361
    VIR_FREE(tmp);

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

362
    switch (priv->monConfig->type) {
363
    case VIR_DOMAIN_CHR_TYPE_PTY:
364
        priv->monConfig->data.file.path = monitorpath;
365 366
        break;
    case VIR_DOMAIN_CHR_TYPE_UNIX:
367
        priv->monConfig->data.nix.path = monitorpath;
368 369 370
        break;
    default:
        VIR_FREE(monitorpath);
371 372 373
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("unsupported monitor type '%s'"),
                       virDomainChrTypeToString(priv->monConfig->type));
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
        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);
    }

401
    if ((n = virXPathNodeSet("./qemuCaps/flag", ctxt, &nodes)) < 0) {
402 403
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("failed to parse qemu capabilities flags"));
404 405 406
        goto error;
    }
    if (n > 0) {
407
        if (!(caps = qemuCapsNew()))
408 409 410 411 412 413 414
            goto error;

        for (i = 0 ; i < n ; i++) {
            char *str = virXMLPropString(nodes[i], "name");
            if (str) {
                int flag = qemuCapsTypeFromString(str);
                if (flag < 0) {
415 416
                    virReportError(VIR_ERR_INTERNAL_ERROR,
                                   _("Unknown qemu capabilities flag %s"), str);
417
                    VIR_FREE(str);
418 419
                    goto error;
                }
420
                VIR_FREE(str);
421
                qemuCapsSet(caps, flag);
422 423 424
            }
        }

425
        priv->caps = caps;
426 427 428
    }
    VIR_FREE(nodes);

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

431 432 433 434
    if ((tmp = virXPathString("string(./job[1]/@type)", ctxt))) {
        int type;

        if ((type = qemuDomainJobTypeFromString(tmp)) < 0) {
435 436
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown job type %s"), tmp);
437 438 439 440 441 442 443 444 445 446 447
            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) {
448 449
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("Unknown async job type %s"), tmp);
450 451 452 453 454
            VIR_FREE(tmp);
            goto error;
        }
        VIR_FREE(tmp);
        priv->job.asyncJob = async;
J
Jiri Denemark 已提交
455 456 457 458

        if ((tmp = virXPathString("string(./job[1]/@phase)", ctxt))) {
            priv->job.phase = qemuDomainAsyncJobPhaseFromString(async, tmp);
            if (priv->job.phase < 0) {
459 460
                virReportError(VIR_ERR_INTERNAL_ERROR,
                               _("Unknown job phase %s"), tmp);
J
Jiri Denemark 已提交
461 462 463 464 465
                VIR_FREE(tmp);
                goto error;
            }
            VIR_FREE(tmp);
        }
466 467
    }

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

470 471 472
    return 0;

error:
473
    virDomainChrSourceDefFree(priv->monConfig);
474 475
    priv->monConfig = NULL;
    VIR_FREE(nodes);
476
    virObjectUnref(caps);
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
    return -1;
}


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 已提交
503 504
qemuDomainDefNamespaceParse(xmlDocPtr xml ATTRIBUTE_UNUSED,
                            xmlNodePtr root ATTRIBUTE_UNUSED,
505 506 507 508
                            xmlXPathContextPtr ctxt,
                            void **data)
{
    qemuDomainCmdlineDefPtr cmd = NULL;
P
Philipp Hahn 已提交
509
    bool uses_qemu_ns = false;
510 511 512
    xmlNodePtr *nodes = NULL;
    int n, i;

P
Philipp Hahn 已提交
513
    if (xmlXPathRegisterNs(ctxt, BAD_CAST "qemu", BAD_CAST QEMU_NAMESPACE_HREF) < 0) {
514 515 516
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to register xml namespace '%s'"),
                       QEMU_NAMESPACE_HREF);
517 518 519 520 521 522 523 524 525 526 527 528
        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 已提交
529
    uses_qemu_ns |= n > 0;
530 531 532 533 534 535 536

    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) {
537 538
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No qemu command-line argument specified"));
539 540 541 542 543 544 545 546 547 548 549
            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 已提交
550
    uses_qemu_ns |= n > 0;
551 552 553 554 555 556 557 558 559 560 561 562

    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) {
563 564
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No qemu environment name specified"));
565 566 567
            goto error;
        }
        if (tmp[0] == '\0') {
568 569
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Empty qemu environment name specified"));
570 571 572
            goto error;
        }
        if (!c_isalpha(tmp[0]) && tmp[0] != '_') {
573 574
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Invalid environment name, it must begin with a letter or underscore"));
575 576 577
            goto error;
        }
        if (strspn(tmp, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_") != strlen(tmp)) {
578 579
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Invalid environment name, it must contain only alphanumerics and underscore"));
580 581 582 583 584 585 586 587 588 589 590 591
            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 已提交
592 593 594 595
    if (uses_qemu_ns)
        *data = cmd;
    else
        VIR_FREE(cmd);
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622

    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++) {
623
        virBufferAsprintf(buf, "    <qemu:env name='%s'", cmd->env_name[i]);
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
        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 "'";
}


void qemuDomainSetPrivateDataHooks(virCapsPtr caps)
{
    /* Domain XML parser hooks */
    caps->privateDataAllocFunc = qemuDomainObjPrivateAlloc;
    caps->privateDataFreeFunc = qemuDomainObjPrivateFree;
    caps->privateDataXMLFormat = qemuDomainObjPrivateXMLFormat;
    caps->privateDataXMLParse = qemuDomainObjPrivateXMLParse;

}

void qemuDomainSetNamespaceHooks(virCapsPtr caps)
{
    /* Domain Namespace XML parser hooks */
    caps->ns.parse = qemuDomainDefNamespaceParse;
    caps->ns.free = qemuDomainDefNamespaceFree;
    caps->ns.format = qemuDomainDefNamespaceFormatXML;
    caps->ns.href = qemuDomainDefNamespaceHref;
}
658

659
static void
660
qemuDomainObjSaveJob(struct qemud_driver *driver, virDomainObjPtr obj)
661
{
662 663 664 665 666
    if (!virDomainObjIsActive(obj)) {
        /* don't write the state file yet, it will be written once the domain
         * gets activated */
        return;
    }
667

668 669
    if (virDomainSaveStatus(driver->caps, driver->stateDir, obj) < 0)
        VIR_WARN("Failed to save status on vm %s", obj->def->name);
670 671
}

J
Jiri Denemark 已提交
672 673 674 675 676 677
void
qemuDomainObjSetJobPhase(struct qemud_driver *driver,
                         virDomainObjPtr obj,
                         int phase)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
678
    int me = virThreadSelfID();
J
Jiri Denemark 已提交
679 680 681 682

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

683 684 685 686 687 688 689 690 691 692
    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 已提交
693
    priv->job.phase = phase;
694
    priv->job.asyncOwner = me;
J
Jiri Denemark 已提交
695 696 697
    qemuDomainObjSaveJob(driver, obj);
}

698
void
699 700
qemuDomainObjSetAsyncJobMask(virDomainObjPtr obj,
                             unsigned long long allowedJobs)
701 702 703
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

704 705 706 707 708 709 710
    if (!priv->job.asyncJob)
        return;

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

void
711
qemuDomainObjDiscardAsyncJob(struct qemud_driver *driver, virDomainObjPtr obj)
712 713 714 715 716 717
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    if (priv->job.active == QEMU_JOB_ASYNC_NESTED)
        qemuDomainObjResetJob(priv);
    qemuDomainObjResetAsyncJob(priv);
718
    qemuDomainObjSaveJob(driver, obj);
719 720
}

721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
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;
}

737
static bool
738
qemuDomainNestedJobAllowed(qemuDomainObjPrivatePtr priv, enum qemuDomainJob job)
739 740
{
    return !priv->job.asyncJob || (priv->job.mask & JOB_MASK(job)) != 0;
741 742
}

743 744 745 746 747 748
bool
qemuDomainJobAllowed(qemuDomainObjPrivatePtr priv, enum qemuDomainJob job)
{
    return !priv->job.active && qemuDomainNestedJobAllowed(priv, job);
}

749 750 751
/* Give up waiting for mutex after 30 seconds */
#define QEMU_JOB_WAIT_TIME (1000ull * 30)

752 753 754 755
/*
 * obj must be locked before calling; driver_locked says if qemu_driver is
 * locked or not.
 */
756
static int ATTRIBUTE_NONNULL(1)
757 758
qemuDomainObjBeginJobInternal(struct qemud_driver *driver,
                              bool driver_locked,
759 760 761
                              virDomainObjPtr obj,
                              enum qemuDomainJob job,
                              enum qemuDomainAsyncJob asyncJob)
762 763
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
J
Jiri Denemark 已提交
764
    unsigned long long now;
765
    unsigned long long then;
766
    bool nested = job == QEMU_JOB_ASYNC_NESTED;
767

768 769
    priv->jobs_queued++;

770
    if (virTimeMillisNow(&now) < 0)
771
        return -1;
J
Jiri Denemark 已提交
772
    then = now + QEMU_JOB_WAIT_TIME;
773

774
    virObjectRef(obj);
775 776
    if (driver_locked)
        qemuDriverUnlock(driver);
777

778
retry:
779 780 781 782 783
    if (driver->max_queued &&
        priv->jobs_queued > driver->max_queued) {
        goto error;
    }

784
    while (!nested && !qemuDomainNestedJobAllowed(priv, job)) {
785 786 787 788
        if (virCondWaitUntil(&priv->job.asyncCond, &obj->lock, then) < 0)
            goto error;
    }

789
    while (priv->job.active) {
790 791
        if (virCondWaitUntil(&priv->job.cond, &obj->lock, then) < 0)
            goto error;
792
    }
793 794 795

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

799
    qemuDomainObjResetJob(priv);
800 801

    if (job != QEMU_JOB_ASYNC) {
802 803 804
        VIR_DEBUG("Starting job: %s (async=%s)",
                   qemuDomainJobTypeToString(job),
                   qemuDomainAsyncJobTypeToString(priv->job.asyncJob));
805
        priv->job.active = job;
806
        priv->job.owner = virThreadSelfID();
807
    } else {
808 809
        VIR_DEBUG("Starting async job: %s",
                  qemuDomainAsyncJobTypeToString(asyncJob));
810 811
        qemuDomainObjResetAsyncJob(priv);
        priv->job.asyncJob = asyncJob;
812
        priv->job.asyncOwner = virThreadSelfID();
813 814
        priv->job.start = now;
    }
815

816 817 818 819 820 821
    if (driver_locked) {
        virDomainObjUnlock(obj);
        qemuDriverLock(driver);
        virDomainObjLock(obj);
    }

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

825
    return 0;
826 827

error:
828 829 830 831 832 833 834 835 836
    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);

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

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

875 876
int qemuDomainObjBeginAsyncJob(struct qemud_driver *driver,
                               virDomainObjPtr obj,
877
                               enum qemuDomainAsyncJob asyncJob)
878
{
879
    return qemuDomainObjBeginJobInternal(driver, false, obj, QEMU_JOB_ASYNC,
880
                                         asyncJob);
881 882 883
}

/*
884
 * obj and qemud_driver must be locked before calling.
885 886 887
 *
 * This must be called by anything that will change the VM state
 * in any way, or anything that will use the QEMU monitor.
888 889 890
 *
 * Upon successful return, the object will have its ref count increased,
 * successful calls must be followed by EndJob eventually
891 892
 */
int qemuDomainObjBeginJobWithDriver(struct qemud_driver *driver,
893 894 895 896
                                    virDomainObjPtr obj,
                                    enum qemuDomainJob job)
{
    if (job <= QEMU_JOB_NONE || job >= QEMU_JOB_ASYNC) {
897 898
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("Attempt to start invalid job"));
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
        return -1;
    }

    return qemuDomainObjBeginJobInternal(driver, true, obj, job,
                                         QEMU_ASYNC_JOB_NONE);
}

int qemuDomainObjBeginAsyncJobWithDriver(struct qemud_driver *driver,
                                         virDomainObjPtr obj,
                                         enum qemuDomainAsyncJob asyncJob)
{
    return qemuDomainObjBeginJobInternal(driver, true, obj, QEMU_JOB_ASYNC,
                                         asyncJob);
}

914 915 916 917 918 919
/*
 * obj must be locked before calling, qemud_driver does not matter
 *
 * To be called after completing the work associated with the
 * earlier qemuDomainBeginJob() call
 *
920 921
 * Returns true if @obj was still referenced, false if it was
 * disposed of.
922
 */
923
bool qemuDomainObjEndJob(struct qemud_driver *driver, virDomainObjPtr obj)
924 925
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
926
    enum qemuDomainJob job = priv->job.active;
927

928 929
    priv->jobs_queued--;

930
    VIR_DEBUG("Stopping job: %s (async=%s)",
931
              qemuDomainJobTypeToString(job),
932 933
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob));

934
    qemuDomainObjResetJob(priv);
935 936
    if (qemuDomainTrackJob(job))
        qemuDomainObjSaveJob(driver, obj);
937
    virCondSignal(&priv->job.cond);
938

939
    return virObjectUnref(obj);
940 941
}

942
bool
943
qemuDomainObjEndAsyncJob(struct qemud_driver *driver, virDomainObjPtr obj)
944 945
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
946

947 948
    priv->jobs_queued--;

949 950 951
    VIR_DEBUG("Stopping async job: %s",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob));

952
    qemuDomainObjResetAsyncJob(priv);
953
    qemuDomainObjSaveJob(driver, obj);
954 955
    virCondBroadcast(&priv->job.asyncCond);

956
    return virObjectUnref(obj);
957 958
}

959
static int
960
qemuDomainObjEnterMonitorInternal(struct qemud_driver *driver,
961
                                  bool driver_locked,
962 963
                                  virDomainObjPtr obj,
                                  enum qemuDomainAsyncJob asyncJob)
964 965 966
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

967 968
    if (asyncJob != QEMU_ASYNC_JOB_NONE) {
        if (asyncJob != priv->job.asyncJob) {
969 970
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("unexpected async job %d"), asyncJob);
971 972
            return -1;
        }
973 974 975
        if (priv->job.asyncOwner != virThreadSelfID())
            VIR_WARN("This thread doesn't seem to be the async job owner: %d",
                     priv->job.asyncOwner);
976 977 978
        if (qemuDomainObjBeginJobInternal(driver, driver_locked, obj,
                                          QEMU_JOB_ASYNC_NESTED,
                                          QEMU_ASYNC_JOB_NONE) < 0)
979 980
            return -1;
        if (!virDomainObjIsActive(obj)) {
981 982
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("domain is no longer running"));
983 984
            /* Still referenced by the containing async job.  */
            ignore_value(qemuDomainObjEndJob(driver, obj));
985 986
            return -1;
        }
987 988 989
    } 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");
990 991
    }

992
    qemuMonitorLock(priv->mon);
993
    virObjectRef(priv->mon);
994
    ignore_value(virTimeMillisNow(&priv->monStart));
995
    virDomainObjUnlock(obj);
996
    if (driver_locked)
997
        qemuDriverUnlock(driver);
998 999

    return 0;
1000 1001
}

1002
static void ATTRIBUTE_NONNULL(1)
1003
qemuDomainObjExitMonitorInternal(struct qemud_driver *driver,
1004
                                 bool driver_locked,
1005
                                 virDomainObjPtr obj)
1006 1007
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1008
    bool hasRefs;
1009

1010
    hasRefs = virObjectUnref(priv->mon);
1011

1012
    if (hasRefs)
1013 1014
        qemuMonitorUnlock(priv->mon);

1015
    if (driver_locked)
1016
        qemuDriverLock(driver);
1017 1018
    virDomainObjLock(obj);

1019
    priv->monStart = 0;
1020
    if (!hasRefs)
1021
        priv->mon = NULL;
1022

1023 1024 1025 1026 1027
    if (priv->job.active == QEMU_JOB_ASYNC_NESTED) {
        qemuDomainObjResetJob(priv);
        qemuDomainObjSaveJob(driver, obj);
        virCondSignal(&priv->job.cond);

1028
        virObjectUnref(obj);
1029
    }
1030 1031
}

1032 1033 1034 1035
/*
 * obj must be locked before calling, qemud_driver must be unlocked
 *
 * To be called immediately before any QEMU monitor API call
1036
 * Must have already either called qemuDomainObjBeginJob() and checked
1037
 * that the VM is still active; may not be used for nested async jobs.
1038 1039 1040
 *
 * To be followed with qemuDomainObjExitMonitor() once complete
 */
1041 1042
void qemuDomainObjEnterMonitor(struct qemud_driver *driver,
                               virDomainObjPtr obj)
1043
{
1044 1045
    ignore_value(qemuDomainObjEnterMonitorInternal(driver, false, obj,
                                                   QEMU_ASYNC_JOB_NONE));
1046 1047 1048 1049 1050 1051
}

/* obj must NOT be locked before calling, qemud_driver must be unlocked
 *
 * Should be paired with an earlier qemuDomainObjEnterMonitor() call
 */
1052 1053
void qemuDomainObjExitMonitor(struct qemud_driver *driver,
                              virDomainObjPtr obj)
1054
{
1055
    qemuDomainObjExitMonitorInternal(driver, false, obj);
1056
}
1057 1058 1059 1060 1061

/*
 * obj must be locked before calling, qemud_driver must be locked
 *
 * To be called immediately before any QEMU monitor API call
1062
 * Must have already either called qemuDomainObjBeginJobWithDriver() and
1063
 * checked that the VM is still active; may not be used for nested async jobs.
1064 1065 1066
 *
 * To be followed with qemuDomainObjExitMonitorWithDriver() once complete
 */
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
void qemuDomainObjEnterMonitorWithDriver(struct qemud_driver *driver,
                                         virDomainObjPtr obj)
{
    ignore_value(qemuDomainObjEnterMonitorInternal(driver, true, obj,
                                                   QEMU_ASYNC_JOB_NONE));
}

/*
 * obj and qemud_driver must be locked before calling
 *
 * To be called immediately before any QEMU monitor API call.
 * Must have already either called qemuDomainObjBeginJobWithDriver()
 * 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
 * qemuDomainObjExitMonitorWithDriver(); or -1 if the job could not be
 * started (probably because the vm exited in the meantime).
 */
int
qemuDomainObjEnterMonitorAsync(struct qemud_driver *driver,
                               virDomainObjPtr obj,
                               enum qemuDomainAsyncJob asyncJob)
1091
{
1092
    return qemuDomainObjEnterMonitorInternal(driver, true, obj, asyncJob);
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
}

/* obj must NOT be locked before calling, qemud_driver must be unlocked,
 * and will be locked after returning
 *
 * Should be paired with an earlier qemuDomainObjEnterMonitorWithDriver() call
 */
void qemuDomainObjExitMonitorWithDriver(struct qemud_driver *driver,
                                        virDomainObjPtr obj)
{
1103
    qemuDomainObjExitMonitorInternal(driver, true, obj);
1104 1105
}

D
Daniel P. Berrange 已提交
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115


static int
qemuDomainObjEnterAgentInternal(struct qemud_driver *driver,
                                bool driver_locked,
                                virDomainObjPtr obj)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    qemuAgentLock(priv->agent);
1116
    virObjectRef(priv->agent);
D
Daniel P. Berrange 已提交
1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
    ignore_value(virTimeMillisNow(&priv->agentStart));
    virDomainObjUnlock(obj);
    if (driver_locked)
        qemuDriverUnlock(driver);

    return 0;
}

static void ATTRIBUTE_NONNULL(1)
qemuDomainObjExitAgentInternal(struct qemud_driver *driver,
                               bool driver_locked,
                               virDomainObjPtr obj)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1131
    bool hasRefs;
D
Daniel P. Berrange 已提交
1132

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

1135
    if (hasRefs)
D
Daniel P. Berrange 已提交
1136 1137 1138 1139 1140 1141 1142
        qemuAgentUnlock(priv->agent);

    if (driver_locked)
        qemuDriverLock(driver);
    virDomainObjLock(obj);

    priv->agentStart = 0;
1143
    if (!hasRefs)
D
Daniel P. Berrange 已提交
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
        priv->agent = NULL;
}

/*
 * obj must be locked before calling, qemud_driver must be unlocked
 *
 * To be called immediately before any QEMU agent API call
 * Must have already either called qemuDomainObjBeginJob() and checked
 * that the VM is still active;
 *
 * To be followed with qemuDomainObjExitAgent() once complete
 */
void qemuDomainObjEnterAgent(struct qemud_driver *driver,
                             virDomainObjPtr obj)
{
    ignore_value(qemuDomainObjEnterAgentInternal(driver, false, obj));
}

/* obj must NOT be locked before calling, qemud_driver must be unlocked
 *
 * Should be paired with an earlier qemuDomainObjEnterAgent() call
 */
void qemuDomainObjExitAgent(struct qemud_driver *driver,
                            virDomainObjPtr obj)
{
    qemuDomainObjExitAgentInternal(driver, false, obj);
}

/*
 * obj must be locked before calling, qemud_driver must be locked
 *
 * To be called immediately before any QEMU agent API call
 * Must have already either called qemuDomainObjBeginJobWithDriver() and
 * checked that the VM is still active; may not be used for nested async jobs.
 *
 * To be followed with qemuDomainObjExitAgentWithDriver() once complete
 */
void qemuDomainObjEnterAgentWithDriver(struct qemud_driver *driver,
                                       virDomainObjPtr obj)
{
    ignore_value(qemuDomainObjEnterAgentInternal(driver, true, obj));
}

/* obj must NOT be locked before calling, qemud_driver must be unlocked,
 * and will be locked after returning
 *
 * Should be paired with an earlier qemuDomainObjEnterAgentWithDriver() call
 */
void qemuDomainObjExitAgentWithDriver(struct qemud_driver *driver,
                                      virDomainObjPtr obj)
{
    qemuDomainObjExitAgentInternal(driver, true, obj);
}

1198 1199 1200
void qemuDomainObjEnterRemoteWithDriver(struct qemud_driver *driver,
                                        virDomainObjPtr obj)
{
1201
    virObjectRef(obj);
1202 1203 1204 1205 1206 1207 1208 1209 1210
    virDomainObjUnlock(obj);
    qemuDriverUnlock(driver);
}

void qemuDomainObjExitRemoteWithDriver(struct qemud_driver *driver,
                                       virDomainObjPtr obj)
{
    qemuDriverLock(driver);
    virDomainObjLock(obj);
1211
    virObjectUnref(obj);
1212
}
1213 1214


1215 1216 1217 1218 1219
int
qemuDomainDefFormatBuf(struct qemud_driver *driver,
                       virDomainDefPtr def,
                       unsigned int flags,
                       virBuffer *buf)
1220
{
1221
    int ret = -1;
1222
    virCPUDefPtr cpu = NULL;
1223
    virCPUDefPtr def_cpu = def->cpu;
1224 1225
    virDomainControllerDefPtr *controllers = NULL;
    int ncontrollers = 0;
1226 1227

    /* Update guest CPU requirements according to host CPU */
1228 1229 1230
    if ((flags & VIR_DOMAIN_XML_UPDATE_CPU) &&
        def_cpu &&
        (def_cpu->mode != VIR_CPU_MODE_CUSTOM || def_cpu->model)) {
J
Jiri Denemark 已提交
1231 1232 1233
        if (!driver->caps ||
            !driver->caps->host.cpu ||
            !driver->caps->host.cpu->model) {
1234 1235
            virReportError(VIR_ERR_OPERATION_FAILED,
                           "%s", _("cannot get host CPU capabilities"));
1236 1237 1238
            goto cleanup;
        }

1239 1240
        if (!(cpu = virCPUDefCopy(def_cpu)) ||
            cpuUpdate(cpu, driver->caps->host.cpu) < 0)
1241 1242 1243 1244
            goto cleanup;
        def->cpu = cpu;
    }

1245
    if ((flags & VIR_DOMAIN_XML_MIGRATABLE)) {
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281
        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];
            }
        }
    }

1282
    ret = virDomainDefFormatInternal(def, flags, buf);
1283 1284 1285 1286

cleanup:
    def->cpu = def_cpu;
    virCPUDefFree(cpu);
1287 1288 1289 1290 1291
    if (controllers) {
        VIR_FREE(def->controllers);
        def->controllers = controllers;
        def->ncontrollers = ncontrollers;
    }
1292 1293
    return ret;
}
1294

1295 1296
char *qemuDomainDefFormatXML(struct qemud_driver *driver,
                             virDomainDefPtr def,
1297
                             unsigned int flags)
1298 1299 1300
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

1301
    if (qemuDomainDefFormatBuf(driver, def, flags, &buf) < 0) {
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
        virBufferFreeAndReset(&buf);
        return NULL;
    }

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

    return virBufferContentAndReset(&buf);
}

1315 1316
char *qemuDomainFormatXML(struct qemud_driver *driver,
                          virDomainObjPtr vm,
1317
                          unsigned int flags)
1318 1319 1320 1321 1322 1323 1324 1325
{
    virDomainDefPtr def;

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

1326
    return qemuDomainDefFormatXML(driver, def, flags);
1327 1328
}

1329 1330 1331
char *
qemuDomainDefFormatLive(struct qemud_driver *driver,
                        virDomainDefPtr def,
1332 1333
                        bool inactive,
                        bool compatible)
1334 1335 1336 1337 1338
{
    unsigned int flags = QEMU_DOMAIN_FORMAT_LIVE_FLAGS;

    if (inactive)
        flags |= VIR_DOMAIN_XML_INACTIVE;
1339 1340
    if (compatible)
        flags |= VIR_DOMAIN_XML_MIGRATABLE;
1341

1342
    return qemuDomainDefFormatXML(driver, def, flags);
1343 1344
}

1345

1346
void qemuDomainObjTaint(struct qemud_driver *driver,
1347
                        virDomainObjPtr obj,
1348 1349
                        enum virDomainTaintFlags taint,
                        int logFD)
1350
{
1351 1352
    virErrorPtr orig_err = NULL;

1353 1354 1355 1356 1357 1358 1359 1360 1361
    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));
1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375

        /* 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);
        }
1376 1377 1378 1379 1380
    }
}


void qemuDomainObjCheckTaint(struct qemud_driver *driver,
1381 1382
                             virDomainObjPtr obj,
                             int logFD)
1383 1384 1385
{
    int i;

1386 1387 1388 1389
    if (driver->privileged &&
        (!driver->clearEmulatorCapabilities ||
         driver->user == 0 ||
         driver->group == 0))
1390
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HIGH_PRIVILEGES, logFD);
1391 1392 1393 1394

    if (obj->def->namespaceData) {
        qemuDomainCmdlineDefPtr qemucmd = obj->def->namespaceData;
        if (qemucmd->num_args || qemucmd->num_env)
1395
            qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_CUSTOM_ARGV, logFD);
1396 1397
    }

1398 1399 1400
    if (obj->def->cpu && obj->def->cpu->mode == VIR_CPU_MODE_HOST_PASSTHROUGH)
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HOST_CPU, logFD);

1401
    for (i = 0 ; i < obj->def->ndisks ; i++)
1402
        qemuDomainObjCheckDiskTaint(driver, obj, obj->def->disks[i], logFD);
1403 1404

    for (i = 0 ; i < obj->def->nnets ; i++)
1405
        qemuDomainObjCheckNetTaint(driver, obj, obj->def->nets[i], logFD);
1406 1407 1408 1409 1410
}


void qemuDomainObjCheckDiskTaint(struct qemud_driver *driver,
                                 virDomainObjPtr obj,
1411 1412
                                 virDomainDiskDefPtr disk,
                                 int logFD)
1413
{
1414
    if ((!disk->format || disk->format == VIR_STORAGE_FILE_AUTO) &&
1415
        driver->allowDiskFormatProbing)
1416
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_DISK_PROBING, logFD);
1417

1418
    if (disk->rawio == 1)
1419
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HIGH_PRIVILEGES, logFD);
1420 1421 1422 1423 1424
}


void qemuDomainObjCheckNetTaint(struct qemud_driver *driver,
                                virDomainObjPtr obj,
1425 1426
                                virDomainNetDefPtr net,
                                int logFD)
1427
{
1428 1429 1430 1431 1432 1433
    /* 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)
1434
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_SHELL_SCRIPTS, logFD);
1435
}
1436 1437 1438 1439 1440


static int
qemuDomainOpenLogHelper(struct qemud_driver *driver,
                        virDomainObjPtr vm,
E
Eric Blake 已提交
1441
                        int oflags,
1442 1443 1444 1445
                        mode_t mode)
{
    char *logfile;
    int fd = -1;
1446
    bool trunc = false;
1447 1448 1449 1450 1451 1452

    if (virAsprintf(&logfile, "%s/%s.log", driver->logDir, vm->def->name) < 0) {
        virReportOOMError();
        return -1;
    }

1453 1454 1455 1456 1457 1458 1459 1460 1461
    /* 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 已提交
1462
    if ((fd = open(logfile, oflags, mode)) < 0) {
1463 1464 1465 1466 1467 1468 1469
        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);
1470 1471 1472 1473 1474 1475 1476
        VIR_FORCE_CLOSE(fd);
        goto cleanup;
    }
    if (trunc &&
        ftruncate(fd, 0) < 0) {
        virReportSystemError(errno, _("failed to truncate %s"),
                             logfile);
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
        VIR_FORCE_CLOSE(fd);
        goto cleanup;
    }

cleanup:
    VIR_FREE(logfile);
    return fd;
}


int
E
Eric Blake 已提交
1488 1489
qemuDomainCreateLog(struct qemud_driver *driver, virDomainObjPtr vm,
                    bool append)
1490
{
E
Eric Blake 已提交
1491
    int oflags;
1492

E
Eric Blake 已提交
1493
    oflags = O_CREAT | O_WRONLY;
1494 1495
    /* Only logrotate files in /var/log, so only append if running privileged */
    if (driver->privileged || append)
E
Eric Blake 已提交
1496
        oflags |= O_APPEND;
1497
    else
E
Eric Blake 已提交
1498
        oflags |= O_TRUNC;
1499

E
Eric Blake 已提交
1500
    return qemuDomainOpenLogHelper(driver, vm, oflags, S_IRUSR | S_IWUSR);
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537
}


int
qemuDomainOpenLog(struct qemud_driver *driver, virDomainObjPtr vm, off_t pos)
{
    int fd;
    off_t off;
    int whence;

    if ((fd = qemuDomainOpenLogHelper(driver, vm, O_RDONLY, 0)) < 0)
        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;
}


1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571
int qemuDomainAppendLog(struct qemud_driver *driver,
                        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 已提交
1572
    VIR_FREE(message);
1573 1574
    return ret;
}
1575 1576 1577 1578 1579 1580 1581 1582 1583 1584

/* Locate an appropriate 'qemu-img' binary.  */
const char *
qemuFindQemuImgBinary(struct qemud_driver *driver)
{
    if (!driver->qemuImgBinary) {
        driver->qemuImgBinary = virFindFileInPath("kvm-img");
        if (!driver->qemuImgBinary)
            driver->qemuImgBinary = virFindFileInPath("qemu-img");
        if (!driver->qemuImgBinary)
1585 1586
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("unable to find kvm-img or qemu-img"));
1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
    }

    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];
    char *tmp;

    virUUIDFormat(vm->def->uuid, uuidstr);
    newxml = virDomainSnapshotDefFormat(uuidstr, snapshot->def,
1606 1607
                                        QEMU_DOMAIN_FORMAT_LIVE_FLAGS, 1);
    if (newxml == NULL)
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629
        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;
    }

    if (virAsprintf(&tmp, "snapshot-edit %s", vm->def->name) < 0) {
        virReportOOMError();
        goto cleanup;
    }

1630 1631
    ret = virXMLSaveFile(snapFile, snapshot->def->name, tmp, newxml);
    VIR_FREE(tmp);
1632 1633 1634 1635 1636 1637 1638 1639 1640 1641

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.  */
1642 1643 1644 1645 1646 1647 1648
static int
qemuDomainSnapshotForEachQcow2Raw(struct qemud_driver *driver,
                                  virDomainDefPtr def,
                                  const char *name,
                                  const char *op,
                                  bool try_all,
                                  int ndisks)
1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660
{
    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;
1661
    qemuimgarg[3] = name;
1662

1663
    for (i = 0; i < ndisks; i++) {
1664
        /* FIXME: we also need to handle LVM here */
1665
        if (def->disks[i]->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
1666 1667
            if (def->disks[i]->format > 0 &&
                def->disks[i]->format != VIR_STORAGE_FILE_QCOW2) {
1668 1669 1670 1671 1672
                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",
1673
                             def->disks[i]->dst);
1674 1675
                    skipped = true;
                    continue;
1676 1677 1678 1679 1680
                } else if (STREQ(op, "-c") && i) {
                    /* We must roll back partial creation by deleting
                     * all earlier snapshots.  */
                    qemuDomainSnapshotForEachQcow2Raw(driver, def, name,
                                                      "-d", false, i);
1681
                }
1682 1683 1684 1685
                virReportError(VIR_ERR_OPERATION_INVALID,
                               _("Disk device '%s' does not support"
                                 " snapshotting"),
                               def->disks[i]->dst);
1686 1687 1688
                return -1;
            }

1689
            qemuimgarg[4] = def->disks[i]->src;
1690 1691 1692 1693

            if (virRun(qemuimgarg, NULL) < 0) {
                if (try_all) {
                    VIR_WARN("skipping snapshot action on %s",
1694
                             def->disks[i]->dst);
1695 1696
                    skipped = true;
                    continue;
1697 1698 1699 1700 1701
                } else if (STREQ(op, "-c") && i) {
                    /* We must roll back partial creation by deleting
                     * all earlier snapshots.  */
                    qemuDomainSnapshotForEachQcow2Raw(driver, def, name,
                                                      "-d", false, i);
1702 1703 1704 1705 1706 1707 1708 1709 1710
                }
                return -1;
            }
        }
    }

    return skipped ? 1 : 0;
}

1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730
/* 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
qemuDomainSnapshotForEachQcow2(struct qemud_driver *driver,
                               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);
}

1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
/* Discard one snapshot (or its metadata), without reparenting any children.  */
int
qemuDomainSnapshotDiscard(struct qemud_driver *driver,
                          virDomainObjPtr vm,
                          virDomainSnapshotObjPtr snap,
                          bool update_current,
                          bool metadata_only)
{
    char *snapFile = NULL;
    int ret = -1;
    qemuDomainObjPrivatePtr priv;
    virDomainSnapshotObjPtr parentsnap = NULL;

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

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

    if (snap == vm->current_snapshot) {
        if (update_current && snap->def->parent) {
1767
            parentsnap = virDomainSnapshotFindByName(vm->snapshots,
1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787
                                                     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,
                                                    driver->snapshotDir) < 0) {
                    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);
1788
    virDomainSnapshotObjListRemove(vm->snapshots, snap);
1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824

    ret = 0;

cleanup:
    VIR_FREE(snapFile);

    return ret;
}

/* Hash iterator callback to discard multiple snapshots.  */
void qemuDomainSnapshotDiscardAll(void *payload,
                                  const void *name ATTRIBUTE_UNUSED,
                                  void *data)
{
    virDomainSnapshotObjPtr snap = payload;
    struct qemu_snap_remove *curr = data;
    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
qemuDomainSnapshotDiscardAllMetadata(struct qemud_driver *driver,
                                     virDomainObjPtr vm)
{
    struct qemu_snap_remove rem;

    rem.driver = driver;
    rem.vm = vm;
    rem.metadata_only = true;
    rem.err = 0;
1825 1826
    virDomainSnapshotForEach(vm->snapshots, qemuDomainSnapshotDiscardAll,
                             &rem);
1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838

    return rem.err;
}

/*
 * The caller must hold a lock on both driver and vm, and there must
 * be no remaining references to vm.
 */
void
qemuDomainRemoveInactive(struct qemud_driver *driver,
                         virDomainObjPtr vm)
{
1839 1840
    char *snapDir;

1841 1842 1843 1844 1845
    /* 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);
    }
1846 1847 1848 1849 1850 1851 1852 1853 1854
    else if (virAsprintf(&snapDir, "%s/%s", driver->snapshotDir,
                         vm->def->name) < 0) {
        VIR_WARN("unable to remove snapshot directory %s/%s",
                 driver->snapshotDir, vm->def->name);
    } else {
        if (rmdir(snapDir) < 0 && errno != ENOENT)
            VIR_WARN("unable to remove snapshot directory %s", snapDir);
        VIR_FREE(snapDir);
    }
1855 1856
    virDomainRemoveInactive(&driver->domains, vm);
}
1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872

void
qemuDomainSetFakeReboot(struct qemud_driver *driver,
                        virDomainObjPtr vm,
                        bool value)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;

    if (priv->fakeReboot == value)
        return;

    priv->fakeReboot = value;

    if (virDomainSaveStatus(driver->caps, driver->stateDir, vm) < 0)
        VIR_WARN("Failed to save status on vm %s", vm->def->name);
}
M
Michal Privoznik 已提交
1873 1874 1875 1876

int
qemuDomainCheckDiskPresence(struct qemud_driver *driver,
                            virDomainObjPtr vm,
1877
                            bool cold_boot)
M
Michal Privoznik 已提交
1878 1879 1880 1881
{
    int ret = -1;
    int i;
    virDomainDiskDefPtr disk;
M
Michal Privoznik 已提交
1882
    char uuid[VIR_UUID_STRING_BUFLEN];
1883
    virDomainEventPtr event = NULL;
M
Michal Privoznik 已提交
1884 1885 1886 1887 1888 1889 1890 1891 1892

    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 已提交
1893 1894 1895 1896
        if (virFileAccessibleAs(disk->src, F_OK,
                                driver->user,
                                driver->group) >= 0) {
            /* disk accessible */
M
Michal Privoznik 已提交
1897 1898 1899 1900 1901 1902 1903 1904
            continue;
        }

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

            case VIR_DOMAIN_STARTUP_POLICY_MANDATORY:
M
Michal Privoznik 已提交
1905
                virReportSystemError(errno,
M
Michal Privoznik 已提交
1906 1907 1908 1909 1910 1911
                                     _("cannot access file '%s'"),
                                     disk->src);
                goto cleanup;
                break;

            case VIR_DOMAIN_STARTUP_POLICY_REQUISITE:
1912
                if (cold_boot) {
M
Michal Privoznik 已提交
1913
                    virReportSystemError(errno,
M
Michal Privoznik 已提交
1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925
                                         _("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 已提交
1926 1927
        VIR_DEBUG("Dropping disk '%s' on domain '%s' (UUID '%s') "
                  "due to inaccessible source '%s'",
M
Michal Privoznik 已提交
1928 1929
                  disk->dst, vm->def->name, uuid, disk->src);

1930
        event = virDomainEventDiskChangeNewFromObj(vm, disk->src, NULL, disk->info.alias,
1931
                                                   VIR_DOMAIN_EVENT_DISK_CHANGE_MISSING_ON_START);
1932 1933 1934
        if (event)
            qemuDomainEventQueue(driver, event);

M
Michal Privoznik 已提交
1935 1936 1937 1938 1939 1940 1941 1942
        VIR_FREE(disk->src);
    }

    ret = 0;

cleanup:
    return ret;
}
1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014

/*
 * 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
qemuDomainCleanupRun(struct qemud_driver *driver,
                     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;
}