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
|
|
|
|
|
|
|
#include "spdk/conf.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-22 23:38:53 +00:00
|
|
|
#include "ctrlr.h"
|
2016-07-06 17:50:44 +00:00
|
|
|
#include "subsystem.h"
|
2016-07-14 22:25:23 +00:00
|
|
|
#include "transport.h"
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2016-06-07 22:51:23 +00:00
|
|
|
SPDK_LOG_REGISTER_TRACE_FLAG("nvmf", SPDK_TRACE_NVMF)
|
2016-06-06 21:44:30 +00:00
|
|
|
|
|
|
|
#define MAX_SUBSYSTEMS 4
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
tgt->current_subsystem_id = 0;
|
|
|
|
TAILQ_INIT(&tgt->subsystems);
|
|
|
|
TAILQ_INIT(&tgt->transports);
|
2016-07-25 21:22:58 +00:00
|
|
|
|
2017-08-25 20:37:02 +00:00
|
|
|
SPDK_DEBUGLOG(SPDK_TRACE_NVMF, "Max Queue Pairs Per Controller: %d\n",
|
2017-08-18 22:38:33 +00:00
|
|
|
tgt->opts.max_qpairs_per_ctrlr);
|
2017-08-25 20:37:02 +00:00
|
|
|
SPDK_DEBUGLOG(SPDK_TRACE_NVMF, "Max Queue Depth: %d\n", tgt->opts.max_queue_depth);
|
|
|
|
SPDK_DEBUGLOG(SPDK_TRACE_NVMF, "Max In Capsule Data: %d bytes\n",
|
2017-08-18 22:38:33 +00:00
|
|
|
tgt->opts.in_capsule_data_size);
|
2017-08-25 20:37:02 +00:00
|
|
|
SPDK_DEBUGLOG(SPDK_TRACE_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-02-20 04:49:39 +00:00
|
|
|
|
2017-08-18 22:38:33 +00:00
|
|
|
TAILQ_FOREACH_SAFE(transport, &tgt->transports, link, transport_tmp) {
|
|
|
|
TAILQ_REMOVE(&tgt->transports, transport, link);
|
2017-07-24 23:30:07 +00:00
|
|
|
spdk_nvmf_transport_destroy(transport);
|
|
|
|
}
|
2017-08-23 17:35:44 +00:00
|
|
|
|
|
|
|
if (tgt->discovery_log_page) {
|
|
|
|
free(tgt->discovery_log_page);
|
|
|
|
}
|
|
|
|
free(tgt);
|
2016-10-19 17:03:45 +00:00
|
|
|
}
|
|
|
|
|
2017-08-23 17:23:44 +00:00
|
|
|
int
|
2017-08-21 18:41:51 +00:00
|
|
|
spdk_nvmf_tgt_listen(struct spdk_nvmf_tgt *tgt,
|
|
|
|
struct spdk_nvme_transport_id *trid)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_transport *transport;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
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");
|
2017-08-23 17:23:44 +00:00
|
|
|
return -EINVAL;
|
2017-08-21 18:41:51 +00:00
|
|
|
}
|
|
|
|
TAILQ_INSERT_TAIL(&tgt->transports, transport, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rc = spdk_nvmf_transport_listen(transport, trid);
|
|
|
|
if (rc < 0) {
|
|
|
|
SPDK_ERRLOG("Unable to listen on address '%s'\n", trid->traddr);
|
2017-08-23 17:23:44 +00:00
|
|
|
return -EINVAL;
|
2017-08-21 18:41:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tgt->discovery_genctr++;
|
|
|
|
|
2017-08-23 17:23:44 +00:00
|
|
|
return 0;
|
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;
|
|
|
|
|
|
|
|
if (!subnqn) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_FOREACH(subsystem, &tgt->subsystems, entries) {
|
|
|
|
if (strcmp(subnqn, subsystem->subnqn) == 0) {
|
|
|
|
return subsystem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-08-22 23:38:53 +00:00
|
|
|
uint16_t
|
|
|
|
spdk_nvmf_tgt_gen_cntlid(struct spdk_nvmf_tgt *tgt)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_subsystem *subsystem;
|
|
|
|
struct spdk_nvmf_ctrlr *ctrlr;
|
|
|
|
uint16_t count;
|
|
|
|
|
|
|
|
count = UINT16_MAX - 1;
|
|
|
|
do {
|
|
|
|
/* cntlid is an unsigned 16-bit integer, so let it overflow
|
|
|
|
* back to 0 if necessary.
|
|
|
|
*/
|
|
|
|
tgt->next_cntlid++;
|
|
|
|
if (tgt->next_cntlid == 0) {
|
|
|
|
/* 0 is not a valid cntlid because it is the reserved value in the RDMA
|
|
|
|
* private data for cntlid. This is the value sent by pre-NVMe-oF 1.1
|
|
|
|
* initiators.
|
|
|
|
*/
|
|
|
|
tgt->next_cntlid++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if a subsystem with this cntlid currently exists. This could
|
|
|
|
* happen for a very long-lived ctrlr on a target with many short-lived
|
|
|
|
* ctrlrs, where cntlid wraps around.
|
|
|
|
*/
|
|
|
|
TAILQ_FOREACH(subsystem, &tgt->subsystems, entries) {
|
|
|
|
TAILQ_FOREACH(ctrlr, &subsystem->ctrlrs, link) {
|
|
|
|
if (ctrlr->cntlid == tgt->next_cntlid) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
count--;
|
|
|
|
|
|
|
|
} while (subsystem != NULL && count > 0);
|
|
|
|
|
|
|
|
if (count == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return tgt->next_cntlid;
|
|
|
|
}
|
|
|
|
|
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-21 21:07:44 +00:00
|
|
|
spdk_nvmf_tgt_accept(struct spdk_nvmf_tgt *tgt)
|
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-07-28 17:40:40 +00:00
|
|
|
spdk_nvmf_transport_accept(transport);
|
2017-07-24 23:30:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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, "");
|
|
|
|
}
|