virstoragefile.h 11.3 KB
Newer Older
1
/*
2
 * virstoragefile.h: file utility functions for FS storage backend
3
 *
4
 * Copyright (C) 2007-2009, 2012-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>
 */

#ifndef __VIR_STORAGE_FILE_H__
25
# define __VIR_STORAGE_FILE_H__
26

27
# include "virbitmap.h"
28 29
# include "virseclabel.h"
# include "virstorageencryption.h"
30
# include "virutil.h"
31

32 33 34 35 36 37 38 39
/* Minimum header size required to probe all known formats with
 * virStorageFileProbeFormat, or obtain metadata from a known format.
 * Rounded to multiple of 512 (ISO has a 5-byte magic at offset
 * 32769).  Some formats can be probed with fewer bytes.  Although
 * some formats theoretically permit metadata that can rely on offsets
 * beyond this size, in practice that doesn't matter.  */
# define VIR_STORAGE_MAX_HEADER 0x8200

E
Eric Blake 已提交
40

41 42 43 44
/* Types of disk backends (host resource).  Comparable to the public
 * virStorageVolType, except we have an undetermined state, don't have
 * a netdir type, and add a volume type for reference through a
 * storage pool.  */
E
Eric Blake 已提交
45
enum virStorageType {
46
    VIR_STORAGE_TYPE_NONE,
E
Eric Blake 已提交
47
    VIR_STORAGE_TYPE_FILE,
48
    VIR_STORAGE_TYPE_BLOCK,
E
Eric Blake 已提交
49 50 51 52 53 54 55 56 57 58
    VIR_STORAGE_TYPE_DIR,
    VIR_STORAGE_TYPE_NETWORK,
    VIR_STORAGE_TYPE_VOLUME,

    VIR_STORAGE_TYPE_LAST
};

VIR_ENUM_DECL(virStorage)


59
enum virStorageFileFormat {
60
    VIR_STORAGE_FILE_AUTO_SAFE = -2,
61
    VIR_STORAGE_FILE_AUTO = -1,
E
Eric Blake 已提交
62 63
    VIR_STORAGE_FILE_NONE = 0,
    VIR_STORAGE_FILE_RAW,
64 65 66 67 68 69 70 71
    VIR_STORAGE_FILE_DIR,
    VIR_STORAGE_FILE_BOCHS,
    VIR_STORAGE_FILE_CLOOP,
    VIR_STORAGE_FILE_COW,
    VIR_STORAGE_FILE_DMG,
    VIR_STORAGE_FILE_ISO,
    VIR_STORAGE_FILE_QCOW,
    VIR_STORAGE_FILE_QCOW2,
A
Adam Litke 已提交
72
    VIR_STORAGE_FILE_QED,
73 74
    VIR_STORAGE_FILE_VMDK,
    VIR_STORAGE_FILE_VPC,
E
Eric Blake 已提交
75 76
    VIR_STORAGE_FILE_FAT,
    VIR_STORAGE_FILE_VHD,
77
    VIR_STORAGE_FILE_VDI,
E
Eric Blake 已提交
78

79 80 81 82 83
    VIR_STORAGE_FILE_LAST,
};

VIR_ENUM_DECL(virStorageFileFormat);

84
enum virStorageFileFeature {
85
    VIR_STORAGE_FILE_FEATURE_LAZY_REFCOUNTS = 0,
86 87 88 89 90 91

    VIR_STORAGE_FILE_FEATURE_LAST
};

VIR_ENUM_DECL(virStorageFileFeature);

E
Eric Blake 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
typedef struct _virStoragePerms virStoragePerms;
typedef virStoragePerms *virStoragePermsPtr;
struct _virStoragePerms {
    mode_t mode;
    uid_t uid;
    gid_t gid;
    char *label;
};


typedef struct _virStorageTimestamps virStorageTimestamps;
typedef virStorageTimestamps *virStorageTimestampsPtr;
struct _virStorageTimestamps {
    struct timespec atime;
    struct timespec btime; /* birth time unknown if btime.tv_nsec == -1 */
    struct timespec ctime;
    struct timespec mtime;
};


112 113 114
typedef struct _virStorageFileMetadata virStorageFileMetadata;
typedef virStorageFileMetadata *virStorageFileMetadataPtr;
struct _virStorageFileMetadata {
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
    /* Name of the current file as spelled by the user (top level) or
     * metadata of the overlay (if this is a backing store).  */
    char *path;
    /* Canonical name of the current file, used to detect loops in the
     * backing store chain.  */
    char *canonPath;
    /* Directory to start from if backingStoreRaw is a relative file
     * name.  */
    char *relDir;
    /* Name of the child backing store recorded in metadata of the
     * current file.  */
    char *backingStoreRaw;

    /* Backing chain.  In the common case, the child's
     * backingMeta->path will be a duplicate of this file's
     * backingStoreRaw; this setup makes it possible to detect missing
     * backing files: if backingStoreRaw is NULL, this field should be
     * NULL.  If this field is NULL and backingStoreRaw is non-NULL,
     * there was an error following the chain (such as a missing
     * file).  Otherwise, information about the child is here.  */
135
    virStorageFileMetadataPtr backingMeta;
136

137 138 139
    /* Details about the current image */
    int type; /* enum virStorageType */
    int format; /* enum virStorageFileFormat */
140
    virStorageEncryptionPtr encryption;
141
    unsigned long long capacity;
142 143
    virBitmapPtr features; /* bits described by enum virStorageFileFeature */
    char *compat;
144 145 146 147 148 149 150 151

    /* Fields I'm trying to delete, because it is confusing to have to
     * query the parent metadata for details about the backing
     * store.  */
    char *backingStore; /* Canonical name (absolute file, or protocol). Should be same as backingMeta->canonPath */
    char *directory; /* The directory containing basename of backingStoreRaw. Should be same as backingMeta->relDir */
    int backingStoreFormat; /* enum virStorageFileFormat. Should be same as backingMeta->format */
    bool backingStoreIsFile; /* Should be same as backingMeta->type < VIR_STORAGE_TYPE_NETWORK */
152
};
153

154 155

/* Information related to network storage */
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
enum virStorageNetProtocol {
    VIR_STORAGE_NET_PROTOCOL_NBD,
    VIR_STORAGE_NET_PROTOCOL_RBD,
    VIR_STORAGE_NET_PROTOCOL_SHEEPDOG,
    VIR_STORAGE_NET_PROTOCOL_GLUSTER,
    VIR_STORAGE_NET_PROTOCOL_ISCSI,
    VIR_STORAGE_NET_PROTOCOL_HTTP,
    VIR_STORAGE_NET_PROTOCOL_HTTPS,
    VIR_STORAGE_NET_PROTOCOL_FTP,
    VIR_STORAGE_NET_PROTOCOL_FTPS,
    VIR_STORAGE_NET_PROTOCOL_TFTP,

    VIR_STORAGE_NET_PROTOCOL_LAST
};

VIR_ENUM_DECL(virStorageNetProtocol)


174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
enum virStorageNetHostTransport {
    VIR_STORAGE_NET_HOST_TRANS_TCP,
    VIR_STORAGE_NET_HOST_TRANS_UNIX,
    VIR_STORAGE_NET_HOST_TRANS_RDMA,

    VIR_STORAGE_NET_HOST_TRANS_LAST
};

VIR_ENUM_DECL(virStorageNetHostTransport)

typedef struct _virStorageNetHostDef virStorageNetHostDef;
typedef virStorageNetHostDef *virStorageNetHostDefPtr;
struct _virStorageNetHostDef {
    char *name;
    char *port;
    int transport; /* enum virStorageNetHostTransport */
    char *socket;  /* path to unix socket */
};

193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
/* Information for a storage volume from a virStoragePool */

/*
 * Used for volume "type" disk to indicate how to represent
 * the disk source if the specified "pool" is of iscsi type.
 */
enum virStorageSourcePoolMode {
    VIR_STORAGE_SOURCE_POOL_MODE_DEFAULT = 0,

    /* Use the path as it shows up on host, e.g.
     * /dev/disk/by-path/ip-$ip-iscsi-$iqn:iscsi.iscsi-pool0-lun-1
     */
    VIR_STORAGE_SOURCE_POOL_MODE_HOST,

    /* Use the URI from the storage pool source element host attribute. E.g.
     * file=iscsi://demo.org:6000/iqn.1992-01.com.example/1.
     */
    VIR_STORAGE_SOURCE_POOL_MODE_DIRECT,

    VIR_STORAGE_SOURCE_POOL_MODE_LAST
};

VIR_ENUM_DECL(virStorageSourcePoolMode)

typedef struct _virStorageSourcePoolDef virStorageSourcePoolDef;
struct _virStorageSourcePoolDef {
    char *pool; /* pool name */
    char *volume; /* volume name */
    int voltype; /* enum virStorageVolType, internal only */
    int pooltype; /* enum virStoragePoolType, internal only */
    int actualtype; /* enum virStorageType, internal only */
    int mode; /* enum virStorageSourcePoolMode */
};
typedef virStorageSourcePoolDef *virStorageSourcePoolDefPtr;

228

229 230 231 232 233 234 235 236
enum virStorageSecretType {
    VIR_STORAGE_SECRET_TYPE_NONE,
    VIR_STORAGE_SECRET_TYPE_UUID,
    VIR_STORAGE_SECRET_TYPE_USAGE,

    VIR_STORAGE_SECRET_TYPE_LAST
};

237 238
typedef struct _virStorageDriverData virStorageDriverData;
typedef virStorageDriverData *virStorageDriverDataPtr;
239

240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
typedef struct _virStorageSource virStorageSource;
typedef virStorageSource *virStorageSourcePtr;

/* Stores information related to a host resource.  In the case of
 * backing chains, multiple source disks join to form a single guest
 * view.  */
struct _virStorageSource {
    int type; /* enum virStorageType */
    char *path;
    int protocol; /* enum virStorageNetProtocol */
    size_t nhosts;
    virStorageNetHostDefPtr hosts;
    virStorageSourcePoolDefPtr srcpool;
    struct {
        char *username;
        int secretType; /* enum virStorageSecretType */
        union {
            unsigned char uuid[VIR_UUID_BUFLEN];
            char *usage;
        } secret;
    } auth;
    virStorageEncryptionPtr encryption;
E
Eric Blake 已提交
262

263 264
    char *driverName;
    int format; /* enum virStorageFileFormat */
E
Eric Blake 已提交
265 266
    virBitmapPtr features;
    char *compat;
267

E
Eric Blake 已提交
268 269
    virStoragePermsPtr perms;
    virStorageTimestampsPtr timestamps;
270 271
    unsigned long long allocation; /* in bytes, 0 if unknown */
    unsigned long long capacity; /* in bytes, 0 if unknown */
272 273
    size_t nseclabels;
    virSecurityDeviceLabelDefPtr *seclabels;
274 275 276

    /* metadata for storage driver access to remote and local volumes */
    virStorageDriverDataPtr drv;
277 278 279
};


280 281 282 283
# ifndef DEV_BSIZE
#  define DEV_BSIZE 512
# endif

284
int virStorageFileProbeFormat(const char *path, uid_t uid, gid_t gid);
285 286
int virStorageFileProbeFormatFromBuf(const char *path, char *buf,
                                     size_t buflen);
287

288 289 290
virStorageFileMetadataPtr virStorageFileGetMetadata(const char *path,
                                                    int format,
                                                    uid_t uid, gid_t gid,
E
Eric Blake 已提交
291 292
                                                    bool allow_probe)
    ATTRIBUTE_NONNULL(1);
293 294 295
virStorageFileMetadataPtr virStorageFileGetMetadataFromFD(const char *path,
                                                          int fd,
                                                          int format);
296 297 298 299
virStorageFileMetadataPtr virStorageFileGetMetadataFromBuf(const char *path,
                                                           char *buf,
                                                           size_t len,
                                                           int format);
300 301
int virStorageFileChainGetBroken(virStorageFileMetadataPtr chain,
                                 char **broken_file);
302

303 304 305 306 307 308 309
const char *virStorageFileChainLookup(virStorageFileMetadataPtr chain,
                                      const char *start,
                                      const char *name,
                                      virStorageFileMetadataPtr *meta,
                                      const char **parent)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);

310
void virStorageFileFreeMetadata(virStorageFileMetadataPtr meta);
311

312 313 314 315
int virStorageFileResize(const char *path,
                         unsigned long long capacity,
                         unsigned long long orig_capacity,
                         bool pre_allocate);
316

317
int virStorageFileIsClusterFS(const char *path);
318
bool virStorageIsFile(const char *path);
319

320 321 322 323
int virStorageFileGetLVMKey(const char *path,
                            char **key);
int virStorageFileGetSCSIKey(const char *path,
                             char **key);
324

325 326 327 328 329
void virStorageNetHostDefClear(virStorageNetHostDefPtr def);
void virStorageNetHostDefFree(size_t nhosts, virStorageNetHostDefPtr hosts);
virStorageNetHostDefPtr virStorageNetHostDefCopy(size_t nhosts,
                                                 virStorageNetHostDefPtr hosts);

330 331 332
void virStorageSourceAuthClear(virStorageSourcePtr def);
void virStorageSourcePoolDefFree(virStorageSourcePoolDefPtr def);
void virStorageSourceClear(virStorageSourcePtr def);
333
int virStorageSourceGetActualType(virStorageSourcePtr def);
334

335
#endif /* __VIR_STORAGE_FILE_H__ */