mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 02:41:14 +00:00
c0a4a98eab
According to the official documentation for autoconf[1], the correct names for these variables are abs_top_{src,build}dir rather than abs_top{src,build}dir; in fact, we're already using the correct names in various places, so let's just make everything nice and consistent. [1] https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Preset-Output-Variables.html Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Martin Kletzander <mkletzan@redhat.com>
148 lines
4.5 KiB
C
148 lines
4.5 KiB
C
/*
|
|
* virstoragefilebackend.c: internal storage source backend contract
|
|
*
|
|
* Copyright (C) 2007-2018 Red Hat, Inc.
|
|
* 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, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include "datatypes.h"
|
|
#include "virerror.h"
|
|
#include "viralloc.h"
|
|
#include "internal.h"
|
|
#include "virstoragefilebackend.h"
|
|
#include "virlog.h"
|
|
#include "virmodule.h"
|
|
#include "virfile.h"
|
|
#include "configmake.h"
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_STORAGE
|
|
|
|
VIR_LOG_INIT("storage.storage_source_backend");
|
|
|
|
#define VIR_STORAGE_BACKENDS_MAX 20
|
|
|
|
static virStorageFileBackendPtr virStorageFileBackends[VIR_STORAGE_BACKENDS_MAX];
|
|
static size_t virStorageFileBackendsCount;
|
|
|
|
#if WITH_STORAGE_DIR || WITH_STORAGE_FS || WITH_STORAGE_GLUSTER
|
|
|
|
# define STORAGE_FILE_MODULE_DIR LIBDIR "/libvirt/storage-file"
|
|
|
|
static int
|
|
virStorageFileLoadBackendModule(const char *name,
|
|
const char *regfunc,
|
|
bool forceload)
|
|
{
|
|
char *modfile = NULL;
|
|
int ret;
|
|
|
|
if (!(modfile = virFileFindResourceFull(name,
|
|
"libvirt_storage_file_",
|
|
".so",
|
|
abs_top_builddir "/src/.libs",
|
|
STORAGE_FILE_MODULE_DIR,
|
|
"LIBVIRT_STORAGE_FILE_DIR")))
|
|
return -1;
|
|
|
|
ret = virModuleLoad(modfile, regfunc, forceload);
|
|
|
|
VIR_FREE(modfile);
|
|
|
|
return ret;
|
|
}
|
|
#endif /* WITH_STORAGE_DIR || WITH_STORAGE_FS || WITH_STORAGE_GLUSTER */
|
|
|
|
static int virStorageFileBackendOnceInit(void)
|
|
{
|
|
#if WITH_STORAGE_DIR || WITH_STORAGE_FS
|
|
if (virStorageFileLoadBackendModule("fs", "virStorageFileFsRegister", false) < 0)
|
|
return -1;
|
|
#endif /* WITH_STORAGE_DIR || WITH_STORAGE_FS */
|
|
#if WITH_STORAGE_GLUSTER
|
|
if (virStorageFileLoadBackendModule("gluster", "virStorageFileGlusterRegister", false) < 0)
|
|
return -1;
|
|
#endif /* WITH_STORAGE_GLUSTER */
|
|
return 0;
|
|
}
|
|
|
|
VIR_ONCE_GLOBAL_INIT(virStorageFileBackend);
|
|
|
|
int
|
|
virStorageFileBackendRegister(virStorageFileBackendPtr backend)
|
|
{
|
|
VIR_DEBUG("Registering storage file backend '%s' protocol '%s'",
|
|
virStorageTypeToString(backend->type),
|
|
virStorageNetProtocolTypeToString(backend->protocol));
|
|
|
|
if (virStorageFileBackendsCount >= VIR_STORAGE_BACKENDS_MAX) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("Too many drivers, cannot register storage file "
|
|
"backend '%s'"),
|
|
virStorageTypeToString(backend->type));
|
|
return -1;
|
|
}
|
|
|
|
virStorageFileBackends[virStorageFileBackendsCount] = backend;
|
|
virStorageFileBackendsCount++;
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
virStorageFileBackendForType(int type,
|
|
int protocol,
|
|
bool required,
|
|
virStorageFileBackendPtr *backend)
|
|
{
|
|
size_t i;
|
|
|
|
*backend = NULL;
|
|
|
|
if (virStorageFileBackendInitialize() < 0)
|
|
return -1;
|
|
|
|
for (i = 0; i < virStorageFileBackendsCount; i++) {
|
|
if (virStorageFileBackends[i]->type == type) {
|
|
if (type == VIR_STORAGE_TYPE_NETWORK &&
|
|
virStorageFileBackends[i]->protocol != protocol)
|
|
continue;
|
|
|
|
*backend = virStorageFileBackends[i];
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
if (!required)
|
|
return 0;
|
|
|
|
if (type == VIR_STORAGE_TYPE_NETWORK) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("missing storage backend for network files "
|
|
"using %s protocol"),
|
|
virStorageNetProtocolTypeToString(protocol));
|
|
} else {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("missing storage backend for '%s' storage"),
|
|
virStorageTypeToString(type));
|
|
}
|
|
|
|
return -1;
|
|
}
|