virstoragefile.c 44.9 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 51 52 53 54 55 56
VIR_ENUM_IMPL(virStorage, VIR_STORAGE_TYPE_LAST,
              "block",
              "file",
              "dir",
              "network",
              "volume")

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

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

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

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

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

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

enum {
    BACKING_STORE_OK,
    BACKING_STORE_INVALID,
    BACKING_STORE_ERROR,
};

104 105
#define FILE_TYPE_VERSIONS_LAST 2

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

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

#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

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

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

177 178

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

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

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

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

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

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

295 296 297

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

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

        offset += len;
    }

344
 done:
345 346 347 348 349

    return 0;
}


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

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

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

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

424 425 426 427
    return BACKING_STORE_OK;
}


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

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

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


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

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

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

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

    ret = BACKING_STORE_OK;

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

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

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

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

    return BACKING_STORE_OK;
}

559
/**
560 561 562 563 564
 * Given a starting point START (either an original file name, or the
 * directory containing the original name, depending on START_IS_DIR)
 * and a possibly relative backing file NAME, compute the relative
 * DIRECTORY (optional) and CANONICAL (mandatory) location of the
 * backing file.  Return 0 on success, negative on error.
565
 */
566 567 568
static int ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(3) ATTRIBUTE_NONNULL(5)
virFindBackingFile(const char *start, bool start_is_dir, const char *path,
                   char **directory, char **canonical)
569
{
570 571
    char *combined = NULL;
    int ret = -1;
572

573 574 575 576 577
    if (*path == '/') {
        /* Safe to cast away const */
        combined = (char *)path;
    } else {
        size_t d_len = start_is_dir ? strlen(start) : dir_len(start);
578

579 580 581 582 583 584 585 586
        if (d_len > INT_MAX) {
            virReportError(VIR_ERR_INTERNAL_ERROR,
                           _("name too long: '%s'"), start);
            goto cleanup;
        } else if (d_len == 0) {
            start = ".";
            d_len = 1;
        }
587
        if (virAsprintf(&combined, "%.*s/%s", (int)d_len, start, path) < 0)
588
            goto cleanup;
589
    }
590

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

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

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

609
    ret = 0;
610

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

617 618 619

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

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

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

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

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

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

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

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

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

689
    return false;
690
}
691

A
Adam Litke 已提交
692 693 694
static bool
virBackingStoreIsFile(const char *backing)
{
695 696 697 698 699 700 701
    char *colon = strchr(backing, ':');
    char *slash = strchr(backing, '/');

    /* 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 已提交
702 703 704
        return false;
    return true;
}
705

706
int
E
Eric Blake 已提交
707
virStorageFileProbeFormatFromBuf(const char *path,
E
Eric Blake 已提交
708
                                 char *buf,
E
Eric Blake 已提交
709 710 711
                                 size_t buflen)
{
    int format = VIR_STORAGE_FILE_RAW;
712
    size_t i;
E
Eric Blake 已提交
713
    int possibleFormat = VIR_STORAGE_FILE_RAW;
714
    VIR_DEBUG("path=%s, buf=%p, buflen=%zu", path, buf, buflen);
E
Eric Blake 已提交
715 716

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

741
 cleanup:
E
Eric Blake 已提交
742 743 744 745 746
    VIR_DEBUG("format=%d", format);
    return format;
}


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

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

    if (version == 2)
        return 0;

    if (len < QCOW2v3_HDR_SIZE)
        return -1;

766
    if (!(feat = virBitmapNew(VIR_STORAGE_FILE_FEATURE_LAST)))
767 768 769 770 771 772 773 774 775 776 777 778 779 780
        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;
}


781 782 783 784
/* Given a header in BUF with length LEN, as parsed from the file
 * located at PATH, and optionally opened from a given DIRECTORY,
 * return metadata about that file, assuming it has the given
 * FORMAT. */
E
Eric Blake 已提交
785
static virStorageFileMetadataPtr
E
Eric Blake 已提交
786
virStorageFileGetMetadataInternal(const char *path,
787 788
                                  char *buf,
                                  size_t len,
789
                                  const char *directory,
E
Eric Blake 已提交
790
                                  int format)
791
{
E
Eric Blake 已提交
792
    virStorageFileMetadata *meta = NULL;
E
Eric Blake 已提交
793
    virStorageFileMetadata *ret = NULL;
E
Eric Blake 已提交
794

795 796
    VIR_DEBUG("path=%s, buf=%p, len=%zu, directory=%s, format=%d",
              path, buf, len, NULLSTR(directory), format);
E
Eric Blake 已提交
797

798
    if (VIR_ALLOC(meta) < 0)
E
Eric Blake 已提交
799 800 801 802 803 804 805 806 807 808 809
        return NULL;

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

811 812 813
    /* XXX we should consider moving virStorageBackendUpdateVolInfo
     * code into this method, for non-magic files
     */
E
Eric Blake 已提交
814
    if (!fileTypeInfo[format].magic)
E
Eric Blake 已提交
815
        goto done;
816

817 818
    /* Optionally extract capacity from file */
    if (fileTypeInfo[format].sizeOffset != -1) {
E
Eric Blake 已提交
819 820
        if ((fileTypeInfo[format].sizeOffset + 8) > len)
            goto done;
821

E
Eric Blake 已提交
822 823 824 825 826 827
        if (fileTypeInfo[format].endian == LV_LITTLE_ENDIAN)
            meta->capacity = virReadBufInt64LE(buf +
                                               fileTypeInfo[format].sizeOffset);
        else
            meta->capacity = virReadBufInt64BE(buf +
                                               fileTypeInfo[format].sizeOffset);
828
        /* Avoid unlikely, but theoretically possible overflow */
E
Eric Blake 已提交
829 830
        if (meta->capacity > (ULLONG_MAX /
                              fileTypeInfo[format].sizeMultiplier))
E
Eric Blake 已提交
831
            goto done;
832 833
        meta->capacity *= fileTypeInfo[format].sizeMultiplier;
    }
834

835 836
    if (fileTypeInfo[format].qcowCryptOffset != -1) {
        int crypt_format;
837

E
Eric Blake 已提交
838 839
        crypt_format = virReadBufInt32BE(buf +
                                         fileTypeInfo[format].qcowCryptOffset);
840 841
        meta->encrypted = crypt_format != 0;
    }
842

843 844 845
    if (fileTypeInfo[format].getBackingStore != NULL) {
        char *backing;
        int backingFormat;
E
Eric Blake 已提交
846 847 848 849 850
        int store = fileTypeInfo[format].getBackingStore(&backing,
                                                         &backingFormat,
                                                         buf, len);
        if (store == BACKING_STORE_INVALID)
            goto done;
851

E
Eric Blake 已提交
852 853
        if (store == BACKING_STORE_ERROR)
            goto cleanup;
854

A
Adam Litke 已提交
855
        meta->backingStoreIsFile = false;
856
        if (backing != NULL) {
857
            if (VIR_STRDUP(meta->backingStore, backing) < 0) {
858
                VIR_FREE(backing);
E
Eric Blake 已提交
859
                goto cleanup;
860
            }
A
Adam Litke 已提交
861 862
            if (virBackingStoreIsFile(backing)) {
                meta->backingStoreIsFile = true;
863
                meta->backingStoreRaw = meta->backingStore;
864 865 866 867 868
                meta->backingStore = NULL;
                if (virFindBackingFile(directory ? directory : path,
                                       !!directory, backing,
                                       &meta->directory,
                                       &meta->backingStore) < 0) {
P
Philipp Hahn 已提交
869
                    /* the backing file is (currently) unavailable, treat this
870 871 872
                     * file as standalone:
                     * backingStoreRaw is kept to mark broken image chains */
                    meta->backingStoreIsFile = false;
P
Philipp Hahn 已提交
873
                    backingFormat = VIR_STORAGE_FILE_NONE;
874 875 876
                    VIR_WARN("Backing file '%s' of image '%s' is missing.",
                             meta->backingStoreRaw, path);

877
                }
A
Adam Litke 已提交
878
            }
879 880 881 882
            VIR_FREE(backing);
            meta->backingStoreFormat = backingFormat;
        } else {
            meta->backingStore = NULL;
E
Eric Blake 已提交
883
            meta->backingStoreFormat = VIR_STORAGE_FILE_NONE;
884 885 886
        }
    }

887 888 889 890 891 892 893 894
    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;

895
 done:
E
Eric Blake 已提交
896
    ret = meta;
E
Eric Blake 已提交
897 898
    meta = NULL;

899
 cleanup:
E
Eric Blake 已提交
900
    virStorageFileFreeMetadata(meta);
E
Eric Blake 已提交
901
    return ret;
902 903 904 905
}


/**
906
 * virStorageFileProbeFormat:
907
 *
908 909
 * Probe for the format of 'path', returning the detected
 * disk format.
910 911 912
 *
 * Callers are advised never to trust the returned 'format'
 * unless it is listed as VIR_STORAGE_FILE_RAW, since a
913
 * malicious guest can turn a raw file into any other non-raw
914 915 916 917 918
 * format at will.
 *
 * Best option: Don't use this function
 */
int
919
virStorageFileProbeFormat(const char *path, uid_t uid, gid_t gid)
920
{
921
    int fd;
922
    int ret = -1;
923
    struct stat sb;
924 925
    ssize_t len = VIR_STORAGE_MAX_HEADER;
    char *header = NULL;
926

927 928
    if ((fd = virFileOpenAs(path, O_RDONLY, 0, uid, gid, 0)) < 0) {
        virReportSystemError(-fd, _("Failed to open file '%s'"), path);
929 930 931
        return -1;
    }

932 933 934 935 936
    if (fstat(fd, &sb) < 0) {
        virReportSystemError(errno, _("cannot stat file '%s'"), path);
        goto cleanup;
    }

937 938
    /* No header to probe for directories */
    if (S_ISDIR(sb.st_mode)) {
939 940
        ret = VIR_STORAGE_FILE_DIR;
        goto cleanup;
941
    }
942 943 944 945 946 947

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

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

953
    ret = virStorageFileProbeFormatFromBuf(path, header, len);
954

955
 cleanup:
956
    VIR_FREE(header);
957
    VIR_FORCE_CLOSE(fd);
958 959 960 961

    return ret;
}

962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002

/**
 * virStorageFileGetMetadataFromBuf:
 * @path: name of file, for error messages
 * @buf: header bytes from @path
 * @len: length of @buf
 * @format: expected image format
 *
 * 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.
 *
 * If the returned meta.backingStoreFormat is VIR_STORAGE_FILE_AUTO
 * 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,
                                 int format)
{
    return virStorageFileGetMetadataInternal(path, buf, len, NULL, format);
}


/* Internal version that also supports a containing directory name.  */
static virStorageFileMetadataPtr
virStorageFileGetMetadataFromFDInternal(const char *path,
                                        int fd,
                                        const char *directory,
                                        int format)
{
    char *buf = NULL;
1003
    ssize_t len = VIR_STORAGE_MAX_HEADER;
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030
    struct stat sb;
    virStorageFileMetadataPtr ret = NULL;

    if (fstat(fd, &sb) < 0) {
        virReportSystemError(errno,
                             _("cannot stat file '%s'"),
                             path);
        return NULL;
    }

    /* No header to probe for directories, but also no backing file */
    if (S_ISDIR(sb.st_mode)) {
        ignore_value(VIR_ALLOC(ret));
        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;
    }

    ret = virStorageFileGetMetadataInternal(path, buf, len, directory, format);
1031
 cleanup:
1032 1033 1034 1035 1036
    VIR_FREE(buf);
    return ret;
}


1037 1038 1039
/**
 * virStorageFileGetMetadataFromFD:
 *
1040 1041
 * Extract metadata about the storage volume with the specified
 * image format. If image format is VIR_STORAGE_FILE_AUTO, it
1042
 * will probe to automatically identify the format.  Does not recurse.
1043
 *
1044 1045 1046 1047 1048 1049 1050 1051
 * 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.
 *
 * If the returned meta.backingStoreFormat is VIR_STORAGE_FILE_AUTO
 * 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.
1052
 *
1053
 * Caller MUST free the result after use via virStorageFileFreeMetadata.
1054
 */
1055
virStorageFileMetadataPtr
1056 1057
virStorageFileGetMetadataFromFD(const char *path,
                                int fd,
1058
                                int format)
1059
{
1060
    return virStorageFileGetMetadataFromFDInternal(path, fd, NULL, format);
1061 1062
}

1063

1064 1065
/* Recursive workhorse for virStorageFileGetMetadata.  */
static virStorageFileMetadataPtr
1066 1067
virStorageFileGetMetadataRecurse(const char *path, const char *directory,
                                 int format, uid_t uid, gid_t gid,
1068 1069 1070
                                 bool allow_probe, virHashTablePtr cycle)
{
    int fd;
1071 1072 1073
    VIR_DEBUG("path=%s format=%d uid=%d gid=%d probe=%d",
              path, format, (int)uid, (int)gid, allow_probe);

1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
    virStorageFileMetadataPtr ret = NULL;

    if (virHashLookup(cycle, path)) {
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       _("backing store for %s is self-referential"),
                       path);
        return NULL;
    }
    if (virHashAddEntry(cycle, path, (void *)1) < 0)
        return NULL;

    if ((fd = virFileOpenAs(path, O_RDONLY, 0, uid, gid, 0)) < 0) {
1086
        virReportSystemError(-fd, _("Failed to open file '%s'"), path);
1087 1088 1089
        return NULL;
    }

1090
    ret = virStorageFileGetMetadataFromFDInternal(path, fd, directory, format);
1091 1092 1093 1094

    if (VIR_CLOSE(fd) < 0)
        VIR_WARN("could not close file %s", path);

1095
    if (ret && ret->backingStoreIsFile) {
1096 1097 1098 1099 1100 1101
        if (ret->backingStoreFormat == VIR_STORAGE_FILE_AUTO && !allow_probe)
            ret->backingStoreFormat = VIR_STORAGE_FILE_RAW;
        else if (ret->backingStoreFormat == VIR_STORAGE_FILE_AUTO_SAFE)
            ret->backingStoreFormat = VIR_STORAGE_FILE_AUTO;
        format = ret->backingStoreFormat;
        ret->backingMeta = virStorageFileGetMetadataRecurse(ret->backingStore,
1102
                                                            ret->directory,
1103 1104 1105 1106 1107 1108 1109 1110 1111
                                                            format,
                                                            uid, gid,
                                                            allow_probe,
                                                            cycle);
    }

    return ret;
}

1112 1113 1114
/**
 * virStorageFileGetMetadata:
 *
1115 1116
 * Extract metadata about the storage volume with the specified
 * image format. If image format is VIR_STORAGE_FILE_AUTO, it
1117 1118 1119 1120 1121
 * 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.
1122
 *
1123 1124 1125 1126 1127 1128
 * 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.
 *
 * If the returned meta.backingStoreFormat is VIR_STORAGE_FILE_AUTO
 * it indicates the image didn't specify an explicit format for its
1129 1130
 * backing store. Callers are advised against using ALLOW_PROBE, as
 * it would probe the backing store format in this case.
1131
 *
1132
 * Caller MUST free result after use via virStorageFileFreeMetadata.
1133
 */
1134 1135 1136 1137
virStorageFileMetadataPtr
virStorageFileGetMetadata(const char *path, int format,
                          uid_t uid, gid_t gid,
                          bool allow_probe)
1138
{
1139 1140 1141
    VIR_DEBUG("path=%s format=%d uid=%d gid=%d probe=%d",
              path, format, (int)uid, (int)gid, allow_probe);

1142 1143
    virHashTablePtr cycle = virHashCreate(5, NULL);
    virStorageFileMetadataPtr ret;
1144

1145
    if (!cycle || !path)
1146
        return NULL;
1147

1148 1149
    if (format <= VIR_STORAGE_FILE_NONE)
        format = allow_probe ? VIR_STORAGE_FILE_AUTO : VIR_STORAGE_FILE_RAW;
1150
    ret = virStorageFileGetMetadataRecurse(path, NULL, format, uid, gid,
1151 1152
                                           allow_probe, cycle);
    virHashFree(cycle);
1153 1154
    return ret;
}
1155

1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
/**
 * virStorageFileChainCheckBroken
 *
 * If CHAIN is broken, set *brokenFile to the broken file name,
 * otherwise set it to NULL. Caller MUST free *brokenFile after use.
 * Return 0 on success, negative on error.
 */
int
virStorageFileChainGetBroken(virStorageFileMetadataPtr chain,
                             char **brokenFile)
{
    virStorageFileMetadataPtr tmp;
    int ret = -1;

    if (!chain)
        return 0;

    *brokenFile = NULL;

    tmp = chain;
    while (tmp) {
        /* Break if no backing store or backing store is not file */
       if (!tmp->backingStoreRaw)
           break;
       if (!tmp->backingStore) {
           if (VIR_STRDUP(*brokenFile, tmp->backingStoreRaw) < 0)
               goto error;
           break;
       }
       tmp = tmp->backingMeta;
    }

    ret = 0;

1190
 error:
1191 1192 1193 1194
    return ret;
}


1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
/**
 * virStorageFileFreeMetadata:
 *
 * Free pointers in passed structure and structure itself.
 */
void
virStorageFileFreeMetadata(virStorageFileMetadata *meta)
{
    if (!meta)
        return;

1206
    virStorageFileFreeMetadata(meta->backingMeta);
1207
    VIR_FREE(meta->backingStore);
1208
    VIR_FREE(meta->backingStoreRaw);
1209
    VIR_FREE(meta->compat);
1210
    VIR_FREE(meta->directory);
1211
    virBitmapFree(meta->features);
1212 1213
    VIR_FREE(meta);
}
1214

1215 1216 1217 1218 1219 1220
/**
 * virStorageFileResize:
 *
 * Change the capacity of the raw storage file at 'path'.
 */
int
1221 1222 1223 1224
virStorageFileResize(const char *path,
                     unsigned long long capacity,
                     unsigned long long orig_capacity,
                     bool pre_allocate)
1225
{
1226 1227
    int fd = -1;
    int ret = -1;
1228 1229 1230 1231 1232 1233
    int rc ATTRIBUTE_UNUSED;
    off_t offset ATTRIBUTE_UNUSED;
    off_t len ATTRIBUTE_UNUSED;

    offset = orig_capacity;
    len = capacity - orig_capacity;
1234 1235 1236 1237 1238 1239

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

1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
    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,
1251
                                 _("Failed to pre-allocate space for "
1252 1253 1254 1255 1256
                                   "file '%s'"), path);
            goto cleanup;
        }
#else
        virReportError(VIR_ERR_OPERATION_UNSUPPORTED, "%s",
1257
                       _("preallocate is not supported on this platform"));
1258
        goto cleanup;
1259 1260 1261 1262 1263 1264 1265
#endif
    } else {
        if (ftruncate(fd, capacity) < 0) {
            virReportSystemError(errno,
                                 _("Failed to truncate file '%s'"), path);
            goto cleanup;
        }
1266 1267
    }

1268 1269 1270 1271 1272 1273 1274
    if (VIR_CLOSE(fd) < 0) {
        virReportSystemError(errno, _("Unable to save '%s'"), path);
        goto cleanup;
    }

    ret = 0;

1275
 cleanup:
1276 1277
    VIR_FORCE_CLOSE(fd);
    return ret;
1278 1279
}

1280 1281 1282 1283 1284 1285

int virStorageFileIsClusterFS(const char *path)
{
    /* These are coherent cluster filesystems known to be safe for
     * migration with cache != none
     */
1286 1287 1288
    return virFileIsSharedFSType(path,
                                 VIR_FILE_SHFS_GFS2 |
                                 VIR_FILE_SHFS_OCFS);
1289
}
1290 1291

#ifdef LVS
1292 1293
int virStorageFileGetLVMKey(const char *path,
                            char **key)
1294 1295 1296 1297 1298
{
    /*
     *  # lvs --noheadings --unbuffered --nosuffix --options "uuid" LVNAME
     *    06UgP5-2rhb-w3Bo-3mdR-WeoL-pytO-SAa2ky
     */
1299
    int status;
1300 1301 1302 1303 1304 1305
    virCommandPtr cmd = virCommandNewArgList(
        LVS,
        "--noheadings", "--unbuffered", "--nosuffix",
        "--options", "uuid", path,
        NULL
        );
1306 1307 1308
    int ret = -1;

    *key = NULL;
1309 1310

    /* Run the program and capture its output */
1311 1312
    virCommandSetOutputBuffer(cmd, key);
    if (virCommandRun(cmd, &status) < 0)
1313 1314
        goto cleanup;

1315 1316 1317 1318 1319 1320
    /* 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) {
1321
        char *nl;
1322
        char *tmp = *key;
1323 1324 1325 1326 1327 1328

        /* Find first non-space character */
        while (*tmp && c_isspace(*tmp)) {
            tmp++;
        }
        /* Kill leading spaces */
1329 1330
        if (tmp != *key)
            memmove(*key, tmp, strlen(tmp)+1);
1331 1332

        /* Kill trailing newline */
1333
        if ((nl = strchr(*key, '\n')))
1334 1335 1336
            *nl = '\0';
    }

1337
    ret = 0;
1338

1339
 cleanup:
1340 1341 1342
    if (*key && STREQ(*key, ""))
        VIR_FREE(*key);

1343 1344
    virCommandFree(cmd);

1345
    return ret;
1346 1347
}
#else
1348 1349
int virStorageFileGetLVMKey(const char *path,
                            char **key ATTRIBUTE_UNUSED)
1350 1351
{
    virReportSystemError(ENOSYS, _("Unable to get LVM key for %s"), path);
1352
    return -1;
1353 1354 1355
}
#endif

1356
#ifdef WITH_UDEV
1357 1358
int virStorageFileGetSCSIKey(const char *path,
                             char **key)
1359
{
1360
    int status;
1361 1362 1363 1364 1365 1366 1367
    virCommandPtr cmd = virCommandNewArgList(
        "/lib/udev/scsi_id",
        "--replace-whitespace",
        "--whitelisted",
        "--device", path,
        NULL
        );
1368 1369 1370
    int ret = -1;

    *key = NULL;
1371 1372

    /* Run the program and capture its output */
1373 1374
    virCommandSetOutputBuffer(cmd, key);
    if (virCommandRun(cmd, &status) < 0)
1375 1376
        goto cleanup;

1377 1378 1379 1380 1381 1382
    /* 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');
1383 1384 1385 1386
        if (nl)
            *nl = '\0';
    }

1387 1388
    ret = 0;

1389
 cleanup:
1390 1391 1392
    if (*key && STREQ(*key, ""))
        VIR_FREE(*key);

1393 1394
    virCommandFree(cmd);

1395
    return ret;
1396 1397
}
#else
1398 1399
int virStorageFileGetSCSIKey(const char *path,
                             char **key ATTRIBUTE_UNUSED)
1400 1401
{
    virReportSystemError(ENOSYS, _("Unable to get SCSI key for %s"), path);
1402
    return -1;
1403 1404
}
#endif
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

/* Given a CHAIN that starts at the named file START, return a string
 * pointing to either START or within CHAIN that gives the preferred
 * name for the backing file NAME within that chain.  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
 * START).  Since the results point within CHAIN, they must not be
 * independently freed.  */
const char *
virStorageFileChainLookup(virStorageFileMetadataPtr chain, const char *start,
                          const char *name, virStorageFileMetadataPtr *meta,
                          const char **parent)
{
    virStorageFileMetadataPtr owner;
    const char *tmp;

    if (!parent)
        parent = &tmp;

    *parent = NULL;
    if (name ? STREQ(start, name) || virFileLinkPointsTo(start, name) :
        !chain->backingStore) {
        if (meta)
            *meta = chain;
        return start;
    }

    owner = chain;
    *parent = start;
    while (owner) {
        if (!owner->backingStore)
            goto error;
        if (!name) {
            if (!owner->backingMeta ||
                !owner->backingMeta->backingStore)
                break;
        } else if (STREQ_NULLABLE(name, owner->backingStoreRaw) ||
                   STREQ(name, owner->backingStore)) {
            break;
        } else if (owner->backingStoreIsFile) {
1447 1448 1449 1450
            char *absName = NULL;
            if (virFindBackingFile(owner->directory, true, name,
                                   NULL, &absName) < 0)
                goto error;
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465
            if (absName && STREQ(absName, owner->backingStore)) {
                VIR_FREE(absName);
                break;
            }
            VIR_FREE(absName);
        }
        *parent = owner->backingStore;
        owner = owner->backingMeta;
    }
    if (!owner)
        goto error;
    if (meta)
        *meta = owner->backingMeta;
    return owner->backingStore;

1466
 error:
1467 1468 1469 1470 1471
    *parent = NULL;
    if (meta)
        *meta = NULL;
    return NULL;
}
1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533


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