storage_backend.h 7.0 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
typedef int (*virStorageBackendCheckPool)(virConnectPtr conn, virStoragePoolObjPtr pool, bool *active);
33 34 35 36 37 38
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);

39 40
typedef int (*virStorageBackendBuildVol)(virConnectPtr conn,
                                         virStoragePoolObjPtr pool, virStorageVolDefPtr vol);
41 42 43
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);
44 45 46
typedef int (*virStorageBackendBuildVolFrom)(virConnectPtr conn, virStoragePoolObjPtr pool,
                                             virStorageVolDefPtr origvol, virStorageVolDefPtr newvol,
                                             unsigned int flags);
47

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

61 62 63 64 65 66 67

typedef struct _virStorageBackend virStorageBackend;
typedef virStorageBackend *virStorageBackendPtr;

struct _virStorageBackend {
    int type;

68
    virStorageBackendFindPoolSources findPoolSources;
69
    virStorageBackendCheckPool checkPool;
70 71 72 73 74 75
    virStorageBackendStartPool startPool;
    virStorageBackendBuildPool buildPool;
    virStorageBackendRefreshPool refreshPool;
    virStorageBackendStopPool stopPool;
    virStorageBackendDeletePool deletePool;

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

virStorageBackendPtr virStorageBackendForType(int type);
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
    VIR_STORAGE_VOL_OPEN_DIR    = 1 << 4, /* directories okay */
97 98
};

99 100 101 102
# 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)
103 104 105 106

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

108
int virStorageBackendUpdateVolInfo(virStorageVolDefPtr vol,
109 110
                                   int withCapacity);

111 112 113
int virStorageBackendUpdateVolInfoFlags(virStorageVolDefPtr vol,
                                        int withCapacity,
                                        unsigned int openflags);
114
int virStorageBackendUpdateVolTargetInfo(virStorageVolTargetPtr target,
115
                                         unsigned long long *allocation,
116 117
                                         unsigned long long *capacity,
                                         unsigned int openflags);
118
int virStorageBackendUpdateVolTargetInfoFD(virStorageVolTargetPtr target,
119 120 121
                                           int fd,
                                           unsigned long long *allocation,
                                           unsigned long long *capacity);
D
Dave Allan 已提交
122
int
123 124
virStorageBackendDetectBlockVolFormatFD(virStorageVolTargetPtr target,
                                        int fd);
125

126
char *virStorageBackendStablePath(virStoragePoolObjPtr pool,
127
                                  const char *devpath);
128

129
typedef int (*virStorageBackendListVolRegexFunc)(virStoragePoolObjPtr pool,
130 131
                                                 char **const groups,
                                                 void *data);
132
typedef int (*virStorageBackendListVolNulFunc)(virStoragePoolObjPtr pool,
133 134 135 136
                                               size_t n_tokens,
                                               char **const groups,
                                               void *data);

137
int virStorageBackendRunProgRegex(virStoragePoolObjPtr pool,
138
                                  const char *const*prog,
139 140 141 142
                                  int nregex,
                                  const char **regex,
                                  int *nvars,
                                  virStorageBackendListVolRegexFunc func,
143
                                  void *data, const char *cmd_to_ignore);
144

145
int virStorageBackendRunProgNul(virStoragePoolObjPtr pool,
146 147 148 149
                                const char **prog,
                                size_t n_columns,
                                virStorageBackendListVolNulFunc func,
                                void *data);
150

151

152
#endif /* __VIR_STORAGE_BACKEND_H__ */