2018-10-29 14:35:27 +00:00
|
|
|
/*-
|
|
|
|
* BSD LICENSE
|
|
|
|
*
|
|
|
|
* Copyright (c) Intel Corporation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* * Neither the name of Intel Corporation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "spdk/stdinc.h"
|
|
|
|
#include "spdk/bdev.h"
|
|
|
|
#include "spdk/conf.h"
|
|
|
|
#include "spdk/env.h"
|
|
|
|
#include "spdk/io_channel.h"
|
|
|
|
#include "spdk/json.h"
|
|
|
|
#include "spdk/string.h"
|
|
|
|
#include "spdk/likely.h"
|
|
|
|
#include "spdk/util.h"
|
2019-03-22 08:21:30 +00:00
|
|
|
#include "spdk/string.h"
|
2018-10-29 14:35:27 +00:00
|
|
|
#include "spdk/ftl.h"
|
|
|
|
#include "spdk_internal/log.h"
|
|
|
|
|
|
|
|
#include "bdev_ftl.h"
|
2019-02-06 11:51:07 +00:00
|
|
|
#include "common.h"
|
2018-10-29 14:35:27 +00:00
|
|
|
|
|
|
|
#define FTL_COMPLETION_RING_SIZE 4096
|
|
|
|
|
|
|
|
struct ftl_bdev {
|
|
|
|
struct spdk_bdev bdev;
|
|
|
|
|
2019-02-06 11:51:07 +00:00
|
|
|
struct nvme_bdev_ctrlr *ctrlr;
|
2018-10-29 14:35:27 +00:00
|
|
|
|
|
|
|
struct spdk_ftl_dev *dev;
|
|
|
|
|
2019-03-15 16:37:44 +00:00
|
|
|
struct spdk_bdev_desc *cache_bdev_desc;
|
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
ftl_bdev_init_fn init_cb;
|
|
|
|
|
|
|
|
void *init_arg;
|
|
|
|
|
|
|
|
LIST_ENTRY(ftl_bdev) list_entry;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ftl_io_channel {
|
|
|
|
struct spdk_ftl_dev *dev;
|
|
|
|
|
|
|
|
struct spdk_poller *poller;
|
|
|
|
|
|
|
|
#define FTL_MAX_COMPLETIONS 64
|
|
|
|
struct ftl_bdev_io *io[FTL_MAX_COMPLETIONS];
|
|
|
|
|
|
|
|
/* Completion ring */
|
|
|
|
struct spdk_ring *ring;
|
|
|
|
|
|
|
|
struct spdk_io_channel *ioch;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ftl_bdev_io {
|
|
|
|
struct ftl_bdev *bdev;
|
|
|
|
|
|
|
|
struct spdk_ring *ring;
|
|
|
|
|
|
|
|
int status;
|
|
|
|
|
|
|
|
struct spdk_thread *orig_thread;
|
|
|
|
};
|
|
|
|
|
2019-03-20 08:36:02 +00:00
|
|
|
struct ftl_deferred_init {
|
|
|
|
struct ftl_bdev_init_opts opts;
|
|
|
|
|
|
|
|
LIST_ENTRY(ftl_deferred_init) entry;
|
|
|
|
};
|
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
typedef void (*bdev_ftl_finish_fn)(void);
|
|
|
|
|
|
|
|
static LIST_HEAD(, ftl_bdev) g_ftl_bdevs = LIST_HEAD_INITIALIZER(g_ftl_bdevs);
|
|
|
|
static bdev_ftl_finish_fn g_finish_cb;
|
|
|
|
static size_t g_num_conf_bdevs;
|
|
|
|
static size_t g_num_init_bdevs;
|
|
|
|
static pthread_mutex_t g_ftl_bdev_lock;
|
2019-03-20 08:36:02 +00:00
|
|
|
static LIST_HEAD(, ftl_deferred_init) g_deferred_init;
|
2018-10-29 14:35:27 +00:00
|
|
|
|
|
|
|
static int bdev_ftl_initialize(void);
|
|
|
|
static void bdev_ftl_finish(void);
|
2019-03-20 08:36:02 +00:00
|
|
|
static void bdev_ftl_examine(struct spdk_bdev *);
|
2018-10-29 14:35:27 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
bdev_ftl_get_ctx_size(void)
|
|
|
|
{
|
|
|
|
return sizeof(struct ftl_bdev_io);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct spdk_bdev_module g_ftl_if = {
|
|
|
|
.name = "ftl",
|
|
|
|
.async_init = true,
|
|
|
|
.async_fini = true,
|
|
|
|
.module_init = bdev_ftl_initialize,
|
|
|
|
.module_fini = bdev_ftl_finish,
|
2019-03-20 08:36:02 +00:00
|
|
|
.examine_disk = bdev_ftl_examine,
|
2018-10-29 14:35:27 +00:00
|
|
|
.get_ctx_size = bdev_ftl_get_ctx_size,
|
|
|
|
};
|
|
|
|
|
2019-02-05 10:46:48 +00:00
|
|
|
SPDK_BDEV_MODULE_REGISTER(ftl, &g_ftl_if)
|
2018-10-29 14:35:27 +00:00
|
|
|
|
2019-02-06 11:51:07 +00:00
|
|
|
static struct nvme_bdev_ctrlr *
|
2018-10-29 14:35:27 +00:00
|
|
|
bdev_ftl_add_ctrlr(struct spdk_nvme_ctrlr *ctrlr, const struct spdk_nvme_transport_id *trid)
|
|
|
|
{
|
2019-02-06 11:51:07 +00:00
|
|
|
struct nvme_bdev_ctrlr *ftl_ctrlr = NULL;
|
2018-10-29 14:35:27 +00:00
|
|
|
|
2019-02-06 11:51:07 +00:00
|
|
|
pthread_mutex_lock(&g_bdev_nvme_mutex);
|
2018-10-29 14:35:27 +00:00
|
|
|
|
2019-02-06 11:51:07 +00:00
|
|
|
ftl_ctrlr = nvme_bdev_ctrlr_get(trid);
|
2018-10-29 14:35:27 +00:00
|
|
|
if (ftl_ctrlr) {
|
2019-02-06 11:51:07 +00:00
|
|
|
ftl_ctrlr->ref++;
|
2018-10-29 14:35:27 +00:00
|
|
|
} else {
|
|
|
|
ftl_ctrlr = calloc(1, sizeof(*ftl_ctrlr));
|
|
|
|
if (!ftl_ctrlr) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ftl_ctrlr->ctrlr = ctrlr;
|
|
|
|
ftl_ctrlr->trid = *trid;
|
2019-02-06 11:51:07 +00:00
|
|
|
ftl_ctrlr->ref = 1;
|
2018-10-29 14:35:27 +00:00
|
|
|
|
2019-03-08 10:23:11 +00:00
|
|
|
ftl_ctrlr->name = spdk_sprintf_alloc("NVMe_%s", trid->traddr);
|
|
|
|
if (!ftl_ctrlr->name) {
|
|
|
|
SPDK_ERRLOG("Unable to allocate memory for bdev controller name.\n");
|
|
|
|
free(ftl_ctrlr);
|
|
|
|
ftl_ctrlr = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2019-02-06 11:51:07 +00:00
|
|
|
TAILQ_INSERT_HEAD(&g_nvme_bdev_ctrlrs, ftl_ctrlr, tailq);
|
2018-10-29 14:35:27 +00:00
|
|
|
}
|
|
|
|
out:
|
2019-02-06 11:51:07 +00:00
|
|
|
pthread_mutex_unlock(&g_bdev_nvme_mutex);
|
2018-10-29 14:35:27 +00:00
|
|
|
return ftl_ctrlr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-02-06 11:51:07 +00:00
|
|
|
bdev_ftl_remove_ctrlr(struct nvme_bdev_ctrlr *ctrlr)
|
2018-10-29 14:35:27 +00:00
|
|
|
{
|
2019-02-06 11:51:07 +00:00
|
|
|
pthread_mutex_lock(&g_bdev_nvme_mutex);
|
2018-10-29 14:35:27 +00:00
|
|
|
|
2019-02-06 11:51:07 +00:00
|
|
|
if (--ctrlr->ref == 0) {
|
2018-10-29 14:35:27 +00:00
|
|
|
if (spdk_nvme_detach(ctrlr->ctrlr)) {
|
|
|
|
SPDK_ERRLOG("Failed to detach the controller\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2019-02-06 11:51:07 +00:00
|
|
|
TAILQ_REMOVE(&g_nvme_bdev_ctrlrs, ctrlr, tailq);
|
2019-03-08 10:23:11 +00:00
|
|
|
free(ctrlr->name);
|
2018-10-29 14:35:27 +00:00
|
|
|
free(ctrlr);
|
|
|
|
}
|
|
|
|
out:
|
2019-02-06 11:51:07 +00:00
|
|
|
pthread_mutex_unlock(&g_bdev_nvme_mutex);
|
2018-10-29 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_free_cb(void *ctx, int status)
|
|
|
|
{
|
|
|
|
struct ftl_bdev *ftl_bdev = ctx;
|
|
|
|
bool finish_done;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&g_ftl_bdev_lock);
|
|
|
|
LIST_REMOVE(ftl_bdev, list_entry);
|
|
|
|
finish_done = LIST_EMPTY(&g_ftl_bdevs);
|
|
|
|
pthread_mutex_unlock(&g_ftl_bdev_lock);
|
|
|
|
|
|
|
|
spdk_io_device_unregister(ftl_bdev, NULL);
|
|
|
|
|
|
|
|
bdev_ftl_remove_ctrlr(ftl_bdev->ctrlr);
|
|
|
|
|
2019-03-15 16:37:44 +00:00
|
|
|
if (ftl_bdev->cache_bdev_desc) {
|
|
|
|
spdk_bdev_module_release_bdev(spdk_bdev_desc_get_bdev(ftl_bdev->cache_bdev_desc));
|
|
|
|
spdk_bdev_close(ftl_bdev->cache_bdev_desc);
|
|
|
|
}
|
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
spdk_bdev_destruct_done(&ftl_bdev->bdev, status);
|
|
|
|
free(ftl_bdev->bdev.name);
|
|
|
|
free(ftl_bdev);
|
|
|
|
|
|
|
|
if (finish_done && g_finish_cb) {
|
|
|
|
g_finish_cb();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bdev_ftl_destruct(void *ctx)
|
|
|
|
{
|
|
|
|
struct ftl_bdev *ftl_bdev = ctx;
|
|
|
|
spdk_ftl_dev_free(ftl_bdev->dev, bdev_ftl_free_cb, ftl_bdev);
|
|
|
|
|
|
|
|
/* return 1 to indicate that the destruction is asynchronous */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_complete_io(struct ftl_bdev_io *io, int rc)
|
|
|
|
{
|
|
|
|
enum spdk_bdev_io_status status;
|
|
|
|
|
|
|
|
switch (rc) {
|
|
|
|
case 0:
|
|
|
|
status = SPDK_BDEV_IO_STATUS_SUCCESS;
|
|
|
|
break;
|
|
|
|
case -ENOMEM:
|
|
|
|
status = SPDK_BDEV_IO_STATUS_NOMEM;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
status = SPDK_BDEV_IO_STATUS_FAILED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
spdk_bdev_io_complete(spdk_bdev_io_from_ctx(io), status);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_cb(void *arg, int status)
|
|
|
|
{
|
|
|
|
struct ftl_bdev_io *io = arg;
|
|
|
|
size_t cnt __attribute__((unused));
|
|
|
|
|
|
|
|
io->status = status;
|
|
|
|
|
2019-06-04 04:22:00 +00:00
|
|
|
cnt = spdk_ring_enqueue(io->ring, (void **)&io, 1, NULL);
|
2018-10-29 14:35:27 +00:00
|
|
|
assert(cnt == 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bdev_ftl_fill_bio(struct ftl_bdev *ftl_bdev, struct spdk_io_channel *ch,
|
|
|
|
struct ftl_bdev_io *io)
|
|
|
|
{
|
|
|
|
struct ftl_io_channel *ioch = spdk_io_channel_get_ctx(ch);
|
|
|
|
|
|
|
|
memset(io, 0, sizeof(*io));
|
|
|
|
|
|
|
|
io->orig_thread = spdk_io_channel_get_thread(ch);
|
|
|
|
io->status = SPDK_BDEV_IO_STATUS_SUCCESS;
|
|
|
|
io->ring = ioch->ring;
|
|
|
|
io->bdev = ftl_bdev;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bdev_ftl_readv(struct ftl_bdev *ftl_bdev, struct spdk_io_channel *ch,
|
|
|
|
struct ftl_bdev_io *io)
|
|
|
|
{
|
|
|
|
struct spdk_bdev_io *bio;
|
|
|
|
struct ftl_io_channel *ioch = spdk_io_channel_get_ctx(ch);
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
bio = spdk_bdev_io_from_ctx(io);
|
|
|
|
|
|
|
|
rc = bdev_ftl_fill_bio(ftl_bdev, ch, io);
|
|
|
|
if (rc) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
return spdk_ftl_read(ftl_bdev->dev,
|
|
|
|
ioch->ioch,
|
|
|
|
bio->u.bdev.offset_blocks,
|
|
|
|
bio->u.bdev.num_blocks,
|
|
|
|
bio->u.bdev.iovs, bio->u.bdev.iovcnt, bdev_ftl_cb, io);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bdev_ftl_writev(struct ftl_bdev *ftl_bdev, struct spdk_io_channel *ch,
|
|
|
|
struct ftl_bdev_io *io)
|
|
|
|
{
|
|
|
|
struct spdk_bdev_io *bio;
|
|
|
|
struct ftl_io_channel *ioch;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
bio = spdk_bdev_io_from_ctx(io);
|
|
|
|
ioch = spdk_io_channel_get_ctx(ch);
|
|
|
|
|
|
|
|
rc = bdev_ftl_fill_bio(ftl_bdev, ch, io);
|
|
|
|
if (rc) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
return spdk_ftl_write(ftl_bdev->dev,
|
|
|
|
ioch->ioch,
|
|
|
|
bio->u.bdev.offset_blocks,
|
|
|
|
bio->u.bdev.num_blocks,
|
|
|
|
bio->u.bdev.iovs,
|
|
|
|
bio->u.bdev.iovcnt, bdev_ftl_cb, io);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
bdev: Not assert but pass completion status to spdk_bdev_io_get_buf_cb
When the specified buffer size to spdk_bdev_io_get_buf() is greater
than the permitted maximum, spdk_bdev_io_get_buf() asserts simply and
doesn't call the specified callback function.
SPDK SCSI library doesn't allocate read buffer and specifies
expected read buffer size, and expects that it is allocated by
spdk_bdev_io_get_buf().
Bdev perf tool also doesn't allocate read buffer and specifies
expected read buffer size, and expects that it is allocated by
spdk_bdev_io_get_buf().
When we support DIF insert and strip in iSCSI target, the read
buffer size iSCSI initiator requests and the read buffer size iSCSI target
requests will become different.
Even after that, iSCSI initiator and iSCSI target will negotiate correctly
not to cause buffer overflow in spdk_bdev_io_get_buf(), but if iSCSI
initiator ignores the result of negotiation, iSCSI initiator can request
read buffer size larger than the permitted maximum, and can cause
failure in iSCSI target. This is very flagile and should be avoided.
This patch do the following
- Add the completion status of spdk_bdev_io_get_buf() to
spdk_bdev_io_get_buf_cb(),
- spdk_bdev_io_get_buf() calls spdk_bdev_io_get_buf_cb() by setting
success to false, and return.
- spdk_bdev_io_get_buf_cb() in each bdev module calls assert if success
is false.
Subsequent patches will process the case that success is false
in spdk_bdev_io_get_buf_cb().
Change-Id: I76429a86e18a69aa085a353ac94743296d270b82
Signed-off-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-on: https://review.gerrithub.io/c/446045
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Ziye Yang <ziye.yang@intel.com>
Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
2019-02-25 00:34:28 +00:00
|
|
|
bdev_ftl_get_buf_cb(struct spdk_io_channel *ch, struct spdk_bdev_io *bdev_io,
|
|
|
|
bool success)
|
2018-10-29 14:35:27 +00:00
|
|
|
{
|
2019-02-25 01:43:13 +00:00
|
|
|
if (!success) {
|
|
|
|
bdev_ftl_complete_io((struct ftl_bdev_io *)bdev_io->driver_ctx,
|
|
|
|
SPDK_BDEV_IO_STATUS_FAILED);
|
|
|
|
return;
|
|
|
|
}
|
bdev: Not assert but pass completion status to spdk_bdev_io_get_buf_cb
When the specified buffer size to spdk_bdev_io_get_buf() is greater
than the permitted maximum, spdk_bdev_io_get_buf() asserts simply and
doesn't call the specified callback function.
SPDK SCSI library doesn't allocate read buffer and specifies
expected read buffer size, and expects that it is allocated by
spdk_bdev_io_get_buf().
Bdev perf tool also doesn't allocate read buffer and specifies
expected read buffer size, and expects that it is allocated by
spdk_bdev_io_get_buf().
When we support DIF insert and strip in iSCSI target, the read
buffer size iSCSI initiator requests and the read buffer size iSCSI target
requests will become different.
Even after that, iSCSI initiator and iSCSI target will negotiate correctly
not to cause buffer overflow in spdk_bdev_io_get_buf(), but if iSCSI
initiator ignores the result of negotiation, iSCSI initiator can request
read buffer size larger than the permitted maximum, and can cause
failure in iSCSI target. This is very flagile and should be avoided.
This patch do the following
- Add the completion status of spdk_bdev_io_get_buf() to
spdk_bdev_io_get_buf_cb(),
- spdk_bdev_io_get_buf() calls spdk_bdev_io_get_buf_cb() by setting
success to false, and return.
- spdk_bdev_io_get_buf_cb() in each bdev module calls assert if success
is false.
Subsequent patches will process the case that success is false
in spdk_bdev_io_get_buf_cb().
Change-Id: I76429a86e18a69aa085a353ac94743296d270b82
Signed-off-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-on: https://review.gerrithub.io/c/446045
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Ziye Yang <ziye.yang@intel.com>
Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
2019-02-25 00:34:28 +00:00
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
int rc = bdev_ftl_readv((struct ftl_bdev *)bdev_io->bdev->ctxt,
|
|
|
|
ch, (struct ftl_bdev_io *)bdev_io->driver_ctx);
|
|
|
|
|
|
|
|
if (spdk_unlikely(rc != 0)) {
|
|
|
|
bdev_ftl_complete_io((struct ftl_bdev_io *)bdev_io->driver_ctx, rc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bdev_ftl_flush(struct ftl_bdev *ftl_bdev, struct spdk_io_channel *ch, struct ftl_bdev_io *io)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = bdev_ftl_fill_bio(ftl_bdev, ch, io);
|
|
|
|
if (rc) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
return spdk_ftl_flush(ftl_bdev->dev, bdev_ftl_cb, io);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
_bdev_ftl_submit_request(struct spdk_io_channel *ch, struct spdk_bdev_io *bdev_io)
|
|
|
|
{
|
|
|
|
struct ftl_bdev *ftl_bdev = (struct ftl_bdev *)bdev_io->bdev->ctxt;
|
|
|
|
|
|
|
|
switch (bdev_io->type) {
|
|
|
|
case SPDK_BDEV_IO_TYPE_READ:
|
|
|
|
spdk_bdev_io_get_buf(bdev_io, bdev_ftl_get_buf_cb,
|
|
|
|
bdev_io->u.bdev.num_blocks * bdev_io->bdev->blocklen);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
case SPDK_BDEV_IO_TYPE_WRITE:
|
|
|
|
return bdev_ftl_writev(ftl_bdev, ch, (struct ftl_bdev_io *)bdev_io->driver_ctx);
|
|
|
|
|
|
|
|
case SPDK_BDEV_IO_TYPE_FLUSH:
|
|
|
|
return bdev_ftl_flush(ftl_bdev, ch, (struct ftl_bdev_io *)bdev_io->driver_ctx);
|
|
|
|
|
|
|
|
case SPDK_BDEV_IO_TYPE_WRITE_ZEROES:
|
|
|
|
case SPDK_BDEV_IO_TYPE_RESET:
|
|
|
|
case SPDK_BDEV_IO_TYPE_UNMAP:
|
|
|
|
default:
|
|
|
|
return -ENOTSUP;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_submit_request(struct spdk_io_channel *ch, struct spdk_bdev_io *bdev_io)
|
|
|
|
{
|
|
|
|
int rc = _bdev_ftl_submit_request(ch, bdev_io);
|
|
|
|
|
|
|
|
if (spdk_unlikely(rc != 0)) {
|
|
|
|
bdev_ftl_complete_io((struct ftl_bdev_io *)bdev_io->driver_ctx, rc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
bdev_ftl_io_type_supported(void *ctx, enum spdk_bdev_io_type io_type)
|
|
|
|
{
|
|
|
|
switch (io_type) {
|
|
|
|
case SPDK_BDEV_IO_TYPE_READ:
|
|
|
|
case SPDK_BDEV_IO_TYPE_WRITE:
|
|
|
|
case SPDK_BDEV_IO_TYPE_FLUSH:
|
|
|
|
return true;
|
|
|
|
case SPDK_BDEV_IO_TYPE_WRITE_ZEROES:
|
|
|
|
case SPDK_BDEV_IO_TYPE_RESET:
|
|
|
|
case SPDK_BDEV_IO_TYPE_UNMAP:
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct spdk_io_channel *
|
|
|
|
bdev_ftl_get_io_channel(void *ctx)
|
|
|
|
{
|
|
|
|
struct ftl_bdev *ftl_bdev = ctx;
|
|
|
|
|
|
|
|
return spdk_get_io_channel(ftl_bdev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_write_config_json(struct spdk_bdev *bdev, struct spdk_json_write_ctx *w)
|
|
|
|
{
|
2019-01-28 13:12:21 +00:00
|
|
|
struct ftl_bdev *ftl_bdev = bdev->ctxt;
|
|
|
|
struct spdk_ftl_attrs attrs;
|
2019-03-15 16:37:44 +00:00
|
|
|
const char *trtype_str, *cache_bdev;
|
2019-01-28 13:12:21 +00:00
|
|
|
char uuid[SPDK_UUID_STRING_LEN];
|
|
|
|
|
|
|
|
spdk_ftl_dev_get_attrs(ftl_bdev->dev, &attrs);
|
|
|
|
|
|
|
|
spdk_json_write_object_begin(w);
|
|
|
|
|
|
|
|
spdk_json_write_named_string(w, "method", "construct_ftl_bdev");
|
|
|
|
|
|
|
|
spdk_json_write_named_object_begin(w, "params");
|
|
|
|
spdk_json_write_named_string(w, "name", ftl_bdev->bdev.name);
|
|
|
|
|
|
|
|
trtype_str = spdk_nvme_transport_id_trtype_str(ftl_bdev->ctrlr->trid.trtype);
|
|
|
|
if (trtype_str) {
|
|
|
|
spdk_json_write_named_string(w, "trtype", trtype_str);
|
|
|
|
}
|
|
|
|
|
2019-03-15 16:37:44 +00:00
|
|
|
spdk_json_write_named_string(w, "traddr", ftl_bdev->ctrlr->trid.traddr);
|
2019-01-28 13:12:21 +00:00
|
|
|
spdk_json_write_named_string_fmt(w, "punits", "%d-%d", attrs.range.begin, attrs.range.end);
|
|
|
|
|
|
|
|
spdk_uuid_fmt_lower(uuid, sizeof(uuid), &attrs.uuid);
|
|
|
|
spdk_json_write_named_string(w, "uuid", uuid);
|
|
|
|
|
2019-03-15 16:37:44 +00:00
|
|
|
if (ftl_bdev->cache_bdev_desc) {
|
|
|
|
cache_bdev = spdk_bdev_get_name(spdk_bdev_desc_get_bdev(ftl_bdev->cache_bdev_desc));
|
|
|
|
spdk_json_write_named_string(w, "cache", cache_bdev);
|
|
|
|
}
|
2019-01-28 13:12:21 +00:00
|
|
|
|
|
|
|
spdk_json_write_object_end(w);
|
2019-03-15 16:37:44 +00:00
|
|
|
spdk_json_write_object_end(w);
|
2018-10-29 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct spdk_bdev_fn_table ftl_fn_table = {
|
|
|
|
.destruct = bdev_ftl_destruct,
|
|
|
|
.submit_request = bdev_ftl_submit_request,
|
|
|
|
.io_type_supported = bdev_ftl_io_type_supported,
|
|
|
|
.get_io_channel = bdev_ftl_get_io_channel,
|
|
|
|
.write_config_json = bdev_ftl_write_config_json,
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
bdev_ftl_parse_punits(struct spdk_ftl_punit_range *range, const char *range_string)
|
|
|
|
{
|
|
|
|
regex_t range_regex;
|
|
|
|
regmatch_t range_match;
|
|
|
|
unsigned long begin = 0, end = 0;
|
|
|
|
char *str_ptr;
|
|
|
|
int rc = -1;
|
|
|
|
|
|
|
|
if (regcomp(&range_regex, "\\b[[:digit:]]+-[[:digit:]]+\\b", REG_EXTENDED)) {
|
|
|
|
SPDK_ERRLOG("Regex init error\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (regexec(&range_regex, range_string, 1, &range_match, 0)) {
|
|
|
|
SPDK_WARNLOG("Invalid range\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
begin = strtoul(range_string + range_match.rm_so, &str_ptr, 10);
|
|
|
|
if ((begin == ULONG_MAX && errno == ERANGE) || (begin == 0 && errno == EINVAL)) {
|
|
|
|
SPDK_WARNLOG("Invalid range '%s'\n", range_string);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
/* +1 to skip the '-' delimiter */
|
|
|
|
end = strtoul(str_ptr + 1, NULL, 10);
|
|
|
|
if ((end == ULONG_MAX && errno == ERANGE) || (end == 0 && errno == EINVAL)) {
|
|
|
|
SPDK_WARNLOG("Invalid range '%s'\n", range_string);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (begin > UINT_MAX || end > UINT_MAX) {
|
|
|
|
SPDK_WARNLOG("Invalid range '%s'\n", range_string);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (begin > end) {
|
|
|
|
SPDK_WARNLOG("Invalid range '%s'\n", range_string);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
range->begin = (unsigned int)begin;
|
|
|
|
range->end = (unsigned int)end;
|
|
|
|
|
|
|
|
rc = 0;
|
|
|
|
out:
|
|
|
|
regfree(&range_regex);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2019-03-20 08:36:02 +00:00
|
|
|
static int
|
|
|
|
bdev_ftl_defer_init(struct ftl_bdev_init_opts *opts)
|
|
|
|
{
|
|
|
|
struct ftl_deferred_init *init;
|
|
|
|
|
|
|
|
init = calloc(1, sizeof(*init));
|
|
|
|
if (!init) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
init->opts = *opts;
|
|
|
|
LIST_INSERT_HEAD(&g_deferred_init, init, entry);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
static int
|
|
|
|
bdev_ftl_read_bdev_config(struct spdk_conf_section *sp,
|
|
|
|
struct ftl_bdev_init_opts *opts,
|
|
|
|
size_t *num_bdevs)
|
|
|
|
{
|
2019-03-22 08:10:44 +00:00
|
|
|
const char *val, *trid;
|
2019-03-20 08:36:02 +00:00
|
|
|
int i, rc = 0, num_deferred = 0;
|
2018-10-29 14:35:27 +00:00
|
|
|
|
|
|
|
*num_bdevs = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < FTL_MAX_BDEVS; i++, opts++) {
|
2019-03-22 08:10:44 +00:00
|
|
|
trid = val = spdk_conf_section_get_nmval(sp, "TransportID", i, 0);
|
2018-10-29 14:35:27 +00:00
|
|
|
if (!val) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = spdk_nvme_transport_id_parse(&opts->trid, val);
|
|
|
|
if (rc < 0) {
|
2019-03-22 08:10:44 +00:00
|
|
|
SPDK_ERRLOG("Unable to parse TransportID: %s\n", trid);
|
2018-10-29 14:35:27 +00:00
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts->trid.trtype != SPDK_NVME_TRANSPORT_PCIE) {
|
2019-03-22 08:10:44 +00:00
|
|
|
SPDK_ERRLOG("Unsupported transport type for TransportID: %s\n", trid);
|
2018-10-29 14:35:27 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
val = spdk_conf_section_get_nmval(sp, "TransportID", i, 1);
|
|
|
|
if (!val) {
|
2019-03-22 08:10:44 +00:00
|
|
|
SPDK_ERRLOG("No name provided for TransportID: %s\n", trid);
|
2018-10-29 14:35:27 +00:00
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
}
|
2019-03-15 16:37:44 +00:00
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
opts->name = val;
|
|
|
|
|
|
|
|
val = spdk_conf_section_get_nmval(sp, "TransportID", i, 2);
|
|
|
|
if (!val) {
|
2019-03-22 08:10:44 +00:00
|
|
|
SPDK_ERRLOG("No punit range provided for TransportID: %s\n", trid);
|
2018-10-29 14:35:27 +00:00
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bdev_ftl_parse_punits(&opts->range, val)) {
|
2019-03-22 08:10:44 +00:00
|
|
|
SPDK_ERRLOG("Invalid punit range for TransportID: %s\n", trid);
|
2018-10-29 14:35:27 +00:00
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
val = spdk_conf_section_get_nmval(sp, "TransportID", i, 3);
|
|
|
|
if (!val) {
|
2019-03-22 08:21:30 +00:00
|
|
|
SPDK_ERRLOG("No UUID provided for TransportID: %s\n", trid);
|
|
|
|
rc = -1;
|
|
|
|
break;
|
2018-10-29 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rc = spdk_uuid_parse(&opts->uuid, val);
|
|
|
|
if (rc < 0) {
|
2019-03-22 08:10:44 +00:00
|
|
|
SPDK_ERRLOG("Failed to parse uuid: %s for TransportID: %s\n", val, trid);
|
2018-10-29 14:35:27 +00:00
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-03-22 08:21:30 +00:00
|
|
|
if (spdk_mem_all_zero(&opts->uuid, sizeof(opts->uuid))) {
|
|
|
|
opts->mode = SPDK_FTL_MODE_CREATE;
|
|
|
|
} else {
|
|
|
|
opts->mode = 0;
|
|
|
|
}
|
2019-03-15 16:37:44 +00:00
|
|
|
|
|
|
|
val = spdk_conf_section_get_nmval(sp, "TransportID", i, 4);
|
|
|
|
if (!val) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-03-20 08:36:02 +00:00
|
|
|
opts->cache_bdev = val;
|
2019-03-15 16:37:44 +00:00
|
|
|
if (!spdk_bdev_get_by_name(val)) {
|
2019-03-20 08:36:02 +00:00
|
|
|
SPDK_INFOLOG(SPDK_LOG_BDEV_FTL, "Deferring bdev %s initialization\n", opts->name);
|
2019-03-15 16:37:44 +00:00
|
|
|
|
2019-03-20 08:36:02 +00:00
|
|
|
if (bdev_ftl_defer_init(opts)) {
|
|
|
|
SPDK_ERRLOG("Unable to initialize bdev %s\n", opts->name);
|
|
|
|
rc = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
num_deferred++;
|
|
|
|
}
|
2018-10-29 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!rc) {
|
2019-03-20 08:36:02 +00:00
|
|
|
*num_bdevs = i - num_deferred;
|
2018-10-29 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bdev_ftl_poll(void *arg)
|
|
|
|
{
|
|
|
|
struct ftl_io_channel *ch = arg;
|
|
|
|
size_t cnt, i;
|
|
|
|
|
|
|
|
cnt = spdk_ring_dequeue(ch->ring, (void **)&ch->io, FTL_MAX_COMPLETIONS);
|
|
|
|
|
|
|
|
for (i = 0; i < cnt; ++i) {
|
|
|
|
bdev_ftl_complete_io(ch->io[i], ch->io[i]->status);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bdev_ftl_io_channel_create_cb(void *io_device, void *ctx)
|
|
|
|
{
|
|
|
|
struct ftl_io_channel *ch = ctx;
|
|
|
|
struct ftl_bdev *ftl_bdev = (struct ftl_bdev *)io_device;
|
|
|
|
|
|
|
|
ch->dev = ftl_bdev->dev;
|
|
|
|
ch->ring = spdk_ring_create(SPDK_RING_TYPE_MP_SC, FTL_COMPLETION_RING_SIZE,
|
|
|
|
SPDK_ENV_SOCKET_ID_ANY);
|
|
|
|
|
|
|
|
if (!ch->ring) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
ch->poller = spdk_poller_register(bdev_ftl_poll, ch, 0);
|
|
|
|
if (!ch->poller) {
|
|
|
|
spdk_ring_free(ch->ring);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
ch->ioch = spdk_get_io_channel(ftl_bdev->dev);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_io_channel_destroy_cb(void *io_device, void *ctx_buf)
|
|
|
|
{
|
|
|
|
struct ftl_io_channel *ch = ctx_buf;
|
|
|
|
|
|
|
|
spdk_ring_free(ch->ring);
|
|
|
|
spdk_poller_unregister(&ch->poller);
|
|
|
|
spdk_put_io_channel(ch->ioch);
|
|
|
|
}
|
|
|
|
|
2019-03-15 16:37:44 +00:00
|
|
|
static void
|
|
|
|
bdev_ftl_cache_removed_cb(void *ctx)
|
|
|
|
{
|
|
|
|
assert(0 && "Removed cached bdev\n");
|
|
|
|
}
|
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
static void
|
|
|
|
bdev_ftl_create_cb(struct spdk_ftl_dev *dev, void *ctx, int status)
|
|
|
|
{
|
|
|
|
struct ftl_bdev *ftl_bdev = ctx;
|
|
|
|
struct ftl_bdev_info info = {};
|
|
|
|
struct spdk_ftl_attrs attrs;
|
|
|
|
ftl_bdev_init_fn init_cb = ftl_bdev->init_cb;
|
|
|
|
void *init_arg = ftl_bdev->init_arg;
|
|
|
|
int rc = -ENODEV;
|
|
|
|
|
|
|
|
if (status) {
|
|
|
|
SPDK_ERRLOG("Failed to create FTL device (%d)\n", status);
|
|
|
|
rc = status;
|
|
|
|
goto error_dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
spdk_ftl_dev_get_attrs(dev, &attrs);
|
|
|
|
|
|
|
|
ftl_bdev->dev = dev;
|
|
|
|
ftl_bdev->bdev.product_name = "FTL disk";
|
|
|
|
ftl_bdev->bdev.write_cache = 0;
|
|
|
|
ftl_bdev->bdev.blocklen = attrs.lbk_size;
|
|
|
|
ftl_bdev->bdev.blockcnt = attrs.lbk_cnt;
|
|
|
|
/* TODO: Investigate why nbd test are failing without this alignment */
|
|
|
|
ftl_bdev->bdev.required_alignment = spdk_u32log2(attrs.lbk_size);
|
|
|
|
ftl_bdev->bdev.uuid = attrs.uuid;
|
|
|
|
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_BDEV_FTL, "Creating bdev %s:\n", ftl_bdev->bdev.name);
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_BDEV_FTL, "\tblock_len:\t%zu\n", attrs.lbk_size);
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_BDEV_FTL, "\tblock_cnt:\t%"PRIu64"\n", attrs.lbk_cnt);
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_BDEV_FTL, "\tpunits:\t\t%u-%u\n", attrs.range.begin,
|
|
|
|
attrs.range.end);
|
|
|
|
|
|
|
|
ftl_bdev->bdev.ctxt = ftl_bdev;
|
|
|
|
ftl_bdev->bdev.fn_table = &ftl_fn_table;
|
|
|
|
ftl_bdev->bdev.module = &g_ftl_if;
|
|
|
|
|
|
|
|
spdk_io_device_register(ftl_bdev, bdev_ftl_io_channel_create_cb,
|
|
|
|
bdev_ftl_io_channel_destroy_cb,
|
|
|
|
sizeof(struct ftl_io_channel),
|
|
|
|
ftl_bdev->bdev.name);
|
|
|
|
|
|
|
|
if (spdk_bdev_register(&ftl_bdev->bdev)) {
|
|
|
|
goto error_unregister;
|
|
|
|
}
|
|
|
|
|
|
|
|
info.name = ftl_bdev->bdev.name;
|
|
|
|
info.uuid = ftl_bdev->bdev.uuid;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&g_ftl_bdev_lock);
|
|
|
|
LIST_INSERT_HEAD(&g_ftl_bdevs, ftl_bdev, list_entry);
|
|
|
|
pthread_mutex_unlock(&g_ftl_bdev_lock);
|
|
|
|
|
|
|
|
init_cb(&info, init_arg, 0);
|
|
|
|
return;
|
|
|
|
|
|
|
|
error_unregister:
|
|
|
|
spdk_io_device_unregister(ftl_bdev, NULL);
|
|
|
|
error_dev:
|
|
|
|
bdev_ftl_remove_ctrlr(ftl_bdev->ctrlr);
|
|
|
|
|
2019-03-15 16:37:44 +00:00
|
|
|
if (ftl_bdev->cache_bdev_desc) {
|
|
|
|
spdk_bdev_module_release_bdev(spdk_bdev_desc_get_bdev(ftl_bdev->cache_bdev_desc));
|
|
|
|
spdk_bdev_close(ftl_bdev->cache_bdev_desc);
|
|
|
|
}
|
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
free(ftl_bdev->bdev.name);
|
|
|
|
free(ftl_bdev);
|
|
|
|
|
|
|
|
init_cb(NULL, init_arg, rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2019-03-28 08:47:56 +00:00
|
|
|
bdev_ftl_create(struct spdk_nvme_ctrlr *ctrlr, const struct ftl_bdev_init_opts *bdev_opts,
|
|
|
|
ftl_bdev_init_fn cb, void *cb_arg)
|
2018-10-29 14:35:27 +00:00
|
|
|
{
|
|
|
|
struct ftl_bdev *ftl_bdev = NULL;
|
2019-03-15 16:37:44 +00:00
|
|
|
struct spdk_bdev *cache_bdev = NULL;
|
2019-02-06 11:51:07 +00:00
|
|
|
struct nvme_bdev_ctrlr *ftl_ctrlr;
|
2018-10-29 14:35:27 +00:00
|
|
|
struct spdk_ftl_dev_init_opts opts = {};
|
|
|
|
int rc;
|
|
|
|
|
2019-03-28 08:47:56 +00:00
|
|
|
ftl_ctrlr = bdev_ftl_add_ctrlr(ctrlr, &bdev_opts->trid);
|
2018-10-29 14:35:27 +00:00
|
|
|
if (!ftl_ctrlr) {
|
|
|
|
spdk_nvme_detach(ctrlr);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
ftl_bdev = calloc(1, sizeof(*ftl_bdev));
|
|
|
|
if (!ftl_bdev) {
|
|
|
|
SPDK_ERRLOG("Could not allocate ftl_bdev\n");
|
|
|
|
rc = -ENOMEM;
|
|
|
|
goto error_ctrlr;
|
|
|
|
}
|
|
|
|
|
2019-03-28 08:47:56 +00:00
|
|
|
ftl_bdev->bdev.name = strdup(bdev_opts->name);
|
2018-10-29 14:35:27 +00:00
|
|
|
if (!ftl_bdev->bdev.name) {
|
|
|
|
rc = -ENOMEM;
|
|
|
|
goto error_ctrlr;
|
|
|
|
}
|
|
|
|
|
2019-03-15 16:37:44 +00:00
|
|
|
if (bdev_opts->cache_bdev) {
|
|
|
|
cache_bdev = spdk_bdev_get_by_name(bdev_opts->cache_bdev);
|
|
|
|
if (!cache_bdev) {
|
|
|
|
SPDK_ERRLOG("Unable to find bdev: %s\n", bdev_opts->cache_bdev);
|
|
|
|
rc = -ENOENT;
|
|
|
|
goto error_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (spdk_bdev_open(cache_bdev, true, bdev_ftl_cache_removed_cb,
|
|
|
|
ftl_bdev, &ftl_bdev->cache_bdev_desc)) {
|
|
|
|
SPDK_ERRLOG("Unable to open cache bdev: %s\n", bdev_opts->cache_bdev);
|
|
|
|
rc = -EPERM;
|
|
|
|
goto error_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (spdk_bdev_module_claim_bdev(cache_bdev, ftl_bdev->cache_bdev_desc, &g_ftl_if)) {
|
|
|
|
SPDK_ERRLOG("Unable to claim cache bdev %s\n", bdev_opts->cache_bdev);
|
|
|
|
spdk_bdev_close(ftl_bdev->cache_bdev_desc);
|
|
|
|
rc = -EPERM;
|
|
|
|
goto error_name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
ftl_bdev->ctrlr = ftl_ctrlr;
|
|
|
|
ftl_bdev->init_cb = cb;
|
|
|
|
ftl_bdev->init_arg = cb_arg;
|
|
|
|
|
|
|
|
opts.ctrlr = ctrlr;
|
2019-03-28 08:47:56 +00:00
|
|
|
opts.trid = bdev_opts->trid;
|
|
|
|
opts.range = bdev_opts->range;
|
|
|
|
opts.mode = bdev_opts->mode;
|
|
|
|
opts.uuid = bdev_opts->uuid;
|
2018-10-29 14:35:27 +00:00
|
|
|
opts.name = ftl_bdev->bdev.name;
|
2019-03-15 16:37:44 +00:00
|
|
|
opts.cache_bdev_desc = ftl_bdev->cache_bdev_desc;
|
2019-03-28 08:47:56 +00:00
|
|
|
opts.conf = NULL;
|
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
/* TODO: set threads based on config */
|
|
|
|
opts.core_thread = opts.read_thread = spdk_get_thread();
|
|
|
|
|
|
|
|
rc = spdk_ftl_dev_init(&opts, bdev_ftl_create_cb, ftl_bdev);
|
|
|
|
if (rc) {
|
|
|
|
SPDK_ERRLOG("Could not create FTL device\n");
|
2019-03-15 16:37:44 +00:00
|
|
|
goto error_cache;
|
2018-10-29 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2019-03-15 16:37:44 +00:00
|
|
|
error_cache:
|
|
|
|
if (ftl_bdev->cache_bdev_desc) {
|
|
|
|
spdk_bdev_module_release_bdev(cache_bdev);
|
|
|
|
spdk_bdev_close(ftl_bdev->cache_bdev_desc);
|
|
|
|
}
|
2018-10-29 14:35:27 +00:00
|
|
|
error_name:
|
|
|
|
free(ftl_bdev->bdev.name);
|
|
|
|
error_ctrlr:
|
|
|
|
bdev_ftl_remove_ctrlr(ftl_ctrlr);
|
|
|
|
free(ftl_bdev);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_bdev_init_done(void)
|
|
|
|
{
|
|
|
|
pthread_mutex_lock(&g_ftl_bdev_lock);
|
|
|
|
|
|
|
|
if (++g_num_init_bdevs != g_num_conf_bdevs) {
|
|
|
|
pthread_mutex_unlock(&g_ftl_bdev_lock);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&g_ftl_bdev_lock);
|
|
|
|
|
|
|
|
spdk_bdev_module_init_done(&g_ftl_if);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_init_cb(const struct ftl_bdev_info *info, void *ctx, int status)
|
|
|
|
{
|
2019-03-20 08:36:02 +00:00
|
|
|
struct ftl_deferred_init *opts;
|
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
if (status) {
|
|
|
|
SPDK_ERRLOG("Failed to initialize FTL bdev\n");
|
|
|
|
}
|
|
|
|
|
2019-03-20 08:36:02 +00:00
|
|
|
LIST_FOREACH(opts, &g_deferred_init, entry) {
|
|
|
|
if (!strcmp(opts->opts.name, info->name)) {
|
|
|
|
spdk_bdev_module_examine_done(&g_ftl_if);
|
|
|
|
LIST_REMOVE(opts, entry);
|
|
|
|
free(opts);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
bdev_ftl_bdev_init_done();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_initialize_cb(void *ctx, int status)
|
|
|
|
{
|
|
|
|
struct spdk_conf_section *sp;
|
|
|
|
struct ftl_bdev_init_opts *opts = NULL;
|
2019-03-20 08:36:02 +00:00
|
|
|
struct ftl_deferred_init *defer_opts;
|
2018-10-29 14:35:27 +00:00
|
|
|
size_t i;
|
|
|
|
|
|
|
|
if (status) {
|
|
|
|
SPDK_ERRLOG("Failed to initialize FTL module\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
sp = spdk_conf_find_section(NULL, "Ftl");
|
|
|
|
if (!sp) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
opts = calloc(FTL_MAX_BDEVS, sizeof(*opts));
|
|
|
|
if (!opts) {
|
|
|
|
SPDK_ERRLOG("Failed to allocate bdev init opts\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bdev_ftl_read_bdev_config(sp, opts, &g_num_conf_bdevs)) {
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < g_num_conf_bdevs; ++i) {
|
2019-03-20 08:36:02 +00:00
|
|
|
bool defer_init = false;
|
|
|
|
|
|
|
|
LIST_FOREACH(defer_opts, &g_deferred_init, entry) {
|
|
|
|
if (!strcmp(defer_opts->opts.name, opts[i].name)) {
|
|
|
|
defer_init = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!defer_init && bdev_ftl_init_bdev(&opts[i], bdev_ftl_init_cb, NULL)) {
|
2018-10-29 14:35:27 +00:00
|
|
|
SPDK_ERRLOG("Failed to create bdev '%s'\n", opts[i].name);
|
|
|
|
bdev_ftl_bdev_init_done();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
if (g_num_conf_bdevs == 0) {
|
|
|
|
spdk_bdev_module_init_done(&g_ftl_if);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(opts);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
bdev_ftl_initialize(void)
|
|
|
|
{
|
|
|
|
struct ftl_module_init_opts ftl_opts = {};
|
|
|
|
pthread_mutexattr_t attr;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
if (pthread_mutexattr_init(&attr)) {
|
|
|
|
SPDK_ERRLOG("Mutex initialization failed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE)) {
|
|
|
|
SPDK_ERRLOG("Mutex initialization failed\n");
|
|
|
|
rc = -1;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pthread_mutex_init(&g_ftl_bdev_lock, &attr)) {
|
|
|
|
SPDK_ERRLOG("Mutex initialization failed\n");
|
|
|
|
rc = -1;
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: retrieve this from config */
|
|
|
|
ftl_opts.anm_thread = spdk_get_thread();
|
|
|
|
rc = spdk_ftl_module_init(&ftl_opts, bdev_ftl_initialize_cb, NULL);
|
|
|
|
|
|
|
|
if (rc) {
|
|
|
|
bdev_ftl_initialize_cb(NULL, rc);
|
|
|
|
|
|
|
|
}
|
|
|
|
error:
|
|
|
|
pthread_mutexattr_destroy(&attr);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
bdev_ftl_init_bdev(struct ftl_bdev_init_opts *opts, ftl_bdev_init_fn cb, void *cb_arg)
|
|
|
|
{
|
2019-02-06 11:51:07 +00:00
|
|
|
struct nvme_bdev_ctrlr *ftl_ctrlr;
|
2018-10-29 14:35:27 +00:00
|
|
|
struct spdk_nvme_ctrlr *ctrlr;
|
|
|
|
|
|
|
|
assert(opts != NULL);
|
|
|
|
assert(cb != NULL);
|
|
|
|
|
2019-02-06 11:51:07 +00:00
|
|
|
pthread_mutex_lock(&g_bdev_nvme_mutex);
|
2018-10-29 14:35:27 +00:00
|
|
|
|
|
|
|
/* Check already attached controllers first */
|
2019-02-06 11:51:07 +00:00
|
|
|
TAILQ_FOREACH(ftl_ctrlr, &g_nvme_bdev_ctrlrs, tailq) {
|
2018-10-29 14:35:27 +00:00
|
|
|
if (!spdk_nvme_transport_id_compare(&ftl_ctrlr->trid, &opts->trid)) {
|
2019-02-06 11:51:07 +00:00
|
|
|
pthread_mutex_unlock(&g_bdev_nvme_mutex);
|
2019-03-28 08:47:56 +00:00
|
|
|
return bdev_ftl_create(ftl_ctrlr->ctrlr, opts, cb, cb_arg);
|
2018-10-29 14:35:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-06 11:51:07 +00:00
|
|
|
pthread_mutex_unlock(&g_bdev_nvme_mutex);
|
2018-10-29 14:35:27 +00:00
|
|
|
|
|
|
|
ctrlr = spdk_nvme_connect(&opts->trid, NULL, 0);
|
|
|
|
if (!ctrlr) {
|
2019-02-02 05:17:51 +00:00
|
|
|
return -ENODEV;
|
2018-10-29 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!spdk_nvme_ctrlr_is_ocssd_supported(ctrlr)) {
|
|
|
|
spdk_nvme_detach(ctrlr);
|
2019-02-02 05:17:51 +00:00
|
|
|
return -EPERM;
|
2018-10-29 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
2019-03-28 08:47:56 +00:00
|
|
|
return bdev_ftl_create(ctrlr, opts, cb, cb_arg);
|
2018-10-29 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
2019-03-20 08:36:02 +00:00
|
|
|
static void
|
|
|
|
bdev_ftl_examine(struct spdk_bdev *bdev)
|
|
|
|
{
|
|
|
|
struct ftl_deferred_init *opts;
|
|
|
|
|
|
|
|
LIST_FOREACH(opts, &g_deferred_init, entry) {
|
|
|
|
if (spdk_bdev_get_by_name(opts->opts.cache_bdev) == bdev) {
|
|
|
|
if (bdev_ftl_init_bdev(&opts->opts, bdev_ftl_init_cb, NULL)) {
|
|
|
|
SPDK_ERRLOG("Unable to initialize bdev '%s'\n", opts->opts.name);
|
|
|
|
LIST_REMOVE(opts, entry);
|
|
|
|
free(opts);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* spdk_bdev_module_examine_done will be called by bdev_ftl_init_cb */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
spdk_bdev_module_examine_done(&g_ftl_if);
|
|
|
|
}
|
|
|
|
|
2018-10-29 14:35:27 +00:00
|
|
|
void
|
|
|
|
bdev_ftl_delete_bdev(const char *name, spdk_bdev_unregister_cb cb_fn, void *cb_arg)
|
|
|
|
{
|
|
|
|
struct ftl_bdev *ftl_bdev, *tmp;
|
|
|
|
|
|
|
|
pthread_mutex_lock(&g_ftl_bdev_lock);
|
|
|
|
|
|
|
|
LIST_FOREACH_SAFE(ftl_bdev, &g_ftl_bdevs, list_entry, tmp) {
|
|
|
|
if (strcmp(ftl_bdev->bdev.name, name) == 0) {
|
|
|
|
pthread_mutex_unlock(&g_ftl_bdev_lock);
|
2019-02-15 01:59:55 +00:00
|
|
|
spdk_bdev_unregister(&ftl_bdev->bdev, cb_fn, cb_arg);
|
2018-10-29 14:35:27 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&g_ftl_bdev_lock);
|
|
|
|
cb_fn(cb_arg, -ENODEV);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_ftl_module_fini_cb(void *ctx, int status)
|
|
|
|
{
|
|
|
|
if (status) {
|
|
|
|
SPDK_ERRLOG("Failed to deinitialize FTL module\n");
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
spdk_bdev_module_finish_done();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_finish_cb(void)
|
|
|
|
{
|
|
|
|
if (spdk_ftl_module_fini(bdev_ftl_ftl_module_fini_cb, NULL)) {
|
|
|
|
SPDK_ERRLOG("Failed to deinitialize FTL module\n");
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bdev_ftl_finish(void)
|
|
|
|
{
|
|
|
|
pthread_mutex_lock(&g_ftl_bdev_lock);
|
|
|
|
|
|
|
|
if (LIST_EMPTY(&g_ftl_bdevs)) {
|
|
|
|
pthread_mutex_unlock(&g_ftl_bdev_lock);
|
|
|
|
bdev_ftl_finish_cb();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_finish_cb = bdev_ftl_finish_cb;
|
|
|
|
pthread_mutex_unlock(&g_ftl_bdev_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
SPDK_LOG_REGISTER_COMPONENT("bdev_ftl", SPDK_LOG_BDEV_FTL)
|