virstoragefile.c 50.4 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 "dirname.h"
32
#include "viralloc.h"
33
#include "virerror.h"
34
#include "virlog.h"
E
Eric Blake 已提交
35
#include "virfile.h"
36
#include "c-ctype.h"
37
#include "vircommand.h"
38
#include "virhash.h"
E
Eric Blake 已提交
39
#include "virendian.h"
40 41
#include "virstring.h"
#include "virutil.h"
42 43 44
#if HAVE_SYS_SYSCALL_H
# include <sys/syscall.h>
#endif
45 46 47

#define VIR_FROM_THIS VIR_FROM_STORAGE

48 49
VIR_LOG_INIT("util.storagefile");

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

58 59
VIR_ENUM_IMPL(virStorageFileFormat,
              VIR_STORAGE_FILE_LAST,
E
Eric Blake 已提交
60
              "none",
61
              "raw", "dir", "bochs",
62
              "cloop", "cow", "dmg", "iso",
E
Eric Blake 已提交
63
              "qcow", "qcow2", "qed", "vmdk", "vpc",
64
              "fat", "vhd", "vdi")
65

66 67 68 69 70
VIR_ENUM_IMPL(virStorageFileFeature,
              VIR_STORAGE_FILE_FEATURE_LAST,
              "lazy_refcounts",
              )

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

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

88 89 90 91 92
VIR_ENUM_IMPL(virStorageSourcePoolMode,
              VIR_STORAGE_SOURCE_POOL_MODE_LAST,
              "default",
              "host",
              "direct")
93

94 95 96 97 98 99 100 101 102 103 104
enum lv_endian {
    LV_LITTLE_ENDIAN = 1, /* 1234 */
    LV_BIG_ENDIAN         /* 4321 */
};

enum {
    BACKING_STORE_OK,
    BACKING_STORE_INVALID,
    BACKING_STORE_ERROR,
};

105 106
#define FILE_TYPE_VERSIONS_LAST 2

107 108
/* Either 'magic' or 'extension' *must* be provided */
struct FileTypeInfo {
109
    int magicOffset;    /* Byte offset of the magic */
110 111 112 113 114 115
    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,
116 117
                           * -1 to always fail the version test,
                           * -2 to always pass the version test */
118 119
    int versionNumbers[FILE_TYPE_VERSIONS_LAST];
                          /* Version numbers to validate. Zeroes are ignored. */
120 121 122 123 124 125 126 127 128 129 130
    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 */
131
    int (*getBackingStore)(char **res, int *format,
E
Eric Blake 已提交
132
                           const char *buf, size_t buf_size);
133
    int (*getFeatures)(virBitmapPtr *features, int format,
E
Eric Blake 已提交
134
                       char *buf, ssize_t len);
135 136
};

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

#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

164 165 166 167 168 169 170
#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)

171
#define QED_HDR_FEATURES_OFFSET (4+4+4+4)
172 173
#define QED_HDR_IMAGE_SIZE (QED_HDR_FEATURES_OFFSET+8+8+8+8)
#define QED_HDR_BACKING_FILE_OFFSET (QED_HDR_IMAGE_SIZE+8)
174 175 176
#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 已提交
177

178 179

static struct FileTypeInfo const fileTypeInfo[] = {
180
    [VIR_STORAGE_FILE_NONE] = { 0, NULL, NULL, LV_LITTLE_ENDIAN,
181
                                -1, {0}, 0, 0, 0, 0, NULL, NULL },
182
    [VIR_STORAGE_FILE_RAW] = { 0, NULL, NULL, LV_LITTLE_ENDIAN,
183
                               -1, {0}, 0, 0, 0, 0, NULL, NULL },
184
    [VIR_STORAGE_FILE_DIR] = { 0, NULL, NULL, LV_LITTLE_ENDIAN,
185
                               -1, {0}, 0, 0, 0, 0, NULL, NULL },
186
    [VIR_STORAGE_FILE_BOCHS] = {
187 188
        /*"Bochs Virtual HD Image", */ /* Untested */
        0, NULL, NULL,
189 190
        LV_LITTLE_ENDIAN, 64, {0x20000},
        32+16+16+4+4+4+4+4, 8, 1, -1, NULL, NULL
191 192
    },
    [VIR_STORAGE_FILE_CLOOP] = {
193 194 195 196 197
        /* #!/bin/sh
           #V2.0 Format
           modprobe cloop file=$0 && mount -r -t iso9660 /dev/cloop $1
        */ /* Untested */
        0, NULL, NULL,
198 199
        LV_LITTLE_ENDIAN, -1, {0},
        -1, 0, 0, -1, NULL, NULL
200 201
    },
    [VIR_STORAGE_FILE_COW] = {
202
        0, "OOOM", NULL,
203 204
        LV_BIG_ENDIAN, 4, {2},
        4+4+1024+4, 8, 1, -1, cowGetBackingStore, NULL
205 206
    },
    [VIR_STORAGE_FILE_DMG] = {
207 208 209 210
        /* 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",
211 212
        0, -1, {0},
        -1, 0, 0, -1, NULL, NULL
213 214
    },
    [VIR_STORAGE_FILE_ISO] = {
215
        32769, "CD001", ".iso",
216 217
        LV_LITTLE_ENDIAN, -2, {0},
        -1, 0, 0, -1, NULL, NULL
218 219
    },
    [VIR_STORAGE_FILE_QCOW] = {
220
        0, "QFI", NULL,
221 222
        LV_BIG_ENDIAN, 4, {1},
        QCOWX_HDR_IMAGE_SIZE, 8, 1, QCOW1_HDR_CRYPT, qcow1GetBackingStore, NULL
223 224
    },
    [VIR_STORAGE_FILE_QCOW2] = {
225
        0, "QFI", NULL,
226
        LV_BIG_ENDIAN, 4, {2, 3},
227
        QCOWX_HDR_IMAGE_SIZE, 8, 1, QCOW2_HDR_CRYPT, qcow2GetBackingStore,
228
        qcow2GetFeatures
229
    },
A
Adam Litke 已提交
230 231
    [VIR_STORAGE_FILE_QED] = {
        /* http://wiki.qemu.org/Features/QED */
232
        0, "QED", NULL,
233 234
        LV_LITTLE_ENDIAN, -2, {0},
        QED_HDR_IMAGE_SIZE, 8, 1, -1, qedGetBackingStore, NULL
A
Adam Litke 已提交
235
    },
236
    [VIR_STORAGE_FILE_VMDK] = {
237
        0, "KDMV", NULL,
238
        LV_LITTLE_ENDIAN, 4, {1, 2},
239
        4+4+4, 8, 512, -1, vmdk4GetBackingStore, NULL
240 241
    },
    [VIR_STORAGE_FILE_VPC] = {
242
        0, "conectix", NULL,
243 244
        LV_BIG_ENDIAN, 12, {0x10000},
        8 + 4 + 4 + 8 + 4 + 4 + 2 + 2 + 4, 8, 1, -1, NULL, NULL
245
    },
246 247 248
    /* TODO: add getBackingStore function */
    [VIR_STORAGE_FILE_VDI] = {
        64, "\x7f\x10\xda\xbe", ".vdi",
249 250
        LV_LITTLE_ENDIAN, 68, {0x00010001},
        64 + 5 * 4 + 256 + 7 * 4, 8, 1, -1, NULL, NULL},
251

E
Eric Blake 已提交
252
    /* Not direct file formats, but used for various drivers */
253
    [VIR_STORAGE_FILE_FAT] = { 0, NULL, NULL, LV_LITTLE_ENDIAN,
254
                               -1, {0}, 0, 0, 0, 0, NULL, NULL },
255
    [VIR_STORAGE_FILE_VHD] = { 0, NULL, NULL, LV_LITTLE_ENDIAN,
256
                               -1, {0}, 0, 0, 0, 0, NULL, NULL },
257
};
258
verify(ARRAY_CARDINALITY(fileTypeInfo) == VIR_STORAGE_FILE_LAST);
259

260 261 262 263 264 265 266 267 268 269 270 271 272 273
/* 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);

274
static int
275
cowGetBackingStore(char **res,
276
                   int *format,
E
Eric Blake 已提交
277
                   const char *buf,
278 279 280 281
                   size_t buf_size)
{
#define COW_FILENAME_MAXLEN 1024
    *res = NULL;
282 283
    *format = VIR_STORAGE_FILE_AUTO;

284 285
    if (buf_size < 4+4+ COW_FILENAME_MAXLEN)
        return BACKING_STORE_INVALID;
E
Eric Blake 已提交
286 287
    if (buf[4+4] == '\0') { /* cow_header_v2.backing_file[0] */
        *format = VIR_STORAGE_FILE_NONE;
288
        return BACKING_STORE_OK;
E
Eric Blake 已提交
289
    }
290

291
    if (VIR_STRNDUP(*res, (const char*)buf + 4 + 4, COW_FILENAME_MAXLEN) < 0)
292 293 294 295
        return BACKING_STORE_ERROR;
    return BACKING_STORE_OK;
}

296 297 298

static int
qcow2GetBackingStoreFormat(int *format,
E
Eric Blake 已提交
299
                           const char *buf,
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
                           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 已提交
318 319
        unsigned int magic = virReadBufInt32BE(buf + offset);
        unsigned int len = virReadBufInt32BE(buf + offset + 4);
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337

        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 已提交
338 339
            if (*format <= VIR_STORAGE_FILE_NONE)
                return -1;
340 341 342 343 344
        }

        offset += len;
    }

345
 done:
346 347 348 349 350

    return 0;
}


351
static int
352
qcowXGetBackingStore(char **res,
353
                     int *format,
E
Eric Blake 已提交
354
                     const char *buf,
355 356
                     size_t buf_size,
                     bool isQCow2)
357 358
{
    unsigned long long offset;
359
    unsigned int size;
360 361
    unsigned long long start;
    int version;
362 363

    *res = NULL;
364 365 366 367
    if (format)
        *format = VIR_STORAGE_FILE_AUTO;

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

    /*
     * 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)
410 411 412
     *
     * for qcow2 v3 images, the length of the header
     * is stored at QCOW2v3_HDR_SIZE
413
     */
414 415 416 417 418 419 420 421 422 423
    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;
    }
424

425 426 427 428
    return BACKING_STORE_OK;
}


429 430 431
static int
qcow1GetBackingStore(char **res,
                     int *format,
E
Eric Blake 已提交
432
                     const char *buf,
433 434
                     size_t buf_size)
{
E
Eric Blake 已提交
435 436
    int ret;

437 438 439
    /* QCow1 doesn't have the extensions capability
     * used to store backing format */
    *format = VIR_STORAGE_FILE_AUTO;
E
Eric Blake 已提交
440 441 442 443
    ret = qcowXGetBackingStore(res, NULL, buf, buf_size, false);
    if (ret == 0 && *buf == '\0')
        *format = VIR_STORAGE_FILE_NONE;
    return ret;
444 445 446 447 448
}

static int
qcow2GetBackingStore(char **res,
                     int *format,
E
Eric Blake 已提交
449
                     const char *buf,
450 451 452 453 454 455
                     size_t buf_size)
{
    return qcowXGetBackingStore(res, format, buf, buf_size, true);
}


456
static int
457
vmdk4GetBackingStore(char **res,
458
                     int *format,
E
Eric Blake 已提交
459
                     const char *buf,
460 461 462
                     size_t buf_size)
{
    static const char prefix[] = "parentFileNameHint=\"";
463
    char *desc, *start, *end;
464
    size_t len;
465 466
    int ret = BACKING_STORE_ERROR;

467
    if (VIR_ALLOC_N(desc, VIR_STORAGE_MAX_HEADER) < 0)
468
        goto cleanup;
469 470

    *res = NULL;
471 472 473 474 475 476 477 478
    /*
     * 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;
479

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

    ret = BACKING_STORE_OK;

512
 cleanup:
513 514
    VIR_FREE(desc);
    return ret;
515 516
}

517 518 519
static int
qedGetBackingStore(char **res,
                   int *format,
E
Eric Blake 已提交
520
                   const char *buf,
521 522 523 524 525 526 527 528 529
                   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 已提交
530
    flags = virReadBufInt64LE(buf + QED_HDR_FEATURES_OFFSET);
E
Eric Blake 已提交
531 532
    if (!(flags & QED_F_BACKING_FILE)) {
        *format = VIR_STORAGE_FILE_NONE;
533
        return BACKING_STORE_OK;
E
Eric Blake 已提交
534
    }
535 536 537 538

    /* Parse the backing file */
    if (buf_size < QED_HDR_BACKING_FILE_OFFSET+8)
        return BACKING_STORE_INVALID;
E
Eric Blake 已提交
539
    offset = virReadBufInt32LE(buf + QED_HDR_BACKING_FILE_OFFSET);
540 541
    if (offset > buf_size)
        return BACKING_STORE_INVALID;
E
Eric Blake 已提交
542
    size = virReadBufInt32LE(buf + QED_HDR_BACKING_FILE_SIZE);
543 544 545 546
    if (size == 0)
        return BACKING_STORE_OK;
    if (offset + size > buf_size || offset + size < offset)
        return BACKING_STORE_INVALID;
547
    if (VIR_ALLOC_N(*res, size + 1) < 0)
548 549 550 551
        return BACKING_STORE_ERROR;
    memcpy(*res, buf + offset, size);
    (*res)[size] = '\0';

E
Eric Blake 已提交
552 553 554 555
    if (flags & QED_F_BACKING_FORMAT_NO_PROBE)
        *format = VIR_STORAGE_FILE_RAW;
    else
        *format = VIR_STORAGE_FILE_AUTO_SAFE;
556 557 558 559

    return BACKING_STORE_OK;
}

560
/**
561 562 563 564 565 566
 * Given a starting point START (a directory containing the original
 * file, if the original file was opened via a relative path; ignored
 * if NAME is absolute), determine the location of the backing file
 * NAME (possibly relative), and compute the relative DIRECTORY
 * (optional) and CANONICAL (mandatory) location of the backing file.
 * Return 0 on success, negative on error.
567
 */
568 569
static int ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(4)
virFindBackingFile(const char *start, const char *path,
570
                   char **directory, char **canonical)
571
{
572 573 574 575 576 577 578 579
    /* FIXME - when we eventually allow non-raw network devices, we
     * must ensure that we handle backing files the same way as qemu.
     * For a qcow2 top file of gluster://server/vol/img, qemu treats
     * the relative backing file 'rel' as meaning
     * 'gluster://server/vol/rel', while the backing file '/abs' is
     * used as a local file.  But we cannot canonicalize network
     * devices via canonicalize_file_name(), because they are not part
     * of the local file system.  */
580 581
    char *combined = NULL;
    int ret = -1;
582

583 584 585
    if (*path == '/') {
        /* Safe to cast away const */
        combined = (char *)path;
586 587
    } else if (virAsprintf(&combined, "%s/%s", start, path) < 0) {
        goto cleanup;
588
    }
589

590 591
    if (directory && !(*directory = mdir_name(combined))) {
        virReportOOMError();
592 593
        goto cleanup;
    }
594

595
    if (virFileAccessibleAs(combined, F_OK, geteuid(), getegid()) < 0) {
596 597 598 599 600 601
        virReportSystemError(errno,
                             _("Cannot access backing file '%s'"),
                             combined);
        goto cleanup;
    }

602 603 604
    if (!(*canonical = canonicalize_file_name(combined))) {
        virReportSystemError(errno,
                             _("Can't canonicalize path '%s'"), path);
605 606 607
        goto cleanup;
    }

608
    ret = 0;
609

610
 cleanup:
611 612 613
    if (combined != path)
        VIR_FREE(combined);
    return ret;
614 615
}

616 617 618

static bool
virStorageFileMatchesMagic(int format,
E
Eric Blake 已提交
619
                           char *buf,
620
                           size_t buflen)
621
{
622
    int mlen;
623 624
    int magicOffset = fileTypeInfo[format].magicOffset;
    const char *magic = fileTypeInfo[format].magic;
625

626
    if (magic == NULL)
627
        return false;
628

629
    /* Validate magic data */
630 631
    mlen = strlen(magic);
    if (magicOffset + mlen > buflen)
632
        return false;
633

634
    if (memcmp(buf + magicOffset, magic, mlen) != 0)
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
        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 已提交
657
                             char *buf,
658 659
                             size_t buflen)
{
660 661
    int version;
    size_t i;
662 663 664

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

667 668 669 670
    /* -2 == non-versioned file format, so trivially match */
    if (fileTypeInfo[format].versionOffset == -2)
        return true;

671 672 673
    if ((fileTypeInfo[format].versionOffset + 4) > buflen)
        return false;

E
Eric Blake 已提交
674 675 676 677
    if (fileTypeInfo[format].endian == LV_LITTLE_ENDIAN)
        version = virReadBufInt32LE(buf + fileTypeInfo[format].versionOffset);
    else
        version = virReadBufInt32BE(buf + fileTypeInfo[format].versionOffset);
678

679 680 681 682 683 684 685 686
    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;
    }
687

688
    return false;
689
}
690

691 692
bool
virStorageIsFile(const char *backing)
A
Adam Litke 已提交
693
{
694 695 696 697 698 699 700 701
    char *colon;
    char *slash;

    if (!backing)
        return false;

    colon = strchr(backing, ':');
    slash = strchr(backing, '/');
702 703 704 705 706

    /* 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 已提交
707 708 709
        return false;
    return true;
}
710

711
int
E
Eric Blake 已提交
712
virStorageFileProbeFormatFromBuf(const char *path,
E
Eric Blake 已提交
713
                                 char *buf,
E
Eric Blake 已提交
714 715 716
                                 size_t buflen)
{
    int format = VIR_STORAGE_FILE_RAW;
717
    size_t i;
E
Eric Blake 已提交
718
    int possibleFormat = VIR_STORAGE_FILE_RAW;
719
    VIR_DEBUG("path=%s, buf=%p, buflen=%zu", path, buf, buflen);
E
Eric Blake 已提交
720 721

    /* First check file magic */
722
    for (i = 0; i < VIR_STORAGE_FILE_LAST; i++) {
E
Eric Blake 已提交
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
        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 */
739
    for (i = 0; i < VIR_STORAGE_FILE_LAST; i++) {
E
Eric Blake 已提交
740 741 742 743 744 745
        if (virStorageFileMatchesExtension(i, path)) {
            format = i;
            goto cleanup;
        }
    }

746
 cleanup:
E
Eric Blake 已提交
747 748 749 750 751
    VIR_DEBUG("format=%d", format);
    return format;
}


752 753 754
static int
qcow2GetFeatures(virBitmapPtr *features,
                 int format,
E
Eric Blake 已提交
755
                 char *buf,
756 757 758 759 760
                 ssize_t len)
{
    int version = -1;
    virBitmapPtr feat = NULL;
    uint64_t bits;
761
    size_t i;
762 763 764 765 766 767 768 769 770

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

    if (version == 2)
        return 0;

    if (len < QCOW2v3_HDR_SIZE)
        return -1;

771
    if (!(feat = virBitmapNew(VIR_STORAGE_FILE_FEATURE_LAST)))
772 773 774 775 776 777 778 779 780 781 782 783 784 785
        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;
}


786 787
/* Given a header in BUF with length LEN, as parsed from the file with
 * user-provided name PATH and opened from CANONPATH, and where any
788 789 790 791 792
 * relative backing file will be opened from DIRECTORY, and assuming
 * it has the given FORMAT, populate the newly-allocated META with
 * information about the file and its backing store.  */
static int ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
ATTRIBUTE_NONNULL(3) ATTRIBUTE_NONNULL(4) ATTRIBUTE_NONNULL(7)
793
ATTRIBUTE_NONNULL(8) ATTRIBUTE_NONNULL(9)
E
Eric Blake 已提交
794
virStorageFileGetMetadataInternal(const char *path,
795 796
                                  const char *canonPath,
                                  const char *directory,
797 798
                                  char *buf,
                                  size_t len,
799
                                  int format,
800 801 802
                                  virStorageFileMetadataPtr meta,
                                  char **backingStore,
                                  int *backingFormat)
803
{
804
    int ret = -1;
E
Eric Blake 已提交
805

806 807
    VIR_DEBUG("path=%s, canonPath=%s, dir=%s, buf=%p, len=%zu, format=%d",
              path, canonPath, directory, buf, len, format);
E
Eric Blake 已提交
808

809 810 811 812 813 814 815
    if (VIR_STRDUP(meta->path, path) < 0)
        goto cleanup;
    if (VIR_STRDUP(meta->canonPath, canonPath) < 0)
        goto cleanup;
    if (VIR_STRDUP(meta->relDir, directory) < 0)
        goto cleanup;

E
Eric Blake 已提交
816 817 818 819 820 821 822 823 824
    if (format == VIR_STORAGE_FILE_AUTO)
        format = virStorageFileProbeFormatFromBuf(path, buf, len);

    if (format <= VIR_STORAGE_FILE_NONE ||
        format >= VIR_STORAGE_FILE_LAST) {
        virReportSystemError(EINVAL, _("unknown storage file format %d"),
                             format);
        goto cleanup;
    }
825
    meta->format = format;
826

827 828 829
    /* XXX we should consider moving virStorageBackendUpdateVolInfo
     * code into this method, for non-magic files
     */
E
Eric Blake 已提交
830
    if (!fileTypeInfo[format].magic)
E
Eric Blake 已提交
831
        goto done;
832

833 834
    /* Optionally extract capacity from file */
    if (fileTypeInfo[format].sizeOffset != -1) {
E
Eric Blake 已提交
835 836
        if ((fileTypeInfo[format].sizeOffset + 8) > len)
            goto done;
837

E
Eric Blake 已提交
838 839 840 841 842 843
        if (fileTypeInfo[format].endian == LV_LITTLE_ENDIAN)
            meta->capacity = virReadBufInt64LE(buf +
                                               fileTypeInfo[format].sizeOffset);
        else
            meta->capacity = virReadBufInt64BE(buf +
                                               fileTypeInfo[format].sizeOffset);
844
        /* Avoid unlikely, but theoretically possible overflow */
E
Eric Blake 已提交
845 846
        if (meta->capacity > (ULLONG_MAX /
                              fileTypeInfo[format].sizeMultiplier))
E
Eric Blake 已提交
847
            goto done;
848 849
        meta->capacity *= fileTypeInfo[format].sizeMultiplier;
    }
850

851 852
    if (fileTypeInfo[format].qcowCryptOffset != -1) {
        int crypt_format;
853

E
Eric Blake 已提交
854 855
        crypt_format = virReadBufInt32BE(buf +
                                         fileTypeInfo[format].qcowCryptOffset);
856 857
        if (crypt_format && VIR_ALLOC(meta->encryption) < 0)
            goto cleanup;
858
    }
859

860
    if (fileTypeInfo[format].getBackingStore != NULL) {
861
        char *backing = NULL;
E
Eric Blake 已提交
862
        int store = fileTypeInfo[format].getBackingStore(&backing,
863
                                                         backingFormat,
E
Eric Blake 已提交
864 865 866
                                                         buf, len);
        if (store == BACKING_STORE_INVALID)
            goto done;
867

E
Eric Blake 已提交
868 869
        if (store == BACKING_STORE_ERROR)
            goto cleanup;
870 871

        if (backing != NULL) {
872
            if (VIR_STRDUP(meta->backingStore, backing) < 0) {
873
                VIR_FREE(backing);
E
Eric Blake 已提交
874
                goto cleanup;
875
            }
876
            if (virStorageIsFile(backing)) {
877
                meta->backingStoreRaw = meta->backingStore;
878
                meta->backingStore = NULL;
879
                if (virFindBackingFile(directory, backing,
880 881
                                       &meta->directory,
                                       &meta->backingStore) < 0) {
P
Philipp Hahn 已提交
882
                    /* the backing file is (currently) unavailable, treat this
883 884
                     * file as standalone:
                     * backingStoreRaw is kept to mark broken image chains */
885
                    *backingFormat = VIR_STORAGE_FILE_NONE;
886 887 888
                    VIR_WARN("Backing file '%s' of image '%s' is missing.",
                             meta->backingStoreRaw, path);

889
                }
890
            } else {
891 892 893
                *backingStore = backing;
                backing = NULL;
                *backingFormat = VIR_STORAGE_FILE_RAW;
A
Adam Litke 已提交
894
            }
895 896 897
            VIR_FREE(backing);
        } else {
            meta->backingStore = NULL;
898
            *backingFormat = VIR_STORAGE_FILE_NONE;
899 900 901
        }
    }

902 903 904 905 906 907 908 909
    if (fileTypeInfo[format].getFeatures != NULL &&
        fileTypeInfo[format].getFeatures(&meta->features, format, buf, len) < 0)
        goto cleanup;

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

910
 done:
911
    ret = 0;
E
Eric Blake 已提交
912

913
 cleanup:
E
Eric Blake 已提交
914
    return ret;
915 916 917 918
}


/**
919
 * virStorageFileProbeFormat:
920
 *
921 922
 * Probe for the format of 'path', returning the detected
 * disk format.
923 924 925
 *
 * Callers are advised never to trust the returned 'format'
 * unless it is listed as VIR_STORAGE_FILE_RAW, since a
926
 * malicious guest can turn a raw file into any other non-raw
927 928 929 930 931
 * format at will.
 *
 * Best option: Don't use this function
 */
int
932
virStorageFileProbeFormat(const char *path, uid_t uid, gid_t gid)
933
{
934
    int fd;
935
    int ret = -1;
936
    struct stat sb;
937 938
    ssize_t len = VIR_STORAGE_MAX_HEADER;
    char *header = NULL;
939

940 941
    if ((fd = virFileOpenAs(path, O_RDONLY, 0, uid, gid, 0)) < 0) {
        virReportSystemError(-fd, _("Failed to open file '%s'"), path);
942 943 944
        return -1;
    }

945 946 947 948 949
    if (fstat(fd, &sb) < 0) {
        virReportSystemError(errno, _("cannot stat file '%s'"), path);
        goto cleanup;
    }

950 951
    /* No header to probe for directories */
    if (S_ISDIR(sb.st_mode)) {
952 953
        ret = VIR_STORAGE_FILE_DIR;
        goto cleanup;
954
    }
955 956 957 958 959 960

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

961
    if ((len = virFileReadHeaderFD(fd, len, &header)) < 0) {
962 963 964 965
        virReportSystemError(errno, _("cannot read header '%s'"), path);
        goto cleanup;
    }

966
    ret = virStorageFileProbeFormatFromBuf(path, header, len);
967

968
 cleanup:
969
    VIR_FREE(header);
970
    VIR_FORCE_CLOSE(fd);
971 972 973 974

    return ret;
}

975 976 977 978 979 980 981

/**
 * virStorageFileGetMetadataFromBuf:
 * @path: name of file, for error messages
 * @buf: header bytes from @path
 * @len: length of @buf
 * @format: expected image format
982 983
 * @backing: output malloc'd name of backing image, if any
 * @backingFormat: format of @backing
984 985 986 987 988 989 990 991 992
 *
 * Extract metadata about the storage volume with the specified
 * image format. If image format is VIR_STORAGE_FILE_AUTO, it
 * will probe to automatically identify the format.  Does not recurse.
 *
 * 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.
 *
993
 * If the returned @backingFormat is VIR_STORAGE_FILE_AUTO
994 995 996 997 998 999 1000 1001 1002 1003
 * 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.
 *
 * Caller MUST free the result after use via virStorageFileFreeMetadata.
 */
virStorageFileMetadataPtr
virStorageFileGetMetadataFromBuf(const char *path,
                                 char *buf,
                                 size_t len,
1004 1005 1006
                                 int format,
                                 char **backing,
                                 int *backingFormat)
1007
{
1008
    virStorageFileMetadataPtr ret = NULL;
1009 1010 1011 1012 1013 1014
    char *canonPath;

    if (!(canonPath = canonicalize_file_name(path))) {
        virReportSystemError(errno, _("unable to resolve '%s'"), path);
        return NULL;
    }
1015 1016 1017 1018
    if (VIR_ALLOC(ret) < 0)
        goto cleanup;

    if (virStorageFileGetMetadataInternal(path, canonPath, ".", buf, len,
1019 1020
                                          format, ret, backing,
                                          backingFormat) < 0) {
1021 1022 1023
        virStorageFileFreeMetadata(ret);
        ret = NULL;
    }
1024

1025
 cleanup:
1026 1027
    VIR_FREE(canonPath);
    return ret;
1028 1029 1030 1031
}


/* Internal version that also supports a containing directory name.  */
1032
static int
1033
virStorageFileGetMetadataFromFDInternal(const char *path,
1034
                                        const char *canonPath,
1035
                                        const char *directory,
1036
                                        int fd,
1037
                                        int format,
1038 1039
                                        virStorageFileMetadataPtr meta,
                                        int *backingFormat)
1040 1041
{
    char *buf = NULL;
1042
    ssize_t len = VIR_STORAGE_MAX_HEADER;
1043
    struct stat sb;
1044
    int ret = -1;
1045
    int dummy;
1046

1047 1048 1049
    if (!backingFormat)
        backingFormat = &dummy;
    *backingFormat = VIR_STORAGE_FILE_NONE;
1050 1051 1052 1053
    if (fstat(fd, &sb) < 0) {
        virReportSystemError(errno,
                             _("cannot stat file '%s'"),
                             path);
1054
        return -1;
1055 1056 1057
    }

    if (S_ISDIR(sb.st_mode)) {
1058 1059 1060 1061 1062 1063 1064
        /* No header to probe for directories, but also no backing
         * file; therefore, no inclusion loop is possible, and we
         * don't need canonName or relDir.  */
        if (VIR_STRDUP(meta->path, path) < 0)
            goto cleanup;
        meta->type = VIR_STORAGE_TYPE_DIR;
        meta->format = VIR_STORAGE_FILE_DIR;
1065
        ret = 0;
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
        goto cleanup;
    }

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

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

1079
    ret = virStorageFileGetMetadataInternal(path, canonPath, directory,
1080 1081
                                            buf, len, format, meta,
                                            &meta->backingStoreRaw,
1082
                                            backingFormat);
1083

1084 1085 1086 1087 1088 1089
    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;
    }
1090
 cleanup:
1091 1092 1093 1094 1095
    VIR_FREE(buf);
    return ret;
}


1096 1097 1098
/**
 * virStorageFileGetMetadataFromFD:
 *
1099 1100
 * Extract metadata about the storage volume with the specified
 * image format. If image format is VIR_STORAGE_FILE_AUTO, it
1101
 * will probe to automatically identify the format.  Does not recurse.
1102
 *
1103 1104 1105 1106
 * 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.
 *
1107
 * Caller MUST free the result after use via virStorageFileFreeMetadata.
1108
 */
1109
virStorageFileMetadataPtr
1110 1111
virStorageFileGetMetadataFromFD(const char *path,
                                int fd,
1112
                                int format)
1113
{
1114
    virStorageFileMetadataPtr ret = NULL;
1115 1116 1117 1118 1119 1120
    char *canonPath;

    if (!(canonPath = canonicalize_file_name(path))) {
        virReportSystemError(errno, _("unable to resolve '%s'"), path);
        return NULL;
    }
1121 1122 1123
    if (VIR_ALLOC(ret) < 0)
        goto cleanup;
    if (virStorageFileGetMetadataFromFDInternal(path, canonPath, ".",
1124
                                                fd, format, ret, NULL) < 0) {
1125 1126 1127 1128 1129
        virStorageFileFreeMetadata(ret);
        ret = NULL;
    }

 cleanup:
1130 1131
    VIR_FREE(canonPath);
    return ret;
1132 1133
}

1134

1135
/* Recursive workhorse for virStorageFileGetMetadata.  */
1136
static int
1137 1138
virStorageFileGetMetadataRecurse(const char *path, const char *canonPath,
                                 const char *directory,
1139
                                 int format, uid_t uid, gid_t gid,
1140 1141
                                 bool allow_probe, virHashTablePtr cycle,
                                 virStorageFileMetadataPtr meta)
1142 1143
{
    int fd;
1144
    int ret = -1;
1145 1146
    int backingFormat;

1147 1148 1149
    VIR_DEBUG("path=%s canonPath=%s dir=%s format=%d uid=%d gid=%d probe=%d",
              path, canonPath, NULLSTR(directory), format,
              (int)uid, (int)gid, allow_probe);
1150

1151
    if (virHashLookup(cycle, canonPath)) {
1152 1153 1154
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("backing store for %s is self-referential"),
                       path);
1155
        return -1;
1156
    }
1157
    if (virHashAddEntry(cycle, canonPath, (void *)1) < 0)
1158
        return -1;
1159

1160
    if (virStorageIsFile(path)) {
1161 1162 1163 1164
        if ((fd = virFileOpenAs(canonPath, O_RDONLY, 0, uid, gid, 0)) < 0) {
            virReportSystemError(-fd, _("Failed to open file '%s'"), path);
            return -1;
        }
1165

1166 1167
        ret = virStorageFileGetMetadataFromFDInternal(path, canonPath,
                                                      directory,
1168 1169
                                                      fd, format, meta,
                                                      &backingFormat);
1170

1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
        if (VIR_CLOSE(fd) < 0)
            VIR_WARN("could not close file %s", path);
    } else {
        /* FIXME: when the proper storage drivers are compiled in, it
         * would be nice to read metadata from the network storage to
         * allow for non-raw images.  */
        if (VIR_STRDUP(meta->path, path) < 0)
            return -1;
        if (VIR_STRDUP(meta->canonPath, path) < 0)
            return -1;
        meta->type = VIR_STORAGE_TYPE_NETWORK;
        meta->format = VIR_STORAGE_FILE_RAW;
        ret = 0;
    }
1185

1186
    if (ret == 0 && meta->backingStore) {
1187 1188
        virStorageFileMetadataPtr backing;

1189 1190 1191 1192
        if (backingFormat == VIR_STORAGE_FILE_AUTO && !allow_probe)
            backingFormat = VIR_STORAGE_FILE_RAW;
        else if (backingFormat == VIR_STORAGE_FILE_AUTO_SAFE)
            backingFormat = VIR_STORAGE_FILE_AUTO;
1193 1194 1195
        if (VIR_ALLOC(backing) < 0 ||
            virStorageFileGetMetadataRecurse(meta->backingStoreRaw,
                                             meta->backingStore,
1196
                                             meta->directory, backingFormat,
1197 1198
                                             uid, gid, allow_probe,
                                             cycle, backing) < 0) {
1199
            /* If we failed to get backing data, mark the chain broken */
1200 1201 1202 1203
            VIR_FREE(meta->backingStore);
            virStorageFileFreeMetadata(backing);
        } else {
            meta->backingMeta = backing;
1204
        }
1205 1206 1207 1208
    }
    return ret;
}

1209 1210 1211
/**
 * virStorageFileGetMetadata:
 *
1212 1213
 * Extract metadata about the storage volume with the specified
 * image format. If image format is VIR_STORAGE_FILE_AUTO, it
1214 1215 1216 1217 1218
 * will probe to automatically identify the format.  Recurses through
 * the entire chain.
 *
 * Open files using UID and GID (or pass -1 for the current user/group).
 * Treat any backing files without explicit type as raw, unless ALLOW_PROBE.
1219
 *
1220 1221 1222 1223
 * 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.
 *
1224
 * Caller MUST free result after use via virStorageFileFreeMetadata.
1225
 */
1226 1227 1228 1229
virStorageFileMetadataPtr
virStorageFileGetMetadata(const char *path, int format,
                          uid_t uid, gid_t gid,
                          bool allow_probe)
1230
{
1231 1232 1233
    VIR_DEBUG("path=%s format=%d uid=%d gid=%d probe=%d",
              path, format, (int)uid, (int)gid, allow_probe);

1234
    virHashTablePtr cycle = virHashCreate(5, NULL);
1235
    virStorageFileMetadataPtr meta = NULL;
1236
    virStorageFileMetadataPtr ret = NULL;
1237 1238
    char *canonPath = NULL;
    char *directory = NULL;
1239

E
Eric Blake 已提交
1240
    if (!cycle)
1241
        return NULL;
1242

1243
    if (virStorageIsFile(path)) {
1244 1245 1246 1247 1248 1249 1250 1251 1252
        if (!(canonPath = canonicalize_file_name(path))) {
            virReportSystemError(errno, _("unable to resolve '%s'"), path);
            goto cleanup;
        }
        if (!(directory = mdir_name(path))) {
            virReportOOMError();
            goto cleanup;
        }
    } else if (VIR_STRDUP(canonPath, path) < 0) {
1253 1254
        goto cleanup;
    }
1255 1256
    if (VIR_ALLOC(meta) < 0)
        goto cleanup;
1257

1258 1259
    if (format <= VIR_STORAGE_FILE_NONE)
        format = allow_probe ? VIR_STORAGE_FILE_AUTO : VIR_STORAGE_FILE_RAW;
1260 1261 1262 1263 1264 1265 1266
    if (virStorageFileGetMetadataRecurse(path, canonPath, directory, format,
                                         uid, gid, allow_probe, cycle,
                                         meta) < 0)
        goto cleanup;
    ret = meta;
    meta = NULL;

1267
 cleanup:
1268
    virStorageFileFreeMetadata(meta);
1269
    VIR_FREE(canonPath);
1270
    VIR_FREE(directory);
1271
    virHashFree(cycle);
1272 1273
    return ret;
}
1274

1275 1276 1277 1278 1279
/**
 * virStorageFileChainCheckBroken
 *
 * If CHAIN is broken, set *brokenFile to the broken file name,
 * otherwise set it to NULL. Caller MUST free *brokenFile after use.
1280 1281
 * Return 0 on success (including when brokenFile is set), negative on
 * error (allocation failure).
1282 1283 1284 1285 1286 1287 1288 1289
 */
int
virStorageFileChainGetBroken(virStorageFileMetadataPtr chain,
                             char **brokenFile)
{
    virStorageFileMetadataPtr tmp;
    int ret = -1;

1290 1291
    *brokenFile = NULL;

1292 1293 1294 1295 1296
    if (!chain)
        return 0;

    tmp = chain;
    while (tmp) {
1297 1298
        /* Break when we hit end of chain; report error if we detected
         * a missing backing file, infinite loop, or other error */
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
       if (!tmp->backingStoreRaw)
           break;
       if (!tmp->backingStore) {
           if (VIR_STRDUP(*brokenFile, tmp->backingStoreRaw) < 0)
               goto error;
           break;
       }
       tmp = tmp->backingMeta;
    }

    ret = 0;

1311
 error:
1312 1313 1314 1315
    return ret;
}


1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
/**
 * virStorageFileFreeMetadata:
 *
 * Free pointers in passed structure and structure itself.
 */
void
virStorageFileFreeMetadata(virStorageFileMetadata *meta)
{
    if (!meta)
        return;

1327 1328 1329 1330
    VIR_FREE(meta->path);
    VIR_FREE(meta->canonPath);
    VIR_FREE(meta->relDir);

1331
    virStorageFileFreeMetadata(meta->backingMeta);
1332
    VIR_FREE(meta->backingStore);
1333
    VIR_FREE(meta->backingStoreRaw);
1334
    VIR_FREE(meta->compat);
1335
    VIR_FREE(meta->directory);
1336
    virBitmapFree(meta->features);
1337
    virStorageEncryptionFree(meta->encryption);
1338 1339
    VIR_FREE(meta);
}
1340

1341 1342 1343 1344 1345 1346
/**
 * virStorageFileResize:
 *
 * Change the capacity of the raw storage file at 'path'.
 */
int
1347 1348 1349 1350
virStorageFileResize(const char *path,
                     unsigned long long capacity,
                     unsigned long long orig_capacity,
                     bool pre_allocate)
1351
{
1352 1353
    int fd = -1;
    int ret = -1;
1354 1355 1356 1357 1358 1359
    int rc ATTRIBUTE_UNUSED;
    off_t offset ATTRIBUTE_UNUSED;
    off_t len ATTRIBUTE_UNUSED;

    offset = orig_capacity;
    len = capacity - orig_capacity;
1360 1361 1362 1363 1364 1365

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

1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
    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,
1377
                                 _("Failed to pre-allocate space for "
1378 1379 1380 1381 1382
                                   "file '%s'"), path);
            goto cleanup;
        }
#else
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
1383
                       _("preallocate is not supported on this platform"));
1384
        goto cleanup;
1385 1386 1387 1388 1389 1390 1391
#endif
    } else {
        if (ftruncate(fd, capacity) < 0) {
            virReportSystemError(errno,
                                 _("Failed to truncate file '%s'"), path);
            goto cleanup;
        }
1392 1393
    }

1394 1395 1396 1397 1398 1399 1400
    if (VIR_CLOSE(fd) < 0) {
        virReportSystemError(errno, _("Unable to save '%s'"), path);
        goto cleanup;
    }

    ret = 0;

1401
 cleanup:
1402 1403
    VIR_FORCE_CLOSE(fd);
    return ret;
1404 1405
}

1406 1407 1408 1409 1410 1411

int virStorageFileIsClusterFS(const char *path)
{
    /* These are coherent cluster filesystems known to be safe for
     * migration with cache != none
     */
1412 1413 1414
    return virFileIsSharedFSType(path,
                                 VIR_FILE_SHFS_GFS2 |
                                 VIR_FILE_SHFS_OCFS);
1415
}
1416 1417

#ifdef LVS
1418 1419
int virStorageFileGetLVMKey(const char *path,
                            char **key)
1420 1421 1422 1423 1424
{
    /*
     *  # lvs --noheadings --unbuffered --nosuffix --options "uuid" LVNAME
     *    06UgP5-2rhb-w3Bo-3mdR-WeoL-pytO-SAa2ky
     */
1425
    int status;
1426 1427 1428 1429 1430 1431
    virCommandPtr cmd = virCommandNewArgList(
        LVS,
        "--noheadings", "--unbuffered", "--nosuffix",
        "--options", "uuid", path,
        NULL
        );
1432 1433 1434
    int ret = -1;

    *key = NULL;
1435 1436

    /* Run the program and capture its output */
1437 1438
    virCommandSetOutputBuffer(cmd, key);
    if (virCommandRun(cmd, &status) < 0)
1439 1440
        goto cleanup;

1441 1442 1443 1444 1445 1446
    /* 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) {
1447
        char *nl;
1448
        char *tmp = *key;
1449 1450 1451 1452 1453 1454

        /* Find first non-space character */
        while (*tmp && c_isspace(*tmp)) {
            tmp++;
        }
        /* Kill leading spaces */
1455 1456
        if (tmp != *key)
            memmove(*key, tmp, strlen(tmp)+1);
1457 1458

        /* Kill trailing newline */
1459
        if ((nl = strchr(*key, '\n')))
1460 1461 1462
            *nl = '\0';
    }

1463
    ret = 0;
1464

1465
 cleanup:
1466 1467 1468
    if (*key && STREQ(*key, ""))
        VIR_FREE(*key);

1469 1470
    virCommandFree(cmd);

1471
    return ret;
1472 1473
}
#else
1474 1475
int virStorageFileGetLVMKey(const char *path,
                            char **key ATTRIBUTE_UNUSED)
1476 1477
{
    virReportSystemError(ENOSYS, _("Unable to get LVM key for %s"), path);
1478
    return -1;
1479 1480 1481
}
#endif

1482
#ifdef WITH_UDEV
1483 1484
int virStorageFileGetSCSIKey(const char *path,
                             char **key)
1485
{
1486
    int status;
1487 1488 1489 1490 1491 1492 1493
    virCommandPtr cmd = virCommandNewArgList(
        "/lib/udev/scsi_id",
        "--replace-whitespace",
        "--whitelisted",
        "--device", path,
        NULL
        );
1494 1495 1496
    int ret = -1;

    *key = NULL;
1497 1498

    /* Run the program and capture its output */
1499 1500
    virCommandSetOutputBuffer(cmd, key);
    if (virCommandRun(cmd, &status) < 0)
1501 1502
        goto cleanup;

1503 1504 1505 1506 1507 1508
    /* 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');
1509 1510 1511 1512
        if (nl)
            *nl = '\0';
    }

1513 1514
    ret = 0;

1515
 cleanup:
1516 1517 1518
    if (*key && STREQ(*key, ""))
        VIR_FREE(*key);

1519 1520
    virCommandFree(cmd);

1521
    return ret;
1522 1523
}
#else
1524 1525
int virStorageFileGetSCSIKey(const char *path,
                             char **key ATTRIBUTE_UNUSED)
1526 1527
{
    virReportSystemError(ENOSYS, _("Unable to get SCSI key for %s"), path);
1528
    return -1;
1529 1530
}
#endif
1531

1532 1533 1534 1535 1536 1537 1538
/* Given a CHAIN, look for the backing file NAME within the chain and
 * return its canonical name.  Pass NULL for NAME to find the base of
 * the chain.  If META is not NULL, set *META to the point in the
 * chain that describes NAME (or to NULL if the backing element is not
 * a file).  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
1539 1540
 * independently freed.  Reports an error and returns NULL if NAME is
 * not found.  */
1541
const char *
1542
virStorageFileChainLookup(virStorageFileMetadataPtr chain,
1543 1544 1545
                          const char *name, virStorageFileMetadataPtr *meta,
                          const char **parent)
{
1546
    const char *start = chain->canonPath;
1547
    const char *tmp;
E
Eric Blake 已提交
1548 1549
    const char *parentDir = ".";
    bool nameIsFile = virStorageIsFile(name);
1550 1551 1552 1553 1554

    if (!parent)
        parent = &tmp;

    *parent = NULL;
E
Eric Blake 已提交
1555
    while (chain) {
1556
        if (!name) {
E
Eric Blake 已提交
1557
            if (!chain->backingMeta)
1558
                break;
E
Eric Blake 已提交
1559 1560
        } else {
            if (STREQ(name, chain->path))
1561
                break;
E
Eric Blake 已提交
1562 1563 1564 1565 1566 1567 1568 1569 1570
            if (nameIsFile && (chain->type == VIR_STORAGE_TYPE_FILE ||
                               chain->type == VIR_STORAGE_TYPE_BLOCK)) {
                int result = virFileRelLinkPointsTo(parentDir, name,
                                                    chain->canonPath);
                if (result < 0)
                    goto error;
                if (result > 0)
                    break;
            }
1571
        }
E
Eric Blake 已提交
1572 1573 1574
        *parent = chain->canonPath;
        parentDir = chain->relDir;
        chain = chain->backingMeta;
1575
    }
E
Eric Blake 已提交
1576
    if (!chain)
1577 1578
        goto error;
    if (meta)
E
Eric Blake 已提交
1579 1580
        *meta = chain;
    return chain->canonPath;
1581

1582
 error:
1583 1584 1585 1586 1587 1588 1589 1590
    if (name)
        virReportError(VIR_ERR_INVALID_ARG,
                       _("could not find image '%s' in chain for '%s'"),
                       name, start);
    else
        virReportError(VIR_ERR_INVALID_ARG,
                       _("could not find base image in chain for '%s'"),
                       start);
1591 1592 1593 1594 1595
    *parent = NULL;
    if (meta)
        *meta = NULL;
    return NULL;
}
1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657


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;
}
1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684


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;
}


1685 1686 1687 1688 1689 1690 1691 1692 1693 1694
int
virStorageSourceGetActualType(virStorageSourcePtr def)
{
    if (def->type == VIR_STORAGE_TYPE_VOLUME && def->srcpool)
        return def->srcpool->actualtype;

    return def->type;
}


1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
void
virStorageSourceClear(virStorageSourcePtr def)
{
    size_t i;

    if (!def)
        return;

    VIR_FREE(def->path);
    virStorageSourcePoolDefFree(def->srcpool);
    VIR_FREE(def->driverName);
E
Eric Blake 已提交
1706 1707
    virBitmapFree(def->features);
    VIR_FREE(def->compat);
1708 1709 1710 1711 1712 1713 1714
    virStorageEncryptionFree(def->encryption);

    if (def->seclabels) {
        for (i = 0; i < def->nseclabels; i++)
            virSecurityDeviceLabelDefFree(def->seclabels[i]);
        VIR_FREE(def->seclabels);
    }
E
Eric Blake 已提交
1715 1716 1717 1718 1719
    if (def->perms) {
        VIR_FREE(def->perms->label);
        VIR_FREE(def->perms);
    }
    VIR_FREE(def->timestamps);
1720 1721 1722 1723

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