storage_backend.h 6.6 KB
Newer Older
1 2 3
/*
 * storage_backend.h: internal storage driver backend contract
 *
4
 * Copyright (C) 2007-2010 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * 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
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#ifndef __VIR_STORAGE_BACKEND_H__
25
# define __VIR_STORAGE_BACKEND_H__
26

27 28 29
# include <stdint.h>
# include "internal.h"
# include "storage_conf.h"
30 31

typedef char * (*virStorageBackendFindPoolSources)(virConnectPtr conn, const char *srcSpec, unsigned int flags);
32 33 34 35 36 37
typedef int (*virStorageBackendStartPool)(virConnectPtr conn, virStoragePoolObjPtr pool);
typedef int (*virStorageBackendBuildPool)(virConnectPtr conn, virStoragePoolObjPtr pool, unsigned int flags);
typedef int (*virStorageBackendRefreshPool)(virConnectPtr conn, virStoragePoolObjPtr pool);
typedef int (*virStorageBackendStopPool)(virConnectPtr conn, virStoragePoolObjPtr pool);
typedef int (*virStorageBackendDeletePool)(virConnectPtr conn, virStoragePoolObjPtr pool, unsigned int flags);

38 39
typedef int (*virStorageBackendBuildVol)(virConnectPtr conn,
                                         virStoragePoolObjPtr pool, virStorageVolDefPtr vol);
40 41 42
typedef int (*virStorageBackendCreateVol)(virConnectPtr conn, virStoragePoolObjPtr pool, virStorageVolDefPtr vol);
typedef int (*virStorageBackendRefreshVol)(virConnectPtr conn, virStoragePoolObjPtr pool, virStorageVolDefPtr vol);
typedef int (*virStorageBackendDeleteVol)(virConnectPtr conn, virStoragePoolObjPtr pool, virStorageVolDefPtr vol, unsigned int flags);
43 44 45
typedef int (*virStorageBackendBuildVolFrom)(virConnectPtr conn, virStoragePoolObjPtr pool,
                                             virStorageVolDefPtr origvol, virStorageVolDefPtr newvol,
                                             unsigned int flags);
46

47 48
/* File creation/cloning functions used for cloning between backends */
int virStorageBackendCreateRaw(virConnectPtr conn,
49
                               virStoragePoolObjPtr pool,
50
                               virStorageVolDefPtr vol,
51 52 53
                               virStorageVolDefPtr inputvol,
                               unsigned int flags);
virStorageBackendBuildVolFrom
54
virStorageBackendGetBuildVolFromFunction(virStorageVolDefPtr vol,
55 56
                                         virStorageVolDefPtr inputvol);
int virStorageBackendFindFSImageTool(char **tool);
57
virStorageBackendBuildVolFrom
58
virStorageBackendFSImageToolTypeToFunc(int tool_type);
59

60 61 62 63 64 65 66

typedef struct _virStorageBackend virStorageBackend;
typedef virStorageBackend *virStorageBackendPtr;

struct _virStorageBackend {
    int type;

67
    virStorageBackendFindPoolSources findPoolSources;
68 69 70 71 72 73
    virStorageBackendStartPool startPool;
    virStorageBackendBuildPool buildPool;
    virStorageBackendRefreshPool refreshPool;
    virStorageBackendStopPool stopPool;
    virStorageBackendDeletePool deletePool;

74
    virStorageBackendBuildVol buildVol;
75
    virStorageBackendBuildVolFrom buildVolFrom;
76 77 78 79 80 81
    virStorageBackendCreateVol createVol;
    virStorageBackendRefreshVol refreshVol;
    virStorageBackendDeleteVol deleteVol;
};

virStorageBackendPtr virStorageBackendForType(int type);
82

83 84 85 86 87 88 89 90 91 92 93 94 95
int virStorageBackendVolOpen(const char *path)
ATTRIBUTE_RETURN_CHECK
ATTRIBUTE_NONNULL(1);

/* VolOpenCheckMode flags */
enum {
    VIR_STORAGE_VOL_OPEN_ERROR  = 1 << 0, /* warn if unexpected type
                                           * encountered */
    VIR_STORAGE_VOL_OPEN_REG    = 1 << 1, /* regular files okay */
    VIR_STORAGE_VOL_OPEN_BLOCK  = 1 << 2, /* block files okay */
    VIR_STORAGE_VOL_OPEN_CHAR   = 1 << 3, /* char files okay */
};

96 97 98 99
# define VIR_STORAGE_VOL_OPEN_DEFAULT (VIR_STORAGE_VOL_OPEN_ERROR    |\
                                       VIR_STORAGE_VOL_OPEN_REG      |\
                                       VIR_STORAGE_VOL_OPEN_CHAR     |\
                                       VIR_STORAGE_VOL_OPEN_BLOCK)
100 101 102 103

int virStorageBackendVolOpenCheckMode(const char *path, unsigned int flags)
ATTRIBUTE_RETURN_CHECK
ATTRIBUTE_NONNULL(1);
104

105
int virStorageBackendUpdateVolInfo(virStorageVolDefPtr vol,
106 107
                                   int withCapacity);

108
int virStorageBackendUpdateVolTargetInfo(virStorageVolTargetPtr target,
109 110
                                         unsigned long long *allocation,
                                         unsigned long long *capacity);
111
int virStorageBackendUpdateVolTargetInfoFD(virStorageVolTargetPtr target,
112 113 114
                                           int fd,
                                           unsigned long long *allocation,
                                           unsigned long long *capacity);
D
Dave Allan 已提交
115
int
116 117
virStorageBackendDetectBlockVolFormatFD(virStorageVolTargetPtr target,
                                        int fd);
118

119
char *virStorageBackendStablePath(virStoragePoolObjPtr pool,
120
                                  const char *devpath);
121

122
typedef int (*virStorageBackendListVolRegexFunc)(virStoragePoolObjPtr pool,
123 124
                                                 char **const groups,
                                                 void *data);
125
typedef int (*virStorageBackendListVolNulFunc)(virStoragePoolObjPtr pool,
126 127 128 129
                                               size_t n_tokens,
                                               char **const groups,
                                               void *data);

130
int virStorageBackendRunProgRegex(virStoragePoolObjPtr pool,
131
                                  const char *const*prog,
132 133 134 135
                                  int nregex,
                                  const char **regex,
                                  int *nvars,
                                  virStorageBackendListVolRegexFunc func,
136 137
                                  void *data,
                                  int *exitstatus);
138

139
int virStorageBackendRunProgNul(virStoragePoolObjPtr pool,
140 141 142 143
                                const char **prog,
                                size_t n_columns,
                                virStorageBackendListVolNulFunc func,
                                void *data);
144

145

146
#endif /* __VIR_STORAGE_BACKEND_H__ */