qemu_domain.c 65.3 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
#include "virstring.h"
41

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

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

#define VIR_FROM_THIS VIR_FROM_QEMU

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

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

72

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

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

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

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

119

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


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

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

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

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

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

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

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

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

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

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

    qemuDomainObjResetJob(priv);
    qemuDomainObjResetAsyncJob(priv);
}

185 186 187 188 189
void
qemuDomainObjTransferJob(virDomainObjPtr obj)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

190
    VIR_DEBUG("Changing job owner from %llu to %llu",
191 192 193 194
              priv->job.owner, virThreadSelfID());
    priv->job.owner = virThreadSelfID();
}

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

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

208

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

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

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

223
    if (!(priv->devs = virChrdevAlloc()))
224 225
        goto error;

226
    priv->migMaxBandwidth = QEMU_DOMAIN_MIG_BANDWIDTH_MAX;
227

228
    return priv;
229 230 231 232

error:
    VIR_FREE(priv);
    return NULL;
233 234
}

235 236
static void
qemuDomainObjPrivateFree(void *data)
237 238 239
{
    qemuDomainObjPrivatePtr priv = data;

240
    virObjectUnref(priv->qemuCaps);
241

242
    virCgroupFree(&priv->cgroup);
243
    qemuDomainPCIAddressSetFree(priv->pciaddrs);
244
    qemuDomainCCWAddressSetFree(priv->ccwaddrs);
245
    virDomainChrSourceDefFree(priv->monConfig);
246
    qemuDomainObjFreeJob(priv);
247
    VIR_FREE(priv->vcpupids);
248
    VIR_FREE(priv->lockState);
J
Jiri Denemark 已提交
249
    VIR_FREE(priv->origname);
250

251
    virChrdevFree(priv->devs);
252

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


267 268
static int
qemuDomainObjPrivateXMLFormat(virBufferPtr buf, void *data)
269 270 271
{
    qemuDomainObjPrivatePtr priv = data;
    const char *monitorpath;
272
    enum qemuDomainJob job;
273 274 275

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

        virBufferEscapeString(buf, "  <monitor path='%s'", monitorpath);
        if (priv->monJSON)
            virBufferAddLit(buf, " json='1'");
289
        virBufferAsprintf(buf, " type='%s'/>\n",
290
                          virDomainChrTypeToString(priv->monConfig->type));
291 292 293 294 295 296
    }


    if (priv->nvcpupids) {
        int i;
        virBufferAddLit(buf, "  <vcpus>\n");
297
        for (i = 0; i < priv->nvcpupids; i++) {
298
            virBufferAsprintf(buf, "    <vcpu pid='%d'/>\n", priv->vcpupids[i]);
299 300 301 302
        }
        virBufferAddLit(buf, "  </vcpus>\n");
    }

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

315 316 317
    if (priv->lockState)
        virBufferAsprintf(buf, "  <lockstate>%s</lockstate>\n", priv->lockState);

318 319 320 321
    job = priv->job.active;
    if (!qemuDomainTrackJob(job))
        priv->job.active = QEMU_JOB_NONE;

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

335
    if (priv->fakeReboot)
336
        virBufferAddLit(buf, "  <fakereboot/>\n");
337

338 339 340
    return 0;
}

341 342
static int
qemuDomainObjPrivateXMLParse(xmlXPathContextPtr ctxt, void *data)
343 344 345 346 347 348
{
    qemuDomainObjPrivatePtr priv = data;
    char *monitorpath;
    char *tmp;
    int n, i;
    xmlNodePtr *nodes = NULL;
349
    virQEMUCapsPtr qemuCaps = NULL;
350 351 352 353 354 355 356 357

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

    if (!(monitorpath =
          virXPathString("string(./monitor[1]/@path)", ctxt))) {
358 359
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("no monitor path"));
360 361 362 363 364
        goto error;
    }

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

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

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

398
        for (i = 0; i < n; i++) {
399 400 401 402 403 404 405 406 407 408 409 410 411
            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);
    }

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

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

436
        priv->qemuCaps = qemuCaps;
437 438 439
    }
    VIR_FREE(nodes);

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

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

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

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

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

481 482 483
    return 0;

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


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


500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
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 已提交
522 523
qemuDomainDefNamespaceParse(xmlDocPtr xml ATTRIBUTE_UNUSED,
                            xmlNodePtr root ATTRIBUTE_UNUSED,
524 525 526 527
                            xmlXPathContextPtr ctxt,
                            void **data)
{
    qemuDomainCmdlineDefPtr cmd = NULL;
P
Philipp Hahn 已提交
528
    bool uses_qemu_ns = false;
529 530 531
    xmlNodePtr *nodes = NULL;
    int n, i;

P
Philipp Hahn 已提交
532
    if (xmlXPathRegisterNs(ctxt, BAD_CAST "qemu", BAD_CAST QEMU_NAMESPACE_HREF) < 0) {
533 534 535
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("Failed to register xml namespace '%s'"),
                       QEMU_NAMESPACE_HREF);
536 537 538 539 540 541 542 543 544 545 546 547
        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 已提交
548
    uses_qemu_ns |= n > 0;
549 550 551 552 553 554 555

    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) {
556 557
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No qemu command-line argument specified"));
558 559 560 561 562 563 564 565 566 567 568
            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 已提交
569
    uses_qemu_ns |= n > 0;
570 571 572 573 574 575 576 577 578 579 580 581

    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) {
582 583
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("No qemu environment name specified"));
584 585 586
            goto error;
        }
        if (tmp[0] == '\0') {
587 588
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Empty qemu environment name specified"));
589 590 591
            goto error;
        }
        if (!c_isalpha(tmp[0]) && tmp[0] != '_') {
592 593
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Invalid environment name, it must begin with a letter or underscore"));
594 595 596
            goto error;
        }
        if (strspn(tmp, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_") != strlen(tmp)) {
597 598
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           "%s", _("Invalid environment name, it must contain only alphanumerics and underscore"));
599 600 601 602 603 604 605 606 607 608 609 610
            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 已提交
611 612 613 614
    if (uses_qemu_ns)
        *data = cmd;
    else
        VIR_FREE(cmd);
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 640 641

    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++) {
642
        virBufferAsprintf(buf, "    <qemu:env name='%s'", cmd->env_name[i]);
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
        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 "'";
}


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

666

667 668 669 670 671
static int
qemuDomainDefPostParse(virDomainDefPtr def,
                       virCapsPtr caps,
                       void *opaque ATTRIBUTE_UNUSED)
{
672 673
    bool addPCIRoot = false;

674 675 676 677 678
    /* check for emulator and create a default one if needed */
    if (!def->emulator &&
        !(def->emulator = virDomainDefGetDefaultEmulator(def, caps)))
        return -1;

679 680 681 682 683 684 685 686 687 688 689 690
    /* Add implicit PCI root controller if the machine has one */
    switch (def->os.arch) {
    case VIR_ARCH_I686:
    case VIR_ARCH_X86_64:
        if (!def->os.machine)
            break;
        if (STRPREFIX(def->os.machine, "pc-q35") ||
            STREQ(def->os.machine, "q35") ||
            STREQ(def->os.machine, "isapc"))
            break;
        if (!STRPREFIX(def->os.machine, "pc-0.") &&
            !STRPREFIX(def->os.machine, "pc-1.") &&
691
            !STRPREFIX(def->os.machine, "pc-i440") &&
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
            !STREQ(def->os.machine, "pc") &&
            !STRPREFIX(def->os.machine, "rhel"))
            break;
        addPCIRoot = true;
        break;

    case VIR_ARCH_ALPHA:
    case VIR_ARCH_PPC:
    case VIR_ARCH_PPC64:
    case VIR_ARCH_PPCEMB:
    case VIR_ARCH_SH4:
    case VIR_ARCH_SH4EB:
        addPCIRoot = true;
        break;
    default:
        break;
    }

    if (addPCIRoot &&
        virDomainDefMaybeAddController(
            def, VIR_DOMAIN_CONTROLLER_TYPE_PCI, 0,
            VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT) < 0)
        return -1;

716 717 718 719
    return 0;
}


720 721
static int
qemuDomainDeviceDefPostParse(virDomainDeviceDefPtr dev,
722
                             virDomainDefPtr def,
723
                             virCapsPtr caps ATTRIBUTE_UNUSED,
724
                             void *opaque)
725
{
726 727 728 729
    int ret = -1;
    virQEMUDriverPtr driver = opaque;
    virQEMUDriverConfigPtr cfg = NULL;

730
    if (dev->type == VIR_DOMAIN_DEVICE_NET &&
731 732
        dev->data.net->type != VIR_DOMAIN_NET_TYPE_HOSTDEV &&
        !dev->data.net->model) {
733 734 735 736
        if (VIR_STRDUP(dev->data.net->model,
                       def->os.arch == VIR_ARCH_S390 ||
                       def->os.arch == VIR_ARCH_S390X ? "virtio" : "rtl8139") < 0)
            goto cleanup;
737
    }
738

739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759
    /* set default disk types and drivers */
    if (dev->type == VIR_DOMAIN_DEVICE_DISK) {
        virDomainDiskDefPtr disk = dev->data.disk;

        /* both of these require data from the driver config */
        if (driver && (cfg = virQEMUDriverGetConfig(driver))) {
            /* assign default storage format and driver according to config */
            if (cfg->allowDiskFormatProbing) {
                /* default disk format for drives */
                if (disk->format == VIR_STORAGE_FILE_NONE &&
                    (disk->type == VIR_DOMAIN_DISK_TYPE_FILE ||
                     disk->type == VIR_DOMAIN_DISK_TYPE_BLOCK))
                    disk->format = VIR_STORAGE_FILE_AUTO;

                 /* default disk format for mirrored drive */
                if (disk->mirror &&
                    disk->mirrorFormat == VIR_STORAGE_FILE_NONE)
                    disk->mirrorFormat = VIR_STORAGE_FILE_AUTO;
            } else {
                /* default driver if probing is forbidden */
                if (!disk->driverName &&
760 761
                    VIR_STRDUP(disk->driverName, "qemu") < 0)
                        goto cleanup;
762 763 764 765 766 767 768 769 770 771 772 773

                /* default disk format for drives */
                if (disk->format == VIR_STORAGE_FILE_NONE &&
                    (disk->type == VIR_DOMAIN_DISK_TYPE_FILE ||
                     disk->type == VIR_DOMAIN_DISK_TYPE_BLOCK))
                    disk->format = VIR_STORAGE_FILE_RAW;

                 /* default disk format for mirrored drive */
                if (disk->mirror &&
                    disk->mirrorFormat == VIR_STORAGE_FILE_NONE)
                    disk->mirrorFormat = VIR_STORAGE_FILE_RAW;
            }
774 775 776
        }
    }

777 778 779 780 781 782 783
    /* set the default console type for S390 arches */
    if (dev->type == VIR_DOMAIN_DEVICE_CHR &&
        dev->data.chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE &&
        dev->data.chr->targetType == VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_NONE &&
        (def->os.arch == VIR_ARCH_S390 || def->os.arch == VIR_ARCH_S390X))
        dev->data.chr->targetType = VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_VIRTIO;

784 785 786 787 788 789 790 791
    /* set the default USB model to none for s390 unless an address is found */
    if (dev->type == VIR_DOMAIN_DEVICE_CONTROLLER &&
        dev->data.controller->type == VIR_DOMAIN_CONTROLLER_TYPE_USB &&
        dev->data.controller->model == -1 &&
        dev->data.controller->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE &&
        (def->os.arch == VIR_ARCH_S390 || def->os.arch == VIR_ARCH_S390X))
        dev->data.controller->model = VIR_DOMAIN_CONTROLLER_MODEL_USB_NONE;

792 793 794 795 796 797 798 799 800 801 802
    /* auto generate unix socket path */
    if (dev->type == VIR_DOMAIN_DEVICE_CHR &&
        dev->data.chr->deviceType == VIR_DOMAIN_CHR_DEVICE_TYPE_CHANNEL &&
        dev->data.chr->targetType == VIR_DOMAIN_CHR_CHANNEL_TARGET_TYPE_VIRTIO &&
        dev->data.chr->source.type == VIR_DOMAIN_CHR_TYPE_UNIX &&
        !dev->data.chr->source.data.nix.path &&
        (driver && (cfg = virQEMUDriverGetConfig(driver)))) {

        if (virAsprintf(&dev->data.chr->source.data.nix.path,
                        "%s/channel/target/%s.%s",
                        cfg->libDir, def->name,
803 804 805 806
                        dev->data.chr->target.name) < 0) {
            virReportOOMError();
            goto cleanup;
        }
807 808 809
        dev->data.chr->source.data.nix.listen = true;
    }

810 811 812 813 814
    ret = 0;

cleanup:
    virObjectUnref(cfg);
    return ret;
815 816 817 818 819
}


virDomainDefParserConfig virQEMUDriverDomainDefParserConfig = {
    .devicesPostParseCallback = qemuDomainDeviceDefPostParse,
820
    .domainPostParseCallback = qemuDomainDefPostParse,
821 822 823
};


824
static void
825
qemuDomainObjSaveJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
826
{
827 828 829
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);

    if (virDomainObjIsActive(obj)) {
830
        if (virDomainSaveStatus(driver->xmlopt, cfg->stateDir, obj) < 0)
831
            VIR_WARN("Failed to save status on vm %s", obj->def->name);
832
    }
833

834
    virObjectUnref(cfg);
835 836
}

J
Jiri Denemark 已提交
837
void
838
qemuDomainObjSetJobPhase(virQEMUDriverPtr driver,
J
Jiri Denemark 已提交
839 840 841 842
                         virDomainObjPtr obj,
                         int phase)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
843
    unsigned long long me = virThreadSelfID();
J
Jiri Denemark 已提交
844 845 846 847

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

848 849 850 851 852
    VIR_DEBUG("Setting '%s' phase to '%s'",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
              qemuDomainAsyncJobPhaseToString(priv->job.asyncJob, phase));

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

J
Jiri Denemark 已提交
858
    priv->job.phase = phase;
859
    priv->job.asyncOwner = me;
J
Jiri Denemark 已提交
860 861 862
    qemuDomainObjSaveJob(driver, obj);
}

863
void
864 865
qemuDomainObjSetAsyncJobMask(virDomainObjPtr obj,
                             unsigned long long allowedJobs)
866 867 868
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

869 870 871 872 873 874 875
    if (!priv->job.asyncJob)
        return;

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

void
876
qemuDomainObjDiscardAsyncJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
877 878 879 880 881 882
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

    if (priv->job.active == QEMU_JOB_ASYNC_NESTED)
        qemuDomainObjResetJob(priv);
    qemuDomainObjResetAsyncJob(priv);
883
    qemuDomainObjSaveJob(driver, obj);
884 885
}

886 887 888 889 890 891 892 893 894
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()) {
895
        VIR_WARN("'%s' async job is owned by thread %llu",
896 897 898 899 900 901
                 qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
                 priv->job.asyncOwner);
    }
    priv->job.asyncOwner = 0;
}

902
static bool
903
qemuDomainNestedJobAllowed(qemuDomainObjPrivatePtr priv, enum qemuDomainJob job)
904 905
{
    return !priv->job.asyncJob || (priv->job.mask & JOB_MASK(job)) != 0;
906 907
}

908 909 910 911 912 913
bool
qemuDomainJobAllowed(qemuDomainObjPrivatePtr priv, enum qemuDomainJob job)
{
    return !priv->job.active && qemuDomainNestedJobAllowed(priv, job);
}

914 915 916
/* Give up waiting for mutex after 30 seconds */
#define QEMU_JOB_WAIT_TIME (1000ull * 30)

917
/*
918
 * obj must be locked before calling
919
 */
920
static int ATTRIBUTE_NONNULL(1)
921
qemuDomainObjBeginJobInternal(virQEMUDriverPtr driver,
922 923 924
                              virDomainObjPtr obj,
                              enum qemuDomainJob job,
                              enum qemuDomainAsyncJob asyncJob)
925 926
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
J
Jiri Denemark 已提交
927
    unsigned long long now;
928
    unsigned long long then;
929
    bool nested = job == QEMU_JOB_ASYNC_NESTED;
930
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
931

932 933
    priv->jobs_queued++;

934 935
    if (virTimeMillisNow(&now) < 0) {
        virObjectUnref(cfg);
936
        return -1;
937 938
    }

J
Jiri Denemark 已提交
939
    then = now + QEMU_JOB_WAIT_TIME;
940

941
    virObjectRef(obj);
942

943
retry:
944 945
    if (cfg->maxQueuedJobs &&
        priv->jobs_queued > cfg->maxQueuedJobs) {
946 947 948
        goto error;
    }

949
    while (!nested && !qemuDomainNestedJobAllowed(priv, job)) {
950
        if (virCondWaitUntil(&priv->job.asyncCond, &obj->parent.lock, then) < 0)
951 952 953
            goto error;
    }

954
    while (priv->job.active) {
955
        if (virCondWaitUntil(&priv->job.cond, &obj->parent.lock, then) < 0)
956
            goto error;
957
    }
958 959 960

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

964
    qemuDomainObjResetJob(priv);
965 966

    if (job != QEMU_JOB_ASYNC) {
967 968 969
        VIR_DEBUG("Starting job: %s (async=%s)",
                   qemuDomainJobTypeToString(job),
                   qemuDomainAsyncJobTypeToString(priv->job.asyncJob));
970
        priv->job.active = job;
971
        priv->job.owner = virThreadSelfID();
972
    } else {
973 974
        VIR_DEBUG("Starting async job: %s",
                  qemuDomainAsyncJobTypeToString(asyncJob));
975 976
        qemuDomainObjResetAsyncJob(priv);
        priv->job.asyncJob = asyncJob;
977
        priv->job.asyncOwner = virThreadSelfID();
978 979
        priv->job.start = now;
    }
980

981 982
    if (qemuDomainTrackJob(job))
        qemuDomainObjSaveJob(driver, obj);
983

984
    virObjectUnref(cfg);
985
    return 0;
986 987

error:
988
    VIR_WARN("Cannot start job (%s, %s) for domain %s;"
989
             " current job is (%s, %s) owned by (%llu, %llu)",
990 991 992 993 994 995 996
             qemuDomainJobTypeToString(job),
             qemuDomainAsyncJobTypeToString(asyncJob),
             obj->def->name,
             qemuDomainJobTypeToString(priv->job.active),
             qemuDomainAsyncJobTypeToString(priv->job.asyncJob),
             priv->job.owner, priv->job.asyncOwner);

997
    if (errno == ETIMEDOUT)
998 999
        virReportError(VIR_ERR_OPERATION_TIMEOUT,
                       "%s", _("cannot acquire state change lock"));
1000 1001
    else if (cfg->maxQueuedJobs &&
             priv->jobs_queued > cfg->maxQueuedJobs)
1002 1003 1004
        virReportError(VIR_ERR_OPERATION_FAILED,
                       "%s", _("cannot acquire state change lock "
                               "due to max_queued limit"));
1005 1006 1007
    else
        virReportSystemError(errno,
                             "%s", _("cannot acquire job mutex"));
1008
    priv->jobs_queued--;
1009
    virObjectUnref(obj);
1010
    virObjectUnref(cfg);
1011
    return -1;
1012 1013 1014
}

/*
1015
 * obj must be locked before calling
1016 1017 1018 1019 1020 1021 1022
 *
 * 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
 */
1023
int qemuDomainObjBeginJob(virQEMUDriverPtr driver,
1024 1025
                          virDomainObjPtr obj,
                          enum qemuDomainJob job)
1026
{
1027
    return qemuDomainObjBeginJobInternal(driver, obj, job,
1028 1029 1030
                                         QEMU_ASYNC_JOB_NONE);
}

1031
int qemuDomainObjBeginAsyncJob(virQEMUDriverPtr driver,
1032
                               virDomainObjPtr obj,
1033
                               enum qemuDomainAsyncJob asyncJob)
1034
{
1035
    return qemuDomainObjBeginJobInternal(driver, obj, QEMU_JOB_ASYNC,
1036
                                         asyncJob);
1037 1038
}

1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
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()) {
1053
        VIR_WARN("This thread doesn't seem to be the async job owner: %llu",
1054 1055 1056 1057 1058 1059 1060 1061
                 priv->job.asyncOwner);
    }

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

1062

1063
/*
1064
 * obj must be locked before calling
1065 1066 1067 1068
 *
 * To be called after completing the work associated with the
 * earlier qemuDomainBeginJob() call
 *
1069 1070
 * Returns true if @obj was still referenced, false if it was
 * disposed of.
1071
 */
1072
bool qemuDomainObjEndJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
1073 1074
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1075
    enum qemuDomainJob job = priv->job.active;
1076

1077 1078
    priv->jobs_queued--;

1079
    VIR_DEBUG("Stopping job: %s (async=%s)",
1080
              qemuDomainJobTypeToString(job),
1081 1082
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob));

1083
    qemuDomainObjResetJob(priv);
1084 1085
    if (qemuDomainTrackJob(job))
        qemuDomainObjSaveJob(driver, obj);
1086
    virCondSignal(&priv->job.cond);
1087

1088
    return virObjectUnref(obj);
1089 1090
}

1091
bool
1092
qemuDomainObjEndAsyncJob(virQEMUDriverPtr driver, virDomainObjPtr obj)
1093 1094
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1095

1096 1097
    priv->jobs_queued--;

1098 1099 1100
    VIR_DEBUG("Stopping async job: %s",
              qemuDomainAsyncJobTypeToString(priv->job.asyncJob));

1101
    qemuDomainObjResetAsyncJob(priv);
1102
    qemuDomainObjSaveJob(driver, obj);
1103 1104
    virCondBroadcast(&priv->job.asyncCond);

1105
    return virObjectUnref(obj);
1106 1107
}

1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
void
qemuDomainObjAbortAsyncJob(virDomainObjPtr obj)
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

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

    priv->job.asyncAbort = true;
}

1119 1120 1121 1122 1123 1124 1125 1126 1127
/*
 * 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
 */
1128
static int
1129
qemuDomainObjEnterMonitorInternal(virQEMUDriverPtr driver,
1130 1131
                                  virDomainObjPtr obj,
                                  enum qemuDomainAsyncJob asyncJob)
1132 1133 1134
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

1135
    if (asyncJob != QEMU_ASYNC_JOB_NONE) {
1136
        if (qemuDomainObjBeginNestedJob(driver, obj, asyncJob) < 0)
1137 1138
            return -1;
        if (!virDomainObjIsActive(obj)) {
1139 1140
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("domain is no longer running"));
1141 1142
            /* Still referenced by the containing async job.  */
            ignore_value(qemuDomainObjEndJob(driver, obj));
1143 1144
            return -1;
        }
1145 1146 1147
    } 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");
1148 1149
    }

1150
    virObjectLock(priv->mon);
1151
    virObjectRef(priv->mon);
1152
    ignore_value(virTimeMillisNow(&priv->monStart));
1153
    virObjectUnlock(obj);
1154 1155

    return 0;
1156 1157
}

1158
static void ATTRIBUTE_NONNULL(1)
1159
qemuDomainObjExitMonitorInternal(virQEMUDriverPtr driver,
1160
                                 virDomainObjPtr obj)
1161 1162
{
    qemuDomainObjPrivatePtr priv = obj->privateData;
1163
    bool hasRefs;
1164

1165
    hasRefs = virObjectUnref(priv->mon);
1166

1167
    if (hasRefs)
1168
        virObjectUnlock(priv->mon);
1169

1170
    virObjectLock(obj);
1171

1172
    priv->monStart = 0;
1173
    if (!hasRefs)
1174
        priv->mon = NULL;
1175

1176 1177 1178 1179 1180
    if (priv->job.active == QEMU_JOB_ASYNC_NESTED) {
        qemuDomainObjResetJob(priv);
        qemuDomainObjSaveJob(driver, obj);
        virCondSignal(&priv->job.cond);

1181
        virObjectUnref(obj);
1182
    }
1183 1184
}

1185
void qemuDomainObjEnterMonitor(virQEMUDriverPtr driver,
1186
                               virDomainObjPtr obj)
1187
{
1188
    ignore_value(qemuDomainObjEnterMonitorInternal(driver, obj,
1189
                                                   QEMU_ASYNC_JOB_NONE));
1190 1191
}

1192
/* obj must NOT be locked before calling
1193 1194 1195
 *
 * Should be paired with an earlier qemuDomainObjEnterMonitor() call
 */
1196
void qemuDomainObjExitMonitor(virQEMUDriverPtr driver,
1197
                              virDomainObjPtr obj)
1198
{
1199
    qemuDomainObjExitMonitorInternal(driver, obj);
1200
}
1201 1202

/*
1203
 * obj must be locked before calling
1204 1205
 *
 * To be called immediately before any QEMU monitor API call.
1206
 * Must have already either called qemuDomainObjBeginJob()
1207 1208 1209 1210 1211
 * 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
1212
 * qemuDomainObjExitMonitor(); or -1 if the job could not be
1213 1214 1215
 * started (probably because the vm exited in the meantime).
 */
int
1216
qemuDomainObjEnterMonitorAsync(virQEMUDriverPtr driver,
1217 1218
                               virDomainObjPtr obj,
                               enum qemuDomainAsyncJob asyncJob)
1219
{
1220
    return qemuDomainObjEnterMonitorInternal(driver, obj, asyncJob);
1221 1222
}

D
Daniel P. Berrange 已提交
1223 1224


1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
/*
 * 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 已提交
1236 1237 1238
{
    qemuDomainObjPrivatePtr priv = obj->privateData;

1239
    virObjectLock(priv->agent);
1240
    virObjectRef(priv->agent);
D
Daniel P. Berrange 已提交
1241
    ignore_value(virTimeMillisNow(&priv->agentStart));
1242
    virObjectUnlock(obj);
D
Daniel P. Berrange 已提交
1243 1244
}

1245 1246 1247 1248 1249 1250 1251

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

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

1258
    if (hasRefs)
1259
        virObjectUnlock(priv->agent);
D
Daniel P. Berrange 已提交
1260

1261
    virObjectLock(obj);
D
Daniel P. Berrange 已提交
1262 1263

    priv->agentStart = 0;
1264
    if (!hasRefs)
D
Daniel P. Berrange 已提交
1265 1266 1267
        priv->agent = NULL;
}

1268
void qemuDomainObjEnterRemote(virDomainObjPtr obj)
1269
{
1270
    virObjectRef(obj);
1271
    virObjectUnlock(obj);
1272 1273
}

1274
void qemuDomainObjExitRemote(virDomainObjPtr obj)
1275
{
1276
    virObjectLock(obj);
1277
    virObjectUnref(obj);
1278
}
1279 1280


1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
virDomainDefPtr
qemuDomainDefCopy(virQEMUDriverPtr driver,
                  virDomainDefPtr src,
                  unsigned int flags)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    virDomainDefPtr ret = NULL;
    virCapsPtr caps = NULL;
    const char *xml = NULL;

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

    xml = virBufferContentAndReset(&buf);

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

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

cleanup:
    VIR_FREE(xml);
    virObjectUnref(caps);
    return ret;
}

1310
int
1311
qemuDomainDefFormatBuf(virQEMUDriverPtr driver,
1312 1313 1314
                       virDomainDefPtr def,
                       unsigned int flags,
                       virBuffer *buf)
1315
{
1316
    int ret = -1;
1317
    virCPUDefPtr cpu = NULL;
1318
    virCPUDefPtr def_cpu = def->cpu;
1319 1320
    virDomainControllerDefPtr *controllers = NULL;
    int ncontrollers = 0;
1321 1322 1323 1324
    virCapsPtr caps = NULL;

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

    /* Update guest CPU requirements according to host CPU */
1327 1328 1329
    if ((flags & VIR_DOMAIN_XML_UPDATE_CPU) &&
        def_cpu &&
        (def_cpu->mode != VIR_CPU_MODE_CUSTOM || def_cpu->model)) {
1330 1331
        if (!caps->host.cpu ||
            !caps->host.cpu->model) {
1332 1333
            virReportError(VIR_ERR_OPERATION_FAILED,
                           "%s", _("cannot get host CPU capabilities"));
1334 1335 1336
            goto cleanup;
        }

1337
        if (!(cpu = virCPUDefCopy(def_cpu)) ||
1338
            cpuUpdate(cpu, caps->host.cpu) < 0)
1339 1340 1341 1342
            goto cleanup;
        def->cpu = cpu;
    }

1343
    if ((flags & VIR_DOMAIN_XML_MIGRATABLE)) {
1344
        int i;
1345
        int toremove = 0;
1346
        virDomainControllerDefPtr usb = NULL, pci = NULL;
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364

        /* 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);
1365
            toremove++;
1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
        } else {
            usb = NULL;
        }

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

        if (pci && pci->idx == 0 &&
            pci->model == VIR_DOMAIN_CONTROLLER_MODEL_PCI_ROOT) {
            VIR_DEBUG("Removing default 'pci-root' from domain '%s'"
                      " for migration compatibility", def->name);
1386
            toremove++;
1387 1388 1389 1390
        } else {
            pci = NULL;
        }

1391
        if (toremove) {
1392 1393
            controllers = def->controllers;
            ncontrollers = def->ncontrollers;
1394
            if (VIR_ALLOC_N(def->controllers, ncontrollers - toremove) < 0) {
1395 1396 1397 1398 1399 1400 1401
                controllers = NULL;
                virReportOOMError();
                goto cleanup;
            }

            def->ncontrollers = 0;
            for (i = 0; i < ncontrollers; i++) {
1402
                if (controllers[i] != usb && controllers[i] != pci)
1403 1404 1405
                    def->controllers[def->ncontrollers++] = controllers[i];
            }
        }
1406 1407


1408 1409
    }

1410
    ret = virDomainDefFormatInternal(def, flags, buf);
1411 1412 1413 1414

cleanup:
    def->cpu = def_cpu;
    virCPUDefFree(cpu);
1415 1416 1417 1418 1419
    if (controllers) {
        VIR_FREE(def->controllers);
        def->controllers = controllers;
        def->ncontrollers = ncontrollers;
    }
1420
    virObjectUnref(caps);
1421 1422
    return ret;
}
1423

1424
char *qemuDomainDefFormatXML(virQEMUDriverPtr driver,
1425
                             virDomainDefPtr def,
1426
                             unsigned int flags)
1427 1428 1429
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;

1430
    if (qemuDomainDefFormatBuf(driver, def, flags, &buf) < 0) {
1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443
        virBufferFreeAndReset(&buf);
        return NULL;
    }

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

    return virBufferContentAndReset(&buf);
}

1444
char *qemuDomainFormatXML(virQEMUDriverPtr driver,
1445
                          virDomainObjPtr vm,
1446
                          unsigned int flags)
1447 1448 1449 1450 1451 1452 1453 1454
{
    virDomainDefPtr def;

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

1455
    return qemuDomainDefFormatXML(driver, def, flags);
1456 1457
}

1458
char *
1459
qemuDomainDefFormatLive(virQEMUDriverPtr driver,
1460
                        virDomainDefPtr def,
1461 1462
                        bool inactive,
                        bool compatible)
1463 1464 1465 1466 1467
{
    unsigned int flags = QEMU_DOMAIN_FORMAT_LIVE_FLAGS;

    if (inactive)
        flags |= VIR_DOMAIN_XML_INACTIVE;
1468 1469
    if (compatible)
        flags |= VIR_DOMAIN_XML_MIGRATABLE;
1470

1471
    return qemuDomainDefFormatXML(driver, def, flags);
1472 1473
}

1474

1475
void qemuDomainObjTaint(virQEMUDriverPtr driver,
1476
                        virDomainObjPtr obj,
1477 1478
                        enum virDomainTaintFlags taint,
                        int logFD)
1479
{
1480 1481
    virErrorPtr orig_err = NULL;

1482 1483 1484 1485 1486 1487 1488 1489 1490
    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));
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504

        /* 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);
        }
1505 1506 1507 1508
    }
}


1509
void qemuDomainObjCheckTaint(virQEMUDriverPtr driver,
1510 1511
                             virDomainObjPtr obj,
                             int logFD)
1512 1513
{
    int i;
1514
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1515

1516 1517 1518 1519
    if (cfg->privileged &&
        (!cfg->clearEmulatorCapabilities ||
         cfg->user == 0 ||
         cfg->group == 0))
1520
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HIGH_PRIVILEGES, logFD);
1521 1522 1523 1524

    if (obj->def->namespaceData) {
        qemuDomainCmdlineDefPtr qemucmd = obj->def->namespaceData;
        if (qemucmd->num_args || qemucmd->num_env)
1525
            qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_CUSTOM_ARGV, logFD);
1526 1527
    }

1528 1529 1530
    if (obj->def->cpu && obj->def->cpu->mode == VIR_CPU_MODE_HOST_PASSTHROUGH)
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HOST_CPU, logFD);

1531
    for (i = 0; i < obj->def->ndisks; i++)
1532
        qemuDomainObjCheckDiskTaint(driver, obj, obj->def->disks[i], logFD);
1533

1534
    for (i = 0; i < obj->def->nnets; i++)
1535
        qemuDomainObjCheckNetTaint(driver, obj, obj->def->nets[i], logFD);
1536 1537

    virObjectUnref(cfg);
1538 1539 1540
}


1541
void qemuDomainObjCheckDiskTaint(virQEMUDriverPtr driver,
1542
                                 virDomainObjPtr obj,
1543 1544
                                 virDomainDiskDefPtr disk,
                                 int logFD)
1545
{
1546 1547
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);

1548
    if ((!disk->format || disk->format == VIR_STORAGE_FILE_AUTO) &&
1549
        cfg->allowDiskFormatProbing)
1550
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_DISK_PROBING, logFD);
1551

1552
    if (disk->rawio == 1)
1553
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_HIGH_PRIVILEGES, logFD);
1554 1555

    virObjectUnref(cfg);
1556 1557 1558
}


1559
void qemuDomainObjCheckNetTaint(virQEMUDriverPtr driver,
1560
                                virDomainObjPtr obj,
1561 1562
                                virDomainNetDefPtr net,
                                int logFD)
1563
{
1564 1565 1566 1567 1568 1569
    /* 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)
1570
        qemuDomainObjTaint(driver, obj, VIR_DOMAIN_TAINT_SHELL_SCRIPTS, logFD);
1571
}
1572 1573 1574


static int
1575
qemuDomainOpenLogHelper(virQEMUDriverConfigPtr cfg,
1576
                        virDomainObjPtr vm,
E
Eric Blake 已提交
1577
                        int oflags,
1578 1579 1580 1581
                        mode_t mode)
{
    char *logfile;
    int fd = -1;
1582
    bool trunc = false;
1583

1584
    if (virAsprintf(&logfile, "%s/%s.log", cfg->logDir, vm->def->name) < 0) {
1585 1586 1587 1588
        virReportOOMError();
        return -1;
    }

1589 1590 1591 1592 1593 1594 1595 1596 1597
    /* 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 已提交
1598
    if ((fd = open(logfile, oflags, mode)) < 0) {
1599 1600 1601 1602 1603 1604 1605
        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);
1606 1607 1608 1609 1610 1611 1612
        VIR_FORCE_CLOSE(fd);
        goto cleanup;
    }
    if (trunc &&
        ftruncate(fd, 0) < 0) {
        virReportSystemError(errno, _("failed to truncate %s"),
                             logfile);
1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
        VIR_FORCE_CLOSE(fd);
        goto cleanup;
    }

cleanup:
    VIR_FREE(logfile);
    return fd;
}


int
1624
qemuDomainCreateLog(virQEMUDriverPtr driver, virDomainObjPtr vm,
E
Eric Blake 已提交
1625
                    bool append)
1626
{
1627
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
E
Eric Blake 已提交
1628
    int oflags;
1629
    int ret;
1630

E
Eric Blake 已提交
1631
    oflags = O_CREAT | O_WRONLY;
1632
    /* Only logrotate files in /var/log, so only append if running privileged */
1633
    if (cfg->privileged || append)
E
Eric Blake 已提交
1634
        oflags |= O_APPEND;
1635
    else
E
Eric Blake 已提交
1636
        oflags |= O_TRUNC;
1637

1638 1639 1640
    ret = qemuDomainOpenLogHelper(cfg, vm, oflags, S_IRUSR | S_IWUSR);
    virObjectUnref(cfg);
    return ret;
1641 1642 1643 1644
}


int
1645
qemuDomainOpenLog(virQEMUDriverPtr driver, virDomainObjPtr vm, off_t pos)
1646
{
1647
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1648 1649 1650 1651
    int fd;
    off_t off;
    int whence;

1652 1653 1654
    fd = qemuDomainOpenLogHelper(cfg, vm, O_RDONLY, 0);
    virObjectUnref(cfg);
    if (fd < 0)
1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680
        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;
}


1681
int qemuDomainAppendLog(virQEMUDriverPtr driver,
1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714
                        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 已提交
1715
    VIR_FREE(message);
1716 1717
    return ret;
}
1718 1719 1720

/* Locate an appropriate 'qemu-img' binary.  */
const char *
1721
qemuFindQemuImgBinary(virQEMUDriverPtr driver)
1722
{
1723 1724 1725
    if (!driver->qemuImgBinary)
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("unable to find kvm-img or qemu-img"));
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742

    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,
1743 1744
                                        QEMU_DOMAIN_FORMAT_LIVE_FLAGS, 1);
    if (newxml == NULL)
1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761
        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 已提交
1762
    ret = virXMLSaveFile(snapFile, NULL, "snapshot-edit", newxml);
1763 1764 1765 1766 1767 1768 1769 1770 1771 1772

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.  */
1773
static int
1774
qemuDomainSnapshotForEachQcow2Raw(virQEMUDriverPtr driver,
1775 1776 1777 1778 1779
                                  virDomainDefPtr def,
                                  const char *name,
                                  const char *op,
                                  bool try_all,
                                  int ndisks)
1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791
{
    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;
1792
    qemuimgarg[3] = name;
1793

1794
    for (i = 0; i < ndisks; i++) {
1795
        /* FIXME: we also need to handle LVM here */
1796
        if (def->disks[i]->device == VIR_DOMAIN_DISK_DEVICE_DISK) {
1797 1798
            if (def->disks[i]->format > 0 &&
                def->disks[i]->format != VIR_STORAGE_FILE_QCOW2) {
1799 1800 1801 1802 1803
                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",
1804
                             def->disks[i]->dst);
1805 1806
                    skipped = true;
                    continue;
1807 1808 1809 1810 1811
                } else if (STREQ(op, "-c") && i) {
                    /* We must roll back partial creation by deleting
                     * all earlier snapshots.  */
                    qemuDomainSnapshotForEachQcow2Raw(driver, def, name,
                                                      "-d", false, i);
1812
                }
1813 1814 1815 1816
                virReportError(VIR_ERR_OPERATION_INVALID,
                               _("Disk device '%s' does not support"
                                 " snapshotting"),
                               def->disks[i]->dst);
1817 1818 1819
                return -1;
            }

1820
            qemuimgarg[4] = def->disks[i]->src;
1821 1822 1823 1824

            if (virRun(qemuimgarg, NULL) < 0) {
                if (try_all) {
                    VIR_WARN("skipping snapshot action on %s",
1825
                             def->disks[i]->dst);
1826 1827
                    skipped = true;
                    continue;
1828 1829 1830 1831 1832
                } else if (STREQ(op, "-c") && i) {
                    /* We must roll back partial creation by deleting
                     * all earlier snapshots.  */
                    qemuDomainSnapshotForEachQcow2Raw(driver, def, name,
                                                      "-d", false, i);
1833 1834 1835 1836 1837 1838 1839 1840 1841
                }
                return -1;
            }
        }
    }

    return skipped ? 1 : 0;
}

1842 1843 1844
/* 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
1845
qemuDomainSnapshotForEachQcow2(virQEMUDriverPtr driver,
1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861
                               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);
}

1862 1863
/* Discard one snapshot (or its metadata), without reparenting any children.  */
int
1864
qemuDomainSnapshotDiscard(virQEMUDriverPtr driver,
1865 1866 1867 1868 1869 1870 1871 1872 1873
                          virDomainObjPtr vm,
                          virDomainSnapshotObjPtr snap,
                          bool update_current,
                          bool metadata_only)
{
    char *snapFile = NULL;
    int ret = -1;
    qemuDomainObjPrivatePtr priv;
    virDomainSnapshotObjPtr parentsnap = NULL;
1874
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1875 1876 1877 1878 1879 1880 1881 1882 1883

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

1891
    if (virAsprintf(&snapFile, "%s/%s/%s.xml", cfg->snapshotDir,
1892 1893 1894 1895 1896 1897 1898
                    vm->def->name, snap->def->name) < 0) {
        virReportOOMError();
        goto cleanup;
    }

    if (snap == vm->current_snapshot) {
        if (update_current && snap->def->parent) {
1899
            parentsnap = virDomainSnapshotFindByName(vm->snapshots,
1900 1901 1902 1903 1904 1905 1906
                                                     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,
1907
                                                    cfg->snapshotDir) < 0) {
1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
                    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);
1920
    virDomainSnapshotObjListRemove(vm->snapshots, snap);
1921 1922 1923 1924 1925

    ret = 0;

cleanup:
    VIR_FREE(snapFile);
1926
    virObjectUnref(cfg);
1927 1928 1929 1930 1931 1932 1933 1934 1935
    return ret;
}

/* Hash iterator callback to discard multiple snapshots.  */
void qemuDomainSnapshotDiscardAll(void *payload,
                                  const void *name ATTRIBUTE_UNUSED,
                                  void *data)
{
    virDomainSnapshotObjPtr snap = payload;
1936
    virQEMUSnapRemovePtr curr = data;
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947
    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
1948
qemuDomainSnapshotDiscardAllMetadata(virQEMUDriverPtr driver,
1949 1950
                                     virDomainObjPtr vm)
{
1951
    virQEMUSnapRemove rem;
1952 1953 1954 1955 1956

    rem.driver = driver;
    rem.vm = vm;
    rem.metadata_only = true;
    rem.err = 0;
1957 1958
    virDomainSnapshotForEach(vm->snapshots, qemuDomainSnapshotDiscardAll,
                             &rem);
1959 1960 1961 1962 1963

    return rem.err;
}

/*
1964
 * The caller must hold a lock the vm and there must
1965 1966 1967
 * be no remaining references to vm.
 */
void
1968
qemuDomainRemoveInactive(virQEMUDriverPtr driver,
1969 1970
                         virDomainObjPtr vm)
{
1971
    char *snapDir;
1972
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1973

1974 1975 1976 1977 1978
    /* 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);
    }
1979
    else if (virAsprintf(&snapDir, "%s/%s", cfg->snapshotDir,
1980 1981
                         vm->def->name) < 0) {
        VIR_WARN("unable to remove snapshot directory %s/%s",
1982
                 cfg->snapshotDir, vm->def->name);
1983 1984 1985 1986 1987
    } else {
        if (rmdir(snapDir) < 0 && errno != ENOENT)
            VIR_WARN("unable to remove snapshot directory %s", snapDir);
        VIR_FREE(snapDir);
    }
1988
    virDomainObjListRemove(driver->domains, vm);
1989
    virObjectUnref(cfg);
1990
}
1991 1992

void
1993
qemuDomainSetFakeReboot(virQEMUDriverPtr driver,
1994 1995 1996 1997
                        virDomainObjPtr vm,
                        bool value)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
1998
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
1999 2000

    if (priv->fakeReboot == value)
2001
        goto cleanup;
2002 2003 2004

    priv->fakeReboot = value;

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

2008
cleanup:
2009
    virObjectUnref(cfg);
2010
}
M
Michal Privoznik 已提交
2011 2012

int
2013
qemuDomainCheckDiskPresence(virQEMUDriverPtr driver,
M
Michal Privoznik 已提交
2014
                            virDomainObjPtr vm,
2015
                            bool cold_boot)
M
Michal Privoznik 已提交
2016 2017 2018 2019
{
    int ret = -1;
    int i;
    virDomainDiskDefPtr disk;
M
Michal Privoznik 已提交
2020
    char uuid[VIR_UUID_STRING_BUFLEN];
2021
    virDomainEventPtr event = NULL;
2022
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
M
Michal Privoznik 已提交
2023 2024 2025 2026 2027 2028 2029 2030 2031

    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 已提交
2032
        if (virFileAccessibleAs(disk->src, F_OK,
2033 2034
                                cfg->user,
                                cfg->group) >= 0) {
M
Michal Privoznik 已提交
2035
            /* disk accessible */
M
Michal Privoznik 已提交
2036 2037 2038 2039 2040 2041 2042 2043
            continue;
        }

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

            case VIR_DOMAIN_STARTUP_POLICY_MANDATORY:
M
Michal Privoznik 已提交
2044
                virReportSystemError(errno,
M
Michal Privoznik 已提交
2045 2046 2047 2048 2049 2050
                                     _("cannot access file '%s'"),
                                     disk->src);
                goto cleanup;
                break;

            case VIR_DOMAIN_STARTUP_POLICY_REQUISITE:
2051
                if (cold_boot) {
M
Michal Privoznik 已提交
2052
                    virReportSystemError(errno,
M
Michal Privoznik 已提交
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064
                                         _("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 已提交
2065 2066
        VIR_DEBUG("Dropping disk '%s' on domain '%s' (UUID '%s') "
                  "due to inaccessible source '%s'",
M
Michal Privoznik 已提交
2067 2068
                  disk->dst, vm->def->name, uuid, disk->src);

2069
        event = virDomainEventDiskChangeNewFromObj(vm, disk->src, NULL, disk->info.alias,
2070
                                                   VIR_DOMAIN_EVENT_DISK_CHANGE_MISSING_ON_START);
2071 2072 2073
        if (event)
            qemuDomainEventQueue(driver, event);

M
Michal Privoznik 已提交
2074 2075 2076 2077 2078 2079
        VIR_FREE(disk->src);
    }

    ret = 0;

cleanup:
2080
    virObjectUnref(cfg);
M
Michal Privoznik 已提交
2081 2082
    return ret;
}
2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136

/*
 * 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
2137
qemuDomainCleanupRun(virQEMUDriverPtr driver,
2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154
                     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;
}
2155 2156

int
2157
qemuDomainDetermineDiskChain(virQEMUDriverPtr driver,
2158 2159 2160
                             virDomainDiskDefPtr disk,
                             bool force)
{
2161 2162
    virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
    int ret = 0;
2163

2164 2165 2166
    if (!disk->src ||
        disk->type == VIR_DOMAIN_DISK_TYPE_NETWORK ||
        disk->type == VIR_DOMAIN_DISK_TYPE_VOLUME)
2167
        goto cleanup;
2168 2169 2170 2171 2172 2173

    if (disk->backingChain) {
        if (force) {
            virStorageFileFreeMetadata(disk->backingChain);
            disk->backingChain = NULL;
        } else {
2174
            goto cleanup;
2175 2176 2177
        }
    }
    disk->backingChain = virStorageFileGetMetadata(disk->src, disk->format,
2178 2179
                                                   cfg->user, cfg->group,
                                                   cfg->allowDiskFormatProbing);
2180
    if (!disk->backingChain)
2181 2182 2183 2184 2185
        ret = -1;

cleanup:
    virObjectUnref(cfg);
    return ret;
2186
}
2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204


unsigned long long
qemuDomainMemoryLimit(virDomainDefPtr def)
{
    unsigned long long mem;
    int i;

    if (def->mem.hard_limit) {
        mem = def->mem.hard_limit;
    } else {
        /* If there is no hard_limit set, compute a reasonable one to avoid
         * system thrashing caused by exploited qemu.  A 'reasonable
         * limit' has been chosen:
         *     (1 + k) * (domain memory + total video memory) + (32MB for
         *     cache per each disk) + F
         * where k = 0.5 and F = 200MB.  The cache for disks is important as
         * kernel cache on the host side counts into the RSS limit.
2205 2206 2207
         * Moreover, VFIO requires some amount for IO space. Alex Williamson
         * suggested adding 1GiB for IO space just to be safe (some finer
         * tuning might be nice, though).
2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218
         *
         * Technically, the disk cache does not have to be included in
         * RLIMIT_MEMLOCK but it doesn't hurt as it's just an upper limit and
         * it makes this function and its usage simpler.
         */
        mem = def->mem.max_balloon;
        for (i = 0; i < def->nvideos; i++)
            mem += def->videos[i]->vram;
        mem *= 1.5;
        mem += def->ndisks * 32768;
        mem += 204800;
2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230

        for (i = 0; i < def->nhostdevs; i++) {
            virDomainHostdevDefPtr hostdev = def->hostdevs[i];
            if (hostdev->mode == VIR_DOMAIN_HOSTDEV_MODE_SUBSYS &&
                hostdev->source.subsys.type ==
                    VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI &&
                hostdev->source.subsys.u.pci.backend ==
                    VIR_DOMAIN_HOSTDEV_PCI_BACKEND_VFIO) {
                mem += 1024 * 1024;
                break;
            }
        }
2231 2232 2233 2234
    }

    return mem;
}