storage_backend.h 6.8 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
# include <stdint.h>
28
# include <stdbool.h>
29 30
# include "internal.h"
# include "storage_conf.h"
31 32

typedef char * (*virStorageBackendFindPoolSources)(virConnectPtr conn, const char *srcSpec, unsigned int flags);
33
typedef int (*virStorageBackendCheckPool)(virConnectPtr conn, virStoragePoolObjPtr pool, bool *active);
34 35 36 37 38 39
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);

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

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

62 63 64 65 66 67 68

typedef struct _virStorageBackend virStorageBackend;
typedef virStorageBackend *virStorageBackendPtr;

struct _virStorageBackend {
    int type;

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

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

virStorageBackendPtr virStorageBackendForType(int type);
85

86 87 88 89 90 91 92 93 94 95 96 97 98
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 */
};

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
int virStorageBackendUpdateVolTargetInfo(virStorageVolTargetPtr target,
112 113
                                         unsigned long long *allocation,
                                         unsigned long long *capacity);
114
int virStorageBackendUpdateVolTargetInfoFD(virStorageVolTargetPtr target,
115 116 117
                                           int fd,
                                           unsigned long long *allocation,
                                           unsigned long long *capacity);
D
Dave Allan 已提交
118
int
119 120
virStorageBackendDetectBlockVolFormatFD(virStorageVolTargetPtr target,
                                        int fd);
121

122
char *virStorageBackendStablePath(virStoragePoolObjPtr pool,
123
                                  const char *devpath);
124

125
typedef int (*virStorageBackendListVolRegexFunc)(virStoragePoolObjPtr pool,
126 127
                                                 char **const groups,
                                                 void *data);
128
typedef int (*virStorageBackendListVolNulFunc)(virStoragePoolObjPtr pool,
129 130 131 132
                                               size_t n_tokens,
                                               char **const groups,
                                               void *data);

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

142
int virStorageBackendRunProgNul(virStoragePoolObjPtr pool,
143 144 145 146
                                const char **prog,
                                size_t n_columns,
                                virStorageBackendListVolNulFunc func,
                                void *data);
147

148

149
#endif /* __VIR_STORAGE_BACKEND_H__ */