storage_backend_iscsi.c 12.4 KB
Newer Older
1 2 3
/*
 * storage_backend_iscsi.c: storage backend for iSCSI handling
 *
4
 * Copyright (C) 2007-2016 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * 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
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#include <config.h>

26
#include <dirent.h>
27 28 29 30
#include <sys/wait.h>
#include <string.h>
#include <fcntl.h>
#include <unistd.h>
D
David Allan 已提交
31
#include <sys/stat.h>
32

33 34
#include "datatypes.h"
#include "driver.h"
35
#include "storage_backend_scsi.h"
36
#include "storage_backend_iscsi.h"
37
#include "viralloc.h"
38
#include "vircommand.h"
39 40
#include "virerror.h"
#include "virfile.h"
41
#include "viriscsi.h"
42
#include "virlog.h"
43
#include "virobject.h"
44
#include "virstring.h"
45
#include "viruuid.h"
46
#include "secret_util.h"
47

48 49
#define VIR_FROM_THIS VIR_FROM_STORAGE

50 51
VIR_LOG_INIT("storage.storage_backend_iscsi");

52 53
#define ISCSI_DEFAULT_TARGET_PORT 3260

54 55 56
static char *
virStorageBackendISCSIPortal(virStoragePoolSourcePtr source)
{
57
    char *portal = NULL;
58

59
    if (source->nhost != 1) {
60 61
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Expected exactly 1 host for the storage pool"));
62 63 64
        return NULL;
    }

65 66
    if (source->hosts[0].port == 0)
        source->hosts[0].port = ISCSI_DEFAULT_TARGET_PORT;
67

68 69 70 71
    if (strchr(source->hosts[0].name, ':')) {
        ignore_value(virAsprintf(&portal, "[%s]:%d,1",
                                 source->hosts[0].name,
                                 source->hosts[0].port));
72
    } else {
73 74 75
        ignore_value(virAsprintf(&portal, "%s:%d,1",
                                 source->hosts[0].name,
                                 source->hosts[0].port));
76 77 78 79 80
    }

    return portal;
}

81

82 83 84 85
static char *
virStorageBackendISCSISession(virStoragePoolObjPtr pool,
                              bool probe)
{
86
    return virISCSIGetSession(pool->def->source.devices[0].path, probe);
87 88 89
}


90 91 92 93 94 95 96
static int
virStorageBackendISCSIGetHostNumber(const char *sysfs_path,
                                    uint32_t *host)
{
    int retval = 0;
    DIR *sysdir = NULL;
    struct dirent *dirent = NULL;
E
Eric Blake 已提交
97
    int direrr;
98 99 100 101 102 103 104 105 106 107 108 109 110 111

    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;
    }

E
Eric Blake 已提交
112
    while ((direrr = virDirRead(sysdir, &dirent, sysfs_path)) > 0) {
113 114 115 116 117 118 119 120 121
        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;
            }
        }
    }
E
Eric Blake 已提交
122 123
    if (direrr < 0)
        retval = -1;
124

J
Ján Tomko 已提交
125
    VIR_DIR_CLOSE(sysdir);
126
 out:
127 128
    return retval;
}
129

130
static int
131
virStorageBackendISCSIFindLUs(virStoragePoolObjPtr pool,
132
                              const char *session)
133
{
134
    char *sysfs_path;
135
    int retval = -1;
136
    uint32_t host;
137

138
    if (virAsprintf(&sysfs_path,
139
                    "/sys/class/iscsi_session/session%s/device", session) < 0)
140
        goto cleanup;
141

142
    if (virStorageBackendISCSIGetHostNumber(sysfs_path, &host) < 0) {
143
        virReportSystemError(errno,
144 145
                             _("Failed to get host number for iSCSI session "
                               "with path '%s'"),
146
                             sysfs_path);
147
        goto cleanup;
148 149
    }

150
    if (virStorageBackendSCSIFindLUs(pool, host) < 0)
151 152 153 154 155
        goto cleanup;

    retval = 0;

 cleanup:
156

157 158
    VIR_FREE(sysfs_path);

159 160
    return retval;
}
161 162


163 164 165
static char *
virStorageBackendISCSIFindPoolSources(virConnectPtr conn ATTRIBUTE_UNUSED,
                                      const char *srcSpec,
E
Eric Blake 已提交
166
                                      unsigned int flags)
167 168 169 170 171
{
    virStoragePoolSourcePtr source = NULL;
    size_t ntargets = 0;
    char **targets = NULL;
    char *ret = NULL;
172
    size_t i;
173 174 175 176 177 178 179
    virStoragePoolSourceList list = {
        .type = VIR_STORAGE_POOL_ISCSI,
        .nsources = 0,
        .sources = NULL
    };
    char *portal = NULL;

E
Eric Blake 已提交
180 181
    virCheckFlags(0, NULL);

182
    if (!srcSpec) {
183 184
        virReportError(VIR_ERR_INVALID_ARG, "%s",
                       _("hostname must be specified for iscsi sources"));
185 186 187
        return NULL;
    }

188 189 190 191
    if (!(source = virStoragePoolDefParseSourceString(srcSpec,
                                                      list.type)))
        return NULL;

192
    if (source->nhost != 1) {
193 194
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Expected exactly 1 host for the storage pool"));
195 196 197
        goto cleanup;
    }

198 199 200
    if (!(portal = virStorageBackendISCSIPortal(source)))
        goto cleanup;

201
    if (virISCSIScanTargets(portal, &ntargets, &targets) < 0)
202 203
        goto cleanup;

204
    if (VIR_ALLOC_N(list.sources, ntargets) < 0)
205 206
        goto cleanup;

207
    for (i = 0; i < ntargets; i++) {
E
Eric Blake 已提交
208
        if (VIR_ALLOC_N(list.sources[i].devices, 1) < 0 ||
209
            VIR_ALLOC_N(list.sources[i].hosts, 1) < 0)
210
            goto cleanup;
E
Eric Blake 已提交
211 212
        list.sources[i].nhost = 1;
        list.sources[i].hosts[0] = source->hosts[0];
213 214 215 216 217 218
        list.sources[i].initiator = source->initiator;
        list.sources[i].ndevice = 1;
        list.sources[i].devices[0].path = targets[i];
        list.nsources++;
    }

219
    if (!(ret = virStoragePoolSourceListFormat(&list)))
220 221
        goto cleanup;

222
 cleanup:
223
    if (list.sources) {
224
        for (i = 0; i < ntargets; i++) {
E
Eric Blake 已提交
225
            VIR_FREE(list.sources[i].hosts);
226
            VIR_FREE(list.sources[i].devices);
E
Eric Blake 已提交
227
        }
228 229
        VIR_FREE(list.sources);
    }
230
    for (i = 0; i < ntargets; i++)
231 232 233 234 235 236 237
        VIR_FREE(targets[i]);
    VIR_FREE(targets);
    VIR_FREE(portal);
    virStoragePoolSourceFree(source);
    return ret;
}

238
static int
239
virStorageBackendISCSICheckPool(virStoragePoolObjPtr pool,
240 241 242 243 244 245 246
                                bool *isActive)
{
    char *session = NULL;
    int ret = -1;

    *isActive = false;

247
    if (pool->def->source.nhost != 1) {
248 249
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Expected exactly 1 host for the storage pool"));
250 251 252 253
        return -1;
    }

    if (pool->def->source.hosts[0].name == NULL) {
254 255
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("missing source host"));
256 257 258 259 260
        return -1;
    }

    if (pool->def->source.ndevice != 1 ||
        pool->def->source.devices[0].path == NULL) {
261 262
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("missing source device"));
263 264 265
        return -1;
    }

266
    if ((session = virStorageBackendISCSISession(pool, true)) != NULL) {
267 268 269 270 271 272 273 274 275
        *isActive = true;
        VIR_FREE(session);
    }
    ret = 0;

    return ret;
}


276
static int
277 278
virStorageBackendISCSISetAuth(const char *portal,
                              virConnectPtr conn,
279
                              virStoragePoolSourcePtr source)
280 281
{
    unsigned char *secret_value = NULL;
282
    size_t secret_size;
283
    virStorageAuthDefPtr authdef = source->auth;
284 285
    int ret = -1;

286
    if (!authdef || authdef->authType == VIR_STORAGE_AUTH_TYPE_NONE)
287 288
        return 0;

289 290
    VIR_DEBUG("username='%s' authType=%d seclookupdef.type=%d",
              authdef->username, authdef->authType, authdef->seclookupdef.type);
291
    if (authdef->authType != VIR_STORAGE_AUTH_TYPE_CHAP) {
292 293 294 295 296 297 298 299 300 301 302 303
        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;
    }

304 305
    if (virSecretGetSecretString(conn, &authdef->seclookupdef,
                                 VIR_SECRET_USAGE_TYPE_ISCSI,
306
                                 &secret_value, &secret_size) < 0)
307 308
        goto cleanup;

309
    if (virISCSINodeUpdate(portal,
310
                           source->devices[0].path,
311 312 313
                           "node.session.auth.authmethod",
                           "CHAP") < 0 ||
        virISCSINodeUpdate(portal,
314
                           source->devices[0].path,
315
                           "node.session.auth.username",
316
                           authdef->username) < 0 ||
317
        virISCSINodeUpdate(portal,
318
                           source->devices[0].path,
319 320
                           "node.session.auth.password",
                           (const char *)secret_value) < 0)
321 322 323 324
        goto cleanup;

    ret = 0;

325
 cleanup:
326
    VIR_DISPOSE_N(secret_value, secret_size);
327 328 329 330 331
    return ret;
}

static int
virStorageBackendISCSIStartPool(virConnectPtr conn,
332 333 334
                                virStoragePoolObjPtr pool)
{
    char *portal = NULL;
335 336
    char *session = NULL;
    int ret = -1;
337

338
    if (pool->def->source.nhost != 1) {
339 340
        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
                       _("Expected exactly 1 host for the storage pool"));
341 342 343 344
        return -1;
    }

    if (pool->def->source.hosts[0].name == NULL) {
345 346
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("missing source host"));
347 348 349 350 351
        return -1;
    }

    if (pool->def->source.ndevice != 1 ||
        pool->def->source.devices[0].path == NULL) {
352 353
        virReportError(VIR_ERR_INTERNAL_ERROR,
                       "%s", _("missing source device"));
354 355 356
        return -1;
    }

357
    if ((session = virStorageBackendISCSISession(pool, true)) == NULL) {
358 359 360 361 362 363
        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 :-(
         */
364
        if (virISCSIScanTargets(portal, NULL, NULL) < 0)
365 366
            goto cleanup;

367
        if (virStorageBackendISCSISetAuth(portal, conn, &pool->def->source) < 0)
368 369
            goto cleanup;

370 371 372
        if (virISCSIConnectionLogin(portal,
                                    pool->def->source.initiator.iqn,
                                    pool->def->source.devices[0].path) < 0)
373
            goto cleanup;
374
    }
375 376
    ret = 0;

377
 cleanup:
378
    VIR_FREE(portal);
379 380
    VIR_FREE(session);
    return ret;
381 382 383
}

static int
384
virStorageBackendISCSIRefreshPool(virConnectPtr conn ATTRIBUTE_UNUSED,
385 386 387 388 389 390
                                  virStoragePoolObjPtr pool)
{
    char *session = NULL;

    pool->def->allocation = pool->def->capacity = pool->def->available = 0;

391
    if ((session = virStorageBackendISCSISession(pool, false)) == NULL)
392
        goto cleanup;
393
    if (virISCSIRescanLUNs(session) < 0)
394
        goto cleanup;
395
    if (virStorageBackendISCSIFindLUs(pool, session) < 0)
396
        goto cleanup;
397
    VIR_FREE(session);
398 399 400

    return 0;

401
 cleanup:
402
    VIR_FREE(session);
403 404 405 406 407
    return -1;
}


static int
408
virStorageBackendISCSIStopPool(virConnectPtr conn ATTRIBUTE_UNUSED,
409 410 411
                               virStoragePoolObjPtr pool)
{
    char *portal;
412
    char *session;
413
    int ret = -1;
414

415 416 417 418
    if ((session = virStorageBackendISCSISession(pool, true)) == NULL)
        return 0;
    VIR_FREE(session);

419
    if ((portal = virStorageBackendISCSIPortal(&pool->def->source)) == NULL)
420 421
        return -1;

422 423 424
    if (virISCSIConnectionLogout(portal,
                                 pool->def->source.initiator.iqn,
                                 pool->def->source.devices[0].path) < 0)
425 426
        goto cleanup;
    ret = 0;
427

428
 cleanup:
429 430
    VIR_FREE(portal);
    return ret;
431 432 433
}

virStorageBackend virStorageBackendISCSI = {
434
    .type = VIR_STORAGE_POOL_ISCSI,
435

436
    .checkPool = virStorageBackendISCSICheckPool,
437 438 439
    .startPool = virStorageBackendISCSIStartPool,
    .refreshPool = virStorageBackendISCSIRefreshPool,
    .stopPool = virStorageBackendISCSIStopPool,
440
    .findPoolSources = virStorageBackendISCSIFindPoolSources,
441 442
    .uploadVol = virStorageBackendVolUploadLocal,
    .downloadVol = virStorageBackendVolDownloadLocal,
443
    .wipeVol = virStorageBackendVolWipeLocal,
444
};