qemu_block.c 105.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * qemu_block.c: helper functions for QEMU block subsystem
 *
 * 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
 * License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
 */

#include <config.h>

#include "qemu_block.h"
22
#include "qemu_command.h"
23
#include "qemu_domain.h"
24
#include "qemu_alias.h"
25
#include "qemu_security.h"
26 27 28

#include "viralloc.h"
#include "virstring.h"
29
#include "virlog.h"
30 31 32

#define VIR_FROM_THIS VIR_FROM_QEMU

33 34
VIR_LOG_INIT("qemu.qemu_block");

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
/* qemu declares the buffer for node names as a 32 byte array */
static const size_t qemuBlockNodeNameBufSize = 32;

static int
qemuBlockNodeNameValidate(const char *nn)
{
    if (!nn)
        return 0;

    if (strlen(nn) >= qemuBlockNodeNameBufSize) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("node-name '%s' too long for qemu"), nn);
        return -1;
    }

    return 0;
}

53

54
static int
J
Ján Tomko 已提交
55
qemuBlockNamedNodesArrayToHash(size_t pos G_GNUC_UNUSED,
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
                               virJSONValuePtr item,
                               void *opaque)
{
    virHashTablePtr table = opaque;
    const char *name;

    if (!(name = virJSONValueObjectGetString(item, "node-name")))
        return 1;

    if (virHashAddEntry(table, name, item) < 0)
        return -1;

    return 0;
}


72 73 74 75 76 77 78 79 80 81
static void
qemuBlockNodeNameBackingChainDataFree(qemuBlockNodeNameBackingChainDataPtr data)
{
    if (!data)
        return;

    VIR_FREE(data->nodeformat);
    VIR_FREE(data->nodestorage);

    VIR_FREE(data->qemufilename);
82

83 84 85
    VIR_FREE(data->drvformat);
    VIR_FREE(data->drvstorage);

86
    qemuBlockNodeNameBackingChainDataFree(data->backing);
87 88 89 90

    VIR_FREE(data);
}

91
G_DEFINE_AUTOPTR_CLEANUP_FUNC(qemuBlockNodeNameBackingChainData,
92 93
                        qemuBlockNodeNameBackingChainDataFree);

94 95

static void
96
qemuBlockNodeNameBackingChainDataHashEntryFree(void *opaque)
97 98 99 100 101
{
    qemuBlockNodeNameBackingChainDataFree(opaque);
}


102 103 104 105
/* list of driver names of layers that qemu automatically adds into the
 * backing chain */
static const char *qemuBlockDriversBlockjob[] = {
    "mirror_top", "commit_top", NULL };
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

static bool
qemuBlockDriverMatch(const char *drvname,
                     const char **drivers)
{
    while (*drivers) {
        if (STREQ(drvname, *drivers))
            return true;

        drivers++;
    }

    return false;
}


122 123 124 125 126 127
struct qemuBlockNodeNameGetBackingChainData {
    virHashTablePtr nodenamestable;
    virHashTablePtr disks;
};


128
static int
129 130 131
qemuBlockNodeNameGetBackingChainBacking(virJSONValuePtr next,
                                        virHashTablePtr nodenamestable,
                                        qemuBlockNodeNameBackingChainDataPtr *nodenamedata)
132
{
J
Ján Tomko 已提交
133
    g_autoptr(qemuBlockNodeNameBackingChainData) data = NULL;
134 135 136 137 138 139
    qemuBlockNodeNameBackingChainDataPtr backingdata = NULL;
    virJSONValuePtr backing = virJSONValueObjectGetObject(next, "backing");
    virJSONValuePtr parent = virJSONValueObjectGetObject(next, "parent");
    virJSONValuePtr parentnodedata;
    virJSONValuePtr nodedata;
    const char *nodename = virJSONValueObjectGetString(next, "node-name");
140 141
    const char *drvname = NULL;
    const char *drvparent = NULL;
142 143
    const char *parentnodename = NULL;
    const char *filename = NULL;
144

145
    if (!nodename)
146 147
        return 0;

148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
    if ((nodedata = virHashLookup(nodenamestable, nodename)) &&
        (drvname = virJSONValueObjectGetString(nodedata, "drv"))) {

        /* qemu 2.9 reports layers in the backing chain which don't correspond
         * to files. skip them */
        if (qemuBlockDriverMatch(drvname, qemuBlockDriversBlockjob)) {
            if (backing) {
                return qemuBlockNodeNameGetBackingChainBacking(backing,
                                                               nodenamestable,
                                                               nodenamedata);
            } else {
                return 0;
            }
        }
    }
163

164 165
    if (parent &&
        (parentnodename = virJSONValueObjectGetString(parent, "node-name"))) {
166
        if ((parentnodedata = virHashLookup(nodenamestable, parentnodename))) {
167
            filename = virJSONValueObjectGetString(parentnodedata, "file");
168 169
            drvparent = virJSONValueObjectGetString(parentnodedata, "drv");
        }
170
    }
171

172
    if (VIR_ALLOC(data) < 0)
173
        return -1;
174

175 176 177 178 179
    data->nodeformat = g_strdup(nodename);
    data->nodestorage = g_strdup(parentnodename);
    data->qemufilename = g_strdup(filename);
    data->drvformat = g_strdup(drvname);
    data->drvstorage = g_strdup(drvparent);
180

181 182 183
    if (backing &&
        qemuBlockNodeNameGetBackingChainBacking(backing, nodenamestable,
                                                &backingdata) < 0)
184
        return -1;
185

186 187
    data->backing = g_steal_pointer(&backingdata);
    *nodenamedata = g_steal_pointer(&data);
188

189
    return 0;
190 191 192 193
}


static int
J
Ján Tomko 已提交
194
qemuBlockNodeNameGetBackingChainDisk(size_t pos G_GNUC_UNUSED,
195 196
                                     virJSONValuePtr item,
                                     void *opaque)
197
{
198 199
    struct qemuBlockNodeNameGetBackingChainData *data = opaque;
    const char *device = virJSONValueObjectGetString(item, "device");
J
Ján Tomko 已提交
200
    g_autoptr(qemuBlockNodeNameBackingChainData) devicedata = NULL;
201

202 203
    if (qemuBlockNodeNameGetBackingChainBacking(item, data->nodenamestable,
                                                &devicedata) < 0)
204
        return -1;
205

206 207
    if (devicedata &&
        virHashAddEntry(data->disks, device, devicedata) < 0)
208
        return -1;
209

210
    devicedata = NULL;
211
    return 1; /* we don't really want to steal @item */
212 213 214 215 216
}


/**
 * qemuBlockNodeNameGetBackingChain:
217 218
 * @namednodes: JSON array of data returned from 'query-named-block-nodes'
 * @blockstats: JSON array of data returned from 'query-blockstats'
219 220 221 222 223 224 225 226 227 228
 *
 * Tries to reconstruct the backing chain from @json to allow detection of
 * node names that were auto-assigned by qemu. This is a best-effort operation
 * and may not be successful. The returned hash table contains the entries as
 * qemuBlockNodeNameBackingChainDataPtr accessible by the node name. The fields
 * then can be used to recover the full backing chain.
 *
 * Returns a hash table on success and NULL on failure.
 */
virHashTablePtr
229 230
qemuBlockNodeNameGetBackingChain(virJSONValuePtr namednodes,
                                 virJSONValuePtr blockstats)
231 232
{
    struct qemuBlockNodeNameGetBackingChainData data;
J
Ján Tomko 已提交
233 234
    g_autoptr(virHashTable) namednodestable = NULL;
    g_autoptr(virHashTable) disks = NULL;
235 236 237

    memset(&data, 0, sizeof(data));

238
    if (!(namednodestable = virHashCreate(50, virJSONValueHashFree)))
239
        return NULL;
240

241 242 243
    if (virJSONValueArrayForeachSteal(namednodes,
                                      qemuBlockNamedNodesArrayToHash,
                                      namednodestable) < 0)
244
        return NULL;
245

246
    if (!(disks = virHashCreate(50, qemuBlockNodeNameBackingChainDataHashEntryFree)))
247
        return NULL;
248

249 250
    data.nodenamestable = namednodestable;
    data.disks = disks;
251

252 253 254
    if (virJSONValueArrayForeachSteal(blockstats,
                                      qemuBlockNodeNameGetBackingChainDisk,
                                      &data) < 0)
255
        return NULL;
256

J
Ján Tomko 已提交
257
    return g_steal_pointer(&disks);
258
}
259 260 261 262 263 264 265


static void
qemuBlockDiskClearDetectedNodes(virDomainDiskDefPtr disk)
{
    virStorageSourcePtr next = disk->src;

266
    while (virStorageSourceIsBacking(next)) {
267
        VIR_FREE(next->nodeformat);
268
        VIR_FREE(next->nodestorage);
269 270 271 272 273 274 275 276

        next = next->backingStore;
    }
}


static int
qemuBlockDiskDetectNodes(virDomainDiskDefPtr disk,
277
                         virHashTablePtr disktable)
278 279 280
{
    qemuBlockNodeNameBackingChainDataPtr entry = NULL;
    virStorageSourcePtr src = disk->src;
281
    g_autofree char *alias = NULL;
282
    int ret = -1;
283

284 285 286
    /* don't attempt the detection if the top level already has node names */
    if (src->nodeformat || src->nodestorage)
        return 0;
287

288
    if (!(alias = qemuAliasDiskDriveFromDisk(disk)))
289 290 291 292 293 294
        goto cleanup;

    if (!(entry = virHashLookup(disktable, alias))) {
        ret = 0;
        goto cleanup;
    }
295

296
    while (virStorageSourceIsBacking(src) && entry) {
297
        if (src->nodeformat || src->nodestorage) {
298
            if (STRNEQ_NULLABLE(src->nodeformat, entry->nodeformat) ||
299
                STRNEQ_NULLABLE(src->nodestorage, entry->nodestorage))
300
                goto cleanup;
301 302 303

            break;
        } else {
304 305
            src->nodeformat = g_strdup(entry->nodeformat);
            src->nodestorage = g_strdup(entry->nodestorage);
306 307
        }

308
        entry = entry->backing;
309 310 311
        src = src->backingStore;
    }

312
    ret = 0;
313

314 315 316 317 318
 cleanup:
    if (ret < 0)
        qemuBlockDiskClearDetectedNodes(disk);

    return ret;
319 320 321 322 323
}


int
qemuBlockNodeNamesDetect(virQEMUDriverPtr driver,
324 325
                         virDomainObjPtr vm,
                         qemuDomainAsyncJob asyncJob)
326 327
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
J
Ján Tomko 已提交
328 329 330
    g_autoptr(virHashTable) disktable = NULL;
    g_autoptr(virJSONValue) data = NULL;
    g_autoptr(virJSONValue) blockstats = NULL;
331 332 333 334 335 336
    virDomainDiskDefPtr disk;
    size_t i;

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

337 338
    if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
        return -1;
339 340

    data = qemuMonitorQueryNamedBlockNodes(qemuDomainGetMonitor(vm));
341
    blockstats = qemuMonitorQueryBlockstats(qemuDomainGetMonitor(vm));
342

343
    if (qemuDomainObjExitMonitor(driver, vm) < 0 || !data || !blockstats)
344
        return -1;
345

346
    if (!(disktable = qemuBlockNodeNameGetBackingChain(data, blockstats)))
347
        return -1;
348 349 350 351

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

352
        if (qemuBlockDiskDetectNodes(disk, disktable) < 0)
353
            return -1;
354 355
    }

356
    return 0;
357
}
358 359 360 361 362 363 364 365 366 367 368 369 370 371


/**
 * qemuBlockGetNodeData:
 * @data: JSON object returned from query-named-block-nodes
 *
 * Returns a hash table organized by the node name of the JSON value objects of
 * data for given qemu block nodes.
 *
 * Returns a filled virHashTablePtr on success NULL on error.
 */
virHashTablePtr
qemuBlockGetNodeData(virJSONValuePtr data)
{
J
Ján Tomko 已提交
372
    g_autoptr(virHashTable) nodedata = NULL;
373

374
    if (!(nodedata = virHashCreate(50, virJSONValueHashFree)))
375 376
        return NULL;

377
    if (virJSONValueArrayForeachSteal(data,
378
                                      qemuBlockNamedNodesArrayToHash, nodedata) < 0)
379
        return NULL;
380

J
Ján Tomko 已提交
381
    return g_steal_pointer(&nodedata);
382
}
383 384


385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
/**
 * qemuBlockStorageSourceSupportsConcurrentAccess:
 * @src: disk storage source
 *
 * Returns true if the given storage format supports concurrent access from two
 * separate processes.
 */
bool
qemuBlockStorageSourceSupportsConcurrentAccess(virStorageSourcePtr src)
{
    /* no need to check in backing chain since only RAW storage supports this */
    return src->format == VIR_STORAGE_FILE_RAW;
}


400 401 402 403 404 405 406 407 408
/**
 * qemuBlockStorageSourceGetURI:
 * @src: disk storage source
 *
 * Formats a URI from a virStorageSource.
 */
virURIPtr
qemuBlockStorageSourceGetURI(virStorageSourcePtr src)
{
J
Ján Tomko 已提交
409
    g_autoptr(virURI) uri = NULL;
410 411 412 413 414

    if (src->nhosts != 1) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("protocol '%s' accepts only one host"),
                       virStorageNetProtocolTypeToString(src->protocol));
415
        return NULL;
416 417 418
    }

    if (VIR_ALLOC(uri) < 0)
419
        return NULL;
420 421 422 423

    if (src->hosts->transport == VIR_STORAGE_NET_HOST_TRANS_TCP) {
        uri->port = src->hosts->port;

424
        uri->scheme = g_strdup(virStorageNetProtocolTypeToString(src->protocol));
425
    } else {
426 427 428
        uri->scheme = g_strdup_printf("%s+%s",
                                      virStorageNetProtocolTypeToString(src->protocol),
                                      virStorageNetHostTransportTypeToString(src->hosts->transport));
429 430 431 432
    }

    if (src->path) {
        if (src->volume) {
433
            uri->path = g_strdup_printf("/%s/%s", src->volume, src->path);
434
        } else {
435 436
            uri->path = g_strdup_printf("%s%s", src->path[0] == '/' ? "" : "/",
                                        src->path);
437 438 439
        }
    }

440
    uri->server = g_strdup(src->hosts->name);
441

J
Ján Tomko 已提交
442
    return g_steal_pointer(&uri);
443 444 445
}


446 447 448
/**
 * qemuBlockStorageSourceBuildJSONSocketAddress
 * @host: the virStorageNetHostDefPtr definition to build
449
 * @legacy: use old field names/values
450 451 452 453
 *
 * Formats @hosts into a json object conforming to the 'SocketAddress' type
 * in qemu.
 *
454 455 456
 * For compatibility with old approach used in the gluster driver of old qemus
 * use the old spelling for TCP transport and, the path field of the unix socket.
 *
457 458 459 460 461 462
 * Returns a virJSONValuePtr for a single server.
 */
static virJSONValuePtr
qemuBlockStorageSourceBuildJSONSocketAddress(virStorageNetHostDefPtr host,
                                             bool legacy)
{
J
Ján Tomko 已提交
463
    g_autoptr(virJSONValue) server = NULL;
464
    const char *transport;
465
    const char *field;
466
    g_autofree char *port = NULL;
467 468 469 470 471 472 473 474

    switch ((virStorageNetHostTransport) host->transport) {
    case VIR_STORAGE_NET_HOST_TRANS_TCP:
        if (legacy)
            transport = "tcp";
        else
            transport = "inet";

475
        port = g_strdup_printf("%u", host->port);
476 477 478 479 480 481

        if (virJSONValueObjectCreate(&server,
                                     "s:type", transport,
                                     "s:host", host->name,
                                     "s:port", port,
                                     NULL) < 0)
482
            return NULL;
483 484 485
        break;

    case VIR_STORAGE_NET_HOST_TRANS_UNIX:
486 487 488 489 490
        if (legacy)
            field = "s:socket";
        else
            field = "s:path";

491 492
        if (virJSONValueObjectCreate(&server,
                                     "s:type", "unix",
493
                                     field, host->socket,
494
                                     NULL) < 0)
495
            return NULL;
496 497 498 499 500 501 502
        break;

    case VIR_STORAGE_NET_HOST_TRANS_RDMA:
    case VIR_STORAGE_NET_HOST_TRANS_LAST:
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("transport protocol '%s' is not yet supported"),
                       virStorageNetHostTransportTypeToString(host->transport));
503
        return NULL;
504 505
    }

J
Ján Tomko 已提交
506
    return g_steal_pointer(&server);
507 508 509
}


510 511 512 513 514 515 516 517
/**
 * qemuBlockStorageSourceBuildHostsJSONSocketAddress:
 * @src: disk storage source
 * @legacy: use 'tcp' instead of 'inet' for compatibility reasons
 *
 * Formats src->hosts into a json object conforming to the 'SocketAddress' type
 * in qemu.
 */
518
static virJSONValuePtr
519 520
qemuBlockStorageSourceBuildHostsJSONSocketAddress(virStorageSourcePtr src,
                                                  bool legacy)
521
{
J
Ján Tomko 已提交
522 523
    g_autoptr(virJSONValue) servers = NULL;
    g_autoptr(virJSONValue) server = NULL;
524 525 526
    virStorageNetHostDefPtr host;
    size_t i;

527
    servers = virJSONValueNewArray();
528 529 530 531

    for (i = 0; i < src->nhosts; i++) {
        host = src->hosts + i;

532
        if (!(server = qemuBlockStorageSourceBuildJSONSocketAddress(host, legacy)))
533
              return NULL;
534 535

        if (virJSONValueArrayAppend(servers, server) < 0)
536
            return NULL;
537 538 539 540

        server = NULL;
    }

J
Ján Tomko 已提交
541
    return g_steal_pointer(&servers);
542 543 544
}


545 546 547 548 549 550 551 552 553 554 555 556 557
/**
 * qemuBlockStorageSourceBuildJSONInetSocketAddress
 * @host: the virStorageNetHostDefPtr definition to build
 *
 * Formats @hosts into a json object conforming to the 'InetSocketAddress' type
 * in qemu.
 *
 * Returns a virJSONValuePtr for a single server.
 */
static virJSONValuePtr
qemuBlockStorageSourceBuildJSONInetSocketAddress(virStorageNetHostDefPtr host)
{
    virJSONValuePtr ret = NULL;
558
    g_autofree char *port = NULL;
559 560 561 562 563 564 565

    if (host->transport != VIR_STORAGE_NET_HOST_TRANS_TCP) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("only TCP protocol can be converted to InetSocketAddress"));
        return NULL;
    }

566
    port = g_strdup_printf("%u", host->port);
567 568 569 570 571 572 573 574 575 576

    ignore_value(virJSONValueObjectCreate(&ret,
                                          "s:host", host->name,
                                          "s:port", port,
                                          NULL));

    return ret;
}


577 578 579 580 581 582 583 584 585 586
/**
 * qemuBlockStorageSourceBuildHostsJSONInetSocketAddress:
 * @src: disk storage source
 *
 * Formats src->hosts into a json object conforming to the 'InetSocketAddress'
 * type in qemu.
 */
static virJSONValuePtr
qemuBlockStorageSourceBuildHostsJSONInetSocketAddress(virStorageSourcePtr src)
{
J
Ján Tomko 已提交
587 588
    g_autoptr(virJSONValue) servers = NULL;
    g_autoptr(virJSONValue) server = NULL;
589 590 591
    virStorageNetHostDefPtr host;
    size_t i;

592
    servers = virJSONValueNewArray();
593 594 595 596 597

    for (i = 0; i < src->nhosts; i++) {
        host = src->hosts + i;

        if (!(server = qemuBlockStorageSourceBuildJSONInetSocketAddress(host)))
598
            return NULL;
599 600

        if (virJSONValueArrayAppend(servers, server) < 0)
601
            return NULL;
602 603 604 605

        server = NULL;
    }

J
Ján Tomko 已提交
606
    return g_steal_pointer(&servers);
607 608 609
}


610
static virJSONValuePtr
611
qemuBlockStorageSourceGetGlusterProps(virStorageSourcePtr src,
612 613
                                      bool legacy,
                                      bool onlytarget)
614
{
J
Ján Tomko 已提交
615 616
    g_autoptr(virJSONValue) servers = NULL;
    g_autoptr(virJSONValue) props = NULL;
617

618
    if (!(servers = qemuBlockStorageSourceBuildHostsJSONSocketAddress(src, legacy)))
619 620 621 622 623 624 625 626
        return NULL;

     /* { driver:"gluster",
      *   volume:"testvol",
      *   path:"/a.img",
      *   server :[{type:"tcp", host:"1.2.3.4", port:24007},
      *            {type:"unix", socket:"/tmp/glusterd.socket"}, ...]}
      */
627
    if (virJSONValueObjectCreate(&props,
628 629
                                 "s:volume", src->volume,
                                 "s:path", src->path,
630
                                 "a:server", &servers, NULL) < 0)
631
        return NULL;
632

633 634
    if (!onlytarget &&
        src->debug &&
635
        virJSONValueObjectAdd(props, "u:debug", src->debugLevel, NULL) < 0)
636
        return NULL;
637

J
Ján Tomko 已提交
638
    return g_steal_pointer(&props);
639 640 641
}


642
static virJSONValuePtr
643 644
qemuBlockStorageSourceGetVxHSProps(virStorageSourcePtr src,
                                   bool onlytarget)
645
{
J
Ján Tomko 已提交
646
    g_autoptr(virJSONValue) server = NULL;
647
    const char *tlsAlias = src->tlsAlias;
648 649 650 651 652 653 654 655
    virJSONValuePtr ret = NULL;

    if (src->nhosts != 1) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("VxHS protocol accepts only one host"));
        return NULL;
    }

656
    if (!(server = qemuBlockStorageSourceBuildJSONInetSocketAddress(&src->hosts[0])))
657 658
        return NULL;

659 660 661
    if (onlytarget)
        tlsAlias = NULL;

662 663
    /* VxHS disk specification example:
     * { driver:"vxhs",
664
     *   tls-creds:"objvirtio-disk0_tls0",
665 666 667
     *   vdisk-id:"eb90327c-8302-4725-4e85ed4dc251",
     *   server:{type:"tcp", host:"1.2.3.4", port:9999}}
     */
668
    ignore_value(virJSONValueObjectCreate(&ret,
669
                                          "S:tls-creds", tlsAlias,
670 671
                                          "s:vdisk-id", src->path,
                                          "a:server", &server, NULL));
672 673 674 675 676

    return ret;
}


677
static virJSONValuePtr
678 679
qemuBlockStorageSourceGetCURLProps(virStorageSourcePtr src,
                                   bool onlytarget)
680 681 682
{
    qemuDomainStorageSourcePrivatePtr srcPriv = QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(src);
    const char *passwordalias = NULL;
683
    const char *cookiealias = NULL;
684 685
    const char *username = NULL;
    virJSONValuePtr ret = NULL;
J
Ján Tomko 已提交
686
    g_autoptr(virURI) uri = NULL;
687
    g_autofree char *uristr = NULL;
688
    g_autofree char *cookiestr = NULL;
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703

    /**
     * Common options:
     * url, readahead, timeout, username, password-secret, proxy-username,
     * proxy-password-secret
     *
     * Options for http transport:
     * cookie, cookie-secret
     *
     * Options for secure transport (ftps, https):
     * sslverify
     */


    if (!(uri = qemuBlockStorageSourceGetURI(src)))
704
        return NULL;
705 706

    if (!(uristr = virURIFormat(uri)))
707
        return NULL;
708

709 710 711 712 713 714 715 716 717
    if (!onlytarget) {
        if (src->auth) {
            username = src->auth->username;
            passwordalias = srcPriv->secinfo->s.aes.alias;
        }

        if (srcPriv &&
            srcPriv->httpcookie)
            cookiealias = srcPriv->httpcookie->s.aes.alias;
718 719 720
    } else {
        /* format target string along with cookies */
        cookiestr = qemuBlockStorageSourceGetCookieString(src);
721 722 723 724 725 726
    }

    ignore_value(virJSONValueObjectCreate(&ret,
                                          "s:url", uristr,
                                          "S:username", username,
                                          "S:password-secret", passwordalias,
727
                                          "T:sslverify", src->sslverify,
728
                                          "S:cookie", cookiestr,
729
                                          "S:cookie-secret", cookiealias,
730 731
                                          "P:timeout", src->timeout,
                                          "P:readahead", src->readahead,
732 733 734 735 736 737
                                          NULL));

    return ret;
}


738
static virJSONValuePtr
739 740
qemuBlockStorageSourceGetISCSIProps(virStorageSourcePtr src,
                                    bool onlytarget)
741 742
{
    qemuDomainStorageSourcePrivatePtr srcPriv = QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(src);
743
    g_autofree char *target = NULL;
744 745 746
    char *lunStr = NULL;
    char *username = NULL;
    char *objalias = NULL;
747
    g_autofree char *portal = NULL;
748 749 750 751 752 753 754 755 756 757
    unsigned int lun = 0;
    virJSONValuePtr ret = NULL;

    /* { driver:"iscsi",
     *   transport:"tcp",  ("iser" also possible)
     *   portal:"example.com",
     *   target:"iqn.2017-04.com.example:iscsi-disks",
     *   lun:1,
     *   user:"username",
     *   password-secret:"secret-alias",
758
     *   initiator-name:"iqn.2017-04.com.example:client"
759 760 761
     * }
     */

762
    target = g_strdup(src->path);
763 764 765 766 767 768 769 770

    /* Separate the target and lun */
    if ((lunStr = strchr(target, '/'))) {
        *(lunStr++) = '\0';
        if (virStrToLong_ui(lunStr, NULL, 10, &lun) < 0) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("cannot parse target for lunStr '%s'"),
                           target);
771
            return NULL;
772 773 774 775 776
        }
    }

    /* combine host and port into portal */
    if (virSocketAddrNumericFamily(src->hosts[0].name) == AF_INET6) {
777 778
        portal = g_strdup_printf("[%s]:%u", src->hosts[0].name,
                                 src->hosts[0].port);
779
    } else {
780
        portal = g_strdup_printf("%s:%u", src->hosts[0].name, src->hosts[0].port);
781 782
    }

783
    if (!onlytarget && src->auth) {
784 785 786 787 788 789 790 791 792 793 794
        username = src->auth->username;
        objalias = srcPriv->secinfo->s.aes.alias;
    }

    ignore_value(virJSONValueObjectCreate(&ret,
                                          "s:portal", portal,
                                          "s:target", target,
                                          "u:lun", lun,
                                          "s:transport", "tcp",
                                          "S:user", username,
                                          "S:password-secret", objalias,
795
                                          "S:initiator-name", src->initiator.iqn,
796 797 798 799 800
                                          NULL));
    return ret;
}


801
static virJSONValuePtr
802 803
qemuBlockStorageSourceGetNBDProps(virStorageSourcePtr src,
                                  bool onlytarget)
804
{
J
Ján Tomko 已提交
805
    g_autoptr(virJSONValue) serverprops = NULL;
806
    const char *tlsAlias = src->tlsAlias;
807 808 809 810 811 812 813 814 815 816 817 818 819
    virJSONValuePtr ret = NULL;

    if (src->nhosts != 1) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("nbd protocol accepts only one host"));
        return NULL;
    }

    serverprops = qemuBlockStorageSourceBuildJSONSocketAddress(&src->hosts[0],
                                                               false);
    if (!serverprops)
        return NULL;

820 821 822
    if (onlytarget)
        tlsAlias = NULL;

823
    if (virJSONValueObjectCreate(&ret,
824
                                 "a:server", &serverprops,
825
                                 "S:export", src->path,
826
                                 "S:tls-creds", tlsAlias,
827
                                 NULL) < 0)
828
        return NULL;
829

830 831 832 833
    return ret;
}


834
static virJSONValuePtr
835 836
qemuBlockStorageSourceGetRBDProps(virStorageSourcePtr src,
                                  bool onlytarget)
837 838
{
    qemuDomainStorageSourcePrivatePtr srcPriv = QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(src);
J
Ján Tomko 已提交
839
    g_autoptr(virJSONValue) servers = NULL;
840 841
    virJSONValuePtr ret = NULL;
    const char *username = NULL;
J
Ján Tomko 已提交
842 843
    g_autoptr(virJSONValue) authmodes = NULL;
    g_autoptr(virJSONValue) mode = NULL;
844
    const char *keysecret = NULL;
845 846 847 848 849

    if (src->nhosts > 0 &&
        !(servers = qemuBlockStorageSourceBuildHostsJSONInetSocketAddress(src)))
        return NULL;

850
    if (!onlytarget && src->auth) {
851
        username = srcPriv->secinfo->s.aes.username;
852 853
        keysecret = srcPriv->secinfo->s.aes.alias;
        /* the auth modes are modelled after our old command line generator */
854
        authmodes = virJSONValueNewArray();
855 856 857

        if (!(mode = virJSONValueNewString("cephx")) ||
            virJSONValueArrayAppend(authmodes, mode) < 0)
858
            return NULL;
859 860 861 862 863

        mode = NULL;

        if (!(mode = virJSONValueNewString("none")) ||
            virJSONValueArrayAppend(authmodes, mode) < 0)
864
            return NULL;
865 866 867

        mode = NULL;
    }
868

869 870 871 872 873
    if (virJSONValueObjectCreate(&ret,
                                 "s:pool", src->volume,
                                 "s:image", src->path,
                                 "S:snapshot", src->snapshot,
                                 "S:conf", src->configFile,
874
                                 "A:server", &servers,
875
                                 "S:user", username,
876 877
                                 "A:auth-client-required", &authmodes,
                                 "S:key-secret", keysecret,
878
                                 NULL) < 0)
879
        return NULL;
880 881 882 883 884

    return ret;
}


885 886 887
static virJSONValuePtr
qemuBlockStorageSourceGetSheepdogProps(virStorageSourcePtr src)
{
J
Ján Tomko 已提交
888
    g_autoptr(virJSONValue) serverprops = NULL;
889 890 891 892 893 894 895 896 897 898 899 900 901 902
    virJSONValuePtr ret = NULL;

    if (src->nhosts != 1) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("sheepdog protocol accepts only one host"));
        return NULL;
    }

    serverprops = qemuBlockStorageSourceBuildJSONSocketAddress(&src->hosts[0],
                                                               false);
    if (!serverprops)
        return NULL;

    /* libvirt does not support the 'snap-id' and 'tag' properties */
903
    if (virJSONValueObjectCreate(&ret,
904
                                 "a:server", &serverprops,
905 906
                                 "s:vdi", src->path,
                                 NULL) < 0)
907
        return NULL;
908 909 910 911

    return ret;
}

912 913 914 915

static virJSONValuePtr
qemuBlockStorageSourceGetSshProps(virStorageSourcePtr src)
{
J
Ján Tomko 已提交
916
    g_autoptr(virJSONValue) serverprops = NULL;
917 918
    virJSONValuePtr ret = NULL;
    const char *username = NULL;
919
    g_autoptr(virJSONValue) host_key_check = NULL;
920 921 922 923 924 925 926 927 928 929 930 931 932

    if (src->nhosts != 1) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("sheepdog protocol accepts only one host"));
        return NULL;
    }

    serverprops = qemuBlockStorageSourceBuildJSONInetSocketAddress(&src->hosts[0]);
    if (!serverprops)
        return NULL;

    if (src->auth)
        username = src->auth->username;
933 934 935 936 937 938 939 940
    else if (src->ssh_user)
        username = src->ssh_user;

    if (src->ssh_host_key_check_disabled &&
        virJSONValueObjectCreate(&host_key_check,
                                 "s:mode", "none",
                                 NULL) < 0)
        return NULL;
941

942 943
    if (virJSONValueObjectCreate(&ret,
                                 "s:path", src->path,
944
                                 "a:server", &serverprops,
945
                                 "S:user", username,
946
                                 "A:host-key-check", &host_key_check,
947
                                 NULL) < 0)
948
        return NULL;
949

950 951 952 953
    return ret;
}


954
static virJSONValuePtr
955 956
qemuBlockStorageSourceGetFileProps(virStorageSourcePtr src,
                                   bool onlytarget)
957
{
958
    const char *iomode = NULL;
959
    const char *prManagerAlias = NULL;
960 961
    virJSONValuePtr ret = NULL;

962 963 964 965 966 967 968
    if (!onlytarget) {
        if (src->pr)
            prManagerAlias = src->pr->mgralias;

        if (src->iomode != VIR_DOMAIN_DISK_IO_DEFAULT)
            iomode = virDomainDiskIoTypeToString(src->iomode);
    }
969

970
    ignore_value(virJSONValueObjectCreate(&ret,
971 972
                                          "s:filename", src->path,
                                          "S:aio", iomode,
973
                                          "S:pr-manager", prManagerAlias,
974
                                          NULL) < 0);
975 976 977 978
    return ret;
}


979
static virJSONValuePtr
980 981
qemuBlockStorageSourceGetVvfatProps(virStorageSourcePtr src,
                                    bool onlytarget)
982
{
J
Ján Tomko 已提交
983
    g_autoptr(virJSONValue) ret = NULL;
984 985 986 987 988

    /* libvirt currently does not handle the following attributes:
     * '*fat-type': 'int'
     * '*label': 'str'
     */
989 990 991 992 993
    if (virJSONValueObjectCreate(&ret,
                                 "s:driver", "vvfat",
                                 "s:dir", src->path,
                                 "b:floppy", src->floppyimg, NULL) < 0)
        return NULL;
994

995 996 997 998
    if (!onlytarget &&
        virJSONValueObjectAdd(ret, "b:rw", !src->readonly, NULL) < 0)
        return NULL;

J
Ján Tomko 已提交
999
    return g_steal_pointer(&ret);
1000 1001 1002
}


1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
static virJSONValuePtr
qemuBlockStorageSourceGetNVMeProps(virStorageSourcePtr src)
{
    const virStorageSourceNVMeDef *nvme = src->nvme;
    g_autofree char *pciAddr = NULL;
    virJSONValuePtr ret = NULL;

    if (!(pciAddr = virPCIDeviceAddressAsString(&nvme->pciAddr)))
        return NULL;

    ignore_value(virJSONValueObjectCreate(&ret,
                                          "s:driver", "nvme",
                                          "s:device", pciAddr,
1016
                                          "U:namespace", nvme->namespc,
1017 1018 1019 1020 1021
                                          NULL));
    return ret;
}


1022 1023 1024 1025
static int
qemuBlockStorageSourceGetBlockdevGetCacheProps(virStorageSourcePtr src,
                                               virJSONValuePtr props)
{
J
Ján Tomko 已提交
1026
    g_autoptr(virJSONValue) cacheobj = NULL;
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
    bool direct = false;
    bool noflush = false;

    if (src->cachemode == VIR_DOMAIN_DISK_CACHE_DEFAULT)
        return 0;

    if (qemuDomainDiskCachemodeFlags(src->cachemode, NULL, &direct, &noflush) < 0)
        return -1;

    if (virJSONValueObjectCreate(&cacheobj,
                                 "b:direct", direct,
                                 "b:no-flush", noflush,
                                 NULL) < 0)
        return -1;

1042
    if (virJSONValueObjectAppend(props, "cache", cacheobj) < 0)
1043
        return -1;
1044
    cacheobj = NULL;
1045 1046 1047 1048 1049

    return 0;
}


1050 1051 1052
/**
 * qemuBlockStorageSourceGetBackendProps:
 * @src: disk source
1053
 * @legacy: use legacy formatting of attributes (for -drive / old qemus)
1054
 * @onlytarget: omit any data which does not identify the image itself
1055
 * @autoreadonly: use the auto-read-only feature of qemu
1056 1057 1058 1059 1060
 *
 * Creates a JSON object describing the underlying storage or protocol of a
 * storage source. Returns NULL on error and reports an appropriate error message.
 */
virJSONValuePtr
1061
qemuBlockStorageSourceGetBackendProps(virStorageSourcePtr src,
1062
                                      bool legacy,
1063 1064
                                      bool onlytarget,
                                      bool autoreadonly)
1065 1066
{
    int actualType = virStorageSourceGetActualType(src);
J
Ján Tomko 已提交
1067
    g_autoptr(virJSONValue) fileprops = NULL;
1068
    const char *driver = NULL;
1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
    virTristateBool aro = VIR_TRISTATE_BOOL_ABSENT;
    virTristateBool ro = VIR_TRISTATE_BOOL_ABSENT;

    if (autoreadonly) {
        aro = VIR_TRISTATE_BOOL_YES;
    } else {
        if (src->readonly)
            ro = VIR_TRISTATE_BOOL_YES;
        else
            ro = VIR_TRISTATE_BOOL_NO;
    }
1080

1081
    switch ((virStorageType)actualType) {
1082 1083
    case VIR_STORAGE_TYPE_BLOCK:
    case VIR_STORAGE_TYPE_FILE:
1084 1085 1086 1087 1088 1089 1090 1091 1092
        if (virStorageSourceIsBlockLocal(src)) {
            if (src->hostcdrom)
                driver = "host_cdrom";
            else
                driver = "host_device";
        } else {
            driver = "file";
        }

1093
        if (!(fileprops = qemuBlockStorageSourceGetFileProps(src, onlytarget)))
1094 1095
            return NULL;
        break;
1096 1097 1098 1099

    case VIR_STORAGE_TYPE_DIR:
        /* qemu handles directories by exposing them as a device with emulated
         * FAT filesystem */
1100
        if (!(fileprops = qemuBlockStorageSourceGetVvfatProps(src, onlytarget)))
1101 1102
            return NULL;
        break;
1103

1104
    case VIR_STORAGE_TYPE_NVME:
1105 1106 1107 1108 1109
        if (!(fileprops = qemuBlockStorageSourceGetNVMeProps(src)))
            return NULL;
        break;

    case VIR_STORAGE_TYPE_VOLUME:
1110 1111 1112 1113 1114
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("storage source pool '%s' volume '%s' is not translated"),
                       src->srcpool->pool, src->srcpool->volume);
        return NULL;

1115 1116
    case VIR_STORAGE_TYPE_NONE:
    case VIR_STORAGE_TYPE_LAST:
1117
        virReportEnumRangeError(virStorageType, actualType);
1118
        return NULL;
1119 1120

    case VIR_STORAGE_TYPE_NETWORK:
1121 1122
        switch ((virStorageNetProtocol) src->protocol) {
        case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
1123
            driver = "gluster";
1124
            if (!(fileprops = qemuBlockStorageSourceGetGlusterProps(src, legacy, onlytarget)))
1125
                return NULL;
1126 1127
            break;

1128
        case VIR_STORAGE_NET_PROTOCOL_VXHS:
1129
            driver = "vxhs";
1130
            if (!(fileprops = qemuBlockStorageSourceGetVxHSProps(src, onlytarget)))
1131
                return NULL;
1132 1133
            break;

1134 1135 1136 1137 1138
        case VIR_STORAGE_NET_PROTOCOL_HTTP:
        case VIR_STORAGE_NET_PROTOCOL_HTTPS:
        case VIR_STORAGE_NET_PROTOCOL_FTP:
        case VIR_STORAGE_NET_PROTOCOL_FTPS:
        case VIR_STORAGE_NET_PROTOCOL_TFTP:
1139
            driver = virStorageNetProtocolTypeToString(src->protocol);
1140
            if (!(fileprops = qemuBlockStorageSourceGetCURLProps(src, onlytarget)))
1141 1142 1143
                return NULL;
            break;

1144
        case VIR_STORAGE_NET_PROTOCOL_ISCSI:
1145
            driver = "iscsi";
1146
            if (!(fileprops = qemuBlockStorageSourceGetISCSIProps(src, onlytarget)))
1147 1148 1149
                return NULL;
            break;

1150
        case VIR_STORAGE_NET_PROTOCOL_NBD:
1151
            driver = "nbd";
1152
            if (!(fileprops = qemuBlockStorageSourceGetNBDProps(src, onlytarget)))
1153 1154 1155
                return NULL;
            break;

1156
        case VIR_STORAGE_NET_PROTOCOL_RBD:
1157
            driver = "rbd";
1158
            if (!(fileprops = qemuBlockStorageSourceGetRBDProps(src, onlytarget)))
1159 1160 1161
                return NULL;
            break;

1162
        case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
1163
            driver = "sheepdog";
1164 1165 1166 1167
            if (!(fileprops = qemuBlockStorageSourceGetSheepdogProps(src)))
                return NULL;
            break;

1168
        case VIR_STORAGE_NET_PROTOCOL_SSH:
1169
            driver = "ssh";
1170 1171 1172 1173
            if (!(fileprops = qemuBlockStorageSourceGetSshProps(src)))
                return NULL;
            break;

1174 1175
        case VIR_STORAGE_NET_PROTOCOL_NONE:
        case VIR_STORAGE_NET_PROTOCOL_LAST:
1176
            virReportEnumRangeError(virStorageNetProtocol, src->protocol);
1177
            return NULL;
1178 1179 1180 1181
        }
        break;
    }

1182 1183 1184
    if (driver && virJSONValueObjectPrependString(fileprops, "driver", driver) < 0)
        return NULL;

1185 1186 1187
    if (!onlytarget) {
        if (qemuBlockNodeNameValidate(src->nodestorage) < 0 ||
            virJSONValueObjectAdd(fileprops, "S:node-name", src->nodestorage, NULL) < 0)
1188
            return NULL;
1189

1190 1191 1192 1193 1194
        if (!legacy) {
            if (qemuBlockStorageSourceGetBlockdevGetCacheProps(src, fileprops) < 0)
                return NULL;

            if (virJSONValueObjectAdd(fileprops,
1195 1196
                                      "T:read-only", ro,
                                      "T:auto-read-only", aro,
1197 1198 1199 1200
                                      "s:discard", "unmap",
                                      NULL) < 0)
                return NULL;
        }
1201 1202
    }

J
Ján Tomko 已提交
1203
    return g_steal_pointer(&fileprops);
1204
}
1205 1206 1207


static int
1208 1209
qemuBlockStorageSourceGetFormatLUKSProps(virStorageSourcePtr src,
                                         virJSONValuePtr props)
1210 1211
{
    qemuDomainStorageSourcePrivatePtr srcPriv = QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(src);
1212 1213 1214 1215 1216

    if (!srcPriv || !srcPriv->encinfo || !srcPriv->encinfo->s.aes.alias) {
        virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
                       _("missing secret info for 'luks' driver"));
        return -1;
1217 1218 1219
    }

    if (virJSONValueObjectAdd(props,
1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233
                              "s:driver", "luks",
                              "s:key-secret", srcPriv->encinfo->s.aes.alias,
                              NULL) < 0)
        return -1;

    return 0;
}


static int
qemuBlockStorageSourceGetFormatRawProps(virStorageSourcePtr src,
                                        virJSONValuePtr props)
{
    if (virJSONValueObjectAdd(props, "s:driver", "raw", NULL) < 0)
1234 1235
        return -1;

1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
    /* Currently only storage slices are supported. We'll have to calculate
     * the union of the slices here if we don't want to be adding needless
     * 'raw' nodes. */
    if (src->sliceStorage &&
        virJSONValueObjectAdd(props,
                              "U:offset", src->sliceStorage->offset,
                              "U:size", src->sliceStorage->size,
                              NULL) < 0)
        return -1;

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 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
    return 0;
}


static int
qemuBlockStorageSourceGetCryptoProps(virStorageSourcePtr src,
                                     virJSONValuePtr *encprops)
{
    qemuDomainStorageSourcePrivatePtr srcpriv = QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(src);
    const char *encformat = NULL;

    *encprops = NULL;

    /* qemu requires encrypted secrets regardless of encryption method used when
     * passed using the blockdev infrastructure, thus only
     * VIR_DOMAIN_SECRET_INFO_TYPE_AES works here. The correct type needs to be
     * instantiated elsewhere. */
    if (!src->encryption ||
        !srcpriv ||
        !srcpriv->encinfo ||
        srcpriv->encinfo->type != VIR_DOMAIN_SECRET_INFO_TYPE_AES)
        return 0;

    switch ((virStorageEncryptionFormatType) src->encryption->format) {
    case VIR_STORAGE_ENCRYPTION_FORMAT_QCOW:
        encformat = "aes";
        break;

    case VIR_STORAGE_ENCRYPTION_FORMAT_LUKS:
        encformat = "luks";
        break;

    case VIR_STORAGE_ENCRYPTION_FORMAT_DEFAULT:
    case VIR_STORAGE_ENCRYPTION_FORMAT_LAST:
    default:
        virReportEnumRangeError(virStorageEncryptionFormatType,
                                src->encryption->format);
        return -1;
    }

    return virJSONValueObjectCreate(encprops,
                                    "s:format", encformat,
                                    "s:key-secret", srcpriv->encinfo->s.aes.alias,
                                    NULL);
}


static int
qemuBlockStorageSourceGetFormatQcowGenericProps(virStorageSourcePtr src,
                                                const char *format,
                                                virJSONValuePtr props)
{
J
Ján Tomko 已提交
1298
    g_autoptr(virJSONValue) encprops = NULL;
1299 1300 1301 1302 1303 1304 1305

    if (qemuBlockStorageSourceGetCryptoProps(src, &encprops) < 0)
        return -1;

    if (virJSONValueObjectAdd(props,
                              "s:driver", format,
                              "A:encrypt", &encprops, NULL) < 0)
1306
        return -1;
1307

1308
    return 0;
1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
}


static int
qemuBlockStorageSourceGetFormatQcow2Props(virStorageSourcePtr src,
                                          virJSONValuePtr props)
{
    /* currently unhandled qcow2 props:
     *
     * 'lazy-refcounts'
     * 'pass-discard-request'
     * 'pass-discard-snapshot'
     * 'pass-discard-other'
     * 'overlap-check'
     * 'l2-cache-size'
     * 'l2-cache-entry-size'
     * 'refcount-cache-size'
     * 'cache-clean-interval'
     */

    if (qemuBlockStorageSourceGetFormatQcowGenericProps(src, "qcow2", props) < 0)
        return -1;

    return 0;
}


static virJSONValuePtr
qemuBlockStorageSourceGetBlockdevFormatCommonProps(virStorageSourcePtr src)
{
    const char *detectZeroes = NULL;
    const char *discard = NULL;
    int detectZeroesMode = virDomainDiskGetDetectZeroesMode(src->discard,
                                                            src->detect_zeroes);
J
Ján Tomko 已提交
1343
    g_autoptr(virJSONValue) props = NULL;
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366

    if (qemuBlockNodeNameValidate(src->nodeformat) < 0)
        return NULL;

    if (src->discard)
        discard = virDomainDiskDiscardTypeToString(src->discard);

    if (detectZeroesMode)
        detectZeroes = virDomainDiskDetectZeroesTypeToString(detectZeroesMode);

    /* currently unhandled global properties:
     * '*force-share': 'bool'
     */

    if (virJSONValueObjectCreate(&props,
                                 "s:node-name", src->nodeformat,
                                 "b:read-only", src->readonly,
                                 "S:discard", discard,
                                 "S:detect-zeroes", detectZeroes,
                                 NULL) < 0)
        return NULL;

    if (qemuBlockStorageSourceGetBlockdevGetCacheProps(src, props) < 0)
1367
        return NULL;
1368

J
Ján Tomko 已提交
1369
    return g_steal_pointer(&props);
1370 1371 1372 1373 1374 1375 1376
}


static virJSONValuePtr
qemuBlockStorageSourceGetBlockdevFormatProps(virStorageSourcePtr src)
{
    const char *driver = NULL;
J
Ján Tomko 已提交
1377
    g_autoptr(virJSONValue) props = NULL;
1378 1379

    if (!(props = qemuBlockStorageSourceGetBlockdevFormatCommonProps(src)))
1380
        return NULL;
1381 1382 1383 1384 1385 1386

    switch ((virStorageFileFormat) src->format) {
    case VIR_STORAGE_FILE_FAT:
        /* The fat layer is emulated by the storage access layer, so we need to
         * put a raw layer on top */
    case VIR_STORAGE_FILE_RAW:
1387 1388 1389 1390 1391 1392 1393 1394
        if (src->encryption &&
            src->encryption->format == VIR_STORAGE_ENCRYPTION_FORMAT_LUKS) {
            if (qemuBlockStorageSourceGetFormatLUKSProps(src, props) < 0)
                return NULL;
        } else {
            if (qemuBlockStorageSourceGetFormatRawProps(src, props) < 0)
                return NULL;
        }
1395 1396 1397 1398
        break;

    case VIR_STORAGE_FILE_QCOW2:
        if (qemuBlockStorageSourceGetFormatQcow2Props(src, props) < 0)
1399
            return NULL;
1400 1401 1402 1403
        break;

    case VIR_STORAGE_FILE_QCOW:
        if (qemuBlockStorageSourceGetFormatQcowGenericProps(src, "qcow", props) < 0)
1404
            return NULL;
1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
        break;

    /* formats without any special parameters */
    case VIR_STORAGE_FILE_PLOOP:
        driver = "parallels";
        break;

    case VIR_STORAGE_FILE_VHD:
        driver = "vhdx";
        break;

    case VIR_STORAGE_FILE_BOCHS:
    case VIR_STORAGE_FILE_CLOOP:
    case VIR_STORAGE_FILE_DMG:
    case VIR_STORAGE_FILE_VDI:
    case VIR_STORAGE_FILE_VPC:
    case VIR_STORAGE_FILE_QED:
    case VIR_STORAGE_FILE_VMDK:
        driver = virStorageFileFormatTypeToString(src->format);
        break;

    case VIR_STORAGE_FILE_AUTO_SAFE:
    case VIR_STORAGE_FILE_AUTO:
    case VIR_STORAGE_FILE_NONE:
    case VIR_STORAGE_FILE_COW:
    case VIR_STORAGE_FILE_ISO:
    case VIR_STORAGE_FILE_DIR:
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("mishandled storage format '%s'"),
                       virStorageFileFormatTypeToString(src->format));
1435
        return NULL;
1436 1437 1438 1439

    case VIR_STORAGE_FILE_LAST:
    default:
        virReportEnumRangeError(virStorageFileFormat, src->format);
1440
        return NULL;
1441 1442 1443 1444
    }

    if (driver &&
        virJSONValueObjectAdd(props, "s:driver", driver, NULL) < 0)
1445
        return NULL;
1446

J
Ján Tomko 已提交
1447
    return g_steal_pointer(&props);
1448 1449 1450 1451 1452 1453 1454
}


/**
 * qemuBlockStorageSourceGetBlockdevProps:
 *
 * @src: storage source to format
1455
 * @backingStore: a storage source to use as backing of @src
1456 1457 1458 1459 1460 1461
 *
 * Formats @src into a JSON object which can be used with blockdev-add or
 * -blockdev. The formatted object contains both the storage and format layer
 * in nested form including link to the backing chain layer if necessary.
 */
virJSONValuePtr
1462 1463
qemuBlockStorageSourceGetBlockdevProps(virStorageSourcePtr src,
                                       virStorageSourcePtr backingStore)
1464
{
J
Ján Tomko 已提交
1465
    g_autoptr(virJSONValue) props = NULL;
1466 1467
    const char *storagenode = src->nodestorage;

1468
    if (qemuBlockStorageSourceNeedsStorageSliceLayer(src))
1469
        storagenode = src->sliceStorage->nodename;
1470 1471

    if (!(props = qemuBlockStorageSourceGetBlockdevFormatProps(src)))
1472
        return NULL;
1473

1474
    if (virJSONValueObjectAppendString(props, "file", storagenode) < 0)
1475
        return NULL;
1476

1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488
    if (backingStore) {
        if (src->format >= VIR_STORAGE_FILE_BACKING) {
            if (virStorageSourceIsBacking(backingStore)) {
                if (virJSONValueObjectAppendString(props, "backing",
                                                   backingStore->nodeformat) < 0)
                    return NULL;
            } else {
                /* chain is terminated, indicate that no detection should happen
                 * in qemu */
                if (virJSONValueObjectAppendNull(props, "backing") < 0)
                    return NULL;
            }
1489
        } else {
1490 1491 1492 1493
            if (virStorageSourceIsBacking(backingStore)) {
                virReportError(VIR_ERR_CONFIG_UNSUPPORTED,
                               _("storage format '%s' does not support backing store"),
                               virStorageFileFormatTypeToString(src->format));
1494
                return NULL;
1495
            }
1496 1497 1498
        }
    }

J
Ján Tomko 已提交
1499
    return g_steal_pointer(&props);
1500
}
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
static virJSONValuePtr
qemuBlockStorageSourceGetBlockdevStorageSliceProps(virStorageSourcePtr src)
{
    g_autoptr(virJSONValue) props = NULL;

    if (qemuBlockNodeNameValidate(src->sliceStorage->nodename) < 0)
        return NULL;

    if (virJSONValueObjectCreate(&props,
                                 "s:driver", "raw",
                                 "s:node-name", src->sliceStorage->nodename,
                                 "U:offset", src->sliceStorage->offset,
                                 "U:size", src->sliceStorage->size,
                                 "s:file", src->nodestorage,
                                 "b:auto-read-only", true,
                                 "s:discard", "unmap",
                                 NULL) < 0)
        return NULL;

    if (qemuBlockStorageSourceGetBlockdevGetCacheProps(src, props) < 0)
        return NULL;

    return g_steal_pointer(&props);
}


1529 1530 1531 1532 1533 1534 1535
void
qemuBlockStorageSourceAttachDataFree(qemuBlockStorageSourceAttachDataPtr data)
{
    if (!data)
        return;

    virJSONValueFree(data->storageProps);
1536
    virJSONValueFree(data->storageSliceProps);
1537
    virJSONValueFree(data->formatProps);
1538
    virJSONValueFree(data->prmgrProps);
1539
    virJSONValueFree(data->authsecretProps);
1540
    virJSONValueFree(data->httpcookiesecretProps);
1541
    virJSONValueFree(data->encryptsecretProps);
1542 1543
    virJSONValueFree(data->tlsProps);
    VIR_FREE(data->tlsAlias);
1544 1545
    VIR_FREE(data->authsecretAlias);
    VIR_FREE(data->encryptsecretAlias);
1546
    VIR_FREE(data->httpcookiesecretAlias);
1547 1548
    VIR_FREE(data->driveCmd);
    VIR_FREE(data->driveAlias);
1549 1550 1551 1552 1553 1554 1555
    VIR_FREE(data);
}


/**
 * qemuBlockStorageSourceAttachPrepareBlockdev:
 * @src: storage source to prepare data from
1556
 * @backingStore: storage source to use as backing of @src
1557
 * @autoreadonly: use 'auto-read-only' feature of qemu
1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569
 *
 * Creates a qemuBlockStorageSourceAttachData structure containing data to attach
 * @src to a VM using the blockdev-add approach. Note that this function only
 * creates the data for the storage source itself, any other related
 * authentication/encryption/... objects need to be prepared separately.
 *
 * The changes are then applied using qemuBlockStorageSourceAttachApply.
 *
 * Returns the filled data structure on success or NULL on error and a libvirt
 * error is reported
 */
qemuBlockStorageSourceAttachDataPtr
1570
qemuBlockStorageSourceAttachPrepareBlockdev(virStorageSourcePtr src,
1571
                                            virStorageSourcePtr backingStore,
1572
                                            bool autoreadonly)
1573
{
J
Ján Tomko 已提交
1574
    g_autoptr(qemuBlockStorageSourceAttachData) data = NULL;
1575 1576 1577 1578

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

1579
    if (!(data->formatProps = qemuBlockStorageSourceGetBlockdevProps(src,
1580
                                                                     backingStore)) ||
1581 1582 1583
        !(data->storageProps = qemuBlockStorageSourceGetBackendProps(src, false,
                                                                     false,
                                                                     autoreadonly)))
1584
        return NULL;
1585 1586 1587 1588

    data->storageNodeName = src->nodestorage;
    data->formatNodeName = src->nodeformat;

1589
    if (qemuBlockStorageSourceNeedsStorageSliceLayer(src)) {
1590 1591 1592 1593 1594 1595
        if (!(data->storageSliceProps = qemuBlockStorageSourceGetBlockdevStorageSliceProps(src)))
            return NULL;

        data->storageSliceNodeName = src->sliceStorage->nodename;
    }

J
Ján Tomko 已提交
1596
    return g_steal_pointer(&data);
1597 1598 1599
}


1600 1601 1602
static int
qemuBlockStorageSourceAttachApplyStorageDeps(qemuMonitorPtr mon,
                                             qemuBlockStorageSourceAttachDataPtr data)
1603
{
1604 1605 1606 1607
    if (data->prmgrProps &&
        qemuMonitorAddObject(mon, &data->prmgrProps, &data->prmgrAlias) < 0)
        return -1;

1608 1609 1610 1611 1612
    if (data->authsecretProps &&
        qemuMonitorAddObject(mon, &data->authsecretProps,
                             &data->authsecretAlias) < 0)
        return -1;

1613 1614 1615 1616 1617
    if (data->httpcookiesecretProps &&
        qemuMonitorAddObject(mon, &data->httpcookiesecretProps,
                             &data->httpcookiesecretAlias) < 0)
        return -1;

1618 1619 1620 1621
    if (data->tlsProps &&
        qemuMonitorAddObject(mon, &data->tlsProps, &data->tlsAlias) < 0)
        return -1;

1622 1623 1624 1625 1626 1627 1628 1629
    return 0;
}


static int
qemuBlockStorageSourceAttachApplyStorage(qemuMonitorPtr mon,
                                         qemuBlockStorageSourceAttachDataPtr data)
{
1630
    if (data->storageProps) {
1631
        if (qemuMonitorBlockdevAdd(mon, &data->storageProps) < 0)
1632 1633 1634 1635 1636
            return -1;

        data->storageAttached = true;
    }

1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657
    return 0;
}


static int
qemuBlockStorageSourceAttachApplyFormatDeps(qemuMonitorPtr mon,
                                            qemuBlockStorageSourceAttachDataPtr data)
{
    if (data->encryptsecretProps &&
        qemuMonitorAddObject(mon, &data->encryptsecretProps,
                             &data->encryptsecretAlias) < 0)
        return -1;

    return 0;
}


static int
qemuBlockStorageSourceAttachApplyFormat(qemuMonitorPtr mon,
                                        qemuBlockStorageSourceAttachDataPtr data)
{
1658
    if (data->formatProps) {
1659
        if (qemuMonitorBlockdevAdd(mon, &data->formatProps) < 0)
1660 1661 1662 1663 1664
            return -1;

        data->formatAttached = true;
    }

1665 1666 1667 1668
    return 0;
}


1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683
static int
qemuBlockStorageSourceAttachApplyStorageSlice(qemuMonitorPtr mon,
                                              qemuBlockStorageSourceAttachDataPtr data)
{
    if (data->storageSliceProps) {
        if (qemuMonitorBlockdevAdd(mon, &data->storageSliceProps) < 0)
            return -1;

        data->storageSliceAttached = true;
    }

    return 0;
}


1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
/**
 * qemuBlockStorageSourceAttachApply:
 * @mon: monitor object
 * @data: structure holding data of block device to apply
 *
 * Attaches a virStorageSource definition converted to
 * qemuBlockStorageSourceAttachData to a running VM. This function expects being
 * called after the monitor was entered.
 *
 * Returns 0 on success and -1 on error with a libvirt error reported. If an
 * error occurred, changes which were already applied need to be rolled back by
 * calling qemuBlockStorageSourceAttachRollback.
 */
int
qemuBlockStorageSourceAttachApply(qemuMonitorPtr mon,
                                  qemuBlockStorageSourceAttachDataPtr data)
{
    if (qemuBlockStorageSourceAttachApplyStorageDeps(mon, data) < 0 ||
        qemuBlockStorageSourceAttachApplyStorage(mon, data) < 0 ||
1703
        qemuBlockStorageSourceAttachApplyStorageSlice(mon, data) < 0 ||
1704 1705 1706 1707
        qemuBlockStorageSourceAttachApplyFormatDeps(mon, data) < 0 ||
        qemuBlockStorageSourceAttachApplyFormat(mon, data) < 0)
        return -1;

1708 1709 1710 1711 1712 1713 1714
    if (data->driveCmd) {
        if (qemuMonitorAddDrive(mon, data->driveCmd) < 0)
            return -1;

        data->driveAdded = true;
    }

1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
    return 0;
}


/**
 * qemuBlockStorageSourceAttachRollback:
 * @mon: monitor object
 * @data: structure holding data of block device to roll back
 *
 * Attempts a best effort rollback of changes which were made to a running VM by
 * qemuBlockStorageSourceAttachApply. Preserves any existing errors.
 *
 * This function expects being called after the monitor was entered.
 */
void
qemuBlockStorageSourceAttachRollback(qemuMonitorPtr mon,
                                     qemuBlockStorageSourceAttachDataPtr data)
{
    virErrorPtr orig_err;

    virErrorPreserveLast(&orig_err);

1737 1738 1739 1740 1741 1742
    if (data->driveAdded) {
        if (qemuMonitorDriveDel(mon, data->driveAlias) < 0)
            VIR_WARN("Unable to remove drive %s (%s) after failed "
                     "qemuMonitorAddDevice", data->driveAlias, data->driveCmd);
    }

1743 1744 1745
    if (data->formatAttached)
        ignore_value(qemuMonitorBlockdevDel(mon, data->formatNodeName));

1746 1747 1748
    if (data->storageSliceAttached)
        ignore_value(qemuMonitorBlockdevDel(mon, data->storageSliceNodeName));

1749 1750 1751
    if (data->storageAttached)
        ignore_value(qemuMonitorBlockdevDel(mon, data->storageNodeName));

1752
    if (data->prmgrAlias)
1753
        ignore_value(qemuMonitorDelObject(mon, data->prmgrAlias, false));
1754

1755
    if (data->authsecretAlias)
1756
        ignore_value(qemuMonitorDelObject(mon, data->authsecretAlias, false));
1757 1758

    if (data->encryptsecretAlias)
1759
        ignore_value(qemuMonitorDelObject(mon, data->encryptsecretAlias, false));
1760

1761
    if (data->httpcookiesecretAlias)
1762
        ignore_value(qemuMonitorDelObject(mon, data->httpcookiesecretAlias, false));
1763

1764
    if (data->tlsAlias)
1765
        ignore_value(qemuMonitorDelObject(mon, data->tlsAlias, false));
1766

1767

1768 1769 1770 1771
    virErrorRestore(&orig_err);
}


1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784
/**
 * qemuBlockStorageSourceDetachPrepare:
 * @src: disk source structure
 * @driveAlias: Alias of the -drive backend, the pointer is always consumed
 *
 * Prepare qemuBlockStorageSourceAttachDataPtr for detaching a single source
 * from a VM. If @driveAlias is NULL -blockdev is assumed.
 */
qemuBlockStorageSourceAttachDataPtr
qemuBlockStorageSourceDetachPrepare(virStorageSourcePtr src,
                                    char *driveAlias)
{
    qemuDomainStorageSourcePrivatePtr srcpriv = QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(src);
J
Ján Tomko 已提交
1785
    g_autoptr(qemuBlockStorageSourceAttachData) data = NULL;
1786

1787
    data = g_new0(qemuBlockStorageSourceAttachData, 1);
1788 1789

    if (driveAlias) {
1790
        data->driveAlias = g_steal_pointer(&driveAlias);
1791 1792 1793 1794 1795 1796
        data->driveAdded = true;
    } else {
        data->formatNodeName = src->nodeformat;
        data->formatAttached = true;
        data->storageNodeName = src->nodestorage;
        data->storageAttached = true;
1797 1798 1799 1800 1801 1802 1803 1804

        /* 'raw' format doesn't need the extra 'raw' layer when slicing, thus
         * the nodename is NULL */
        if (src->sliceStorage &&
            src->sliceStorage->nodename) {
            data->storageSliceNodeName = src->sliceStorage->nodename;
            data->storageSliceAttached = true;
        }
1805 1806 1807
    }

    if (src->pr &&
1808 1809
        !virStoragePRDefIsManaged(src->pr))
        data->prmgrAlias = g_strdup(src->pr->mgralias);
1810

1811
    data->tlsAlias = g_strdup(src->tlsAlias);
1812 1813

    if (srcpriv) {
1814 1815 1816 1817 1818
        if (srcpriv->secinfo && srcpriv->secinfo->type == VIR_DOMAIN_SECRET_INFO_TYPE_AES)
            data->authsecretAlias = g_strdup(srcpriv->secinfo->s.aes.alias);

        if (srcpriv->encinfo && srcpriv->encinfo->type == VIR_DOMAIN_SECRET_INFO_TYPE_AES)
            data->encryptsecretAlias = g_strdup(srcpriv->encinfo->s.aes.alias);
1819 1820 1821

        if (srcpriv->httpcookie)
            data->httpcookiesecretAlias = g_strdup(srcpriv->httpcookie->s.aes.alias);
1822 1823
    }

1824
    return g_steal_pointer(&data);
1825 1826 1827
}


1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
void
qemuBlockStorageSourceChainDataFree(qemuBlockStorageSourceChainDataPtr data)
{
    size_t i;

    if (!data)
        return;

    for (i = 0; i < data->nsrcdata; i++)
        qemuBlockStorageSourceAttachDataFree(data->srcdata[i]);

    VIR_FREE(data->srcdata);
    VIR_FREE(data);
}


/**
 * qemuBlockStorageSourceChainDetachPrepareBlockdev
 * @src: storage source chain to remove
 *
 * Prepares qemuBlockStorageSourceChainDataPtr for detaching @src and its
 * backingStore if -blockdev was used.
 */
qemuBlockStorageSourceChainDataPtr
qemuBlockStorageSourceChainDetachPrepareBlockdev(virStorageSourcePtr src)
{
J
Ján Tomko 已提交
1854 1855
    g_autoptr(qemuBlockStorageSourceAttachData) backend = NULL;
    g_autoptr(qemuBlockStorageSourceChainData) data = NULL;
1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868
    virStorageSourcePtr n;

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

    for (n = src; virStorageSourceIsBacking(n); n = n->backingStore) {
        if (!(backend = qemuBlockStorageSourceDetachPrepare(n, NULL)))
            return NULL;

        if (VIR_APPEND_ELEMENT(data->srcdata, data->nsrcdata, backend) < 0)
            return NULL;
    }

J
Ján Tomko 已提交
1869
    return g_steal_pointer(&data);
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884
}


/**
 * qemuBlockStorageSourceChainDetachPrepareLegacy
 * @src: storage source chain to remove
 * @driveAlias: Alias of the 'drive' backend (always consumed)
 *
 * Prepares qemuBlockStorageSourceChainDataPtr for detaching @src and its
 * backingStore if -drive was used.
 */
qemuBlockStorageSourceChainDataPtr
qemuBlockStorageSourceChainDetachPrepareDrive(virStorageSourcePtr src,
                                              char *driveAlias)
{
J
Ján Tomko 已提交
1885 1886
    g_autoptr(qemuBlockStorageSourceAttachData) backend = NULL;
    g_autoptr(qemuBlockStorageSourceChainData) data = NULL;
1887 1888 1889 1890 1891 1892 1893 1894 1895 1896

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

    if (!(backend = qemuBlockStorageSourceDetachPrepare(src, driveAlias)))
        return NULL;

    if (VIR_APPEND_ELEMENT(data->srcdata, data->nsrcdata, backend) < 0)
        return NULL;

J
Ján Tomko 已提交
1897
    return g_steal_pointer(&data);
1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944
}


/**
 * qemuBlockStorageSourceChainAttach:
 * @mon: monitor object
 * @data: storage source chain data
 *
 * Attach a storage source including its backing chain and supporting objects.
 * Caller must enter @mon prior calling this function. In case of error this
 * function returns -1. @data is updated so that qemuBlockStorageSourceChainDetach
 * can be used to roll-back the changes.
 */
int
qemuBlockStorageSourceChainAttach(qemuMonitorPtr mon,
                                  qemuBlockStorageSourceChainDataPtr data)
{
    size_t i;

    for (i = data->nsrcdata; i > 0; i--) {
        if (qemuBlockStorageSourceAttachApply(mon, data->srcdata[i - 1]) < 0)
            return -1;
    }

    return 0;
}


/**
 * qemuBlockStorageSourceChainDetach:
 * @mon: monitor object
 * @data: storage source chain data
 *
 * Detach a unused storage source including all its backing chain and related
 * objects described by @data.
 */
void
qemuBlockStorageSourceChainDetach(qemuMonitorPtr mon,
                                  qemuBlockStorageSourceChainDataPtr data)
{
    size_t i;

    for (i = 0; i < data->nsrcdata; i++)
        qemuBlockStorageSourceAttachRollback(mon, data->srcdata[i]);
}


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
/**
 * qemuBlockStorageSourceDetachOneBlockdev:
 * @driver: qemu driver object
 * @vm: domain object
 * @asyncJob: currently running async job
 * @src: storage source to detach
 *
 * Detaches one virStorageSource using blockdev-del. Note that this does not
 * detach any authentication/encryption objects. This function enters the
 * monitor internally.
 */
int
qemuBlockStorageSourceDetachOneBlockdev(virQEMUDriverPtr driver,
                                        virDomainObjPtr vm,
                                        qemuDomainAsyncJob asyncJob,
                                        virStorageSourcePtr src)
{
    int ret;

    if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
        return -1;

    ret = qemuMonitorBlockdevDel(qemuDomainGetMonitor(vm), src->nodeformat);

    if (ret == 0)
        ret = qemuMonitorBlockdevDel(qemuDomainGetMonitor(vm), src->nodestorage);

    if (qemuDomainObjExitMonitor(driver, vm) < 0)
        return -1;

    return ret;
}
1977 1978 1979 1980 1981 1982 1983 1984 1985


int
qemuBlockSnapshotAddLegacy(virJSONValuePtr actions,
                           virDomainDiskDefPtr disk,
                           virStorageSourcePtr newsrc,
                           bool reuse)
{
    const char *format = virStorageFileFormatTypeToString(newsrc->format);
1986 1987
    g_autofree char *device = NULL;
    g_autofree char *source = NULL;
1988 1989

    if (!(device = qemuAliasDiskDriveFromDisk(disk)))
1990
        return -1;
1991 1992

    if (qemuGetDriveSourceString(newsrc, NULL, &source) < 0)
1993
        return -1;
1994

1995
    return qemuMonitorTransactionSnapshotLegacy(actions, device, source, format, reuse);
1996
}
1997 1998


1999 2000 2001 2002 2003
int
qemuBlockSnapshotAddBlockdev(virJSONValuePtr actions,
                             virDomainDiskDefPtr disk,
                             virStorageSourcePtr newsrc)
{
2004 2005 2006
    return qemuMonitorTransactionSnapshotBlockdev(actions,
                                                  disk->src->nodeformat,
                                                  newsrc->nodeformat);
2007 2008 2009
}


2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029
/**
 * qemuBlockStorageGetCopyOnReadProps:
 * @disk: disk with copy-on-read enabled
 *
 * Creates blockdev properties for a disk copy-on-read layer.
 */
virJSONValuePtr
qemuBlockStorageGetCopyOnReadProps(virDomainDiskDefPtr disk)
{
    qemuDomainDiskPrivatePtr priv = QEMU_DOMAIN_DISK_PRIVATE(disk);
    virJSONValuePtr ret = NULL;

    ignore_value(virJSONValueObjectCreate(&ret,
                                          "s:driver", "copy-on-read",
                                          "s:node-name", priv->nodeCopyOnRead,
                                          "s:file", disk->src->nodeformat,
                                          NULL));

    return ret;
}
2030 2031


2032 2033 2034
/**
 * qemuBlockGetBackingStoreString:
 * @src: storage source to get the string for
2035
 * @pretty: pretty-print the JSON (if applicable, used by tests)
2036 2037 2038 2039 2040 2041
 *
 * Formats a string used in the backing store field of a disk image which
 * supports backing store. Non-local storage may result in use of the json:
 * pseudo protocol for any complex configuration.
 */
char *
2042 2043
qemuBlockGetBackingStoreString(virStorageSourcePtr src,
                               bool pretty)
2044 2045
{
    int actualType = virStorageSourceGetActualType(src);
J
Ján Tomko 已提交
2046
    g_autoptr(virJSONValue) backingProps = NULL;
2047 2048
    g_autoptr(virJSONValue) sliceProps = NULL;
    virJSONValuePtr props = NULL;
J
Ján Tomko 已提交
2049
    g_autoptr(virURI) uri = NULL;
2050
    g_autofree char *backingJSON = NULL;
2051

2052
    if (!src->sliceStorage) {
2053 2054 2055 2056 2057
        if (virStorageSourceIsLocalStorage(src)) {
            if (src->type == VIR_STORAGE_TYPE_DIR &&
                src->format == VIR_STORAGE_FILE_FAT)
                return g_strdup_printf("fat:%s", src->path);

2058
            return g_strdup(src->path);
2059
        }
2060

2061 2062 2063
        /* generate simplified URIs for the easy cases */
        if (actualType == VIR_STORAGE_TYPE_NETWORK &&
            src->nhosts == 1 &&
2064 2065 2066 2067 2068 2069
            src->hosts->transport == VIR_STORAGE_NET_HOST_TRANS_TCP &&
            src->timeout == 0 &&
            src->ncookies == 0 &&
            src->sslverify == VIR_TRISTATE_BOOL_ABSENT &&
            src->timeout == 0 &&
            src->readahead == 0) {
2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081

            switch ((virStorageNetProtocol) src->protocol) {
            case VIR_STORAGE_NET_PROTOCOL_NBD:
            case VIR_STORAGE_NET_PROTOCOL_HTTP:
            case VIR_STORAGE_NET_PROTOCOL_HTTPS:
            case VIR_STORAGE_NET_PROTOCOL_FTP:
            case VIR_STORAGE_NET_PROTOCOL_FTPS:
            case VIR_STORAGE_NET_PROTOCOL_TFTP:
            case VIR_STORAGE_NET_PROTOCOL_ISCSI:
            case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
                if (!(uri = qemuBlockStorageSourceGetURI(src)))
                    return NULL;
2082

2083
                return virURIFormat(uri);
2084

2085 2086 2087 2088 2089 2090 2091 2092
            case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
            case VIR_STORAGE_NET_PROTOCOL_RBD:
            case VIR_STORAGE_NET_PROTOCOL_VXHS:
            case VIR_STORAGE_NET_PROTOCOL_SSH:
            case VIR_STORAGE_NET_PROTOCOL_LAST:
            case VIR_STORAGE_NET_PROTOCOL_NONE:
                break;
            }
2093 2094 2095 2096 2097 2098 2099
        }
    }

    /* use json: pseudo protocol otherwise */
    if (!(backingProps = qemuBlockStorageSourceGetBackendProps(src, false, true, false)))
        return NULL;

2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113
    props = backingProps;

    if (src->sliceStorage) {
        if (virJSONValueObjectCreate(&sliceProps,
                                     "s:driver", "raw",
                                     "U:offset", src->sliceStorage->offset,
                                     "U:size", src->sliceStorage->size,
                                     "a:file", &backingProps,
                                     NULL) < 0)
            return NULL;

        props = sliceProps;
    }

2114
    if (!(backingJSON = virJSONValueToString(props, pretty)))
2115 2116
        return NULL;

2117
    return g_strdup_printf("json:{\"file\":%s}", backingJSON);
2118 2119 2120
}


2121 2122 2123 2124 2125
static int
qemuBlockStorageSourceCreateAddBacking(virStorageSourcePtr backing,
                                       virJSONValuePtr props,
                                       bool format)
{
2126
    g_autofree char *backingFileStr = NULL;
2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139
    const char *backingFormatStr = NULL;

    if (!virStorageSourceIsBacking(backing))
        return 0;

    if (format) {
        if (backing->encryption &&
            backing->encryption->format == VIR_STORAGE_ENCRYPTION_FORMAT_LUKS)
            backingFormatStr = "luks";
        else
            backingFormatStr = virStorageFileFormatTypeToString(backing->format);
    }

2140
    if (!(backingFileStr = qemuBlockGetBackingStoreString(backing, false)))
2141
        return -1;
2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158

    if (virJSONValueObjectAdd(props,
                              "S:backing-file", backingFileStr,
                              "S:backing-fmt", backingFormatStr,
                              NULL) < 0)
        return -1;

    return 0;
}


static int
qemuBlockStorageSourceCreateGetFormatPropsGeneric(virStorageSourcePtr src,
                                                  const char *driver,
                                                  virJSONValuePtr *retprops,
                                                  virStorageSourcePtr backing)
{
J
Ján Tomko 已提交
2159
    g_autoptr(virJSONValue) props = NULL;
2160 2161 2162 2163

    if (virJSONValueObjectCreate(&props,
                                 "s:driver", driver,
                                 "s:file", src->nodestorage,
2164
                                 "U:size", src->capacity,
2165 2166 2167 2168 2169 2170 2171
                                 NULL) < 0)
        return -1;

    if (backing &&
        qemuBlockStorageSourceCreateAddBacking(backing, props, false) < 0)
        return -1;

2172
    *retprops = g_steal_pointer(&props);
2173 2174 2175 2176 2177 2178 2179 2180 2181
    return 0;
}


static int
qemuBlockStorageSourceCreateGetEncryptionLUKS(virStorageSourcePtr src,
                                              virJSONValuePtr *luksProps)
{
    qemuDomainStorageSourcePrivatePtr srcpriv = QEMU_DOMAIN_STORAGE_SOURCE_PRIVATE(src);
J
Ján Tomko 已提交
2182
    g_autoptr(virJSONValue) props = NULL;
2183
    g_autofree char *cipheralg = NULL;
2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196
    const char *keysecret = NULL;

    if (srcpriv &&
        srcpriv->encinfo &&
        srcpriv->encinfo->type == VIR_DOMAIN_SECRET_INFO_TYPE_AES)
        keysecret = srcpriv->encinfo->s.aes.alias;

    if (virJSONValueObjectCreate(&props,
                                 "s:key-secret", keysecret,
                                 NULL) < 0)
        return -1;

    if (src->encryption) {
2197 2198 2199 2200 2201
        if (src->encryption->encinfo.cipher_name) {
            cipheralg = g_strdup_printf("%s-%u",
                                        src->encryption->encinfo.cipher_name,
                                        src->encryption->encinfo.cipher_size);
        }
2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212

        if (virJSONValueObjectAdd(props,
                                  "S:cipher-alg", cipheralg,
                                  "S:cipher-mode", src->encryption->encinfo.cipher_mode,
                                  "S:hash-alg", src->encryption->encinfo.cipher_hash,
                                  "S:ivgen-alg", src->encryption->encinfo.ivgen_name,
                                  "S:ivgen-hash-alg", src->encryption->encinfo.ivgen_hash,
                                  NULL) < 0)
            return -1;
    }

2213
    *luksProps = g_steal_pointer(&props);
2214 2215 2216 2217 2218 2219 2220 2221
    return 0;
}


static int
qemuBlockStorageSourceCreateGetFormatPropsLUKS(virStorageSourcePtr src,
                                               virJSONValuePtr *props)
{
J
Ján Tomko 已提交
2222
    g_autoptr(virJSONValue) luksprops = NULL;
2223 2224 2225 2226 2227 2228 2229

    if (qemuBlockStorageSourceCreateGetEncryptionLUKS(src, &luksprops) < 0)
        return -1;

    if (virJSONValueObjectAdd(luksprops,
                              "s:driver", "luks",
                              "s:file", src->nodestorage,
2230
                              "U:size", src->capacity,
2231 2232 2233
                              NULL) < 0)
        return -1;

2234
    *props = g_steal_pointer(&luksprops);
2235 2236 2237 2238 2239 2240 2241 2242
    return 0;
}


static int
qemuBlockStorageSourceCreateAddEncryptionQcow(virStorageSourcePtr src,
                                              virJSONValuePtr props)
{
J
Ján Tomko 已提交
2243
    g_autoptr(virJSONValue) encryptProps = NULL;
2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271

    if (!src->encryption)
        return 0;

    if (src->encryption->format != VIR_STORAGE_ENCRYPTION_FORMAT_LUKS) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("creation of qcow/qcow2 files supports only 'luks' encryption"));
        return -1;
    }

    if (qemuBlockStorageSourceCreateGetEncryptionLUKS(src, &encryptProps) < 0)
        return -1;

    if (virJSONValueObjectAdd(encryptProps, "s:format", "luks", NULL) < 0)
        return -1;

    if (virJSONValueObjectAdd(props, "a:encrypt", &encryptProps, NULL) < 0)
        return -1;

    return 0;
}


static int
qemuBlockStorageSourceCreateGetFormatPropsQcow2(virStorageSourcePtr src,
                                                virStorageSourcePtr backing,
                                                virJSONValuePtr *props)
{
J
Ján Tomko 已提交
2272
    g_autoptr(virJSONValue) qcow2props = NULL;
2273 2274 2275 2276 2277 2278 2279 2280 2281 2282
    const char *qcow2version = NULL;

    if (STREQ_NULLABLE(src->compat, "0.10"))
        qcow2version = "v2";
    else if (STREQ_NULLABLE(src->compat, "1.1"))
        qcow2version = "v3";

    if (virJSONValueObjectCreate(&qcow2props,
                                 "s:driver", "qcow2",
                                 "s:file", src->nodestorage,
2283
                                 "U:size", src->capacity,
2284 2285 2286 2287 2288 2289 2290 2291
                                 "S:version", qcow2version,
                                 NULL) < 0)
        return -1;

    if (qemuBlockStorageSourceCreateAddBacking(backing, qcow2props, true) < 0 ||
        qemuBlockStorageSourceCreateAddEncryptionQcow(src, qcow2props) < 0)
        return -1;

2292
    *props = g_steal_pointer(&qcow2props);
2293 2294 2295 2296 2297 2298 2299 2300 2301
    return 0;
}


static int
qemuBlockStorageSourceCreateGetFormatPropsQcow(virStorageSourcePtr src,
                                               virStorageSourcePtr backing,
                                               virJSONValuePtr *props)
{
J
Ján Tomko 已提交
2302
    g_autoptr(virJSONValue) qcowprops = NULL;
2303 2304 2305 2306

    if (virJSONValueObjectCreate(&qcowprops,
                                 "s:driver", "qcow",
                                 "s:file", src->nodestorage,
2307
                                 "U:size", src->capacity,
2308 2309 2310 2311 2312 2313 2314
                                 NULL) < 0)
        return -1;

    if (qemuBlockStorageSourceCreateAddBacking(backing, qcowprops, false) < 0 ||
        qemuBlockStorageSourceCreateAddEncryptionQcow(src, qcowprops) < 0)
        return -1;

2315
    *props = g_steal_pointer(&qcowprops);
2316 2317 2318 2319 2320 2321 2322 2323 2324
    return 0;
}


static int
qemuBlockStorageSourceCreateGetFormatPropsQed(virStorageSourcePtr src,
                                              virStorageSourcePtr backing,
                                              virJSONValuePtr *props)
{
J
Ján Tomko 已提交
2325
    g_autoptr(virJSONValue) qedprops = NULL;
2326 2327 2328 2329

    if (virJSONValueObjectCreate(&qedprops,
                                 "s:driver", "qed",
                                 "s:file", src->nodestorage,
2330
                                 "U:size", src->capacity,
2331 2332 2333 2334 2335 2336
                                 NULL) < 0)
        return -1;

    if (qemuBlockStorageSourceCreateAddBacking(backing, qedprops, true) < 0)
        return -1;

2337
    *props = g_steal_pointer(&qedprops);
2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420
    return 0;
}


/**
 * qemuBlockStorageSourceCreateGetFormatProps:
 * @src: storage source to format
 * @backing: storage source describing backing image of @src (if necessary)
 * @props: filled with props to be used with 'blockdev-create' to format @src
 *
 * @src must be properly initialized to contain node-names of the protocol layer
 * which should be formatted. @props may be NULL with success returned in which
 * case creation of given storage format is not supported. Note that creation
 * of 'raw' storage is also returns NULL as there is nothing to do.
 */
int
qemuBlockStorageSourceCreateGetFormatProps(virStorageSourcePtr src,
                                           virStorageSourcePtr backing,
                                           virJSONValuePtr *props)
{
    switch ((virStorageFileFormat) src->format) {
    case VIR_STORAGE_FILE_RAW:
        if (!src->encryption ||
            src->encryption->format != VIR_STORAGE_ENCRYPTION_FORMAT_LUKS)
            return 0;

        return qemuBlockStorageSourceCreateGetFormatPropsLUKS(src, props);

    case VIR_STORAGE_FILE_QCOW2:
        return qemuBlockStorageSourceCreateGetFormatPropsQcow2(src, backing, props);

    case VIR_STORAGE_FILE_QCOW:
        return qemuBlockStorageSourceCreateGetFormatPropsQcow(src, backing, props);

    case VIR_STORAGE_FILE_QED:
        return qemuBlockStorageSourceCreateGetFormatPropsQed(src, backing, props);

    case VIR_STORAGE_FILE_VPC:
        return qemuBlockStorageSourceCreateGetFormatPropsGeneric(src, "vpc",
                                                                 props, NULL);

    case VIR_STORAGE_FILE_PLOOP:
        return qemuBlockStorageSourceCreateGetFormatPropsGeneric(src, "parallels",
                                                                 props, NULL);

    case VIR_STORAGE_FILE_VDI:
        return qemuBlockStorageSourceCreateGetFormatPropsGeneric(src, "vdi",
                                                                 props, NULL);

    case VIR_STORAGE_FILE_VHD:
        return qemuBlockStorageSourceCreateGetFormatPropsGeneric(src, "vhdx",
                                                                 props, NULL);

    case VIR_STORAGE_FILE_VMDK:
        return qemuBlockStorageSourceCreateGetFormatPropsGeneric(src, "vmdk",
                                                                 props, backing);

    /* unsupported by qemu / impossible */
    case VIR_STORAGE_FILE_FAT:
    case VIR_STORAGE_FILE_BOCHS:
    case VIR_STORAGE_FILE_CLOOP:
    case VIR_STORAGE_FILE_DMG:
    case VIR_STORAGE_FILE_COW:
    case VIR_STORAGE_FILE_ISO:
    case VIR_STORAGE_FILE_DIR:
        return 0;

    case VIR_STORAGE_FILE_AUTO_SAFE:
    case VIR_STORAGE_FILE_AUTO:
    case VIR_STORAGE_FILE_NONE:
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("mishandled storage format '%s'"),
                       virStorageFileFormatTypeToString(src->format));
        return -1;

    case VIR_STORAGE_FILE_LAST:
    default:
        break;
    }

    virReportEnumRangeError(virStorageFileFormat, src->format);
    return -1;
}
2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436


/**
 * qemuBlockStorageSourceCreateGetStorageProps:
 * @src: storage source to create
 * @props: filled with props to be used with 'blockdev-create' to create @src
 *
 * This function should be used only if @src->type is VIR_STORAGE_TYPE_NETWORK.
 * Note that @props may be NULL if qemu does not support creation storage
 * on given protocol. @src->physical is used as size for the storage.
 */
int
qemuBlockStorageSourceCreateGetStorageProps(virStorageSourcePtr src,
                                            virJSONValuePtr *props)
{
    int actualType = virStorageSourceGetActualType(src);
J
Ján Tomko 已提交
2437
    g_autoptr(virJSONValue) location = NULL;
2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490
    const char *driver = NULL;
    const char *filename = NULL;

    switch ((virStorageType) actualType) {
    case VIR_STORAGE_TYPE_FILE:
        driver = "file";
        filename = src->path;
        break;

    case VIR_STORAGE_TYPE_NETWORK:
        switch ((virStorageNetProtocol) src->protocol) {
        case VIR_STORAGE_NET_PROTOCOL_GLUSTER:
            driver = "gluster";
            if (!(location = qemuBlockStorageSourceGetGlusterProps(src, false, false)))
                return -1;
            break;

        case VIR_STORAGE_NET_PROTOCOL_RBD:
            driver = "rbd";
            if (!(location = qemuBlockStorageSourceGetRBDProps(src, false)))
                return -1;
            break;

        case VIR_STORAGE_NET_PROTOCOL_SHEEPDOG:
            driver = "sheepdog";
            if (!(location = qemuBlockStorageSourceGetSheepdogProps(src)))
                return -1;
            break;

        case VIR_STORAGE_NET_PROTOCOL_SSH:
            driver = "ssh";
            if (!(location = qemuBlockStorageSourceGetSshProps(src)))
                return -1;
            break;

            /* unsupported/impossible */
        case VIR_STORAGE_NET_PROTOCOL_NBD:
        case VIR_STORAGE_NET_PROTOCOL_ISCSI:
        case VIR_STORAGE_NET_PROTOCOL_VXHS:
        case VIR_STORAGE_NET_PROTOCOL_HTTP:
        case VIR_STORAGE_NET_PROTOCOL_HTTPS:
        case VIR_STORAGE_NET_PROTOCOL_FTP:
        case VIR_STORAGE_NET_PROTOCOL_FTPS:
        case VIR_STORAGE_NET_PROTOCOL_TFTP:
        case VIR_STORAGE_NET_PROTOCOL_NONE:
        case VIR_STORAGE_NET_PROTOCOL_LAST:
            return 0;
        }
        break;

    case VIR_STORAGE_TYPE_BLOCK:
    case VIR_STORAGE_TYPE_DIR:
    case VIR_STORAGE_TYPE_VOLUME:
2491
    case VIR_STORAGE_TYPE_NVME:
2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503
        return 0;

    case VIR_STORAGE_TYPE_NONE:
    case VIR_STORAGE_TYPE_LAST:
         virReportEnumRangeError(virStorageType, actualType);
         return -1;
    }

    if (virJSONValueObjectCreate(props,
                                 "s:driver", driver,
                                 "S:filename", filename,
                                 "A:location", &location,
2504
                                 "U:size", src->physical,
2505 2506 2507 2508 2509
                                 NULL) < 0)
        return -1;

    return 0;
}
2510 2511 2512 2513 2514 2515 2516 2517 2518 2519


static int
qemuBlockStorageSourceCreateGeneric(virDomainObjPtr vm,
                                    virJSONValuePtr createProps,
                                    virStorageSourcePtr src,
                                    virStorageSourcePtr chain,
                                    bool storageCreate,
                                    qemuDomainAsyncJob asyncJob)
{
J
Ján Tomko 已提交
2520
    g_autoptr(virJSONValue) props = createProps;
2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541
    qemuDomainObjPrivatePtr priv = vm->privateData;
    qemuBlockJobDataPtr job = NULL;
    int ret = -1;
    int rc;

    if (!(job = qemuBlockJobNewCreate(vm, src, chain, storageCreate)))
        return -1;

    qemuBlockJobSyncBegin(job);

    if (qemuDomainObjEnterMonitorAsync(priv->driver, vm, asyncJob) < 0)
        goto cleanup;

    rc = qemuMonitorBlockdevCreate(priv->mon, job->name, props);
    props = NULL;

    if (qemuDomainObjExitMonitor(priv->driver, vm) < 0 || rc < 0)
        goto cleanup;

    qemuBlockJobStarted(job, vm);

2542
    qemuBlockJobUpdate(vm, job, asyncJob);
2543 2544 2545
    while (qemuBlockJobIsRunning(job))  {
        if (virDomainObjWait(vm) < 0)
            goto cleanup;
2546
        qemuBlockJobUpdate(vm, job, asyncJob);
2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575
    }

    if (job->state == QEMU_BLOCKJOB_STATE_FAILED ||
        job->state == QEMU_BLOCKJOB_STATE_CANCELLED) {
        if (job->state == QEMU_BLOCKJOB_STATE_CANCELLED && !job->errmsg) {
            virReportError(VIR_ERR_OPERATION_FAILED, "%s",
                           _("blockdev-create job was cancelled"));
        } else {
            virReportError(VIR_ERR_OPERATION_FAILED,
                           _("failed to format image: '%s'"), NULLSTR(job->errmsg));
        }
        goto cleanup;
    }

    ret = 0;

 cleanup:
    qemuBlockJobStartupFinalize(vm, job);
    return ret;
}


static int
qemuBlockStorageSourceCreateStorage(virDomainObjPtr vm,
                                    virStorageSourcePtr src,
                                    virStorageSourcePtr chain,
                                    qemuDomainAsyncJob asyncJob)
{
    int actualType = virStorageSourceGetActualType(src);
J
Ján Tomko 已提交
2576
    g_autoptr(virJSONValue) createstorageprops = NULL;
2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611
    int ret;

    /* We create local files directly to be able to apply security labels
     * properly. This is enough for formats which store the capacity of the image
     * in the metadata as they will grow. We must create a correctly sized
     * image for 'raw' and 'luks' though as the image size influences the
     * capacity.
     */
    if (actualType != VIR_STORAGE_TYPE_NETWORK &&
        !(actualType == VIR_STORAGE_TYPE_FILE && src->format == VIR_STORAGE_FILE_RAW))
        return 0;

    if (qemuBlockStorageSourceCreateGetStorageProps(src, &createstorageprops) < 0)
        return -1;

    if (!createstorageprops) {
        /* we can always try opening it to see whether it was existing */
        return 0;
    }

    ret = qemuBlockStorageSourceCreateGeneric(vm, createstorageprops, src, chain,
                                              true, asyncJob);
    createstorageprops = NULL;

    return ret;
}


static int
qemuBlockStorageSourceCreateFormat(virDomainObjPtr vm,
                                   virStorageSourcePtr src,
                                   virStorageSourcePtr backingStore,
                                   virStorageSourcePtr chain,
                                   qemuDomainAsyncJob asyncJob)
{
J
Ján Tomko 已提交
2612
    g_autoptr(virJSONValue) createformatprops = NULL;
2613 2614
    int ret;

2615 2616
    if (src->format == VIR_STORAGE_FILE_RAW &&
        !src->encryption)
2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665
        return 0;

    if (qemuBlockStorageSourceCreateGetFormatProps(src, backingStore,
                                                   &createformatprops) < 0)
        return -1;

    if (!createformatprops) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
                       _("can't create storage format '%s'"),
                       virStorageFileFormatTypeToString(src->format));
        return -1;
    }

    ret = qemuBlockStorageSourceCreateGeneric(vm, createformatprops, src, chain,
                                              false, asyncJob);
    createformatprops = NULL;

    return ret;
}


/**
 * qemuBlockStorageSourceCreate:
 * @vm: domain object
 * @src: storage source definition to create
 * @backingStore: backingStore of the new image (used only in image metadata)
 * @chain: backing chain to unplug in case of a long-running job failure
 * @data: qemuBlockStorageSourceAttachData for @src so that it can be attached
 * @asyncJob: qemu asynchronous job type
 *
 * Creates and formats a storage volume according to @src and attaches it to @vm.
 * @data must provide attachment data as if @src was existing. @src is attached
 * after successful return of this function. If libvirtd is restarted during
 * the create job @chain is unplugged, otherwise it's left for the caller.
 * If @backingStore is provided, the new image will refer to it as its backing
 * store.
 */
int
qemuBlockStorageSourceCreate(virDomainObjPtr vm,
                             virStorageSourcePtr src,
                             virStorageSourcePtr backingStore,
                             virStorageSourcePtr chain,
                             qemuBlockStorageSourceAttachDataPtr data,
                             qemuDomainAsyncJob asyncJob)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    int ret = -1;
    int rc;

2666 2667 2668 2669 2670 2671
    if (src->sliceStorage) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("creation of images with slice type='storage' is not supported"));
        return -1;
    }

2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722
    if (qemuDomainObjEnterMonitorAsync(priv->driver, vm, asyncJob) < 0)
        goto cleanup;

    rc = qemuBlockStorageSourceAttachApplyStorageDeps(priv->mon, data);

    if (qemuDomainObjExitMonitor(priv->driver, vm) < 0 || rc < 0)
        goto cleanup;

    if (qemuBlockStorageSourceCreateStorage(vm, src, chain, asyncJob) < 0)
        goto cleanup;

    if (qemuDomainObjEnterMonitorAsync(priv->driver, vm, asyncJob) < 0)
        goto cleanup;

    rc = qemuBlockStorageSourceAttachApplyStorage(priv->mon, data);

    if (rc == 0)
        rc = qemuBlockStorageSourceAttachApplyFormatDeps(priv->mon, data);

    if (qemuDomainObjExitMonitor(priv->driver, vm) < 0 || rc < 0)
        goto cleanup;

    if (qemuBlockStorageSourceCreateFormat(vm, src, backingStore, chain,
                                           asyncJob) < 0)
        goto cleanup;

    if (qemuDomainObjEnterMonitorAsync(priv->driver, vm, asyncJob) < 0)
        goto cleanup;

    rc = qemuBlockStorageSourceAttachApplyFormat(priv->mon, data);

    if (qemuDomainObjExitMonitor(priv->driver, vm) < 0 || rc < 0)
        goto cleanup;

    ret = 0;

 cleanup:
    if (ret < 0 &&
        virDomainObjIsActive(vm) &&
        qemuDomainObjEnterMonitorAsync(priv->driver, vm, asyncJob) == 0) {

        qemuBlockStorageSourceAttachRollback(priv->mon, data);
        ignore_value(qemuDomainObjExitMonitor(priv->driver, vm));
    }

    return ret;
}


/**
 * qemuBlockStorageSourceCreateDetectSize:
2723
 * @blockNamedNodeData: hash table filled with qemuBlockNamedNodeData
2724 2725 2726 2727 2728 2729 2730 2731 2732
 * @src: storage source to update size/capacity on
 * @templ: storage source template
 *
 * When creating a storage source via blockdev-create we need to know the size
 * and capacity of the original volume (e.g. when creating a snapshot or copy).
 * This function updates @src's 'capacity' and 'physical' attributes according
 * to the detected sizes from @templ.
 */
int
2733
qemuBlockStorageSourceCreateDetectSize(virHashTablePtr blockNamedNodeData,
2734
                                       virStorageSourcePtr src,
2735
                                       virStorageSourcePtr templ)
2736
{
2737
    qemuBlockNamedNodeDataPtr entry;
2738

2739
    if (!(entry = virHashLookup(blockNamedNodeData, templ->nodeformat))) {
2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("failed to update capacity data for block node '%s'"),
                       templ->nodeformat);
        return -1;
    }

    if (src->format == VIR_STORAGE_FILE_RAW) {
        src->physical = entry->capacity;
    } else {
        src->physical = entry->physical;
    }

    src->capacity = entry->capacity;

    return 0;
}
2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779


int
qemuBlockRemoveImageMetadata(virQEMUDriverPtr driver,
                             virDomainObjPtr vm,
                             const char *diskTarget,
                             virStorageSourcePtr src)
{
    virStorageSourcePtr n;
    int ret = 0;

    for (n = src; virStorageSourceIsBacking(n); n = n->backingStore) {
        if (qemuSecurityMoveImageMetadata(driver, vm, n, NULL) < 0) {
            VIR_WARN("Unable to remove disk metadata on "
                     "vm %s from %s (disk target %s)",
                     vm->def->name,
                     NULLSTR(n->path),
                     diskTarget);
            ret = -1;
        }
    }

    return ret;
}
2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811


/**
 * qemuBlockNamedNodeDataGetBitmapByName:
 * @blockNamedNodeData: hash table returned by qemuMonitorBlockGetNamedNodeData
 * @src: disk source to find the bitmap for
 * @bitmap: name of the bitmap to find
 *
 * Looks up a bitmap named @bitmap of the @src image.
 */
qemuBlockNamedNodeDataBitmapPtr
qemuBlockNamedNodeDataGetBitmapByName(virHashTablePtr blockNamedNodeData,
                                      virStorageSourcePtr src,
                                      const char *bitmap)
{
    qemuBlockNamedNodeDataPtr nodedata;
    size_t i;

    if (!(nodedata = virHashLookup(blockNamedNodeData, src->nodeformat)))
        return NULL;

    for (i = 0; i < nodedata->nbitmaps; i++) {
        qemuBlockNamedNodeDataBitmapPtr bitmapdata = nodedata->bitmaps[i];

        if (STRNEQ(bitmapdata->name, bitmap))
            continue;

        return bitmapdata;
    }

    return NULL;
}
2812 2813 2814 2815 2816 2817 2818 2819 2820


virHashTablePtr
qemuBlockGetNamedNodeData(virDomainObjPtr vm,
                          qemuDomainAsyncJob asyncJob)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virQEMUDriverPtr driver = priv->driver;
    g_autoptr(virHashTable) blockNamedNodeData = NULL;
2821 2822
    bool supports_flat = virQEMUCapsGet(priv->qemuCaps,
                                        QEMU_CAPS_QMP_QUERY_NAMED_BLOCK_NODES_FLAT);
2823 2824 2825 2826

    if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
        return NULL;

2827
    blockNamedNodeData = qemuMonitorBlockGetNamedNodeData(priv->mon, supports_flat);
2828 2829 2830 2831 2832 2833

    if (qemuDomainObjExitMonitor(driver, vm) < 0 || !blockNamedNodeData)
        return NULL;

    return g_steal_pointer(&blockNamedNodeData);
}
2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874


/**
 * qemuBlockBitmapChainIsValid:
 *
 * Validates that the backing chain of @src contains proper consistent bitmap
 * data for a chain of bitmaps named @bitmapname.
 *
 * A valid chain:
 * 1) bitmaps of same name are in a consecutive subset of images without gap
 * 2) don't have any inconsistent bitmaps
 */
bool
qemuBlockBitmapChainIsValid(virStorageSourcePtr src,
                            const char *bitmapname,
                            virHashTablePtr blockNamedNodeData)
{
    qemuBlockNamedNodeDataBitmapPtr bitmap;
    virStorageSourcePtr n;
    bool chain_started = false;
    bool chain_ended = false;

    for (n = src; n; n = n->backingStore) {
        if (!(bitmap = qemuBlockNamedNodeDataGetBitmapByName(blockNamedNodeData, n, bitmapname))) {
            if (chain_started)
                chain_ended = true;

            continue;
        }

        if (chain_ended)
            return false;

        chain_started = true;

        if (bitmap->inconsistent)
            return false;
    }

    return chain_started;
}
2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012


struct qemuBlockBitmapsHandleBlockcopyConcatData {
    virHashTablePtr bitmaps_merge;
    virJSONValuePtr actions;
    const char *mirrornodeformat;
    bool has_bitmaps;
};


static int
qemuBlockBitmapsHandleBlockcopyConcatActions(void *payload,
                                             const void *name,
                                             void *opaque)
{
    struct qemuBlockBitmapsHandleBlockcopyConcatData *data = opaque;
    virJSONValuePtr createactions = payload;
    const char *bitmapname = name;
    g_autoptr(virJSONValue) mergebitmaps = virHashSteal(data->bitmaps_merge, bitmapname);

    data->has_bitmaps = true;

    virJSONValueArrayConcat(data->actions, createactions);

    if (qemuMonitorTransactionBitmapMerge(data->actions,
                                          data->mirrornodeformat,
                                          bitmapname,
                                          &mergebitmaps) < 0)
        return -1;

    return 0;
}


/**
 * qemuBlockBitmapsHandleBlockcopy:
 * @src: disk source
 * @mirror: mirror source
 * @blockNamedNodeData: hash table containing data about bitmaps
 * @shallow: whether shallow copy is requested
 * @actions: filled with arguments for a 'transaction' command
 *
 * Calculates which bitmaps to copy and merge during a virDomainBlockCopy job.
 * This is designed to be called when the job is already synchronised as it
 * may result in active bitmaps being created.
 *
 * Returns 0 on success and -1 on error. If @actions is NULL when 0 is returned
 * there are no actions to perform for the given job.
 */
int
qemuBlockBitmapsHandleBlockcopy(virStorageSourcePtr src,
                                virStorageSourcePtr mirror,
                                virHashTablePtr blockNamedNodeData,
                                bool shallow,
                                virJSONValuePtr *actions)
{
    g_autoptr(virHashTable) bitmaps = virHashNew(virJSONValueHashFree);
    g_autoptr(virHashTable) bitmaps_merge = virHashNew(virJSONValueHashFree);
    g_autoptr(virHashTable) bitmaps_skip = virHashNew(NULL);
    g_autoptr(virJSONValue) tmpactions = virJSONValueNewArray();
    qemuBlockNamedNodeDataPtr entry;
    virStorageSourcePtr n;
    size_t i;
    struct qemuBlockBitmapsHandleBlockcopyConcatData data = { .bitmaps_merge = bitmaps_merge,
                                                              .actions = tmpactions,
                                                              .mirrornodeformat = mirror->nodeformat,
                                                              .has_bitmaps = false, };

    for (n = src; n; n = n->backingStore) {
        if (!(entry = virHashLookup(blockNamedNodeData, n->nodeformat)))
            continue;

        for (i = 0; i < entry->nbitmaps; i++) {
            qemuBlockNamedNodeDataBitmapPtr bitmap = entry->bitmaps[i];
            virJSONValuePtr bitmap_merge;

            if (virHashHasEntry(bitmaps_skip, bitmap->name))
                continue;

            if (!(bitmap_merge = virHashLookup(bitmaps_merge, bitmap->name))) {
                g_autoptr(virJSONValue) tmp = NULL;
                bool disabled = !bitmap->recording;

                /* disable any non top-layer bitmaps */
                if (n != src)
                    disabled = true;

                if (!bitmap->persistent ||
                    !(qemuBlockBitmapChainIsValid(n, bitmap->name,
                                                  blockNamedNodeData))) {
                    ignore_value(virHashAddEntry(bitmaps_skip, bitmap->name, NULL));
                    continue;
                }

                /* prepare the data for adding the bitmap to the mirror */
                tmp = virJSONValueNewArray();

                if (qemuMonitorTransactionBitmapAdd(tmp,
                                                    mirror->nodeformat,
                                                    bitmap->name,
                                                    true,
                                                    disabled,
                                                    bitmap->granularity) < 0)
                    return -1;

                if (virHashAddEntry(bitmaps, bitmap->name, tmp) < 0)
                    return -1;

                tmp = NULL;

                /* prepare array for merging all the bitmaps from the original chain */
                tmp = virJSONValueNewArray();

                if (virHashAddEntry(bitmaps_merge, bitmap->name, tmp) < 0)
                    return -1;

                bitmap_merge = g_steal_pointer(&tmp);
            }

            if (qemuMonitorTransactionBitmapMergeSourceAddBitmap(bitmap_merge,
                                                                 n->nodeformat,
                                                                 bitmap->name) < 0)
                return -1;
        }

        if (shallow)
            break;
    }

    if (virHashForEach(bitmaps, qemuBlockBitmapsHandleBlockcopyConcatActions,
                       &data) < 0)
        return -1;

    if (data.has_bitmaps)
        *actions = g_steal_pointer(&tmpactions);

    return 0;
}
3013 3014


3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045
/**
 * @topsrc: virStorageSource representing 'top' of the job
 * @basesrc: virStorageSource representing 'base' of the job
 * @blockNamedNodeData: hash table containing data about bitmaps
 * @actions: filled with arguments for a 'transaction' command
 * @disabledBitmapsBase: filled with a list of bitmap names which must be disabled
 *
 * Prepares data for correctly handling bitmaps during the start of a commit
 * job. The bitmaps in the 'base' image must be disabled, so that the writes
 * done by the blockjob don't dirty the enabled bitmaps.
 *
 * @actions and @disabledBitmapsBase are untouched if no bitmaps need
 * to be disabled.
 */
int
qemuBlockBitmapsHandleCommitStart(virStorageSourcePtr topsrc,
                                  virStorageSourcePtr basesrc,
                                  virHashTablePtr blockNamedNodeData,
                                  virJSONValuePtr *actions,
                                  char ***disabledBitmapsBase)
{
    g_autoptr(virJSONValue) act = virJSONValueNewArray();
    VIR_AUTOSTRINGLIST bitmaplist = NULL;
    size_t curbitmapstr = 0;
    qemuBlockNamedNodeDataPtr entry;
    bool disable_bitmaps = false;
    size_t i;

    if (!(entry = virHashLookup(blockNamedNodeData, basesrc->nodeformat)))
        return 0;

3046
    bitmaplist = g_new0(char *, entry->nbitmaps + 1);
3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201

    for (i = 0; i < entry->nbitmaps; i++) {
        qemuBlockNamedNodeDataBitmapPtr bitmap = entry->bitmaps[i];

        if (!bitmap->recording || bitmap->inconsistent ||
            !qemuBlockBitmapChainIsValid(topsrc, bitmap->name, blockNamedNodeData))
            continue;

        disable_bitmaps = true;

        if (qemuMonitorTransactionBitmapDisable(act, basesrc->nodeformat,
                                                bitmap->name) < 0)
            return -1;

        bitmaplist[curbitmapstr++] = g_strdup(bitmap->name);
    }

    if (disable_bitmaps) {
        *actions = g_steal_pointer(&act);
        *disabledBitmapsBase = g_steal_pointer(&bitmaplist);
    }

    return 0;
}


struct qemuBlockBitmapsHandleCommitData {
    bool skip;
    bool create;
    bool enable;
    const char *basenode;
    virJSONValuePtr merge;
    unsigned long long granularity;
    bool persistent;
};


static void
qemuBlockBitmapsHandleCommitDataFree(void *opaque)
{
    struct qemuBlockBitmapsHandleCommitData *data = opaque;

    virJSONValueFree(data->merge);
    g_free(data);
}


static int
qemuBlockBitmapsHandleCommitFinishIterate(void *payload,
                                          const void *entryname,
                                          void *opaque)
{
    struct qemuBlockBitmapsHandleCommitData *data = payload;
    const char *bitmapname = entryname;
    virJSONValuePtr actions = opaque;

    if (data->skip)
        return 0;

    if (data->create) {
        if (qemuMonitorTransactionBitmapAdd(actions, data->basenode, bitmapname,
                                            data->persistent, !data->enable,
                                            data->granularity) < 0)
            return -1;
    } else {
        if (data->enable &&
            qemuMonitorTransactionBitmapEnable(actions, data->basenode, bitmapname) < 0)
            return -1;
    }

    if (data->merge &&
        qemuMonitorTransactionBitmapMerge(actions, data->basenode, bitmapname,
                                          &data->merge) < 0)
        return -1;

    return 0;
}


/**
 * @topsrc: virStorageSource representing 'top' of the job
 * @basesrc: virStorageSource representing 'base' of the job
 * @blockNamedNodeData: hash table containing data about bitmaps
 * @actions: filled with arguments for a 'transaction' command
 * @disabledBitmapsBase: bitmap names which were disabled
 *
 * Calculates the necessary bitmap merges/additions/enablements to properly
 * handle commit of images from 'top' into 'base'. The necessary operations
 * in the form of arguments of the 'transaction' command are filled into
 * 'actions' if there is anything to do. Otherwise NULL is returned.
 */
int
qemuBlockBitmapsHandleCommitFinish(virStorageSourcePtr topsrc,
                                   virStorageSourcePtr basesrc,
                                   virHashTablePtr blockNamedNodeData,
                                   virJSONValuePtr *actions,
                                   char **disabledBitmapsBase)
{
    g_autoptr(virJSONValue) act = virJSONValueNewArray();
    virStorageSourcePtr n;
    qemuBlockNamedNodeDataPtr entry;
    g_autoptr(virHashTable) commitdata = NULL;
    struct qemuBlockBitmapsHandleCommitData *bitmapdata;
    size_t i;

    commitdata = virHashNew(qemuBlockBitmapsHandleCommitDataFree);

    for (n = topsrc; n != basesrc; n = n->backingStore) {
        if (!(entry = virHashLookup(blockNamedNodeData, n->nodeformat)))
            continue;

        for (i = 0; i < entry->nbitmaps; i++) {
            qemuBlockNamedNodeDataBitmapPtr bitmap = entry->bitmaps[i];

            if (!(bitmapdata = virHashLookup(commitdata, bitmap->name))) {
                bitmapdata = g_new0(struct qemuBlockBitmapsHandleCommitData, 1);

                /* we must mirror the state of the topmost bitmap and merge
                 * everything else */
                bitmapdata->create = true;
                bitmapdata->enable = bitmap->recording;
                bitmapdata->basenode = basesrc->nodeformat;
                bitmapdata->merge = virJSONValueNewArray();
                bitmapdata->granularity = bitmap->granularity;
                bitmapdata->persistent = bitmap->persistent;

                if (virHashAddEntry(commitdata, bitmap->name, bitmapdata) < 0) {
                    qemuBlockBitmapsHandleCommitDataFree(bitmapdata);
                    return -1;
                }
            }

            if (bitmap->inconsistent ||
                !qemuBlockBitmapChainIsValid(topsrc, bitmap->name, blockNamedNodeData))
                bitmapdata->skip = true;

            if (qemuMonitorTransactionBitmapMergeSourceAddBitmap(bitmapdata->merge,
                                                                 n->nodeformat,
                                                                 bitmap->name) < 0)
                return -1;
        }
    }

    if ((entry = virHashLookup(blockNamedNodeData, basesrc->nodeformat))) {
        /* note that all bitmaps in 'base' were disabled when commit was started */
        for (i = 0; i < entry->nbitmaps; i++) {
            qemuBlockNamedNodeDataBitmapPtr bitmap = entry->bitmaps[i];

            if ((bitmapdata = virHashLookup(commitdata, bitmap->name))) {
                bitmapdata->create = false;
            } else {
                if (disabledBitmapsBase) {
                    char **disabledbitmaps;

                    for (disabledbitmaps = disabledBitmapsBase; *disabledbitmaps; disabledbitmaps++) {
3202
                        if (STREQ(*disabledbitmaps, bitmap->name)) {
3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233
                            bitmapdata = g_new0(struct qemuBlockBitmapsHandleCommitData, 1);

                            bitmapdata->create = false;
                            bitmapdata->enable = true;
                            bitmapdata->basenode = basesrc->nodeformat;
                            bitmapdata->granularity = bitmap->granularity;
                            bitmapdata->persistent = bitmap->persistent;

                            if (virHashAddEntry(commitdata, bitmap->name, bitmapdata) < 0) {
                                qemuBlockBitmapsHandleCommitDataFree(bitmapdata);
                                return -1;
                            }

                            break;
                        }
                    }
                }
            }
        }
    }

    if (virHashForEach(commitdata, qemuBlockBitmapsHandleCommitFinishIterate, act) < 0)
        return -1;

    if (virJSONValueArraySize(act) > 0)
        *actions = g_steal_pointer(&act);

    return 0;
}


3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332
/**
 * qemuBlockReopenFormat:
 * @vm: domain object
 * @src: storage source to reopen
 * @asyncJob: qemu async job type
 *
 * Invokes the 'blockdev-reopen' command on the format layer of @src. This means
 * that @src must be already properly configured for the desired outcome. The
 * nodenames of @src are used to identify the specific image in qemu.
 */
static int
qemuBlockReopenFormat(virDomainObjPtr vm,
                      virStorageSourcePtr src,
                      qemuDomainAsyncJob asyncJob)
{
    qemuDomainObjPrivatePtr priv = vm->privateData;
    virQEMUDriverPtr driver = priv->driver;
    g_autoptr(virJSONValue) reopenprops = NULL;
    int rc;

    /* If we are lacking the object here, qemu might have opened an image with
     * a node name unknown to us */
    if (!src->backingStore) {
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
                       _("can't reopen image with unknown presence of backing store"));
        return -1;
    }

    if (!(reopenprops = qemuBlockStorageSourceGetBlockdevProps(src, src->backingStore)))
        return -1;

    if (qemuDomainObjEnterMonitorAsync(driver, vm, asyncJob) < 0)
        return -1;

    rc = qemuMonitorBlockdevReopen(priv->mon, &reopenprops);

    if (qemuDomainObjExitMonitor(driver, vm) < 0 || rc < 0)
        return -1;

    return 0;
}


/**
 * qemuBlockReopenReadWrite:
 * @vm: domain object
 * @src: storage source to reopen
 * @asyncJob: qemu async job type
 *
 * Wrapper that reopens @src read-write. We currently depend on qemu
 * reopening the storage with 'auto-read-only' enabled for us.
 * After successful reopen @src's 'readonly' flag is modified. Does nothing
 * if @src is already read-write.
 */
int
qemuBlockReopenReadWrite(virDomainObjPtr vm,
                         virStorageSourcePtr src,
                         qemuDomainAsyncJob asyncJob)
{
    if (!src->readonly)
        return 0;

    src->readonly = false;
    if (qemuBlockReopenFormat(vm, src, asyncJob) < 0) {
        src->readonly = true;
        return -1;
    }

    return 0;
}


/**
 * qemuBlockReopenReadOnly:
 * @vm: domain object
 * @src: storage source to reopen
 * @asyncJob: qemu async job type
 *
 * Wrapper that reopens @src read-only. We currently depend on qemu
 * reopening the storage with 'auto-read-only' enabled for us.
 * After successful reopen @src's 'readonly' flag is modified. Does nothing
 * if @src is already read-only.
 */
int
qemuBlockReopenReadOnly(virDomainObjPtr vm,
                         virStorageSourcePtr src,
                         qemuDomainAsyncJob asyncJob)
{
    if (src->readonly)
        return 0;

    src->readonly = true;
    if (qemuBlockReopenFormat(vm, src, asyncJob) < 0) {
        src->readonly = false;
        return -1;
    }

    return 0;
}
3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349

/**
 * qemuBlockStorageSourceNeedSliceLayer:
 * @src: source to inspect
 *
 * Returns true if @src requires an extra 'raw' layer for handling of the storage
 * slice.
 */
bool
qemuBlockStorageSourceNeedsStorageSliceLayer(const virStorageSource *src)
{
    if (!src->sliceStorage)
        return false;

    if (src->format != VIR_STORAGE_FILE_RAW)
        return true;

3350 3351 3352 3353
    if (src->encryption &&
        src->encryption->format == VIR_STORAGE_ENCRYPTION_FORMAT_LUKS)
        return true;

3354 3355
    return false;
}
3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380


/**
 * qemuBlockStorageSourceGetCookieString:
 * @src: storage source
 *
 * Returns a properly formatted string representing cookies of @src in format
 * accepted by qemu.
 */
char *
qemuBlockStorageSourceGetCookieString(virStorageSourcePtr src)
{
    virBuffer buf = VIR_BUFFER_INITIALIZER;
    size_t i;

    for (i = 0; i < src->ncookies; i++) {
        virStorageNetCookieDefPtr cookie = src->cookies[i];

        virBufferAsprintf(&buf, "%s=%s; ", cookie->name, cookie->value);
    }

    virBufferTrim(&buf, "; ");

    return virBufferContentAndReset(&buf);
}