2008-02-20 15:49:25 +00:00
|
|
|
/*
|
|
|
|
* storage_backend_iscsi.c: storage backend for iSCSI handling
|
|
|
|
*
|
2014-02-20 00:32:19 +00:00
|
|
|
* Copyright (C) 2007-2014 Red Hat, Inc.
|
2008-02-20 15:49:25 +00:00
|
|
|
* 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
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2008-02-20 15:49:25 +00:00
|
|
|
*
|
|
|
|
* Author: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2013-03-25 16:43:38 +00:00
|
|
|
#include <dirent.h>
|
2008-02-20 15:49:25 +00:00
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2010-01-21 11:50:52 +00:00
|
|
|
#include <sys/stat.h>
|
2008-02-20 15:49:25 +00:00
|
|
|
|
2013-07-15 17:23:45 +00:00
|
|
|
#include "datatypes.h"
|
|
|
|
#include "driver.h"
|
2009-04-01 16:03:22 +00:00
|
|
|
#include "storage_backend_scsi.h"
|
2008-02-20 15:49:25 +00:00
|
|
|
#include "storage_backend_iscsi.h"
|
2012-12-12 18:06:53 +00:00
|
|
|
#include "viralloc.h"
|
2012-12-12 16:27:01 +00:00
|
|
|
#include "vircommand.h"
|
2014-03-18 15:20:01 +00:00
|
|
|
#include "virerror.h"
|
|
|
|
#include "virfile.h"
|
2014-03-19 15:03:11 +00:00
|
|
|
#include "viriscsi.h"
|
2014-03-18 15:20:01 +00:00
|
|
|
#include "virlog.h"
|
2013-07-15 17:23:45 +00:00
|
|
|
#include "virobject.h"
|
2013-04-03 10:36:23 +00:00
|
|
|
#include "virstring.h"
|
2013-10-15 08:29:18 +00:00
|
|
|
#include "viruuid.h"
|
2008-02-20 15:49:25 +00:00
|
|
|
|
2009-01-20 17:13:33 +00:00
|
|
|
#define VIR_FROM_THIS VIR_FROM_STORAGE
|
|
|
|
|
2014-02-28 12:16:17 +00:00
|
|
|
VIR_LOG_INIT("storage.storage_backend_iscsi");
|
|
|
|
|
2013-07-18 16:30:29 +00:00
|
|
|
#define ISCSI_DEFAULT_TARGET_PORT 3260
|
|
|
|
|
2010-11-02 11:40:46 +00:00
|
|
|
static char *
|
|
|
|
virStorageBackendISCSIPortal(virStoragePoolSourcePtr source)
|
|
|
|
{
|
2013-06-06 12:00:13 +00:00
|
|
|
char *portal = NULL;
|
2010-11-02 11:40:46 +00:00
|
|
|
|
2012-04-25 10:43:09 +00:00
|
|
|
if (source->nhost != 1) {
|
2012-07-18 11:38:29 +00:00
|
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
|
|
_("Expected exactly 1 host for the storage pool"));
|
2012-04-25 10:43:09 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-07-18 16:30:29 +00:00
|
|
|
if (source->hosts[0].port == 0)
|
|
|
|
source->hosts[0].port = ISCSI_DEFAULT_TARGET_PORT;
|
2010-11-02 11:40:46 +00:00
|
|
|
|
2013-07-18 16:30:29 +00:00
|
|
|
if (strchr(source->hosts[0].name, ':')) {
|
|
|
|
ignore_value(virAsprintf(&portal, "[%s]:%d,1",
|
|
|
|
source->hosts[0].name,
|
|
|
|
source->hosts[0].port));
|
2013-06-06 12:00:13 +00:00
|
|
|
} else {
|
2013-07-18 16:30:29 +00:00
|
|
|
ignore_value(virAsprintf(&portal, "%s:%d,1",
|
|
|
|
source->hosts[0].name,
|
|
|
|
source->hosts[0].port));
|
2010-11-02 11:40:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return portal;
|
|
|
|
}
|
|
|
|
|
2008-02-20 15:49:25 +00:00
|
|
|
|
2014-03-19 14:54:08 +00:00
|
|
|
static char *
|
|
|
|
virStorageBackendISCSISession(virStoragePoolObjPtr pool,
|
|
|
|
bool probe)
|
|
|
|
{
|
2014-03-19 15:03:11 +00:00
|
|
|
return virISCSIGetSession(pool->def->source.devices[0].path, probe);
|
2014-03-19 14:52:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-25 16:43:38 +00:00
|
|
|
static int
|
|
|
|
virStorageBackendISCSIGetHostNumber(const char *sysfs_path,
|
|
|
|
uint32_t *host)
|
|
|
|
{
|
|
|
|
int retval = 0;
|
|
|
|
DIR *sysdir = NULL;
|
|
|
|
struct dirent *dirent = NULL;
|
2014-04-24 21:48:55 +00:00
|
|
|
int direrr;
|
2013-03-25 16:43:38 +00:00
|
|
|
|
|
|
|
VIR_DEBUG("Finding host number from '%s'", sysfs_path);
|
|
|
|
|
|
|
|
virFileWaitForDevices();
|
|
|
|
|
|
|
|
sysdir = opendir(sysfs_path);
|
|
|
|
|
|
|
|
if (sysdir == NULL) {
|
|
|
|
virReportSystemError(errno,
|
|
|
|
_("Failed to opendir path '%s'"), sysfs_path);
|
|
|
|
retval = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2014-04-24 21:48:55 +00:00
|
|
|
while ((direrr = virDirRead(sysdir, &dirent, sysfs_path)) > 0) {
|
2013-03-25 16:43:38 +00:00
|
|
|
if (STREQLEN(dirent->d_name, "target", strlen("target"))) {
|
|
|
|
if (sscanf(dirent->d_name,
|
|
|
|
"target%u:", host) != 1) {
|
|
|
|
VIR_DEBUG("Failed to parse target '%s'", dirent->d_name);
|
|
|
|
retval = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-24 21:48:55 +00:00
|
|
|
if (direrr < 0)
|
|
|
|
retval = -1;
|
2013-03-25 16:43:38 +00:00
|
|
|
|
|
|
|
closedir(sysdir);
|
2014-03-25 06:52:40 +00:00
|
|
|
out:
|
2013-03-25 16:43:38 +00:00
|
|
|
return retval;
|
|
|
|
}
|
2008-06-17 12:49:37 +00:00
|
|
|
|
2008-02-20 15:49:25 +00:00
|
|
|
static int
|
2010-02-10 11:42:56 +00:00
|
|
|
virStorageBackendISCSIFindLUs(virStoragePoolObjPtr pool,
|
2009-04-01 16:03:22 +00:00
|
|
|
const char *session)
|
2008-02-20 15:49:25 +00:00
|
|
|
{
|
2011-04-03 09:21:30 +00:00
|
|
|
char *sysfs_path;
|
2015-04-01 10:46:25 +00:00
|
|
|
int retval = -1;
|
2009-04-01 16:03:22 +00:00
|
|
|
uint32_t host;
|
2008-06-17 12:49:37 +00:00
|
|
|
|
2011-04-03 09:21:30 +00:00
|
|
|
if (virAsprintf(&sysfs_path,
|
2013-07-04 10:16:29 +00:00
|
|
|
"/sys/class/iscsi_session/session%s/device", session) < 0)
|
2015-04-01 10:46:25 +00:00
|
|
|
goto cleanup;
|
2008-06-17 12:49:37 +00:00
|
|
|
|
2013-03-25 16:43:38 +00:00
|
|
|
if (virStorageBackendISCSIGetHostNumber(sysfs_path, &host) < 0) {
|
2010-02-04 20:02:58 +00:00
|
|
|
virReportSystemError(errno,
|
2009-04-01 16:03:22 +00:00
|
|
|
_("Failed to get host number for iSCSI session "
|
|
|
|
"with path '%s'"),
|
2009-01-20 17:13:33 +00:00
|
|
|
sysfs_path);
|
2015-04-01 10:46:25 +00:00
|
|
|
goto cleanup;
|
2008-06-17 12:49:37 +00:00
|
|
|
}
|
|
|
|
|
2015-03-30 22:49:36 +00:00
|
|
|
if (virStorageBackendSCSIFindLUs(pool, host) < 0)
|
2015-04-01 10:46:25 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
retval = 0;
|
|
|
|
|
|
|
|
cleanup:
|
2008-06-17 12:49:37 +00:00
|
|
|
|
2011-04-03 09:21:30 +00:00
|
|
|
VIR_FREE(sysfs_path);
|
|
|
|
|
2008-06-17 12:49:37 +00:00
|
|
|
return retval;
|
|
|
|
}
|
2008-02-20 15:49:25 +00:00
|
|
|
|
|
|
|
|
2010-11-12 15:41:16 +00:00
|
|
|
static char *
|
|
|
|
virStorageBackendISCSIFindPoolSources(virConnectPtr conn ATTRIBUTE_UNUSED,
|
|
|
|
const char *srcSpec,
|
2011-07-06 22:51:23 +00:00
|
|
|
unsigned int flags)
|
2010-11-12 15:41:16 +00:00
|
|
|
{
|
|
|
|
virStoragePoolSourcePtr source = NULL;
|
|
|
|
size_t ntargets = 0;
|
|
|
|
char **targets = NULL;
|
|
|
|
char *ret = NULL;
|
Convert 'int i' to 'size_t i' in src/storage/ files
Convert the type of loop iterators named 'i', 'j', k',
'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or
'unsigned int', also santizing 'ii', 'jj', 'kk' to use
the normal 'i', 'j', 'k' naming
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2013-07-08 14:09:33 +00:00
|
|
|
size_t i;
|
2010-11-12 15:41:16 +00:00
|
|
|
virStoragePoolSourceList list = {
|
|
|
|
.type = VIR_STORAGE_POOL_ISCSI,
|
|
|
|
.nsources = 0,
|
|
|
|
.sources = NULL
|
|
|
|
};
|
|
|
|
char *portal = NULL;
|
|
|
|
|
2011-07-06 22:51:23 +00:00
|
|
|
virCheckFlags(0, NULL);
|
|
|
|
|
2012-07-31 08:56:41 +00:00
|
|
|
if (!srcSpec) {
|
2015-02-25 22:31:55 +00:00
|
|
|
virReportError(VIR_ERR_INVALID_ARG, "%s",
|
|
|
|
_("hostname must be specified for iscsi sources"));
|
2012-07-31 08:56:41 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-11-12 15:41:16 +00:00
|
|
|
if (!(source = virStoragePoolDefParseSourceString(srcSpec,
|
|
|
|
list.type)))
|
|
|
|
return NULL;
|
|
|
|
|
2012-04-25 10:43:09 +00:00
|
|
|
if (source->nhost != 1) {
|
2012-07-18 11:38:29 +00:00
|
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
|
|
_("Expected exactly 1 host for the storage pool"));
|
2012-04-25 10:43:09 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2010-11-12 15:41:16 +00:00
|
|
|
if (!(portal = virStorageBackendISCSIPortal(source)))
|
|
|
|
goto cleanup;
|
|
|
|
|
2014-03-19 15:03:11 +00:00
|
|
|
if (virISCSIScanTargets(portal,
|
|
|
|
source->initiator.iqn,
|
|
|
|
&ntargets, &targets) < 0)
|
2010-11-12 15:41:16 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2013-07-04 10:16:29 +00:00
|
|
|
if (VIR_ALLOC_N(list.sources, ntargets) < 0)
|
2010-11-12 15:41:16 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2013-05-21 07:21:21 +00:00
|
|
|
for (i = 0; i < ntargets; i++) {
|
2012-04-30 16:36:44 +00:00
|
|
|
if (VIR_ALLOC_N(list.sources[i].devices, 1) < 0 ||
|
2013-07-04 10:16:29 +00:00
|
|
|
VIR_ALLOC_N(list.sources[i].hosts, 1) < 0)
|
2010-11-12 15:41:16 +00:00
|
|
|
goto cleanup;
|
2012-04-30 16:36:44 +00:00
|
|
|
list.sources[i].nhost = 1;
|
|
|
|
list.sources[i].hosts[0] = source->hosts[0];
|
2010-11-12 15:41:16 +00:00
|
|
|
list.sources[i].initiator = source->initiator;
|
|
|
|
list.sources[i].ndevice = 1;
|
|
|
|
list.sources[i].devices[0].path = targets[i];
|
|
|
|
list.nsources++;
|
|
|
|
}
|
|
|
|
|
2013-07-04 10:16:29 +00:00
|
|
|
if (!(ret = virStoragePoolSourceListFormat(&list)))
|
2010-11-12 15:41:16 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2014-03-25 06:52:40 +00:00
|
|
|
cleanup:
|
2010-11-12 15:41:16 +00:00
|
|
|
if (list.sources) {
|
2013-05-21 07:21:21 +00:00
|
|
|
for (i = 0; i < ntargets; i++) {
|
2012-04-30 16:36:44 +00:00
|
|
|
VIR_FREE(list.sources[i].hosts);
|
2010-11-12 15:41:16 +00:00
|
|
|
VIR_FREE(list.sources[i].devices);
|
2012-04-30 16:36:44 +00:00
|
|
|
}
|
2010-11-12 15:41:16 +00:00
|
|
|
VIR_FREE(list.sources);
|
|
|
|
}
|
2013-05-21 07:21:21 +00:00
|
|
|
for (i = 0; i < ntargets; i++)
|
2010-11-12 15:41:16 +00:00
|
|
|
VIR_FREE(targets[i]);
|
|
|
|
VIR_FREE(targets);
|
|
|
|
VIR_FREE(portal);
|
|
|
|
virStoragePoolSourceFree(source);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-11-11 20:09:20 +00:00
|
|
|
static int
|
2015-03-09 14:34:35 +00:00
|
|
|
virStorageBackendISCSICheckPool(virStoragePoolObjPtr pool,
|
2010-11-11 20:09:20 +00:00
|
|
|
bool *isActive)
|
|
|
|
{
|
|
|
|
char *session = NULL;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
*isActive = false;
|
|
|
|
|
2012-04-25 10:43:09 +00:00
|
|
|
if (pool->def->source.nhost != 1) {
|
2014-03-20 12:23:42 +00:00
|
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
|
|
_("Expected exactly 1 host for the storage pool"));
|
2012-04-25 10:43:09 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pool->def->source.hosts[0].name == NULL) {
|
2012-07-18 11:38:29 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
"%s", _("missing source host"));
|
2010-11-11 20:09:20 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pool->def->source.ndevice != 1 ||
|
|
|
|
pool->def->source.devices[0].path == NULL) {
|
2012-07-18 11:38:29 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
"%s", _("missing source device"));
|
2010-11-11 20:09:20 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-03-11 11:58:35 +00:00
|
|
|
if ((session = virStorageBackendISCSISession(pool, true)) != NULL) {
|
2010-11-11 20:09:20 +00:00
|
|
|
*isActive = true;
|
|
|
|
VIR_FREE(session);
|
|
|
|
}
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 15:49:25 +00:00
|
|
|
static int
|
2013-07-15 17:23:45 +00:00
|
|
|
virStorageBackendISCSISetAuth(const char *portal,
|
|
|
|
virConnectPtr conn,
|
2014-06-26 12:18:09 +00:00
|
|
|
virStoragePoolSourcePtr source)
|
2013-07-15 17:23:45 +00:00
|
|
|
{
|
|
|
|
virSecretPtr secret = NULL;
|
|
|
|
unsigned char *secret_value = NULL;
|
2014-06-26 12:18:09 +00:00
|
|
|
virStorageAuthDefPtr authdef = source->auth;
|
2013-07-15 17:23:45 +00:00
|
|
|
int ret = -1;
|
2013-10-15 08:29:18 +00:00
|
|
|
char uuidStr[VIR_UUID_STRING_BUFLEN];
|
2013-07-15 17:23:45 +00:00
|
|
|
|
2014-06-26 12:18:09 +00:00
|
|
|
if (!authdef || authdef->authType == VIR_STORAGE_AUTH_TYPE_NONE)
|
2013-07-15 17:23:45 +00:00
|
|
|
return 0;
|
|
|
|
|
2014-06-26 12:18:09 +00:00
|
|
|
VIR_DEBUG("username='%s' authType=%d secretType=%d",
|
|
|
|
authdef->username, authdef->authType, authdef->secretType);
|
|
|
|
if (authdef->authType != VIR_STORAGE_AUTH_TYPE_CHAP) {
|
2013-07-15 17:23:45 +00:00
|
|
|
virReportError(VIR_ERR_XML_ERROR, "%s",
|
|
|
|
_("iscsi pool only supports 'chap' auth type"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!conn) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("iscsi 'chap' authentication not supported "
|
|
|
|
"for autostarted pools"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-06-26 12:18:09 +00:00
|
|
|
if (authdef->secretType == VIR_STORAGE_SECRET_TYPE_UUID)
|
|
|
|
secret = virSecretLookupByUUID(conn, authdef->secret.uuid);
|
2013-07-15 17:23:45 +00:00
|
|
|
else
|
|
|
|
secret = virSecretLookupByUsage(conn, VIR_SECRET_USAGE_TYPE_ISCSI,
|
2014-06-26 12:18:09 +00:00
|
|
|
authdef->secret.usage);
|
2013-07-15 17:23:45 +00:00
|
|
|
|
|
|
|
if (secret) {
|
|
|
|
size_t secret_size;
|
|
|
|
secret_value =
|
|
|
|
conn->secretDriver->secretGetValue(secret, &secret_size, 0,
|
|
|
|
VIR_SECRET_GET_VALUE_INTERNAL_CALL);
|
|
|
|
if (!secret_value) {
|
2014-06-26 12:18:09 +00:00
|
|
|
if (authdef->secretType == VIR_STORAGE_SECRET_TYPE_UUID) {
|
|
|
|
virUUIDFormat(authdef->secret.uuid, uuidStr);
|
2013-08-06 11:52:46 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("could not get the value of the secret "
|
|
|
|
"for username %s using uuid '%s'"),
|
2014-06-26 12:18:09 +00:00
|
|
|
authdef->username, uuidStr);
|
2013-08-06 11:52:46 +00:00
|
|
|
} else {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("could not get the value of the secret "
|
|
|
|
"for username %s using usage value '%s'"),
|
2014-06-26 12:18:09 +00:00
|
|
|
authdef->username, authdef->secret.usage);
|
2013-08-06 11:52:46 +00:00
|
|
|
}
|
2013-07-15 17:23:45 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
} else {
|
2014-06-26 12:18:09 +00:00
|
|
|
if (authdef->secretType == VIR_STORAGE_SECRET_TYPE_UUID) {
|
|
|
|
virUUIDFormat(authdef->secret.uuid, uuidStr);
|
2013-08-06 11:52:46 +00:00
|
|
|
virReportError(VIR_ERR_NO_SECRET,
|
|
|
|
_("no secret matches uuid '%s'"),
|
2013-10-15 08:29:18 +00:00
|
|
|
uuidStr);
|
2013-08-06 11:52:46 +00:00
|
|
|
} else {
|
|
|
|
virReportError(VIR_ERR_NO_SECRET,
|
|
|
|
_("no secret matches usage value '%s'"),
|
2014-06-26 12:18:09 +00:00
|
|
|
authdef->secret.usage);
|
2013-08-06 11:52:46 +00:00
|
|
|
}
|
2013-07-15 17:23:45 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2014-03-19 15:03:11 +00:00
|
|
|
if (virISCSINodeUpdate(portal,
|
2014-06-26 12:18:09 +00:00
|
|
|
source->devices[0].path,
|
2014-03-19 15:03:11 +00:00
|
|
|
"node.session.auth.authmethod",
|
|
|
|
"CHAP") < 0 ||
|
|
|
|
virISCSINodeUpdate(portal,
|
2014-06-26 12:18:09 +00:00
|
|
|
source->devices[0].path,
|
2014-03-19 15:03:11 +00:00
|
|
|
"node.session.auth.username",
|
2014-06-26 12:18:09 +00:00
|
|
|
authdef->username) < 0 ||
|
2014-03-19 15:03:11 +00:00
|
|
|
virISCSINodeUpdate(portal,
|
2014-06-26 12:18:09 +00:00
|
|
|
source->devices[0].path,
|
2014-03-19 15:03:11 +00:00
|
|
|
"node.session.auth.password",
|
|
|
|
(const char *)secret_value) < 0)
|
2013-07-15 17:23:45 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
2014-03-25 06:52:40 +00:00
|
|
|
cleanup:
|
2013-07-15 17:23:45 +00:00
|
|
|
virObjectUnref(secret);
|
|
|
|
VIR_FREE(secret_value);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
virStorageBackendISCSIStartPool(virConnectPtr conn,
|
2008-02-20 15:49:25 +00:00
|
|
|
virStoragePoolObjPtr pool)
|
|
|
|
{
|
|
|
|
char *portal = NULL;
|
2010-11-02 11:40:46 +00:00
|
|
|
char *session = NULL;
|
|
|
|
int ret = -1;
|
2008-02-20 15:49:25 +00:00
|
|
|
|
2012-04-25 10:43:09 +00:00
|
|
|
if (pool->def->source.nhost != 1) {
|
2014-03-20 12:23:42 +00:00
|
|
|
virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
|
|
_("Expected exactly 1 host for the storage pool"));
|
2012-04-25 10:43:09 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pool->def->source.hosts[0].name == NULL) {
|
2012-07-18 11:38:29 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
"%s", _("missing source host"));
|
2008-02-20 15:49:25 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pool->def->source.ndevice != 1 ||
|
|
|
|
pool->def->source.devices[0].path == NULL) {
|
2012-07-18 11:38:29 +00:00
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
"%s", _("missing source device"));
|
2008-02-20 15:49:25 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-03-11 11:58:35 +00:00
|
|
|
if ((session = virStorageBackendISCSISession(pool, true)) == NULL) {
|
2010-11-02 11:40:46 +00:00
|
|
|
if ((portal = virStorageBackendISCSIPortal(&pool->def->source)) == NULL)
|
|
|
|
goto cleanup;
|
|
|
|
/*
|
|
|
|
* iscsiadm doesn't let you login to a target, unless you've
|
|
|
|
* first issued a 'sendtargets' command to the portal :-(
|
|
|
|
*/
|
2014-03-19 15:03:11 +00:00
|
|
|
if (virISCSIScanTargets(portal,
|
|
|
|
pool->def->source.initiator.iqn,
|
|
|
|
NULL, NULL) < 0)
|
2010-11-02 11:40:46 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2014-06-26 12:18:09 +00:00
|
|
|
if (virStorageBackendISCSISetAuth(portal, conn, &pool->def->source) < 0)
|
2013-07-15 17:23:45 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2014-03-19 15:03:11 +00:00
|
|
|
if (virISCSIConnectionLogin(portal,
|
|
|
|
pool->def->source.initiator.iqn,
|
|
|
|
pool->def->source.devices[0].path) < 0)
|
2010-11-02 11:40:46 +00:00
|
|
|
goto cleanup;
|
2008-02-20 15:49:25 +00:00
|
|
|
}
|
2010-11-02 11:40:46 +00:00
|
|
|
ret = 0;
|
|
|
|
|
2014-03-25 06:52:40 +00:00
|
|
|
cleanup:
|
2013-05-06 12:36:23 +00:00
|
|
|
VIR_FREE(portal);
|
2010-11-02 11:40:46 +00:00
|
|
|
VIR_FREE(session);
|
|
|
|
return ret;
|
2008-02-20 15:49:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-02-10 11:42:56 +00:00
|
|
|
virStorageBackendISCSIRefreshPool(virConnectPtr conn ATTRIBUTE_UNUSED,
|
2008-02-20 15:49:25 +00:00
|
|
|
virStoragePoolObjPtr pool)
|
|
|
|
{
|
|
|
|
char *session = NULL;
|
|
|
|
|
|
|
|
pool->def->allocation = pool->def->capacity = pool->def->available = 0;
|
|
|
|
|
2014-03-11 11:58:35 +00:00
|
|
|
if ((session = virStorageBackendISCSISession(pool, false)) == NULL)
|
2008-02-20 15:49:25 +00:00
|
|
|
goto cleanup;
|
2014-03-19 15:03:11 +00:00
|
|
|
if (virISCSIRescanLUNs(session) < 0)
|
2008-02-20 15:49:25 +00:00
|
|
|
goto cleanup;
|
2010-02-10 11:42:56 +00:00
|
|
|
if (virStorageBackendISCSIFindLUs(pool, session) < 0)
|
2008-02-20 15:49:25 +00:00
|
|
|
goto cleanup;
|
2008-06-06 11:09:57 +00:00
|
|
|
VIR_FREE(session);
|
2008-02-20 15:49:25 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2014-03-25 06:52:40 +00:00
|
|
|
cleanup:
|
2008-06-06 11:09:57 +00:00
|
|
|
VIR_FREE(session);
|
2008-02-20 15:49:25 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2010-02-10 11:42:56 +00:00
|
|
|
virStorageBackendISCSIStopPool(virConnectPtr conn ATTRIBUTE_UNUSED,
|
2008-02-20 15:49:25 +00:00
|
|
|
virStoragePoolObjPtr pool)
|
|
|
|
{
|
|
|
|
char *portal;
|
2015-04-29 12:59:08 +00:00
|
|
|
char *session;
|
2010-11-02 11:40:46 +00:00
|
|
|
int ret = -1;
|
2008-02-20 15:49:25 +00:00
|
|
|
|
2015-04-29 12:59:08 +00:00
|
|
|
if ((session = virStorageBackendISCSISession(pool, true)) == NULL)
|
|
|
|
return 0;
|
|
|
|
VIR_FREE(session);
|
|
|
|
|
2010-11-02 11:40:46 +00:00
|
|
|
if ((portal = virStorageBackendISCSIPortal(&pool->def->source)) == NULL)
|
2008-02-20 15:49:25 +00:00
|
|
|
return -1;
|
|
|
|
|
2014-03-19 15:03:11 +00:00
|
|
|
if (virISCSIConnectionLogout(portal,
|
|
|
|
pool->def->source.initiator.iqn,
|
|
|
|
pool->def->source.devices[0].path) < 0)
|
2010-11-02 11:40:46 +00:00
|
|
|
goto cleanup;
|
|
|
|
ret = 0;
|
2008-02-20 15:49:25 +00:00
|
|
|
|
2014-03-25 06:52:40 +00:00
|
|
|
cleanup:
|
2010-11-02 11:40:46 +00:00
|
|
|
VIR_FREE(portal);
|
|
|
|
return ret;
|
2008-02-20 15:49:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virStorageBackend virStorageBackendISCSI = {
|
2008-10-16 15:06:03 +00:00
|
|
|
.type = VIR_STORAGE_POOL_ISCSI,
|
2008-02-20 15:49:25 +00:00
|
|
|
|
2010-11-11 20:09:20 +00:00
|
|
|
.checkPool = virStorageBackendISCSICheckPool,
|
2008-10-16 15:06:03 +00:00
|
|
|
.startPool = virStorageBackendISCSIStartPool,
|
|
|
|
.refreshPool = virStorageBackendISCSIRefreshPool,
|
|
|
|
.stopPool = virStorageBackendISCSIStopPool,
|
2010-11-12 15:41:16 +00:00
|
|
|
.findPoolSources = virStorageBackendISCSIFindPoolSources,
|
2014-07-07 14:50:11 +00:00
|
|
|
.uploadVol = virStorageBackendVolUploadLocal,
|
|
|
|
.downloadVol = virStorageBackendVolDownloadLocal,
|
2014-07-07 14:50:11 +00:00
|
|
|
.wipeVol = virStorageBackendVolWipeLocal,
|
2008-02-20 15:49:25 +00:00
|
|
|
};
|