2016-06-06 21:44:30 +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.
|
|
|
|
*/
|
|
|
|
|
2017-05-02 18:18:25 +00:00
|
|
|
#include "spdk/stdinc.h"
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2017-11-20 16:50:10 +00:00
|
|
|
#include "spdk/bdev.h"
|
2016-06-06 21:44:30 +00:00
|
|
|
#include "spdk/conf.h"
|
2017-08-23 18:32:09 +00:00
|
|
|
#include "spdk/io_channel.h"
|
2016-09-19 17:01:52 +00:00
|
|
|
#include "spdk/nvmf.h"
|
|
|
|
#include "spdk/trace.h"
|
|
|
|
|
2016-11-07 22:10:28 +00:00
|
|
|
#include "spdk_internal/log.h"
|
|
|
|
|
2017-08-29 20:22:37 +00:00
|
|
|
#include "nvmf_internal.h"
|
2016-07-14 22:25:23 +00:00
|
|
|
#include "transport.h"
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_LOG_REGISTER_COMPONENT("nvmf", SPDK_LOG_NVMF)
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2017-08-17 20:39:27 +00:00
|
|
|
#define SPDK_NVMF_DEFAULT_MAX_QUEUE_DEPTH 128
|
|
|
|
#define SPDK_NVMF_DEFAULT_MAX_QPAIRS_PER_CTRLR 64
|
|
|
|
#define SPDK_NVMF_DEFAULT_IN_CAPSULE_DATA_SIZE 4096
|
|
|
|
#define SPDK_NVMF_DEFAULT_MAX_IO_SIZE 131072
|
2018-05-08 23:05:28 +00:00
|
|
|
#define SPDK_NVMF_DEFAULT_MAX_SUBSYSTEMS 1024
|
2017-08-17 20:39:27 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
spdk_nvmf_tgt_opts_init(struct spdk_nvmf_tgt_opts *opts)
|
|
|
|
{
|
|
|
|
opts->max_queue_depth = SPDK_NVMF_DEFAULT_MAX_QUEUE_DEPTH;
|
|
|
|
opts->max_qpairs_per_ctrlr = SPDK_NVMF_DEFAULT_MAX_QPAIRS_PER_CTRLR;
|
|
|
|
opts->in_capsule_data_size = SPDK_NVMF_DEFAULT_IN_CAPSULE_DATA_SIZE;
|
|
|
|
opts->max_io_size = SPDK_NVMF_DEFAULT_MAX_IO_SIZE;
|
2018-05-08 23:05:28 +00:00
|
|
|
opts->max_subsystems = SPDK_NVMF_DEFAULT_MAX_SUBSYSTEMS;
|
2017-08-17 20:39:27 +00:00
|
|
|
}
|
|
|
|
|
2018-03-13 00:16:47 +00:00
|
|
|
static int
|
2017-11-17 17:01:39 +00:00
|
|
|
spdk_nvmf_poll_group_poll(void *ctx)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_poll_group *group = ctx;
|
|
|
|
int rc;
|
2018-03-13 00:16:47 +00:00
|
|
|
int count = 0;
|
2017-11-17 17:01:39 +00:00
|
|
|
struct spdk_nvmf_transport_poll_group *tgroup;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(tgroup, &group->tgroups, link) {
|
|
|
|
rc = spdk_nvmf_transport_poll_group_poll(tgroup);
|
|
|
|
if (rc < 0) {
|
2018-03-13 00:16:47 +00:00
|
|
|
return -1;
|
2017-11-17 17:01:39 +00:00
|
|
|
}
|
2018-03-13 00:16:47 +00:00
|
|
|
count += rc;
|
2017-11-17 17:01:39 +00:00
|
|
|
}
|
2018-03-13 00:16:47 +00:00
|
|
|
|
|
|
|
return count;
|
2017-11-17 17:01:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
spdk_nvmf_tgt_create_poll_group(void *io_device, void *ctx_buf)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_tgt *tgt = io_device;
|
|
|
|
struct spdk_nvmf_poll_group *group = ctx_buf;
|
|
|
|
struct spdk_nvmf_transport *transport;
|
2017-11-20 16:50:10 +00:00
|
|
|
uint32_t sid;
|
2017-11-17 17:01:39 +00:00
|
|
|
|
|
|
|
TAILQ_INIT(&group->tgroups);
|
|
|
|
|
|
|
|
TAILQ_FOREACH(transport, &tgt->transports, link) {
|
|
|
|
spdk_nvmf_poll_group_add_transport(group, transport);
|
|
|
|
}
|
|
|
|
|
2018-05-08 23:05:28 +00:00
|
|
|
group->num_sgroups = tgt->opts.max_subsystems;
|
|
|
|
group->sgroups = calloc(tgt->opts.max_subsystems, sizeof(struct spdk_nvmf_subsystem_poll_group));
|
2017-11-20 16:50:10 +00:00
|
|
|
if (!group->sgroups) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-05-08 23:05:28 +00:00
|
|
|
for (sid = 0; sid < tgt->opts.max_subsystems; sid++) {
|
2017-11-20 16:50:10 +00:00
|
|
|
struct spdk_nvmf_subsystem *subsystem;
|
|
|
|
|
|
|
|
subsystem = tgt->subsystems[sid];
|
|
|
|
if (!subsystem) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
spdk_nvmf_poll_group_add_subsystem(group, subsystem);
|
|
|
|
}
|
|
|
|
|
2017-11-17 17:01:39 +00:00
|
|
|
group->poller = spdk_poller_register(spdk_nvmf_poll_group_poll, group, 0);
|
2018-02-08 03:54:59 +00:00
|
|
|
group->thread = spdk_get_thread();
|
2017-11-17 17:01:39 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
spdk_nvmf_tgt_destroy_poll_group(void *io_device, void *ctx_buf)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_poll_group *group = ctx_buf;
|
|
|
|
struct spdk_nvmf_transport_poll_group *tgroup, *tmp;
|
2017-11-20 16:50:10 +00:00
|
|
|
struct spdk_nvmf_subsystem_poll_group *sgroup;
|
|
|
|
uint32_t sid, nsid;
|
2017-11-17 17:01:39 +00:00
|
|
|
|
|
|
|
spdk_poller_unregister(&group->poller);
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(tgroup, &group->tgroups, link, tmp) {
|
|
|
|
TAILQ_REMOVE(&group->tgroups, tgroup, link);
|
|
|
|
spdk_nvmf_transport_poll_group_destroy(tgroup);
|
|
|
|
}
|
2017-11-20 16:50:10 +00:00
|
|
|
|
|
|
|
for (sid = 0; sid < group->num_sgroups; sid++) {
|
|
|
|
sgroup = &group->sgroups[sid];
|
|
|
|
|
|
|
|
for (nsid = 0; nsid < sgroup->num_channels; nsid++) {
|
|
|
|
if (sgroup->channels[nsid]) {
|
|
|
|
spdk_put_io_channel(sgroup->channels[nsid]);
|
|
|
|
sgroup->channels[nsid] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(sgroup->channels);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(group->sgroups);
|
2017-11-17 17:01:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-18 22:38:33 +00:00
|
|
|
struct spdk_nvmf_tgt *
|
|
|
|
spdk_nvmf_tgt_create(struct spdk_nvmf_tgt_opts *opts)
|
2016-06-06 21:44:30 +00:00
|
|
|
{
|
2017-08-18 22:38:33 +00:00
|
|
|
struct spdk_nvmf_tgt *tgt;
|
|
|
|
|
2017-08-23 17:35:44 +00:00
|
|
|
tgt = calloc(1, sizeof(*tgt));
|
|
|
|
if (!tgt) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-08-18 22:38:33 +00:00
|
|
|
|
2017-08-17 20:39:27 +00:00
|
|
|
if (!opts) {
|
2017-08-18 22:38:33 +00:00
|
|
|
spdk_nvmf_tgt_opts_init(&tgt->opts);
|
2017-08-17 20:39:27 +00:00
|
|
|
} else {
|
2017-08-18 22:38:33 +00:00
|
|
|
tgt->opts = *opts;
|
2017-08-17 20:39:27 +00:00
|
|
|
}
|
|
|
|
|
2017-08-18 22:38:33 +00:00
|
|
|
tgt->discovery_genctr = 0;
|
|
|
|
tgt->discovery_log_page = NULL;
|
|
|
|
tgt->discovery_log_page_size = 0;
|
|
|
|
TAILQ_INIT(&tgt->transports);
|
2016-07-25 21:22:58 +00:00
|
|
|
|
2018-05-08 23:05:28 +00:00
|
|
|
tgt->subsystems = calloc(tgt->opts.max_subsystems, sizeof(struct spdk_nvmf_subsystem *));
|
|
|
|
if (!tgt->subsystems) {
|
|
|
|
free(tgt);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-11-17 17:01:39 +00:00
|
|
|
spdk_io_device_register(tgt,
|
|
|
|
spdk_nvmf_tgt_create_poll_group,
|
|
|
|
spdk_nvmf_tgt_destroy_poll_group,
|
|
|
|
sizeof(struct spdk_nvmf_poll_group));
|
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Max Queue Pairs Per Controller: %d\n",
|
2017-08-18 22:38:33 +00:00
|
|
|
tgt->opts.max_qpairs_per_ctrlr);
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Max Queue Depth: %d\n", tgt->opts.max_queue_depth);
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Max In Capsule Data: %d bytes\n",
|
2017-08-18 22:38:33 +00:00
|
|
|
tgt->opts.in_capsule_data_size);
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Max I/O Size: %d bytes\n", tgt->opts.max_io_size);
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2017-08-18 22:38:33 +00:00
|
|
|
return tgt;
|
2016-06-06 21:44:30 +00:00
|
|
|
}
|
|
|
|
|
2017-08-18 22:38:33 +00:00
|
|
|
void
|
|
|
|
spdk_nvmf_tgt_destroy(struct spdk_nvmf_tgt *tgt)
|
2016-10-19 17:03:45 +00:00
|
|
|
{
|
2017-07-24 23:30:07 +00:00
|
|
|
struct spdk_nvmf_transport *transport, *transport_tmp;
|
2017-12-20 20:45:59 +00:00
|
|
|
uint32_t i;
|
2017-02-20 04:49:39 +00:00
|
|
|
|
2017-08-23 17:35:44 +00:00
|
|
|
if (tgt->discovery_log_page) {
|
|
|
|
free(tgt->discovery_log_page);
|
|
|
|
}
|
2017-08-29 20:03:13 +00:00
|
|
|
|
|
|
|
if (tgt->subsystems) {
|
2018-05-08 23:05:28 +00:00
|
|
|
for (i = 0; i < tgt->opts.max_subsystems; i++) {
|
2017-12-20 20:45:59 +00:00
|
|
|
if (tgt->subsystems[i]) {
|
2017-12-19 23:39:04 +00:00
|
|
|
spdk_nvmf_subsystem_destroy(tgt->subsystems[i]);
|
2017-12-20 20:45:59 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-29 20:03:13 +00:00
|
|
|
free(tgt->subsystems);
|
|
|
|
}
|
|
|
|
|
2018-02-12 08:58:31 +00:00
|
|
|
TAILQ_FOREACH_SAFE(transport, &tgt->transports, link, transport_tmp) {
|
|
|
|
TAILQ_REMOVE(&tgt->transports, transport, link);
|
|
|
|
spdk_nvmf_transport_destroy(transport);
|
|
|
|
}
|
|
|
|
|
2017-08-23 17:35:44 +00:00
|
|
|
free(tgt);
|
2016-10-19 17:03:45 +00:00
|
|
|
}
|
|
|
|
|
2017-11-17 17:01:39 +00:00
|
|
|
struct spdk_nvmf_tgt_listen_ctx {
|
2018-04-03 18:35:04 +00:00
|
|
|
struct spdk_nvmf_tgt *tgt;
|
2017-11-17 17:01:39 +00:00
|
|
|
struct spdk_nvmf_transport *transport;
|
|
|
|
struct spdk_nvme_transport_id trid;
|
2018-04-03 18:35:04 +00:00
|
|
|
|
|
|
|
spdk_nvmf_tgt_listen_done_fn cb_fn;
|
|
|
|
void *cb_arg;
|
2017-11-17 17:01:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2017-12-11 22:14:19 +00:00
|
|
|
spdk_nvmf_tgt_listen_done(struct spdk_io_channel_iter *i, int status)
|
2017-11-17 17:01:39 +00:00
|
|
|
{
|
2018-04-03 18:35:04 +00:00
|
|
|
struct spdk_nvmf_tgt_listen_ctx *ctx = spdk_io_channel_iter_get_ctx(i);
|
|
|
|
|
|
|
|
ctx->cb_fn(ctx->cb_arg, status);
|
2017-12-11 22:14:19 +00:00
|
|
|
|
|
|
|
free(ctx);
|
2017-11-17 17:01:39 +00:00
|
|
|
}
|
|
|
|
|
2017-12-11 22:14:19 +00:00
|
|
|
static void
|
|
|
|
spdk_nvmf_tgt_listen_add_transport(struct spdk_io_channel_iter *i)
|
2017-11-17 17:01:39 +00:00
|
|
|
{
|
2017-12-11 22:14:19 +00:00
|
|
|
struct spdk_nvmf_tgt_listen_ctx *ctx = spdk_io_channel_iter_get_ctx(i);
|
|
|
|
struct spdk_io_channel *ch = spdk_io_channel_iter_get_channel(i);
|
|
|
|
struct spdk_nvmf_poll_group *group = spdk_io_channel_get_ctx(ch);
|
|
|
|
int rc;
|
2017-11-17 17:01:39 +00:00
|
|
|
|
2017-12-11 22:14:19 +00:00
|
|
|
rc = spdk_nvmf_poll_group_add_transport(group, ctx->transport);
|
|
|
|
spdk_for_each_channel_continue(i, rc);
|
2017-11-17 17:01:39 +00:00
|
|
|
}
|
|
|
|
|
2018-04-03 18:35:04 +00:00
|
|
|
void
|
2017-08-21 18:41:51 +00:00
|
|
|
spdk_nvmf_tgt_listen(struct spdk_nvmf_tgt *tgt,
|
2018-04-03 18:35:04 +00:00
|
|
|
struct spdk_nvme_transport_id *trid,
|
|
|
|
spdk_nvmf_tgt_listen_done_fn cb_fn,
|
|
|
|
void *cb_arg)
|
2017-08-21 18:41:51 +00:00
|
|
|
{
|
|
|
|
struct spdk_nvmf_transport *transport;
|
|
|
|
int rc;
|
2018-04-03 18:35:04 +00:00
|
|
|
bool propagate = false;
|
2017-08-21 18:41:51 +00:00
|
|
|
|
|
|
|
transport = spdk_nvmf_tgt_get_transport(tgt, trid->trtype);
|
|
|
|
if (!transport) {
|
|
|
|
transport = spdk_nvmf_transport_create(tgt, trid->trtype);
|
|
|
|
if (!transport) {
|
|
|
|
SPDK_ERRLOG("Transport initialization failed\n");
|
2018-04-03 18:35:04 +00:00
|
|
|
cb_fn(cb_arg, -EINVAL);
|
|
|
|
return;
|
2017-08-21 18:41:51 +00:00
|
|
|
}
|
|
|
|
TAILQ_INSERT_TAIL(&tgt->transports, transport, link);
|
|
|
|
|
2018-04-03 18:35:04 +00:00
|
|
|
propagate = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = spdk_nvmf_transport_listen(transport, trid);
|
|
|
|
if (rc < 0) {
|
|
|
|
SPDK_ERRLOG("Unable to listen on address '%s'\n", trid->traddr);
|
|
|
|
cb_fn(cb_arg, rc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
tgt->discovery_genctr++;
|
|
|
|
|
|
|
|
if (propagate) {
|
|
|
|
struct spdk_nvmf_tgt_listen_ctx *ctx;
|
|
|
|
|
2017-11-17 17:01:39 +00:00
|
|
|
ctx = calloc(1, sizeof(*ctx));
|
|
|
|
if (!ctx) {
|
2018-04-03 18:35:04 +00:00
|
|
|
cb_fn(cb_arg, -ENOMEM);
|
|
|
|
return;
|
2017-11-17 17:01:39 +00:00
|
|
|
}
|
|
|
|
|
2018-04-03 18:35:04 +00:00
|
|
|
ctx->tgt = tgt;
|
2017-11-17 17:01:39 +00:00
|
|
|
ctx->transport = transport;
|
2018-04-03 18:35:04 +00:00
|
|
|
ctx->trid = *trid;
|
|
|
|
ctx->cb_fn = cb_fn;
|
|
|
|
ctx->cb_arg = cb_arg;
|
2017-11-17 17:01:39 +00:00
|
|
|
|
|
|
|
spdk_for_each_channel(tgt,
|
|
|
|
spdk_nvmf_tgt_listen_add_transport,
|
|
|
|
ctx,
|
|
|
|
spdk_nvmf_tgt_listen_done);
|
2018-04-03 18:35:04 +00:00
|
|
|
} else {
|
|
|
|
cb_fn(cb_arg, 0);
|
2017-11-17 17:01:39 +00:00
|
|
|
}
|
2017-08-21 18:41:51 +00:00
|
|
|
}
|
|
|
|
|
2017-08-18 23:05:13 +00:00
|
|
|
struct spdk_nvmf_subsystem *
|
|
|
|
spdk_nvmf_tgt_find_subsystem(struct spdk_nvmf_tgt *tgt, const char *subnqn)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_subsystem *subsystem;
|
2017-08-29 20:03:13 +00:00
|
|
|
uint32_t sid;
|
2017-08-18 23:05:13 +00:00
|
|
|
|
|
|
|
if (!subnqn) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-08 23:05:28 +00:00
|
|
|
for (sid = 0; sid < tgt->opts.max_subsystems; sid++) {
|
2017-08-29 20:03:13 +00:00
|
|
|
subsystem = tgt->subsystems[sid];
|
|
|
|
if (subsystem == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-08-18 23:05:13 +00:00
|
|
|
if (strcmp(subnqn, subsystem->subnqn) == 0) {
|
|
|
|
return subsystem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-07-24 23:30:07 +00:00
|
|
|
struct spdk_nvmf_transport *
|
|
|
|
spdk_nvmf_tgt_get_transport(struct spdk_nvmf_tgt *tgt, enum spdk_nvme_transport_type type)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_transport *transport;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(transport, &tgt->transports, link) {
|
|
|
|
if (transport->ops->type == type) {
|
|
|
|
return transport;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-08-30 16:36:33 +00:00
|
|
|
spdk_nvmf_tgt_accept(struct spdk_nvmf_tgt *tgt, new_qpair_fn cb_fn)
|
2017-07-24 23:30:07 +00:00
|
|
|
{
|
|
|
|
struct spdk_nvmf_transport *transport, *tmp;
|
|
|
|
|
2017-08-21 21:07:44 +00:00
|
|
|
TAILQ_FOREACH_SAFE(transport, &tgt->transports, link, tmp) {
|
2017-08-30 16:36:33 +00:00
|
|
|
spdk_nvmf_transport_accept(transport, cb_fn);
|
2017-07-24 23:30:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-28 23:24:33 +00:00
|
|
|
struct spdk_nvmf_poll_group *
|
|
|
|
spdk_nvmf_poll_group_create(struct spdk_nvmf_tgt *tgt)
|
|
|
|
{
|
2017-11-17 17:01:39 +00:00
|
|
|
struct spdk_io_channel *ch;
|
2017-08-28 23:24:33 +00:00
|
|
|
|
2017-11-17 17:01:39 +00:00
|
|
|
ch = spdk_get_io_channel(tgt);
|
|
|
|
if (!ch) {
|
|
|
|
SPDK_ERRLOG("Unable to get I/O channel for target\n");
|
2017-08-28 23:24:33 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-11-17 17:01:39 +00:00
|
|
|
return spdk_io_channel_get_ctx(ch);
|
2017-08-28 23:24:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
spdk_nvmf_poll_group_destroy(struct spdk_nvmf_poll_group *group)
|
|
|
|
{
|
2017-11-17 17:01:39 +00:00
|
|
|
struct spdk_io_channel *ch;
|
2017-08-28 23:24:33 +00:00
|
|
|
|
2017-11-17 17:01:39 +00:00
|
|
|
ch = spdk_io_channel_from_ctx(group);
|
|
|
|
spdk_put_io_channel(ch);
|
2017-08-28 23:24:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
spdk_nvmf_poll_group_add(struct spdk_nvmf_poll_group *group,
|
|
|
|
struct spdk_nvmf_qpair *qpair)
|
|
|
|
{
|
|
|
|
int rc = -1;
|
|
|
|
struct spdk_nvmf_transport_poll_group *tgroup;
|
|
|
|
|
2018-05-11 00:18:40 +00:00
|
|
|
TAILQ_INIT(&qpair->outstanding);
|
2017-11-29 20:59:10 +00:00
|
|
|
qpair->group = group;
|
2018-05-22 17:07:43 +00:00
|
|
|
qpair->state = SPDK_NVMF_QPAIR_ACTIVATING;
|
2017-11-29 20:59:10 +00:00
|
|
|
|
2017-08-28 23:24:33 +00:00
|
|
|
TAILQ_FOREACH(tgroup, &group->tgroups, link) {
|
|
|
|
if (tgroup->transport == qpair->transport) {
|
|
|
|
rc = spdk_nvmf_transport_poll_group_add(tgroup, qpair);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-22 17:07:43 +00:00
|
|
|
if (rc == 0) {
|
|
|
|
qpair->state = SPDK_NVMF_QPAIR_ACTIVE;
|
|
|
|
} else {
|
|
|
|
qpair->state = SPDK_NVMF_QPAIR_INACTIVE;
|
|
|
|
}
|
|
|
|
|
2017-08-28 23:24:33 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
spdk_nvmf_poll_group_remove(struct spdk_nvmf_poll_group *group,
|
|
|
|
struct spdk_nvmf_qpair *qpair)
|
|
|
|
{
|
|
|
|
int rc = -1;
|
|
|
|
struct spdk_nvmf_transport_poll_group *tgroup;
|
|
|
|
|
2017-11-29 20:59:10 +00:00
|
|
|
qpair->group = NULL;
|
|
|
|
|
2017-08-28 23:24:33 +00:00
|
|
|
TAILQ_FOREACH(tgroup, &group->tgroups, link) {
|
|
|
|
if (tgroup->transport == qpair->transport) {
|
|
|
|
rc = spdk_nvmf_transport_poll_group_remove(tgroup, qpair);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2017-11-17 17:01:39 +00:00
|
|
|
int
|
|
|
|
spdk_nvmf_poll_group_add_transport(struct spdk_nvmf_poll_group *group,
|
|
|
|
struct spdk_nvmf_transport *transport)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_transport_poll_group *tgroup;
|
|
|
|
|
2018-01-17 01:06:52 +00:00
|
|
|
TAILQ_FOREACH(tgroup, &group->tgroups, link) {
|
|
|
|
if (tgroup->transport == transport) {
|
|
|
|
/* Transport already in the poll group */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-17 17:01:39 +00:00
|
|
|
tgroup = spdk_nvmf_transport_poll_group_create(transport);
|
|
|
|
if (!tgroup) {
|
|
|
|
SPDK_ERRLOG("Unable to create poll group for transport\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_INSERT_TAIL(&group->tgroups, tgroup, link);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
static int
|
|
|
|
poll_group_update_subsystem(struct spdk_nvmf_poll_group *group,
|
|
|
|
struct spdk_nvmf_subsystem *subsystem)
|
2017-11-20 16:50:10 +00:00
|
|
|
{
|
|
|
|
struct spdk_nvmf_subsystem_poll_group *sgroup;
|
2017-12-19 23:39:04 +00:00
|
|
|
uint32_t new_num_channels, old_num_channels;
|
2017-11-20 16:50:10 +00:00
|
|
|
uint32_t i;
|
2017-12-19 23:39:04 +00:00
|
|
|
struct spdk_nvmf_ns *ns;
|
2017-11-20 16:50:10 +00:00
|
|
|
|
2018-04-05 20:51:51 +00:00
|
|
|
/* Make sure our poll group has memory for this subsystem allocated */
|
2017-11-20 16:50:10 +00:00
|
|
|
if (subsystem->id >= group->num_sgroups) {
|
2018-05-08 23:05:28 +00:00
|
|
|
return -ENOMEM;
|
2017-11-20 16:50:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sgroup = &group->sgroups[subsystem->id];
|
|
|
|
|
2018-04-05 20:51:51 +00:00
|
|
|
/* Make sure the array of channels is the correct size */
|
2017-12-19 23:39:04 +00:00
|
|
|
new_num_channels = subsystem->max_nsid;
|
|
|
|
old_num_channels = sgroup->num_channels;
|
|
|
|
|
2018-04-05 20:51:51 +00:00
|
|
|
if (old_num_channels == 0) {
|
|
|
|
if (new_num_channels > 0) {
|
|
|
|
/* First allocation */
|
|
|
|
sgroup->channels = calloc(new_num_channels, sizeof(sgroup->channels[0]));
|
|
|
|
if (!sgroup->channels) {
|
|
|
|
return -ENOMEM;
|
2018-03-21 06:16:23 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-05 20:51:51 +00:00
|
|
|
} else if (new_num_channels > old_num_channels) {
|
|
|
|
void *buf;
|
|
|
|
|
|
|
|
/* Make the array larger */
|
|
|
|
buf = realloc(sgroup->channels, new_num_channels * sizeof(sgroup->channels[0]));
|
|
|
|
if (!buf) {
|
2017-12-19 23:39:04 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2018-04-05 20:51:51 +00:00
|
|
|
sgroup->channels = buf;
|
|
|
|
|
|
|
|
/* Null out the new channels slots */
|
2017-12-19 23:39:04 +00:00
|
|
|
for (i = old_num_channels; i < new_num_channels; i++) {
|
2018-04-05 20:51:51 +00:00
|
|
|
sgroup->channels[i] = NULL;
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
} else if (new_num_channels < old_num_channels) {
|
2018-04-05 20:51:51 +00:00
|
|
|
void *buf;
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
/* Free the extra I/O channels */
|
|
|
|
for (i = new_num_channels; i < old_num_channels; i++) {
|
|
|
|
if (sgroup->channels[i]) {
|
|
|
|
spdk_put_io_channel(sgroup->channels[i]);
|
2018-03-07 05:31:06 +00:00
|
|
|
sgroup->channels[i] = NULL;
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-20 16:50:10 +00:00
|
|
|
|
2018-04-05 20:51:51 +00:00
|
|
|
/* Make the array smaller */
|
|
|
|
if (new_num_channels > 0) {
|
|
|
|
buf = realloc(sgroup->channels, new_num_channels * sizeof(sgroup->channels[0]));
|
|
|
|
if (!buf) {
|
|
|
|
return -ENOMEM;
|
2017-11-20 16:50:10 +00:00
|
|
|
}
|
2018-04-05 20:51:51 +00:00
|
|
|
sgroup->channels = buf;
|
|
|
|
} else {
|
|
|
|
free(sgroup->channels);
|
|
|
|
sgroup->channels = NULL;
|
2017-11-20 16:50:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-05 20:51:51 +00:00
|
|
|
sgroup->num_channels = new_num_channels;
|
|
|
|
|
|
|
|
/* Detect bdevs that were added or removed */
|
|
|
|
for (i = 0; i < sgroup->num_channels; i++) {
|
|
|
|
ns = subsystem->ns[i];
|
|
|
|
if (ns == NULL && sgroup->channels[i] == NULL) {
|
|
|
|
/* Both NULL. Leave empty */
|
|
|
|
} else if (ns == NULL && sgroup->channels[i] != NULL) {
|
|
|
|
/* There was a channel here, but the namespace is gone. */
|
|
|
|
spdk_put_io_channel(sgroup->channels[i]);
|
|
|
|
sgroup->channels[i] = NULL;
|
|
|
|
} else if (ns != NULL && sgroup->channels[i] == NULL) {
|
|
|
|
/* A namespace appeared but there is no channel yet */
|
|
|
|
sgroup->channels[i] = spdk_bdev_get_io_channel(ns->desc);
|
|
|
|
} else {
|
|
|
|
/* A namespace was present before and didn't change. */
|
|
|
|
}
|
|
|
|
}
|
2017-12-19 23:39:04 +00:00
|
|
|
|
2017-11-20 16:50:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:31:40 +00:00
|
|
|
int
|
|
|
|
spdk_nvmf_poll_group_update_subsystem(struct spdk_nvmf_poll_group *group,
|
|
|
|
struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
return poll_group_update_subsystem(group, subsystem);
|
|
|
|
}
|
|
|
|
|
2017-12-14 02:38:18 +00:00
|
|
|
int
|
2017-12-19 23:39:04 +00:00
|
|
|
spdk_nvmf_poll_group_add_subsystem(struct spdk_nvmf_poll_group *group,
|
|
|
|
struct spdk_nvmf_subsystem *subsystem)
|
2017-12-14 02:38:18 +00:00
|
|
|
{
|
|
|
|
struct spdk_nvmf_subsystem_poll_group *sgroup;
|
2017-12-19 23:39:04 +00:00
|
|
|
int rc;
|
2017-12-14 02:38:18 +00:00
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
rc = poll_group_update_subsystem(group, subsystem);
|
|
|
|
if (rc) {
|
|
|
|
return rc;
|
2017-12-14 02:38:18 +00:00
|
|
|
}
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
sgroup = &group->sgroups[subsystem->id];
|
|
|
|
sgroup->state = SPDK_NVMF_SUBSYSTEM_ACTIVE;
|
2018-04-04 16:16:39 +00:00
|
|
|
TAILQ_INIT(&sgroup->queued);
|
2017-12-19 23:39:04 +00:00
|
|
|
|
2017-12-14 02:38:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-20 16:50:10 +00:00
|
|
|
int
|
|
|
|
spdk_nvmf_poll_group_remove_subsystem(struct spdk_nvmf_poll_group *group,
|
|
|
|
struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_subsystem_poll_group *sgroup;
|
|
|
|
uint32_t nsid;
|
|
|
|
|
|
|
|
sgroup = &group->sgroups[subsystem->id];
|
2018-03-20 09:36:34 +00:00
|
|
|
sgroup->state = SPDK_NVMF_SUBSYSTEM_INACTIVE;
|
2017-11-20 16:50:10 +00:00
|
|
|
|
|
|
|
for (nsid = 0; nsid < sgroup->num_channels; nsid++) {
|
|
|
|
if (sgroup->channels[nsid]) {
|
|
|
|
spdk_put_io_channel(sgroup->channels[nsid]);
|
|
|
|
sgroup->channels[nsid] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sgroup->num_channels = 0;
|
|
|
|
free(sgroup->channels);
|
|
|
|
sgroup->channels = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-20 17:45:39 +00:00
|
|
|
int
|
2017-12-19 23:39:04 +00:00
|
|
|
spdk_nvmf_poll_group_pause_subsystem(struct spdk_nvmf_poll_group *group,
|
|
|
|
struct spdk_nvmf_subsystem *subsystem)
|
2017-11-20 17:45:39 +00:00
|
|
|
{
|
|
|
|
struct spdk_nvmf_subsystem_poll_group *sgroup;
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
if (subsystem->id >= group->num_sgroups) {
|
|
|
|
return -1;
|
|
|
|
}
|
2017-11-20 17:45:39 +00:00
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
sgroup = &group->sgroups[subsystem->id];
|
|
|
|
if (sgroup == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
2017-11-20 17:45:39 +00:00
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
assert(sgroup->state == SPDK_NVMF_SUBSYSTEM_ACTIVE);
|
|
|
|
/* TODO: This currently does not quiesce I/O */
|
|
|
|
sgroup->state = SPDK_NVMF_SUBSYSTEM_PAUSED;
|
2017-11-20 17:45:39 +00:00
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2017-11-20 17:45:39 +00:00
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
int
|
|
|
|
spdk_nvmf_poll_group_resume_subsystem(struct spdk_nvmf_poll_group *group,
|
|
|
|
struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
2018-04-04 16:16:39 +00:00
|
|
|
struct spdk_nvmf_request *req, *tmp;
|
|
|
|
struct spdk_nvmf_subsystem_poll_group *sgroup;
|
2017-12-19 23:39:04 +00:00
|
|
|
int rc;
|
2017-11-20 17:45:39 +00:00
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
if (subsystem->id >= group->num_sgroups) {
|
|
|
|
return -1;
|
2017-11-20 17:45:39 +00:00
|
|
|
}
|
|
|
|
|
2018-04-04 16:16:39 +00:00
|
|
|
sgroup = &group->sgroups[subsystem->id];
|
|
|
|
|
|
|
|
assert(sgroup->state == SPDK_NVMF_SUBSYSTEM_PAUSED);
|
2017-12-19 23:39:04 +00:00
|
|
|
|
|
|
|
rc = poll_group_update_subsystem(group, subsystem);
|
|
|
|
if (rc) {
|
|
|
|
return rc;
|
2017-11-20 17:45:39 +00:00
|
|
|
}
|
|
|
|
|
2018-04-04 16:16:39 +00:00
|
|
|
sgroup->state = SPDK_NVMF_SUBSYSTEM_ACTIVE;
|
|
|
|
|
|
|
|
/* Release all queued requests */
|
|
|
|
TAILQ_FOREACH_SAFE(req, &sgroup->queued, link, tmp) {
|
|
|
|
TAILQ_REMOVE(&sgroup->queued, req, link);
|
|
|
|
spdk_nvmf_request_exec(req);
|
|
|
|
}
|
2017-12-19 23:39:04 +00:00
|
|
|
|
2017-11-20 17:45:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-06 21:44:30 +00:00
|
|
|
SPDK_TRACE_REGISTER_FN(nvmf_trace)
|
|
|
|
{
|
|
|
|
spdk_trace_register_object(OBJECT_NVMF_IO, 'r');
|
|
|
|
spdk_trace_register_description("NVMF_IO_START", "", TRACE_NVMF_IO_START,
|
|
|
|
OWNER_NONE, OBJECT_NVMF_IO, 1, 0, 0, "");
|
|
|
|
spdk_trace_register_description("NVMF_RDMA_READ_START", "", TRACE_RDMA_READ_START,
|
|
|
|
OWNER_NONE, OBJECT_NVMF_IO, 0, 0, 0, "");
|
|
|
|
spdk_trace_register_description("NVMF_RDMA_WRITE_START", "", TRACE_RDMA_WRITE_START,
|
|
|
|
OWNER_NONE, OBJECT_NVMF_IO, 0, 0, 0, "");
|
|
|
|
spdk_trace_register_description("NVMF_RDMA_READ_COMPLETE", "", TRACE_RDMA_READ_COMPLETE,
|
|
|
|
OWNER_NONE, OBJECT_NVMF_IO, 0, 0, 0, "");
|
|
|
|
spdk_trace_register_description("NVMF_RDMA_WRITE_COMPLETE", "", TRACE_RDMA_WRITE_COMPLETE,
|
|
|
|
OWNER_NONE, OBJECT_NVMF_IO, 0, 0, 0, "");
|
|
|
|
spdk_trace_register_description("NVMF_LIB_READ_START", "", TRACE_NVMF_LIB_READ_START,
|
|
|
|
OWNER_NONE, OBJECT_NVMF_IO, 0, 0, 0, "");
|
|
|
|
spdk_trace_register_description("NVMF_LIB_WRITE_START", "", TRACE_NVMF_LIB_WRITE_START,
|
|
|
|
OWNER_NONE, OBJECT_NVMF_IO, 0, 0, 0, "");
|
|
|
|
spdk_trace_register_description("NVMF_LIB_COMPLETE", "", TRACE_NVMF_LIB_COMPLETE,
|
|
|
|
OWNER_NONE, OBJECT_NVMF_IO, 0, 0, 0, "");
|
|
|
|
spdk_trace_register_description("NVMF_IO_COMPLETION_DONE", "", TRACE_NVMF_IO_COMPLETE,
|
|
|
|
OWNER_NONE, OBJECT_NVMF_IO, 0, 0, 0, "");
|
|
|
|
}
|