virstoragefile.c 43.3 KB
Newer Older
1
/*
2
 * virstoragefile.c: file utility functions for FS storage backend
3
 *
4
 * Copyright (C) 2007-2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * Copyright (C) 2007-2008 Daniel P. Berrange
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>
25
#include "virstoragefile.h"
26

27
#include <sys/stat.h>
28
#include <unistd.h>
29
#include <fcntl.h>
30
#include <stdlib.h>
31
#include "viralloc.h"
32
#include "virerror.h"
33
#include "virlog.h"
E
Eric Blake 已提交
34
#include "virfile.h"
35
#include "c-ctype.h"
36
#include "vircommand.h"
37
#include "virhash.h"
E
Eric Blake 已提交
38
#include "virendian.h"
39 40
#include "virstring.h"
#include "virutil.h"
41 42 43
#if HAVE_SYS_SYSCALL_H
# include <sys/syscall.h>
#endif
44 45 46

#define VIR_FROM_THIS VIR_FROM_STORAGE

47 48
VIR_LOG_INIT("util.storagefile");

E
Eric Blake 已提交
49
VIR_ENUM_IMPL(virStorage, VIR_STORAGE_TYPE_LAST,
50
              "none",
E
Eric Blake 已提交
51
              "file",
52
              "block",
E
Eric Blake 已提交
53 54 55 56
              "dir",
              "network",
              "volume")

57 58
VIR_ENUM_IMPL(virStorageFileFormat,
              VIR_STORAGE_FILE_LAST,
E
Eric Blake 已提交
59
              "none",
60
              "raw", "dir", "bochs",
61 62 63
              "cloop", "dmg", "iso",
              "vpc", "vdi",
              /* Not direct file formats, but used for various drivers */
64
              "fat", "vhd", "ploop",
65 66
              /* Formats with backing file below here */
              "cow", "qcow", "qcow2", "qed", "vmdk")
67

68 69 70 71 72
VIR_ENUM_IMPL(virStorageFileFeature,
              VIR_STORAGE_FILE_FEATURE_LAST,
              "lazy_refcounts",
              )

73
VIR_ENUM_IMPL(virStorageNetProtocol, VIR_STORAGE_NET_PROTOCOL_LAST,
74
              "none",
75 76 77 78 79 80 81 82 83 84
              "nbd",
              "rbd",
              "sheepdog",
              "gluster",
              "iscsi",
              "http",
              "https",
              "ftp",
              "ftps",
              "tftp")
85 86 87 88 89 90

VIR_ENUM_IMPL(virStorageNetHostTransport, VIR_STORAGE_NET_HOST_TRANS_LAST,
              "tcp",
              "unix",
              "rdma")

91 92 93 94 95
VIR_ENUM_IMPL(virStorageSourcePoolMode,
              VIR_STORAGE_SOURCE_POOL_MODE_LAST,
              "default",
              "host",
              "direct")
96

97 98 99 100 101 102 103 104 105 106 107
enum lv_endian {
    LV_LITTLE_ENDIAN = 1, /* 1234 */
    LV_BIG_ENDIAN         /* 4321 */
};

enum {
    BACKING_STORE_OK,
    BACKING_STORE_INVALID,
    BACKING_STORE_ERROR,
};

108 109
#define FILE_TYPE_VERSIONS_LAST 2

110 111
/* Either 'magic' or 'extension' *must* be provided */
struct FileTypeInfo {
112
    int magicOffset;    /* Byte offset of the magic */
113 114 115 116 117 118
    const char *magic;  /* Optional string of file magic
                         * to check at head of file */
    const char *extension; /* Optional file extension to check */
    enum lv_endian endian; /* Endianness of file format */
    int versionOffset;    /* Byte offset from start of file
                           * where we find version number,
119 120
                           * -1 to always fail the version test,
                           * -2 to always pass the version test */
121 122
    int versionNumbers[FILE_TYPE_VERSIONS_LAST];
                          /* Version numbers to validate. Zeroes are ignored. */
123 124 125 126 127 128 129 130 131 132 133
    int sizeOffset;       /* Byte offset from start of file
                           * where we find capacity info,
                           * -1 to use st_size as capacity */
    int sizeBytes;        /* Number of bytes for size field */
    int sizeMultiplier;   /* A scaling factor if size is not in bytes */
                          /* Store a COW base image path (possibly relative),
                           * or NULL if there is no COW base image, to RES;
                           * return BACKING_STORE_* */
    int qcowCryptOffset;  /* Byte offset from start of file
                           * where to find encryption mode,
                           * -1 if encryption is not used */
134
    int (*getBackingStore)(char **res, int *format,
E
Eric Blake 已提交
135
                           const char *buf, size_t buf_size);
136
    int (*getFeatures)(virBitmapPtr *features, int format,
E
Eric Blake 已提交
137
                       char *buf, ssize_t len);
138 139
};

140
static int cowGetBackingStore(char **, int *,
E
Eric Blake 已提交
141
                              const char *, size_t);
142
static int qcow1GetBackingStore(char **, int *,
E
Eric Blake 已提交
143
                                const char *, size_t);
144
static int qcow2GetBackingStore(char **, int *,
E
Eric Blake 已提交
145
                                const char *, size_t);
146
static int qcow2GetFeatures(virBitmapPtr *features, int format,
E
Eric Blake 已提交
147
                            char *buf, ssize_t len);
148
static int vmdk4GetBackingStore(char **, int *,
E
Eric Blake 已提交
149
                                const char *, size_t);
150
static int
E
Eric Blake 已提交
151
qedGetBackingStore(char **, int *, const char *, size_t);
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166

#define QCOWX_HDR_VERSION (4)
#define QCOWX_HDR_BACKING_FILE_OFFSET (QCOWX_HDR_VERSION+4)
#define QCOWX_HDR_BACKING_FILE_SIZE (QCOWX_HDR_BACKING_FILE_OFFSET+8)
#define QCOWX_HDR_IMAGE_SIZE (QCOWX_HDR_BACKING_FILE_SIZE+4+4)

#define QCOW1_HDR_CRYPT (QCOWX_HDR_IMAGE_SIZE+8+1+1)
#define QCOW2_HDR_CRYPT (QCOWX_HDR_IMAGE_SIZE+8)

#define QCOW1_HDR_TOTAL_SIZE (QCOW1_HDR_CRYPT+4+8)
#define QCOW2_HDR_TOTAL_SIZE (QCOW2_HDR_CRYPT+4+4+8+8+4+4+8)

#define QCOW2_HDR_EXTENSION_END 0
#define QCOW2_HDR_EXTENSION_BACKING_FORMAT 0xE2792ACA

167 168 169 170 171 172 173
#define QCOW2v3_HDR_FEATURES_INCOMPATIBLE (QCOW2_HDR_TOTAL_SIZE)
#define QCOW2v3_HDR_FEATURES_COMPATIBLE (QCOW2v3_HDR_FEATURES_INCOMPATIBLE+8)
#define QCOW2v3_HDR_FEATURES_AUTOCLEAR (QCOW2v3_HDR_FEATURES_COMPATIBLE+8)

/* The location of the header size [4 bytes] */
#define QCOW2v3_HDR_SIZE       (QCOW2_HDR_TOTAL_SIZE+8+8+8+4)

174
#define QED_HDR_FEATURES_OFFSET (4+4+4+4)
175 176
#define QED_HDR_IMAGE_SIZE (QED_HDR_FEATURES_OFFSET+8+8+8+8)
#define QED_HDR_BACKING_FILE_OFFSET (QED_HDR_IMAGE_SIZE+8)
177 178 179
#define QED_HDR_BACKING_FILE_SIZE (QED_HDR_BACKING_FILE_OFFSET+4)
#define QED_F_BACKING_FILE 0x01
#define QED_F_BACKING_FORMAT_NO_PROBE 0x04
A
Adam Litke 已提交
180

181 182

static struct FileTypeInfo const fileTypeInfo[] = {
183
    [VIR_STORAGE_FILE_NONE] = { 0, NULL, NULL, LV_LITTLE_ENDIAN,
184
                                -1, {0}, 0, 0, 0, 0, NULL, NULL },
185
    [VIR_STORAGE_FILE_RAW] = { 0, NULL, NULL, LV_LITTLE_ENDIAN,
186
                               -1, {0}, 0, 0, 0, 0, NULL, NULL },
187
    [VIR_STORAGE_FILE_DIR] = { 0, NULL, NULL, LV_LITTLE_ENDIAN,
188
                               -1, {0}, 0, 0, 0, 0, NULL, NULL },
189
    [VIR_STORAGE_FILE_BOCHS] = {
190 191
        /*"Bochs Virtual HD Image", */ /* Untested */
        0, NULL, NULL,
192 193
        LV_LITTLE_ENDIAN, 64, {0x20000},
        32+16+16+4+4+4+4+4, 8, 1, -1, NULL, NULL
194 195
    },
    [VIR_STORAGE_FILE_CLOOP] = {
196 197 198 199 200
        /* #!/bin/sh
           #V2.0 Format
           modprobe cloop file=$0 && mount -r -t iso9660 /dev/cloop $1
        */ /* Untested */
        0, NULL, NULL,
201 202
        LV_LITTLE_ENDIAN, -1, {0},
        -1, 0, 0, -1, NULL, NULL
203 204
    },
    [VIR_STORAGE_FILE_DMG] = {
205 206 207 208
        /* XXX QEMU says there's no magic for dmg,
         * /usr/share/misc/magic lists double magic (both offsets
         * would have to match) but then disables that check. */
        0, NULL, ".dmg",
209 210
        0, -1, {0},
        -1, 0, 0, -1, NULL, NULL
211 212
    },
    [VIR_STORAGE_FILE_ISO] = {
213
        32769, "CD001", ".iso",
214 215
        LV_LITTLE_ENDIAN, -2, {0},
        -1, 0, 0, -1, NULL, NULL
216
    },
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
    [VIR_STORAGE_FILE_VPC] = {
        0, "conectix", NULL,
        LV_BIG_ENDIAN, 12, {0x10000},
        8 + 4 + 4 + 8 + 4 + 4 + 2 + 2 + 4, 8, 1, -1, NULL, NULL
    },
    /* TODO: add getBackingStore function */
    [VIR_STORAGE_FILE_VDI] = {
        64, "\x7f\x10\xda\xbe", ".vdi",
        LV_LITTLE_ENDIAN, 68, {0x00010001},
        64 + 5 * 4 + 256 + 7 * 4, 8, 1, -1, NULL, NULL},

    /* Not direct file formats, but used for various drivers */
    [VIR_STORAGE_FILE_FAT] = { 0, NULL, NULL, LV_LITTLE_ENDIAN,
                               -1, {0}, 0, 0, 0, 0, NULL, NULL },
    [VIR_STORAGE_FILE_VHD] = { 0, NULL, NULL, LV_LITTLE_ENDIAN,
                               -1, {0}, 0, 0, 0, 0, NULL, NULL },
233 234
    [VIR_STORAGE_FILE_PLOOP] = { 0, NULL, NULL, LV_LITTLE_ENDIAN,
                               -1, {0}, 0, 0, 0, 0, NULL, NULL },
235 236 237 238 239 240 241

    /* All formats with a backing store probe below here */
    [VIR_STORAGE_FILE_COW] = {
        0, "OOOM", NULL,
        LV_BIG_ENDIAN, 4, {2},
        4+4+1024+4, 8, 1, -1, cowGetBackingStore, NULL
    },
242
    [VIR_STORAGE_FILE_QCOW] = {
243
        0, "QFI", NULL,
244 245
        LV_BIG_ENDIAN, 4, {1},
        QCOWX_HDR_IMAGE_SIZE, 8, 1, QCOW1_HDR_CRYPT, qcow1GetBackingStore, NULL
246 247
    },
    [VIR_STORAGE_FILE_QCOW2] = {
248
        0, "QFI", NULL,
249
        LV_BIG_ENDIAN, 4, {2, 3},
250
        QCOWX_HDR_IMAGE_SIZE, 8, 1, QCOW2_HDR_CRYPT, qcow2GetBackingStore,
251
        qcow2GetFeatures
252
    },
A
Adam Litke 已提交
253 254
    [VIR_STORAGE_FILE_QED] = {
        /* http://wiki.qemu.org/Features/QED */
255
        0, "QED", NULL,
256 257
        LV_LITTLE_ENDIAN, -2, {0},
        QED_HDR_IMAGE_SIZE, 8, 1, -1, qedGetBackingStore, NULL
A
Adam Litke 已提交
258
    },
259
    [VIR_STORAGE_FILE_VMDK] = {
260
        0, "KDMV", NULL,
261
        LV_LITTLE_ENDIAN, 4, {1, 2},
262
        4+4+4, 8, 512, -1, vmdk4GetBackingStore, NULL
263
    },
264
};
265
verify(ARRAY_CARDINALITY(fileTypeInfo) == VIR_STORAGE_FILE_LAST);
266

267 268 269 270 271 272 273 274 275 276 277 278 279 280
/* qcow2 compatible features in the order they appear on-disk */
enum qcow2CompatibleFeature {
    QCOW2_COMPATIBLE_FEATURE_LAZY_REFCOUNTS = 0,

    QCOW2_COMPATIBLE_FEATURE_LAST
};

/* conversion to virStorageFileFeature */
static const int qcow2CompatibleFeatureArray[] = {
    VIR_STORAGE_FILE_FEATURE_LAZY_REFCOUNTS,
};
verify(ARRAY_CARDINALITY(qcow2CompatibleFeatureArray) ==
       QCOW2_COMPATIBLE_FEATURE_LAST);

281
static int
282
cowGetBackingStore(char **res,
283
                   int *format,
E
Eric Blake 已提交
284
                   const char *buf,
285 286 287 288
                   size_t buf_size)
{
#define COW_FILENAME_MAXLEN 1024
    *res = NULL;
289 290
    *format = VIR_STORAGE_FILE_AUTO;

291 292
    if (buf_size < 4+4+ COW_FILENAME_MAXLEN)
        return BACKING_STORE_INVALID;
E
Eric Blake 已提交
293 294
    if (buf[4+4] == '\0') { /* cow_header_v2.backing_file[0] */
        *format = VIR_STORAGE_FILE_NONE;
295
        return BACKING_STORE_OK;
E
Eric Blake 已提交
296
    }
297

298
    if (VIR_STRNDUP(*res, (const char*)buf + 4 + 4, COW_FILENAME_MAXLEN) < 0)
299 300 301 302
        return BACKING_STORE_ERROR;
    return BACKING_STORE_OK;
}

303 304 305

static int
qcow2GetBackingStoreFormat(int *format,
E
Eric Blake 已提交
306
                           const char *buf,
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
                           size_t buf_size,
                           size_t extension_start,
                           size_t extension_end)
{
    size_t offset = extension_start;

    /*
     * The extensions take format of
     *
     * int32: magic
     * int32: length
     * byte[length]: payload
     *
     * Unknown extensions can be ignored by skipping
     * over "length" bytes in the data stream.
     */
    while (offset < (buf_size-8) &&
           offset < (extension_end-8)) {
E
Eric Blake 已提交
325 326
        unsigned int magic = virReadBufInt32BE(buf + offset);
        unsigned int len = virReadBufInt32BE(buf + offset + 4);
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344

        offset += 8;

        if ((offset + len) < offset)
            break;

        if ((offset + len) > buf_size)
            break;

        switch (magic) {
        case QCOW2_HDR_EXTENSION_END:
            goto done;

        case QCOW2_HDR_EXTENSION_BACKING_FORMAT:
            if (buf[offset+len] != '\0')
                break;
            *format = virStorageFileFormatTypeFromString(
                ((const char *)buf)+offset);
E
Eric Blake 已提交
345 346
            if (*format <= VIR_STORAGE_FILE_NONE)
                return -1;
347 348 349 350 351
        }

        offset += len;
    }

352
 done:
353 354 355 356 357

    return 0;
}


358
static int
359
qcowXGetBackingStore(char **res,
360
                     int *format,
E
Eric Blake 已提交
361
                     const char *buf,
362 363
                     size_t buf_size,
                     bool isQCow2)
364 365
{
    unsigned long long offset;
366
    unsigned int size;
367 368
    unsigned long long start;
    int version;
369 370

    *res = NULL;
371 372 373 374
    if (format)
        *format = VIR_STORAGE_FILE_AUTO;

    if (buf_size < QCOWX_HDR_BACKING_FILE_OFFSET+8+4)
375
        return BACKING_STORE_INVALID;
E
Eric Blake 已提交
376
    offset = virReadBufInt64BE(buf + QCOWX_HDR_BACKING_FILE_OFFSET);
377 378
    if (offset > buf_size)
        return BACKING_STORE_INVALID;
E
Eric Blake 已提交
379
    size = virReadBufInt32BE(buf + QCOWX_HDR_BACKING_FILE_SIZE);
E
Eric Blake 已提交
380 381 382
    if (size == 0) {
        if (format)
            *format = VIR_STORAGE_FILE_NONE;
383
        return BACKING_STORE_OK;
E
Eric Blake 已提交
384
    }
385 386 387 388
    if (offset + size > buf_size || offset + size < offset)
        return BACKING_STORE_INVALID;
    if (size + 1 == 0)
        return BACKING_STORE_INVALID;
389
    if (VIR_ALLOC_N(*res, size + 1) < 0)
390 391 392
        return BACKING_STORE_ERROR;
    memcpy(*res, buf + offset, size);
    (*res)[size] = '\0';
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416

    /*
     * Traditionally QCow2 files had a layout of
     *
     * [header]
     * [backingStoreName]
     *
     * Although the backingStoreName typically followed
     * the header immediately, this was not required by
     * the format. By specifying a higher byte offset for
     * the backing file offset in the header, it was
     * possible to leave space between the header and
     * start of backingStore.
     *
     * This hack is now used to store extensions to the
     * qcow2 format:
     *
     * [header]
     * [extensions]
     * [backingStoreName]
     *
     * Thus the file region to search for extensions is
     * between the end of the header (QCOW2_HDR_TOTAL_SIZE)
     * and the start of the backingStoreName (offset)
417 418 419
     *
     * for qcow2 v3 images, the length of the header
     * is stored at QCOW2v3_HDR_SIZE
420
     */
421 422 423 424 425 426 427 428 429 430
    if (isQCow2 && format) {
        version = virReadBufInt32BE(buf + QCOWX_HDR_VERSION);
        if (version == 2)
            start = QCOW2_HDR_TOTAL_SIZE;
        else
            start = virReadBufInt32BE(buf + QCOW2v3_HDR_SIZE);
        if (qcow2GetBackingStoreFormat(format, buf, buf_size,
                                       start, offset) < 0)
            return BACKING_STORE_INVALID;
    }
431

432 433 434 435
    return BACKING_STORE_OK;
}


436 437 438
static int
qcow1GetBackingStore(char **res,
                     int *format,
E
Eric Blake 已提交
439
                     const char *buf,
440 441
                     size_t buf_size)
{
E
Eric Blake 已提交
442 443
    int ret;

444 445 446
    /* QCow1 doesn't have the extensions capability
     * used to store backing format */
    *format = VIR_STORAGE_FILE_AUTO;
E
Eric Blake 已提交
447 448 449 450
    ret = qcowXGetBackingStore(res, NULL, buf, buf_size, false);
    if (ret == 0 && *buf == '\0')
        *format = VIR_STORAGE_FILE_NONE;
    return ret;
451 452 453 454 455
}

static int
qcow2GetBackingStore(char **res,
                     int *format,
E
Eric Blake 已提交
456
                     const char *buf,
457 458 459 460 461 462
                     size_t buf_size)
{
    return qcowXGetBackingStore(res, format, buf, buf_size, true);
}


463
static int
464
vmdk4GetBackingStore(char **res,
465
                     int *format,
E
Eric Blake 已提交
466
                     const char *buf,
467 468 469
                     size_t buf_size)
{
    static const char prefix[] = "parentFileNameHint=\"";
470
    char *desc, *start, *end;
471
    size_t len;
472 473
    int ret = BACKING_STORE_ERROR;

474
    if (VIR_ALLOC_N(desc, VIR_STORAGE_MAX_HEADER) < 0)
475
        goto cleanup;
476 477

    *res = NULL;
478 479 480 481 482 483 484 485
    /*
     * Technically this should have been VMDK, since
     * VMDK spec / VMWare impl only support VMDK backed
     * by VMDK. QEMU isn't following this though and
     * does probing on VMDK backing files, hence we set
     * AUTO
     */
    *format = VIR_STORAGE_FILE_AUTO;
486

487 488 489 490
    if (buf_size <= 0x200) {
        ret = BACKING_STORE_INVALID;
        goto cleanup;
    }
491
    len = buf_size - 0x200;
492 493
    if (len > VIR_STORAGE_MAX_HEADER)
        len = VIR_STORAGE_MAX_HEADER;
494 495 496
    memcpy(desc, buf + 0x200, len);
    desc[len] = '\0';
    start = strstr(desc, prefix);
497
    if (start == NULL) {
E
Eric Blake 已提交
498
        *format = VIR_STORAGE_FILE_NONE;
499 500 501
        ret = BACKING_STORE_OK;
        goto cleanup;
    }
502 503
    start += strlen(prefix);
    end = strchr(start, '"');
504 505 506 507 508
    if (end == NULL) {
        ret = BACKING_STORE_INVALID;
        goto cleanup;
    }
    if (end == start) {
E
Eric Blake 已提交
509
        *format = VIR_STORAGE_FILE_NONE;
510 511 512
        ret = BACKING_STORE_OK;
        goto cleanup;
    }
513
    *end = '\0';
514
    if (VIR_STRDUP(*res, start) < 0)
515 516 517 518
        goto cleanup;

    ret = BACKING_STORE_OK;

519
 cleanup:
520 521
    VIR_FREE(desc);
    return ret;
522 523
}

524 525 526
static int
qedGetBackingStore(char **res,
                   int *format,
E
Eric Blake 已提交
527
                   const char *buf,
528 529 530 531 532 533 534 535 536
                   size_t buf_size)
{
    unsigned long long flags;
    unsigned long offset, size;

    *res = NULL;
    /* Check if this image has a backing file */
    if (buf_size < QED_HDR_FEATURES_OFFSET+8)
        return BACKING_STORE_INVALID;
E
Eric Blake 已提交
537
    flags = virReadBufInt64LE(buf + QED_HDR_FEATURES_OFFSET);
E
Eric Blake 已提交
538 539
    if (!(flags & QED_F_BACKING_FILE)) {
        *format = VIR_STORAGE_FILE_NONE;
540
        return BACKING_STORE_OK;
E
Eric Blake 已提交
541
    }
542 543 544 545

    /* Parse the backing file */
    if (buf_size < QED_HDR_BACKING_FILE_OFFSET+8)
        return BACKING_STORE_INVALID;
E
Eric Blake 已提交
546
    offset = virReadBufInt32LE(buf + QED_HDR_BACKING_FILE_OFFSET);
547 548
    if (offset > buf_size)
        return BACKING_STORE_INVALID;
E
Eric Blake 已提交
549
    size = virReadBufInt32LE(buf + QED_HDR_BACKING_FILE_SIZE);
550 551 552 553
    if (size == 0)
        return BACKING_STORE_OK;
    if (offset + size > buf_size || offset + size < offset)
        return BACKING_STORE_INVALID;
554
    if (VIR_ALLOC_N(*res, size + 1) < 0)
555 556 557 558
        return BACKING_STORE_ERROR;
    memcpy(*res, buf + offset, size);
    (*res)[size] = '\0';

E
Eric Blake 已提交
559 560 561 562
    if (flags & QED_F_BACKING_FORMAT_NO_PROBE)
        *format = VIR_STORAGE_FILE_RAW;
    else
        *format = VIR_STORAGE_FILE_AUTO_SAFE;
563 564 565 566

    return BACKING_STORE_OK;
}

567 568 569

static bool
virStorageFileMatchesMagic(int format,
E
Eric Blake 已提交
570
                           char *buf,
571
                           size_t buflen)
572
{
573
    int mlen;
574 575
    int magicOffset = fileTypeInfo[format].magicOffset;
    const char *magic = fileTypeInfo[format].magic;
576

577
    if (magic == NULL)
578
        return false;
579

580
    /* Validate magic data */
581 582
    mlen = strlen(magic);
    if (magicOffset + mlen > buflen)
583
        return false;
584

585
    if (memcmp(buf + magicOffset, magic, mlen) != 0)
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
        return false;

    return true;
}


static bool
virStorageFileMatchesExtension(int format,
                               const char *path)
{
    if (fileTypeInfo[format].extension == NULL)
        return false;

    if (virFileHasSuffix(path, fileTypeInfo[format].extension))
        return true;

    return false;
}


static bool
virStorageFileMatchesVersion(int format,
E
Eric Blake 已提交
608
                             char *buf,
609 610
                             size_t buflen)
{
611 612
    int version;
    size_t i;
613 614 615

    /* Validate version number info */
    if (fileTypeInfo[format].versionOffset == -1)
E
Eric Blake 已提交
616
        return false;
617

618 619 620 621
    /* -2 == non-versioned file format, so trivially match */
    if (fileTypeInfo[format].versionOffset == -2)
        return true;

622 623 624
    if ((fileTypeInfo[format].versionOffset + 4) > buflen)
        return false;

E
Eric Blake 已提交
625 626 627 628
    if (fileTypeInfo[format].endian == LV_LITTLE_ENDIAN)
        version = virReadBufInt32LE(buf + fileTypeInfo[format].versionOffset);
    else
        version = virReadBufInt32BE(buf + fileTypeInfo[format].versionOffset);
629

630 631 632 633 634 635 636 637
    for (i = 0;
         i < FILE_TYPE_VERSIONS_LAST && fileTypeInfo[format].versionNumbers[i];
         i++) {
        VIR_DEBUG("Compare detected version %d vs one of the expected versions %d",
                  version, fileTypeInfo[format].versionNumbers[i]);
        if (version == fileTypeInfo[format].versionNumbers[i])
            return true;
    }
638

639
    return false;
640
}
641

642 643
bool
virStorageIsFile(const char *backing)
A
Adam Litke 已提交
644
{
645 646 647 648 649 650 651 652
    char *colon;
    char *slash;

    if (!backing)
        return false;

    colon = strchr(backing, ':');
    slash = strchr(backing, '/');
653 654 655 656 657

    /* Reject anything that looks like a protocol (such as nbd: or
     * rbd:); if someone really does want a relative file name that
     * includes ':', they can always prefix './'.  */
    if (colon && (!slash || colon < slash))
A
Adam Litke 已提交
658 659 660
        return false;
    return true;
}
661

E
Eric Blake 已提交
662 663

static int
E
Eric Blake 已提交
664
virStorageFileProbeFormatFromBuf(const char *path,
E
Eric Blake 已提交
665
                                 char *buf,
E
Eric Blake 已提交
666 667 668
                                 size_t buflen)
{
    int format = VIR_STORAGE_FILE_RAW;
669
    size_t i;
E
Eric Blake 已提交
670
    int possibleFormat = VIR_STORAGE_FILE_RAW;
671
    VIR_DEBUG("path=%s, buf=%p, buflen=%zu", path, buf, buflen);
E
Eric Blake 已提交
672 673

    /* First check file magic */
674
    for (i = 0; i < VIR_STORAGE_FILE_LAST; i++) {
E
Eric Blake 已提交
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
        if (virStorageFileMatchesMagic(i, buf, buflen)) {
            if (!virStorageFileMatchesVersion(i, buf, buflen)) {
                possibleFormat = i;
                continue;
            }
            format = i;
            goto cleanup;
        }
    }

    if (possibleFormat != VIR_STORAGE_FILE_RAW)
        VIR_WARN("File %s matches %s magic, but version is wrong. "
                 "Please report new version to libvir-list@redhat.com",
                 path, virStorageFileFormatTypeToString(possibleFormat));

    /* No magic, so check file extension */
691
    for (i = 0; i < VIR_STORAGE_FILE_LAST; i++) {
E
Eric Blake 已提交
692 693 694 695 696 697
        if (virStorageFileMatchesExtension(i, path)) {
            format = i;
            goto cleanup;
        }
    }

698
 cleanup:
E
Eric Blake 已提交
699 700 701 702 703
    VIR_DEBUG("format=%d", format);
    return format;
}


704 705 706
static int
qcow2GetFeatures(virBitmapPtr *features,
                 int format,
E
Eric Blake 已提交
707
                 char *buf,
708 709 710 711 712
                 ssize_t len)
{
    int version = -1;
    virBitmapPtr feat = NULL;
    uint64_t bits;
713
    size_t i;
714 715 716 717 718 719 720 721 722

    version = virReadBufInt32BE(buf + fileTypeInfo[format].versionOffset);

    if (version == 2)
        return 0;

    if (len < QCOW2v3_HDR_SIZE)
        return -1;

723
    if (!(feat = virBitmapNew(VIR_STORAGE_FILE_FEATURE_LAST)))
724 725 726 727 728 729 730 731 732 733 734 735 736 737
        return -1;

    /* todo: check for incompatible or autoclear features? */
    bits = virReadBufInt64BE(buf + QCOW2v3_HDR_FEATURES_COMPATIBLE);
    for (i = 0; i < QCOW2_COMPATIBLE_FEATURE_LAST; i++) {
        if (bits & ((uint64_t) 1 << i))
            ignore_value(virBitmapSetBit(feat, qcow2CompatibleFeatureArray[i]));
    }

    *features = feat;
    return 0;
}


738 739 740 741 742
/* Given a header in BUF with length LEN, as parsed from the storage file
 * assuming it has the given FORMAT, populate information into META
 * with information about the file and its backing store. Return format
 * of the backing store as BACKING_FORMAT. PATH and FORMAT have to be
 * pre-populated in META */
743
static int ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
744
ATTRIBUTE_NONNULL(4)
745
virStorageFileGetMetadataInternal(virStorageSourcePtr meta,
746 747
                                  char *buf,
                                  size_t len,
748
                                  int *backingFormat)
749
{
750
    int ret = -1;
E
Eric Blake 已提交
751

752 753
    VIR_DEBUG("relPath=%s, buf=%p, len=%zu, meta->format=%d",
              meta->relPath, buf, len, meta->format);
E
Eric Blake 已提交
754

755
    if (meta->format == VIR_STORAGE_FILE_AUTO)
756
        meta->format = virStorageFileProbeFormatFromBuf(meta->relPath, buf, len);
757

758 759 760 761
    if (meta->format <= VIR_STORAGE_FILE_NONE ||
        meta->format >= VIR_STORAGE_FILE_LAST) {
        virReportSystemError(EINVAL, _("unknown storage file meta->format %d"),
                             meta->format);
E
Eric Blake 已提交
762 763
        goto cleanup;
    }
764

765 766 767
    /* XXX we should consider moving virStorageBackendUpdateVolInfo
     * code into this method, for non-magic files
     */
768
    if (!fileTypeInfo[meta->format].magic)
E
Eric Blake 已提交
769
        goto done;
770

771
    /* Optionally extract capacity from file */
772 773
    if (fileTypeInfo[meta->format].sizeOffset != -1) {
        if ((fileTypeInfo[meta->format].sizeOffset + 8) > len)
E
Eric Blake 已提交
774
            goto done;
775

776
        if (fileTypeInfo[meta->format].endian == LV_LITTLE_ENDIAN)
E
Eric Blake 已提交
777
            meta->capacity = virReadBufInt64LE(buf +
778
                                               fileTypeInfo[meta->format].sizeOffset);
E
Eric Blake 已提交
779 780
        else
            meta->capacity = virReadBufInt64BE(buf +
781
                                               fileTypeInfo[meta->format].sizeOffset);
782
        /* Avoid unlikely, but theoretically possible overflow */
E
Eric Blake 已提交
783
        if (meta->capacity > (ULLONG_MAX /
784
                              fileTypeInfo[meta->format].sizeMultiplier))
E
Eric Blake 已提交
785
            goto done;
786
        meta->capacity *= fileTypeInfo[meta->format].sizeMultiplier;
787
    }
788

789
    if (fileTypeInfo[meta->format].qcowCryptOffset != -1) {
790
        int crypt_format;
791

E
Eric Blake 已提交
792
        crypt_format = virReadBufInt32BE(buf +
793
                                         fileTypeInfo[meta->format].qcowCryptOffset);
794 795
        if (crypt_format && VIR_ALLOC(meta->encryption) < 0)
            goto cleanup;
796
    }
797

798 799
    if (fileTypeInfo[meta->format].getBackingStore != NULL) {
        int store = fileTypeInfo[meta->format].getBackingStore(&meta->backingStoreRaw,
800
                                                         backingFormat,
E
Eric Blake 已提交
801 802 803
                                                         buf, len);
        if (store == BACKING_STORE_INVALID)
            goto done;
804

E
Eric Blake 已提交
805 806
        if (store == BACKING_STORE_ERROR)
            goto cleanup;
807 808
    }

809 810
    if (fileTypeInfo[meta->format].getFeatures != NULL &&
        fileTypeInfo[meta->format].getFeatures(&meta->features, meta->format, buf, len) < 0)
811 812
        goto cleanup;

813
    if (meta->format == VIR_STORAGE_FILE_QCOW2 && meta->features &&
814 815 816
        VIR_STRDUP(meta->compat, "1.1") < 0)
        goto cleanup;

817
 done:
818
    ret = 0;
E
Eric Blake 已提交
819

820
 cleanup:
E
Eric Blake 已提交
821
    return ret;
822 823 824 825
}


/**
826
 * virStorageFileProbeFormat:
827
 *
828 829
 * Probe for the format of 'path', returning the detected
 * disk format.
830 831 832
 *
 * Callers are advised never to trust the returned 'format'
 * unless it is listed as VIR_STORAGE_FILE_RAW, since a
833
 * malicious guest can turn a raw file into any other non-raw
834 835 836 837 838
 * format at will.
 *
 * Best option: Don't use this function
 */
int
839
virStorageFileProbeFormat(const char *path, uid_t uid, gid_t gid)
840
{
841
    int fd;
842
    int ret = -1;
843
    struct stat sb;
844 845
    ssize_t len = VIR_STORAGE_MAX_HEADER;
    char *header = NULL;
846

847 848
    if ((fd = virFileOpenAs(path, O_RDONLY, 0, uid, gid, 0)) < 0) {
        virReportSystemError(-fd, _("Failed to open file '%s'"), path);
849 850 851
        return -1;
    }

852 853 854 855 856
    if (fstat(fd, &sb) < 0) {
        virReportSystemError(errno, _("cannot stat file '%s'"), path);
        goto cleanup;
    }

857 858
    /* No header to probe for directories */
    if (S_ISDIR(sb.st_mode)) {
859 860
        ret = VIR_STORAGE_FILE_DIR;
        goto cleanup;
861
    }
862 863 864 865 866 867

    if (lseek(fd, 0, SEEK_SET) == (off_t)-1) {
        virReportSystemError(errno, _("cannot set to start of '%s'"), path);
        goto cleanup;
    }

868
    if ((len = virFileReadHeaderFD(fd, len, &header)) < 0) {
869 870 871 872
        virReportSystemError(errno, _("cannot read header '%s'"), path);
        goto cleanup;
    }

873
    ret = virStorageFileProbeFormatFromBuf(path, header, len);
874

875
 cleanup:
876
    VIR_FREE(header);
877
    VIR_FORCE_CLOSE(fd);
878 879 880 881

    return ret;
}

882

883
static virStorageSourcePtr
884 885 886
virStorageFileMetadataNew(const char *path,
                          int format)
{
887
    virStorageSourcePtr ret = NULL;
888 889 890 891 892 893 894

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

    ret->format = format;
    ret->type = VIR_STORAGE_TYPE_FILE;

895
    if (VIR_STRDUP(ret->relPath, path) < 0)
896 897
        goto error;

898 899
    if (VIR_STRDUP(ret->path, path) < 0)
        goto error;
900 901 902 903

    return ret;

 error:
904
    virStorageSourceFree(ret);
905 906 907 908
    return NULL;
}


909 910 911 912 913
/**
 * virStorageFileGetMetadataFromBuf:
 * @path: name of file, for error messages
 * @buf: header bytes from @path
 * @len: length of @buf
914 915
 * @backing: output malloc'd name of backing image, if any
 * @backingFormat: format of @backing
916
 *
E
Eric Blake 已提交
917 918 919 920
 * Extract metadata about the storage volume, including probing its
 * format.  Does not recurse.  Callers are advised not to trust the
 * learned format if a guest has ever used the volume when it was
 * raw, since a malicious guest can turn a raw file into any
921 922
 * other non-raw format at will.
 *
923
 * If the returned @backingFormat is VIR_STORAGE_FILE_AUTO
924 925 926 927
 * it indicates the image didn't specify an explicit format for its
 * backing store. Callers are advised against probing for the
 * backing store format in this case.
 *
928
 * Caller MUST free the result after use via virStorageSourceFree.
929
 */
930
virStorageSourcePtr
931 932 933
virStorageFileGetMetadataFromBuf(const char *path,
                                 char *buf,
                                 size_t len,
934 935
                                 char **backing,
                                 int *backingFormat)
936
{
937
    virStorageSourcePtr ret = NULL;
938
    virStorageSourcePtr meta = NULL;
939

E
Eric Blake 已提交
940
    if (!(meta = virStorageFileMetadataNew(path, VIR_STORAGE_FILE_AUTO)))
941
        return NULL;
942

943 944 945 946 947
    if (virStorageFileGetMetadataInternal(meta, buf, len,
                                          backingFormat) < 0)
        goto cleanup;
    if (VIR_STRDUP(*backing, meta->backingStoreRaw) < 0)
        goto cleanup;
948

949 950 951 952
    ret = meta;
    meta = NULL;
 cleanup:
    virStorageSourceFree(meta);
953
    return ret;
954 955 956 957
}


/* Internal version that also supports a containing directory name.  */
958
int
959
virStorageFileGetMetadataFromFDInternal(virStorageSourcePtr meta,
960
                                        int fd,
961
                                        int *backingFormat)
962 963
{
    char *buf = NULL;
964
    ssize_t len = VIR_STORAGE_MAX_HEADER;
965
    struct stat sb;
966
    int ret = -1;
967
    int dummy;
968

969 970
    if (!backingFormat)
        backingFormat = &dummy;
971

972
    *backingFormat = VIR_STORAGE_FILE_NONE;
973

974 975 976
    if (fstat(fd, &sb) < 0) {
        virReportSystemError(errno,
                             _("cannot stat file '%s'"),
977
                             meta->relPath);
978
        return -1;
979 980 981
    }

    if (S_ISDIR(sb.st_mode)) {
982 983
        /* No header to probe for directories, but also no backing file. Just
         * update the metadata.*/
984 985
        meta->type = VIR_STORAGE_TYPE_DIR;
        meta->format = VIR_STORAGE_FILE_DIR;
986
        ret = 0;
987 988 989 990
        goto cleanup;
    }

    if (lseek(fd, 0, SEEK_SET) == (off_t)-1) {
991
        virReportSystemError(errno, _("cannot seek to start of '%s'"), meta->relPath);
992 993 994 995
        goto cleanup;
    }

    if ((len = virFileReadHeaderFD(fd, len, &buf)) < 0) {
996
        virReportSystemError(errno, _("cannot read header '%s'"), meta->relPath);
997 998 999
        goto cleanup;
    }

1000
    ret = virStorageFileGetMetadataInternal(meta, buf, len, backingFormat);
1001

1002 1003 1004 1005 1006 1007
    if (ret == 0) {
        if (S_ISREG(sb.st_mode))
            meta->type = VIR_STORAGE_TYPE_FILE;
        else if (S_ISBLK(sb.st_mode))
            meta->type = VIR_STORAGE_TYPE_BLOCK;
    }
1008
 cleanup:
1009 1010 1011 1012 1013
    VIR_FREE(buf);
    return ret;
}


1014 1015 1016
/**
 * virStorageFileGetMetadataFromFD:
 *
1017 1018
 * Extract metadata about the storage volume with the specified
 * image format. If image format is VIR_STORAGE_FILE_AUTO, it
1019
 * will probe to automatically identify the format.  Does not recurse.
1020
 *
1021 1022 1023 1024
 * Callers are advised never to use VIR_STORAGE_FILE_AUTO as a
 * format, since a malicious guest can turn a raw file into any
 * other non-raw format at will.
 *
1025
 * Caller MUST free the result after use via virStorageSourceFree.
1026
 */
1027
virStorageSourcePtr
1028 1029
virStorageFileGetMetadataFromFD(const char *path,
                                int fd,
1030 1031 1032
                                int format,
                                int *backingFormat)

1033
{
1034
    virStorageSourcePtr ret = NULL;
1035
    char *canonPath = NULL;
1036

1037 1038
    if (!(canonPath = canonicalize_file_name(path))) {
        virReportSystemError(errno, _("unable to resolve '%s'"), path);
1039
        goto cleanup;
1040 1041 1042 1043 1044
    }

    if (!(ret = virStorageFileMetadataNew(canonPath, format)))
        goto cleanup;

1045

1046
    if (virStorageFileGetMetadataFromFDInternal(ret, fd, backingFormat) < 0) {
1047
        virStorageSourceFree(ret);
1048 1049 1050 1051
        ret = NULL;
    }

 cleanup:
1052
    VIR_FREE(canonPath);
1053
    return ret;
1054 1055
}

1056

1057 1058 1059 1060 1061
/**
 * virStorageFileChainCheckBroken
 *
 * If CHAIN is broken, set *brokenFile to the broken file name,
 * otherwise set it to NULL. Caller MUST free *brokenFile after use.
1062 1063
 * Return 0 on success (including when brokenFile is set), negative on
 * error (allocation failure).
1064 1065
 */
int
1066
virStorageFileChainGetBroken(virStorageSourcePtr chain,
1067 1068
                             char **brokenFile)
{
1069
    virStorageSourcePtr tmp;
1070

1071 1072
    *brokenFile = NULL;

1073 1074 1075
    if (!chain)
        return 0;

1076
    for (tmp = chain; tmp; tmp = tmp->backingStore) {
1077 1078
        /* Break when we hit end of chain; report error if we detected
         * a missing backing file, infinite loop, or other error */
1079
        if (!tmp->backingStore && tmp->backingStoreRaw) {
1080 1081
            if (VIR_STRDUP(*brokenFile, tmp->backingStoreRaw) < 0)
                return -1;
1082

1083 1084 1085
           return 0;
        }
    }
1086

1087
    return 0;
1088 1089 1090
}


1091 1092 1093 1094 1095 1096
/**
 * virStorageFileResize:
 *
 * Change the capacity of the raw storage file at 'path'.
 */
int
1097 1098 1099 1100
virStorageFileResize(const char *path,
                     unsigned long long capacity,
                     unsigned long long orig_capacity,
                     bool pre_allocate)
1101
{
1102 1103
    int fd = -1;
    int ret = -1;
1104 1105 1106 1107 1108 1109
    int rc ATTRIBUTE_UNUSED;
    off_t offset ATTRIBUTE_UNUSED;
    off_t len ATTRIBUTE_UNUSED;

    offset = orig_capacity;
    len = capacity - orig_capacity;
1110 1111 1112 1113 1114 1115

    if ((fd = open(path, O_RDWR)) < 0) {
        virReportSystemError(errno, _("Unable to open '%s'"), path);
        goto cleanup;
    }

1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126
    if (pre_allocate) {
#if HAVE_POSIX_FALLOCATE
        if ((rc = posix_fallocate(fd, offset, len)) != 0) {
            virReportSystemError(rc,
                                 _("Failed to pre-allocate space for "
                                   "file '%s'"), path);
            goto cleanup;
        }
#elif HAVE_SYS_SYSCALL_H && defined(SYS_fallocate)
        if (syscall(SYS_fallocate, fd, 0, offset, len) != 0) {
            virReportSystemError(errno,
1127
                                 _("Failed to pre-allocate space for "
1128 1129 1130 1131 1132
                                   "file '%s'"), path);
            goto cleanup;
        }
#else
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
1133
                       _("preallocate is not supported on this platform"));
1134
        goto cleanup;
1135 1136 1137 1138 1139 1140 1141
#endif
    } else {
        if (ftruncate(fd, capacity) < 0) {
            virReportSystemError(errno,
                                 _("Failed to truncate file '%s'"), path);
            goto cleanup;
        }
1142 1143
    }

1144 1145 1146 1147 1148 1149 1150
    if (VIR_CLOSE(fd) < 0) {
        virReportSystemError(errno, _("Unable to save '%s'"), path);
        goto cleanup;
    }

    ret = 0;

1151
 cleanup:
1152 1153
    VIR_FORCE_CLOSE(fd);
    return ret;
1154 1155
}

1156 1157 1158 1159 1160 1161

int virStorageFileIsClusterFS(const char *path)
{
    /* These are coherent cluster filesystems known to be safe for
     * migration with cache != none
     */
1162 1163 1164
    return virFileIsSharedFSType(path,
                                 VIR_FILE_SHFS_GFS2 |
                                 VIR_FILE_SHFS_OCFS);
1165
}
1166 1167

#ifdef LVS
1168 1169
int virStorageFileGetLVMKey(const char *path,
                            char **key)
1170 1171 1172 1173 1174
{
    /*
     *  # lvs --noheadings --unbuffered --nosuffix --options "uuid" LVNAME
     *    06UgP5-2rhb-w3Bo-3mdR-WeoL-pytO-SAa2ky
     */
1175
    int status;
1176 1177 1178 1179 1180 1181
    virCommandPtr cmd = virCommandNewArgList(
        LVS,
        "--noheadings", "--unbuffered", "--nosuffix",
        "--options", "uuid", path,
        NULL
        );
1182 1183 1184
    int ret = -1;

    *key = NULL;
1185 1186

    /* Run the program and capture its output */
1187 1188
    virCommandSetOutputBuffer(cmd, key);
    if (virCommandRun(cmd, &status) < 0)
1189 1190
        goto cleanup;

1191 1192 1193 1194 1195 1196
    /* Explicitly check status == 0, rather than passing NULL
     * to virCommandRun because we don't want to raise an actual
     * error in this scenario, just return a NULL key.
     */

    if (status == 0 && *key) {
1197
        char *nl;
1198
        char *tmp = *key;
1199 1200 1201 1202 1203 1204

        /* Find first non-space character */
        while (*tmp && c_isspace(*tmp)) {
            tmp++;
        }
        /* Kill leading spaces */
1205 1206
        if (tmp != *key)
            memmove(*key, tmp, strlen(tmp)+1);
1207 1208

        /* Kill trailing newline */
1209
        if ((nl = strchr(*key, '\n')))
1210 1211 1212
            *nl = '\0';
    }

1213
    ret = 0;
1214

1215
 cleanup:
1216 1217 1218
    if (*key && STREQ(*key, ""))
        VIR_FREE(*key);

1219 1220
    virCommandFree(cmd);

1221
    return ret;
1222 1223
}
#else
1224 1225
int virStorageFileGetLVMKey(const char *path,
                            char **key ATTRIBUTE_UNUSED)
1226 1227
{
    virReportSystemError(ENOSYS, _("Unable to get LVM key for %s"), path);
1228
    return -1;
1229 1230 1231
}
#endif

1232
#ifdef WITH_UDEV
1233 1234
int virStorageFileGetSCSIKey(const char *path,
                             char **key)
1235
{
1236
    int status;
1237 1238 1239 1240 1241 1242 1243
    virCommandPtr cmd = virCommandNewArgList(
        "/lib/udev/scsi_id",
        "--replace-whitespace",
        "--whitelisted",
        "--device", path,
        NULL
        );
1244 1245 1246
    int ret = -1;

    *key = NULL;
1247 1248

    /* Run the program and capture its output */
1249 1250
    virCommandSetOutputBuffer(cmd, key);
    if (virCommandRun(cmd, &status) < 0)
1251 1252
        goto cleanup;

1253 1254 1255 1256 1257 1258
    /* Explicitly check status == 0, rather than passing NULL
     * to virCommandRun because we don't want to raise an actual
     * error in this scenario, just return a NULL key.
     */
    if (status == 0 && *key) {
        char *nl = strchr(*key, '\n');
1259 1260 1261 1262
        if (nl)
            *nl = '\0';
    }

1263 1264
    ret = 0;

1265
 cleanup:
1266 1267 1268
    if (*key && STREQ(*key, ""))
        VIR_FREE(*key);

1269 1270
    virCommandFree(cmd);

1271
    return ret;
1272 1273
}
#else
1274 1275
int virStorageFileGetSCSIKey(const char *path,
                             char **key ATTRIBUTE_UNUSED)
1276 1277
{
    virReportSystemError(ENOSYS, _("Unable to get SCSI key for %s"), path);
1278
    return -1;
1279 1280
}
#endif
1281

1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
int
virStorageFileParseChainIndex(const char *diskTarget,
                              const char *name,
                              unsigned int *chainIndex)
{
    char **strings = NULL;
    unsigned int idx = 0;
    char *suffix;
    int ret = 0;

    *chainIndex = 0;

    if (name && diskTarget)
        strings = virStringSplit(name, "[", 2);

    if (virStringListLength(strings) != 2)
        goto cleanup;

E
Eric Blake 已提交
1300
    if (virStrToLong_uip(strings[1], &suffix, 10, &idx) < 0 ||
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
        STRNEQ(suffix, "]"))
        goto cleanup;

    if (STRNEQ(diskTarget, strings[0])) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("requested target '%s' does not match target '%s'"),
                       strings[0], diskTarget);
        ret = -1;
        goto cleanup;
    }

    *chainIndex = idx;

 cleanup:
    virStringFreeList(strings);
    return ret;
}

/* Given a @chain, look for the backing store @name within the chain starting
 * from @startFrom or @chain if @startFrom is NULL and return that location
 * within the chain.  @chain must always point to the top of the chain.  Pass
 * NULL for @name and 0 for @idx to find the base of the chain.  Pass nonzero
 * @idx to find the backing source according to its position in the backing
 * chain.  If @parent is not NULL, set *@parent to the preferred name of the
 * parent (or to NULL if @name matches the start of the chain).  Since the
 * results point within @chain, they must not be independently freed.
 * Reports an error and returns NULL if @name is not found.
 */
1329
virStorageSourcePtr
1330
virStorageFileChainLookup(virStorageSourcePtr chain,
1331
                          virStorageSourcePtr startFrom,
1332
                          const char *name,
1333
                          unsigned int idx,
1334 1335
                          const char **parent)
{
1336
    const char *start = chain->path;
1337
    const char *tmp;
E
Eric Blake 已提交
1338 1339
    const char *parentDir = ".";
    bool nameIsFile = virStorageIsFile(name);
1340
    size_t i;
1341 1342 1343 1344

    if (!parent)
        parent = &tmp;
    *parent = NULL;
1345 1346 1347 1348 1349 1350 1351 1352 1353

    i = 0;
    if (startFrom) {
        while (chain && chain != startFrom) {
            chain = chain->backingStore;
            i++;
        }
    }

E
Eric Blake 已提交
1354
    while (chain) {
1355
        if (!name && !idx) {
1356
            if (!chain->backingStore)
1357
                break;
1358 1359 1360 1361
        } else if (idx) {
            VIR_DEBUG("%zu: %s", i, chain->path);
            if (idx == i)
                break;
E
Eric Blake 已提交
1362
        } else {
1363
            if (STREQ_NULLABLE(name, chain->relPath))
1364
                break;
E
Eric Blake 已提交
1365 1366 1367
            if (nameIsFile && (chain->type == VIR_STORAGE_TYPE_FILE ||
                               chain->type == VIR_STORAGE_TYPE_BLOCK)) {
                int result = virFileRelLinkPointsTo(parentDir, name,
1368
                                                    chain->path);
E
Eric Blake 已提交
1369 1370 1371 1372 1373
                if (result < 0)
                    goto error;
                if (result > 0)
                    break;
            }
1374
        }
1375
        *parent = chain->path;
E
Eric Blake 已提交
1376
        parentDir = chain->relDir;
1377
        chain = chain->backingStore;
1378
        i++;
1379
    }
1380

E
Eric Blake 已提交
1381
    if (!chain)
1382
        goto error;
1383
    return chain;
1384

1385
 error:
1386 1387 1388 1389 1390
    if (idx) {
        virReportError(VIR_ERR_INVALID_ARG,
                       _("could not find backing store %u in chain for '%s'"),
                       idx, start);
    } else if (name) {
1391 1392 1393
        virReportError(VIR_ERR_INVALID_ARG,
                       _("could not find image '%s' in chain for '%s'"),
                       name, start);
1394
    } else {
1395 1396 1397
        virReportError(VIR_ERR_INVALID_ARG,
                       _("could not find base image in chain for '%s'"),
                       start);
1398
    }
1399 1400 1401
    *parent = NULL;
    return NULL;
}
1402 1403 1404 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 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463


void
virStorageNetHostDefClear(virStorageNetHostDefPtr def)
{
    if (!def)
        return;

    VIR_FREE(def->name);
    VIR_FREE(def->port);
    VIR_FREE(def->socket);
}


void
virStorageNetHostDefFree(size_t nhosts,
                         virStorageNetHostDefPtr hosts)
{
    size_t i;

    if (!hosts)
        return;

    for (i = 0; i < nhosts; i++)
        virStorageNetHostDefClear(&hosts[i]);

    VIR_FREE(hosts);
}


virStorageNetHostDefPtr
virStorageNetHostDefCopy(size_t nhosts,
                         virStorageNetHostDefPtr hosts)
{
    virStorageNetHostDefPtr ret = NULL;
    size_t i;

    if (VIR_ALLOC_N(ret, nhosts) < 0)
        goto error;

    for (i = 0; i < nhosts; i++) {
        virStorageNetHostDefPtr src = &hosts[i];
        virStorageNetHostDefPtr dst = &ret[i];

        dst->transport = src->transport;

        if (VIR_STRDUP(dst->name, src->name) < 0)
            goto error;

        if (VIR_STRDUP(dst->port, src->port) < 0)
            goto error;

        if (VIR_STRDUP(dst->socket, src->socket) < 0)
            goto error;
    }

    return ret;

 error:
    virStorageNetHostDefFree(nhosts, ret);
    return NULL;
}
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490


void
virStorageSourcePoolDefFree(virStorageSourcePoolDefPtr def)
{
    if (!def)
        return;

    VIR_FREE(def->pool);
    VIR_FREE(def->volume);

    VIR_FREE(def);
}


void
virStorageSourceAuthClear(virStorageSourcePtr def)
{
    VIR_FREE(def->auth.username);

    if (def->auth.secretType == VIR_STORAGE_SECRET_TYPE_USAGE)
        VIR_FREE(def->auth.secret.usage);

    def->auth.secretType = VIR_STORAGE_SECRET_TYPE_NONE;
}


1491 1492 1493 1494 1495 1496 1497 1498 1499 1500
int
virStorageSourceGetActualType(virStorageSourcePtr def)
{
    if (def->type == VIR_STORAGE_TYPE_VOLUME && def->srcpool)
        return def->srcpool->actualtype;

    return def->type;
}


1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
/**
 * virStorageSourceClearBackingStore:
 *
 * @src: disk source to clear
 *
 * Clears information about backing store of the current storage file.
 */
void
virStorageSourceClearBackingStore(virStorageSourcePtr def)
{
    if (!def)
        return;

    VIR_FREE(def->relPath);
    VIR_FREE(def->relDir);
    VIR_FREE(def->backingStoreRaw);

    /* recursively free backing chain */
    virStorageSourceFree(def->backingStore);
    def->backingStore = NULL;
}


1524 1525 1526 1527 1528 1529 1530 1531 1532
void
virStorageSourceClear(virStorageSourcePtr def)
{
    size_t i;

    if (!def)
        return;

    VIR_FREE(def->path);
1533
    VIR_FREE(def->volume);
1534 1535
    virStorageSourcePoolDefFree(def->srcpool);
    VIR_FREE(def->driverName);
E
Eric Blake 已提交
1536 1537
    virBitmapFree(def->features);
    VIR_FREE(def->compat);
1538 1539 1540 1541 1542 1543 1544
    virStorageEncryptionFree(def->encryption);

    if (def->seclabels) {
        for (i = 0; i < def->nseclabels; i++)
            virSecurityDeviceLabelDefFree(def->seclabels[i]);
        VIR_FREE(def->seclabels);
    }
E
Eric Blake 已提交
1545 1546 1547 1548 1549
    if (def->perms) {
        VIR_FREE(def->perms->label);
        VIR_FREE(def->perms);
    }
    VIR_FREE(def->timestamps);
1550 1551 1552

    virStorageNetHostDefFree(def->nhosts, def->hosts);
    virStorageSourceAuthClear(def);
1553

1554
    virStorageSourceClearBackingStore(def);
1555
}
1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566


void
virStorageSourceFree(virStorageSourcePtr def)
{
    if (!def)
        return;

    virStorageSourceClear(def);
    VIR_FREE(def);
}