7358fb6f85
Use the general purpose mechanism to pause a subsystem when a bdev is hot removed. Change-Id: I3cd4fb15140d6682707b7840c6a9c3f63fe48e55 Signed-off-by: Ben Walker <benjamin.walker@intel.com> Reviewed-on: https://review.gerrithub.io/394259 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
1198 lines
38 KiB
C
1198 lines
38 KiB
C
/*-
|
|
* 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 "nvmf_internal.h"
|
|
#include "transport.h"
|
|
|
|
#include "spdk/endian.h"
|
|
#include "spdk/io_channel.h"
|
|
#include "spdk/trace.h"
|
|
#include "spdk/nvme_spec.h"
|
|
#include "spdk/string.h"
|
|
#include "spdk/util.h"
|
|
#include "spdk/version.h"
|
|
|
|
#include "spdk_internal/log.h"
|
|
|
|
#define MIN_KEEP_ALIVE_TIMEOUT 10000
|
|
|
|
#define MODEL_NUMBER "SPDK bdev Controller"
|
|
|
|
/*
|
|
* Report the SPDK version as the firmware revision.
|
|
* SPDK_VERSION_STRING won't fit into FR (only 8 bytes), so try to fit the most important parts.
|
|
*/
|
|
#define FW_VERSION SPDK_VERSION_MAJOR_STRING SPDK_VERSION_MINOR_STRING SPDK_VERSION_PATCH_STRING
|
|
|
|
static struct spdk_nvmf_ctrlr *
|
|
spdk_nvmf_ctrlr_create(struct spdk_nvmf_subsystem *subsystem,
|
|
struct spdk_nvmf_qpair *admin_qpair,
|
|
struct spdk_nvmf_fabric_connect_cmd *connect_cmd,
|
|
struct spdk_nvmf_fabric_connect_data *connect_data)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr;
|
|
struct spdk_nvmf_tgt *tgt;
|
|
|
|
tgt = subsystem->tgt;
|
|
|
|
ctrlr = calloc(1, sizeof(*ctrlr));
|
|
if (ctrlr == NULL) {
|
|
SPDK_ERRLOG("Memory allocation failed\n");
|
|
return NULL;
|
|
}
|
|
|
|
TAILQ_INIT(&ctrlr->qpairs);
|
|
ctrlr->kato = connect_cmd->kato;
|
|
ctrlr->async_event_config.raw = 0;
|
|
ctrlr->num_qpairs = 0;
|
|
ctrlr->subsys = subsystem;
|
|
ctrlr->max_qpairs_allowed = tgt->opts.max_qpairs_per_ctrlr;
|
|
|
|
memcpy(ctrlr->hostid, connect_data->hostid, sizeof(ctrlr->hostid));
|
|
|
|
ctrlr->vcprop.cap.raw = 0;
|
|
ctrlr->vcprop.cap.bits.cqr = 1; /* NVMe-oF specification required */
|
|
ctrlr->vcprop.cap.bits.mqes = tgt->opts.max_queue_depth - 1; /* max queue depth */
|
|
ctrlr->vcprop.cap.bits.ams = 0; /* optional arb mechanisms */
|
|
ctrlr->vcprop.cap.bits.to = 1; /* ready timeout - 500 msec units */
|
|
ctrlr->vcprop.cap.bits.dstrd = 0; /* fixed to 0 for NVMe-oF */
|
|
ctrlr->vcprop.cap.bits.css_nvm = 1; /* NVM command set */
|
|
ctrlr->vcprop.cap.bits.mpsmin = 0; /* 2 ^ (12 + mpsmin) == 4k */
|
|
ctrlr->vcprop.cap.bits.mpsmax = 0; /* 2 ^ (12 + mpsmax) == 4k */
|
|
|
|
/* Version Supported: 1.2.1 */
|
|
ctrlr->vcprop.vs.bits.mjr = 1;
|
|
ctrlr->vcprop.vs.bits.mnr = 2;
|
|
ctrlr->vcprop.vs.bits.ter = 1;
|
|
|
|
ctrlr->vcprop.cc.raw = 0;
|
|
ctrlr->vcprop.cc.bits.en = 0; /* Init controller disabled */
|
|
|
|
ctrlr->vcprop.csts.raw = 0;
|
|
ctrlr->vcprop.csts.bits.rdy = 0; /* Init controller as not ready */
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "cap 0x%" PRIx64 "\n", ctrlr->vcprop.cap.raw);
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "vs 0x%x\n", ctrlr->vcprop.vs.raw);
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "cc 0x%x\n", ctrlr->vcprop.cc.raw);
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "csts 0x%x\n", ctrlr->vcprop.csts.raw);
|
|
|
|
if (spdk_nvmf_subsystem_add_ctrlr(subsystem, ctrlr)) {
|
|
SPDK_ERRLOG("Unable to add controller to subsystem\n");
|
|
free(ctrlr);
|
|
return NULL;
|
|
}
|
|
|
|
return ctrlr;
|
|
}
|
|
|
|
static void ctrlr_destruct(struct spdk_nvmf_ctrlr *ctrlr)
|
|
{
|
|
spdk_nvmf_subsystem_remove_ctrlr(ctrlr->subsys, ctrlr);
|
|
free(ctrlr);
|
|
}
|
|
|
|
void
|
|
spdk_nvmf_ctrlr_destruct(struct spdk_nvmf_ctrlr *ctrlr)
|
|
{
|
|
while (!TAILQ_EMPTY(&ctrlr->qpairs)) {
|
|
struct spdk_nvmf_qpair *qpair = TAILQ_FIRST(&ctrlr->qpairs);
|
|
|
|
TAILQ_REMOVE(&ctrlr->qpairs, qpair, link);
|
|
ctrlr->num_qpairs--;
|
|
spdk_nvmf_transport_qpair_fini(qpair);
|
|
}
|
|
|
|
ctrlr_destruct(ctrlr);
|
|
}
|
|
|
|
static inline void
|
|
spdk_nvmf_invalid_connect_response(struct spdk_nvmf_fabric_connect_rsp *rsp,
|
|
uint8_t iattr, uint16_t ipo)
|
|
{
|
|
rsp->status.sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
|
|
rsp->status.sc = SPDK_NVMF_FABRIC_SC_INVALID_PARAM;
|
|
rsp->status_code_specific.invalid.iattr = iattr;
|
|
rsp->status_code_specific.invalid.ipo = ipo;
|
|
}
|
|
|
|
#define SPDK_NVMF_INVALID_CONNECT_CMD(rsp, field) \
|
|
spdk_nvmf_invalid_connect_response(rsp, 0, offsetof(struct spdk_nvmf_fabric_connect_cmd, field))
|
|
#define SPDK_NVMF_INVALID_CONNECT_DATA(rsp, field) \
|
|
spdk_nvmf_invalid_connect_response(rsp, 1, offsetof(struct spdk_nvmf_fabric_connect_data, field))
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_connect(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_fabric_connect_data *data = req->data;
|
|
struct spdk_nvmf_fabric_connect_cmd *cmd = &req->cmd->connect_cmd;
|
|
struct spdk_nvmf_fabric_connect_rsp *rsp = &req->rsp->connect_rsp;
|
|
struct spdk_nvmf_qpair *qpair = req->qpair;
|
|
struct spdk_nvmf_tgt *tgt = qpair->transport->tgt;
|
|
struct spdk_nvmf_ctrlr *ctrlr;
|
|
struct spdk_nvmf_subsystem *subsystem;
|
|
const char *subnqn, *hostnqn;
|
|
void *end;
|
|
|
|
if (req->length < sizeof(struct spdk_nvmf_fabric_connect_data)) {
|
|
SPDK_ERRLOG("Connect command data length 0x%x too small\n", req->length);
|
|
rsp->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "recfmt 0x%x qid %u sqsize %u\n",
|
|
cmd->recfmt, cmd->qid, cmd->sqsize);
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Connect data:\n");
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, " cntlid: 0x%04x\n", data->cntlid);
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, " hostid: %08x-%04x-%04x-%02x%02x-%04x%08x ***\n",
|
|
ntohl(*(uint32_t *)&data->hostid[0]),
|
|
ntohs(*(uint16_t *)&data->hostid[4]),
|
|
ntohs(*(uint16_t *)&data->hostid[6]),
|
|
data->hostid[8],
|
|
data->hostid[9],
|
|
ntohs(*(uint16_t *)&data->hostid[10]),
|
|
ntohl(*(uint32_t *)&data->hostid[12]));
|
|
|
|
if (cmd->recfmt != 0) {
|
|
SPDK_ERRLOG("Connect command unsupported RECFMT %u\n", cmd->recfmt);
|
|
rsp->status.sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
|
|
rsp->status.sc = SPDK_NVMF_FABRIC_SC_INCOMPATIBLE_FORMAT;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
/* Ensure that subnqn is null terminated */
|
|
end = memchr(data->subnqn, '\0', SPDK_NVMF_NQN_MAX_LEN + 1);
|
|
if (!end) {
|
|
SPDK_ERRLOG("Connect SUBNQN is not null terminated\n");
|
|
SPDK_NVMF_INVALID_CONNECT_DATA(rsp, subnqn);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
subnqn = data->subnqn;
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, " subnqn: \"%s\"\n", subnqn);
|
|
|
|
subsystem = spdk_nvmf_tgt_find_subsystem(tgt, subnqn);
|
|
if (subsystem == NULL) {
|
|
SPDK_ERRLOG("Could not find subsystem '%s'\n", subnqn);
|
|
SPDK_NVMF_INVALID_CONNECT_DATA(rsp, subnqn);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
/* Ensure that hostnqn is null terminated */
|
|
end = memchr(data->hostnqn, '\0', SPDK_NVMF_NQN_MAX_LEN + 1);
|
|
if (!end) {
|
|
SPDK_ERRLOG("Connect HOSTNQN is not null terminated\n");
|
|
SPDK_NVMF_INVALID_CONNECT_DATA(rsp, hostnqn);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
hostnqn = data->hostnqn;
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, " hostnqn: \"%s\"\n", hostnqn);
|
|
|
|
if (!spdk_nvmf_subsystem_host_allowed(subsystem, hostnqn)) {
|
|
SPDK_ERRLOG("Subsystem '%s' does not allow host '%s'\n", subnqn, hostnqn);
|
|
rsp->status.sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
|
|
rsp->status.sc = SPDK_NVMF_FABRIC_SC_INVALID_HOST;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
/*
|
|
* SQSIZE is a 0-based value, so it must be at least 1 (minimum queue depth is 2) and
|
|
* strictly less than max_queue_depth.
|
|
*/
|
|
if (cmd->sqsize == 0 || cmd->sqsize >= tgt->opts.max_queue_depth) {
|
|
SPDK_ERRLOG("Invalid SQSIZE %u (min 1, max %u)\n",
|
|
cmd->sqsize, tgt->opts.max_queue_depth - 1);
|
|
SPDK_NVMF_INVALID_CONNECT_CMD(rsp, sqsize);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
qpair->sq_head_max = cmd->sqsize;
|
|
qpair->qid = cmd->qid;
|
|
|
|
if (cmd->qid == 0) {
|
|
qpair->type = QPAIR_TYPE_AQ;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Connect Admin Queue for controller ID 0x%x\n", data->cntlid);
|
|
|
|
if (data->cntlid != 0xFFFF) {
|
|
/* This NVMf target only supports dynamic mode. */
|
|
SPDK_ERRLOG("The NVMf target only supports dynamic mode (CNTLID = 0x%x).\n", data->cntlid);
|
|
SPDK_NVMF_INVALID_CONNECT_DATA(rsp, cntlid);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
/* Establish a new ctrlr */
|
|
ctrlr = spdk_nvmf_ctrlr_create(subsystem, qpair, cmd, data);
|
|
if (!ctrlr) {
|
|
SPDK_ERRLOG("spdk_nvmf_ctrlr_create() failed\n");
|
|
rsp->status.sc = SPDK_NVME_SC_INTERNAL_DEVICE_ERROR;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
} else {
|
|
qpair->type = QPAIR_TYPE_IOQ;
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Connect I/O Queue for controller id 0x%x\n", data->cntlid);
|
|
|
|
ctrlr = spdk_nvmf_subsystem_get_ctrlr(subsystem, data->cntlid);
|
|
if (ctrlr == NULL) {
|
|
SPDK_ERRLOG("Unknown controller ID 0x%x\n", data->cntlid);
|
|
SPDK_NVMF_INVALID_CONNECT_DATA(rsp, cntlid);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
if (ctrlr->subsys->subtype == SPDK_NVMF_SUBTYPE_DISCOVERY) {
|
|
SPDK_ERRLOG("I/O connect not allowed on discovery controller\n");
|
|
SPDK_NVMF_INVALID_CONNECT_CMD(rsp, qid);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
if (!ctrlr->vcprop.cc.bits.en) {
|
|
SPDK_ERRLOG("Got I/O connect before ctrlr was enabled\n");
|
|
SPDK_NVMF_INVALID_CONNECT_CMD(rsp, qid);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
if (1u << ctrlr->vcprop.cc.bits.iosqes != sizeof(struct spdk_nvme_cmd)) {
|
|
SPDK_ERRLOG("Got I/O connect with invalid IOSQES %u\n",
|
|
ctrlr->vcprop.cc.bits.iosqes);
|
|
SPDK_NVMF_INVALID_CONNECT_CMD(rsp, qid);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
if (1u << ctrlr->vcprop.cc.bits.iocqes != sizeof(struct spdk_nvme_cpl)) {
|
|
SPDK_ERRLOG("Got I/O connect with invalid IOCQES %u\n",
|
|
ctrlr->vcprop.cc.bits.iocqes);
|
|
SPDK_NVMF_INVALID_CONNECT_CMD(rsp, qid);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
if (spdk_nvmf_ctrlr_get_qpair(ctrlr, cmd->qid)) {
|
|
SPDK_ERRLOG("Got I/O connect with duplicate QID %u\n", cmd->qid);
|
|
rsp->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
rsp->status.sc = SPDK_NVME_SC_COMMAND_SEQUENCE_ERROR;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
/* check if we would exceed ctrlr connection limit */
|
|
if (ctrlr->num_qpairs >= ctrlr->max_qpairs_allowed) {
|
|
SPDK_ERRLOG("qpair limit %d\n", ctrlr->num_qpairs);
|
|
rsp->status.sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
|
|
rsp->status.sc = SPDK_NVMF_FABRIC_SC_CONTROLLER_BUSY;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
}
|
|
|
|
ctrlr->num_qpairs++;
|
|
TAILQ_INSERT_HEAD(&ctrlr->qpairs, qpair, link);
|
|
qpair->ctrlr = ctrlr;
|
|
|
|
rsp->status.sc = SPDK_NVME_SC_SUCCESS;
|
|
rsp->status_code_specific.success.cntlid = ctrlr->cntlid;
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "connect capsule response: cntlid = 0x%04x\n",
|
|
rsp->status_code_specific.success.cntlid);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
void
|
|
spdk_nvmf_ctrlr_disconnect(struct spdk_nvmf_qpair *qpair)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = qpair->ctrlr;
|
|
|
|
assert(ctrlr != NULL);
|
|
ctrlr->num_qpairs--;
|
|
TAILQ_REMOVE(&ctrlr->qpairs, qpair, link);
|
|
|
|
spdk_nvmf_transport_qpair_fini(qpair);
|
|
|
|
if (ctrlr->num_qpairs == 0) {
|
|
ctrlr_destruct(ctrlr);
|
|
}
|
|
}
|
|
|
|
struct spdk_nvmf_qpair *
|
|
spdk_nvmf_ctrlr_get_qpair(struct spdk_nvmf_ctrlr *ctrlr, uint16_t qid)
|
|
{
|
|
struct spdk_nvmf_qpair *qpair;
|
|
|
|
TAILQ_FOREACH(qpair, &ctrlr->qpairs, link) {
|
|
if (qpair->qid == qid) {
|
|
return qpair;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static struct spdk_nvmf_request *
|
|
spdk_nvmf_qpair_get_request(struct spdk_nvmf_qpair *qpair, uint16_t cid)
|
|
{
|
|
/* TODO: track list of outstanding requests in qpair? */
|
|
return NULL;
|
|
}
|
|
|
|
static uint64_t
|
|
nvmf_prop_get_cap(struct spdk_nvmf_ctrlr *ctrlr)
|
|
{
|
|
return ctrlr->vcprop.cap.raw;
|
|
}
|
|
|
|
static uint64_t
|
|
nvmf_prop_get_vs(struct spdk_nvmf_ctrlr *ctrlr)
|
|
{
|
|
return ctrlr->vcprop.vs.raw;
|
|
}
|
|
|
|
static uint64_t
|
|
nvmf_prop_get_cc(struct spdk_nvmf_ctrlr *ctrlr)
|
|
{
|
|
return ctrlr->vcprop.cc.raw;
|
|
}
|
|
|
|
static bool
|
|
nvmf_prop_set_cc(struct spdk_nvmf_ctrlr *ctrlr, uint64_t value)
|
|
{
|
|
union spdk_nvme_cc_register cc, diff;
|
|
|
|
cc.raw = (uint32_t)value;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "cur CC: 0x%08x\n", ctrlr->vcprop.cc.raw);
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "new CC: 0x%08x\n", cc.raw);
|
|
|
|
/*
|
|
* Calculate which bits changed between the current and new CC.
|
|
* Mark each bit as 0 once it is handled to determine if any unhandled bits were changed.
|
|
*/
|
|
diff.raw = cc.raw ^ ctrlr->vcprop.cc.raw;
|
|
|
|
if (diff.bits.en) {
|
|
if (cc.bits.en) {
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Property Set CC Enable!\n");
|
|
ctrlr->vcprop.cc.bits.en = 1;
|
|
ctrlr->vcprop.csts.bits.rdy = 1;
|
|
} else {
|
|
SPDK_ERRLOG("CC.EN transition from 1 to 0 (reset) not implemented!\n");
|
|
|
|
}
|
|
diff.bits.en = 0;
|
|
}
|
|
|
|
if (diff.bits.shn) {
|
|
if (cc.bits.shn == SPDK_NVME_SHN_NORMAL ||
|
|
cc.bits.shn == SPDK_NVME_SHN_ABRUPT) {
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Property Set CC Shutdown %u%ub!\n",
|
|
cc.bits.shn >> 1, cc.bits.shn & 1);
|
|
ctrlr->vcprop.cc.bits.shn = cc.bits.shn;
|
|
ctrlr->vcprop.cc.bits.en = 0;
|
|
ctrlr->vcprop.csts.bits.rdy = 0;
|
|
ctrlr->vcprop.csts.bits.shst = SPDK_NVME_SHST_COMPLETE;
|
|
} else if (cc.bits.shn == 0) {
|
|
ctrlr->vcprop.cc.bits.shn = 0;
|
|
} else {
|
|
SPDK_ERRLOG("Prop Set CC: Invalid SHN value %u%ub\n",
|
|
cc.bits.shn >> 1, cc.bits.shn & 1);
|
|
return false;
|
|
}
|
|
diff.bits.shn = 0;
|
|
}
|
|
|
|
if (diff.bits.iosqes) {
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Prop Set IOSQES = %u (%u bytes)\n",
|
|
cc.bits.iosqes, 1u << cc.bits.iosqes);
|
|
ctrlr->vcprop.cc.bits.iosqes = cc.bits.iosqes;
|
|
diff.bits.iosqes = 0;
|
|
}
|
|
|
|
if (diff.bits.iocqes) {
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Prop Set IOCQES = %u (%u bytes)\n",
|
|
cc.bits.iocqes, 1u << cc.bits.iocqes);
|
|
ctrlr->vcprop.cc.bits.iocqes = cc.bits.iocqes;
|
|
diff.bits.iocqes = 0;
|
|
}
|
|
|
|
if (diff.raw != 0) {
|
|
SPDK_ERRLOG("Prop Set CC toggled reserved bits 0x%x!\n", diff.raw);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static uint64_t
|
|
nvmf_prop_get_csts(struct spdk_nvmf_ctrlr *ctrlr)
|
|
{
|
|
return ctrlr->vcprop.csts.raw;
|
|
}
|
|
|
|
struct nvmf_prop {
|
|
uint32_t ofst;
|
|
uint8_t size;
|
|
char name[11];
|
|
uint64_t (*get_cb)(struct spdk_nvmf_ctrlr *ctrlr);
|
|
bool (*set_cb)(struct spdk_nvmf_ctrlr *ctrlr, uint64_t value);
|
|
};
|
|
|
|
#define PROP(field, size, get_cb, set_cb) \
|
|
{ \
|
|
offsetof(struct spdk_nvme_registers, field), \
|
|
SPDK_NVMF_PROP_SIZE_##size, \
|
|
#field, \
|
|
get_cb, set_cb \
|
|
}
|
|
|
|
static const struct nvmf_prop nvmf_props[] = {
|
|
PROP(cap, 8, nvmf_prop_get_cap, NULL),
|
|
PROP(vs, 4, nvmf_prop_get_vs, NULL),
|
|
PROP(cc, 4, nvmf_prop_get_cc, nvmf_prop_set_cc),
|
|
PROP(csts, 4, nvmf_prop_get_csts, NULL),
|
|
};
|
|
|
|
static const struct nvmf_prop *
|
|
find_prop(uint32_t ofst)
|
|
{
|
|
size_t i;
|
|
|
|
for (i = 0; i < SPDK_COUNTOF(nvmf_props); i++) {
|
|
const struct nvmf_prop *prop = &nvmf_props[i];
|
|
|
|
if (prop->ofst == ofst) {
|
|
return prop;
|
|
}
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_property_get(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvmf_fabric_prop_get_cmd *cmd = &req->cmd->prop_get_cmd;
|
|
struct spdk_nvmf_fabric_prop_get_rsp *response = &req->rsp->prop_get_rsp;
|
|
const struct nvmf_prop *prop;
|
|
|
|
response->status.sc = 0;
|
|
response->value.u64 = 0;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "size %d, offset 0x%x\n",
|
|
cmd->attrib.size, cmd->ofst);
|
|
|
|
if (cmd->attrib.size != SPDK_NVMF_PROP_SIZE_4 &&
|
|
cmd->attrib.size != SPDK_NVMF_PROP_SIZE_8) {
|
|
SPDK_ERRLOG("Invalid size value %d\n", cmd->attrib.size);
|
|
response->status.sc = SPDK_NVMF_FABRIC_SC_INVALID_PARAM;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
prop = find_prop(cmd->ofst);
|
|
if (prop == NULL || prop->get_cb == NULL) {
|
|
/* Reserved properties return 0 when read */
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "name: %s\n", prop->name);
|
|
if (cmd->attrib.size != prop->size) {
|
|
SPDK_ERRLOG("offset 0x%x size mismatch: cmd %u, prop %u\n",
|
|
cmd->ofst, cmd->attrib.size, prop->size);
|
|
response->status.sc = SPDK_NVMF_FABRIC_SC_INVALID_PARAM;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
response->value.u64 = prop->get_cb(ctrlr);
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "response value: 0x%" PRIx64 "\n", response->value.u64);
|
|
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_property_set(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvmf_fabric_prop_set_cmd *cmd = &req->cmd->prop_set_cmd;
|
|
struct spdk_nvme_cpl *response = &req->rsp->nvme_cpl;
|
|
const struct nvmf_prop *prop;
|
|
uint64_t value;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "size %d, offset 0x%x, value 0x%" PRIx64 "\n",
|
|
cmd->attrib.size, cmd->ofst, cmd->value.u64);
|
|
|
|
prop = find_prop(cmd->ofst);
|
|
if (prop == NULL || prop->set_cb == NULL) {
|
|
SPDK_ERRLOG("Invalid offset 0x%x\n", cmd->ofst);
|
|
response->status.sc = SPDK_NVMF_FABRIC_SC_INVALID_PARAM;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "name: %s\n", prop->name);
|
|
if (cmd->attrib.size != prop->size) {
|
|
SPDK_ERRLOG("offset 0x%x size mismatch: cmd %u, prop %u\n",
|
|
cmd->ofst, cmd->attrib.size, prop->size);
|
|
response->status.sc = SPDK_NVMF_FABRIC_SC_INVALID_PARAM;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
value = cmd->value.u64;
|
|
if (prop->size == SPDK_NVMF_PROP_SIZE_4) {
|
|
value = (uint32_t)value;
|
|
}
|
|
|
|
if (!prop->set_cb(ctrlr, value)) {
|
|
SPDK_ERRLOG("prop set_cb failed\n");
|
|
response->status.sc = SPDK_NVMF_FABRIC_SC_INVALID_PARAM;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_set_features_host_identifier(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvme_cpl *response = &req->rsp->nvme_cpl;
|
|
|
|
SPDK_ERRLOG("Set Features - Host Identifier not allowed\n");
|
|
response->status.sc = SPDK_NVME_SC_COMMAND_SEQUENCE_ERROR;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_get_features_host_identifier(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
struct spdk_nvme_cpl *response = &req->rsp->nvme_cpl;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Get Features - Host Identifier\n");
|
|
if (!(cmd->cdw11 & 1)) {
|
|
/* NVMe over Fabrics requires EXHID=1 (128-bit/16-byte host ID) */
|
|
SPDK_ERRLOG("Get Features - Host Identifier with EXHID=0 not allowed\n");
|
|
response->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
if (req->data == NULL || req->length < sizeof(ctrlr->hostid)) {
|
|
SPDK_ERRLOG("Invalid data buffer for Get Features - Host Identifier\n");
|
|
response->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
memcpy(req->data, ctrlr->hostid, sizeof(ctrlr->hostid));
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_set_features_keep_alive_timer(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
struct spdk_nvme_cpl *rsp = &req->rsp->nvme_cpl;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Set Features - Keep Alive Timer (%u ms)\n", cmd->cdw11);
|
|
|
|
if (cmd->cdw11 == 0) {
|
|
rsp->status.sc = SPDK_NVME_SC_KEEP_ALIVE_INVALID;
|
|
} else if (cmd->cdw11 < MIN_KEEP_ALIVE_TIMEOUT) {
|
|
ctrlr->kato = MIN_KEEP_ALIVE_TIMEOUT;
|
|
} else {
|
|
ctrlr->kato = cmd->cdw11;
|
|
}
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Set Features - Keep Alive Timer set to %u ms\n", ctrlr->kato);
|
|
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_get_features_keep_alive_timer(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvme_cpl *rsp = &req->rsp->nvme_cpl;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Get Features - Keep Alive Timer\n");
|
|
rsp->cdw0 = ctrlr->kato;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_set_features_number_of_queues(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvme_cpl *rsp = &req->rsp->nvme_cpl;
|
|
uint32_t nr_io_queues;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Set Features - Number of Queues, cdw11 0x%x\n",
|
|
req->cmd->nvme_cmd.cdw11);
|
|
|
|
/* Extra 1 connection for Admin queue */
|
|
nr_io_queues = ctrlr->max_qpairs_allowed - 1;
|
|
|
|
/* verify that the contoller is ready to process commands */
|
|
if (ctrlr->num_qpairs > 1) {
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Queue pairs already active!\n");
|
|
rsp->status.sc = SPDK_NVME_SC_COMMAND_SEQUENCE_ERROR;
|
|
} else {
|
|
/* Number of IO queues has a zero based value */
|
|
rsp->cdw0 = ((nr_io_queues - 1) << 16) |
|
|
(nr_io_queues - 1);
|
|
}
|
|
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_get_features_number_of_queues(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvme_cpl *rsp = &req->rsp->nvme_cpl;
|
|
uint32_t nr_io_queues;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Get Features - Number of Queues\n");
|
|
|
|
nr_io_queues = ctrlr->max_qpairs_allowed - 1;
|
|
|
|
/* Number of IO queues has a zero based value */
|
|
rsp->cdw0 = ((nr_io_queues - 1) << 16) |
|
|
(nr_io_queues - 1);
|
|
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_get_features_write_cache(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvme_cpl *rsp = &req->rsp->nvme_cpl;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Get Features - Write Cache\n");
|
|
rsp->cdw0 = 1;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_set_features_async_event_configuration(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Set Features - Async Event Configuration, cdw11 0x%08x\n",
|
|
cmd->cdw11);
|
|
ctrlr->async_event_config.raw = cmd->cdw11;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_get_features_async_event_configuration(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvme_cpl *rsp = &req->rsp->nvme_cpl;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Get Features - Async Event Configuration\n");
|
|
rsp->cdw0 = ctrlr->async_event_config.raw;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_async_event_request(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvme_cpl *rsp = &req->rsp->nvme_cpl;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Async Event Request\n");
|
|
|
|
/* Only one asynchronous event is supported for now */
|
|
if (ctrlr->aer_req != NULL) {
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "AERL exceeded\n");
|
|
rsp->status.sct = SPDK_NVME_SCT_COMMAND_SPECIFIC;
|
|
rsp->status.sc = SPDK_NVME_SC_ASYNC_EVENT_REQUEST_LIMIT_EXCEEDED;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
ctrlr->aer_req = req;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_ASYNCHRONOUS;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_get_log_page(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_subsystem *subsystem = req->qpair->ctrlr->subsys;
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
struct spdk_nvme_cpl *response = &req->rsp->nvme_cpl;
|
|
uint64_t offset, len;
|
|
uint32_t numdl, numdu;
|
|
uint8_t lid;
|
|
|
|
if (req->data == NULL) {
|
|
SPDK_ERRLOG("get log command with no buffer\n");
|
|
response->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
response->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
offset = (uint64_t)cmd->cdw12 | ((uint64_t)cmd->cdw13 << 32);
|
|
if (offset & 3) {
|
|
SPDK_ERRLOG("Invalid log page offset 0x%" PRIx64 "\n", offset);
|
|
response->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
response->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
numdl = (cmd->cdw10 >> 16) & 0xFFFFu;
|
|
numdu = (cmd->cdw11) & 0xFFFFu;
|
|
len = ((numdu << 16) + numdl + (uint64_t)1) * 4;
|
|
if (len > req->length) {
|
|
SPDK_ERRLOG("Get log page: len (%" PRIu64 ") > buf size (%u)\n",
|
|
len, req->length);
|
|
response->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
response->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
lid = cmd->cdw10 & 0xFF;
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Get log page: LID=0x%02X offset=0x%" PRIx64 " len=0x%" PRIx64 "\n",
|
|
lid, offset, len);
|
|
|
|
if (subsystem->subtype == SPDK_NVMF_SUBTYPE_DISCOVERY) {
|
|
switch (lid) {
|
|
case SPDK_NVME_LOG_DISCOVERY:
|
|
spdk_nvmf_get_discovery_log_page(subsystem->tgt, req->data, offset, len);
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
default:
|
|
goto invalid_log_page;
|
|
}
|
|
} else {
|
|
switch (lid) {
|
|
case SPDK_NVME_LOG_ERROR:
|
|
case SPDK_NVME_LOG_HEALTH_INFORMATION:
|
|
case SPDK_NVME_LOG_FIRMWARE_SLOT:
|
|
/* TODO: actually fill out log page data */
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
default:
|
|
goto invalid_log_page;
|
|
}
|
|
}
|
|
|
|
invalid_log_page:
|
|
SPDK_ERRLOG("Unsupported Get Log Page 0x%02X\n", lid);
|
|
response->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
response->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_identify_ns(struct spdk_nvmf_subsystem *subsystem,
|
|
struct spdk_nvme_cmd *cmd,
|
|
struct spdk_nvme_cpl *rsp,
|
|
struct spdk_nvme_ns_data *nsdata)
|
|
{
|
|
struct spdk_nvmf_ns *ns;
|
|
|
|
ns = _spdk_nvmf_subsystem_get_ns(subsystem, cmd->nsid);
|
|
if (ns == NULL || ns->bdev == NULL) {
|
|
SPDK_ERRLOG("Identify Namespace for invalid NSID %u\n", cmd->nsid);
|
|
rsp->status.sc = SPDK_NVME_SC_INVALID_NAMESPACE_OR_FORMAT;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
return spdk_nvmf_bdev_ctrlr_identify_ns(ns->bdev, nsdata);
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_identify_ctrlr(struct spdk_nvmf_ctrlr *ctrlr, struct spdk_nvme_ctrlr_data *cdata)
|
|
{
|
|
struct spdk_nvmf_subsystem *subsystem = ctrlr->subsys;
|
|
struct spdk_nvmf_tgt *tgt = subsystem->tgt;
|
|
|
|
/*
|
|
* Common fields for discovery and NVM subsystems
|
|
*/
|
|
spdk_strcpy_pad(cdata->fr, FW_VERSION, sizeof(cdata->fr), ' ');
|
|
assert((tgt->opts.max_io_size % 4096) == 0);
|
|
cdata->mdts = spdk_u32log2(tgt->opts.max_io_size / 4096);
|
|
cdata->cntlid = ctrlr->cntlid;
|
|
cdata->ver = ctrlr->vcprop.vs;
|
|
cdata->lpa.edlp = 1;
|
|
cdata->elpe = 127;
|
|
cdata->maxcmd = tgt->opts.max_queue_depth;
|
|
cdata->sgls.supported = 1;
|
|
cdata->sgls.keyed_sgl = 1;
|
|
cdata->sgls.sgl_offset = 1;
|
|
spdk_strcpy_pad(cdata->subnqn, subsystem->subnqn, sizeof(cdata->subnqn), '\0');
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "ctrlr data: maxcmd 0x%x\n", cdata->maxcmd);
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "sgls data: 0x%x\n", from_le32(&cdata->sgls));
|
|
|
|
/*
|
|
* NVM subsystem fields (reserved for discovery subsystems)
|
|
*/
|
|
if (subsystem->subtype == SPDK_NVMF_SUBTYPE_NVME) {
|
|
spdk_strcpy_pad(cdata->mn, MODEL_NUMBER, sizeof(cdata->mn), ' ');
|
|
spdk_strcpy_pad(cdata->sn, spdk_nvmf_subsystem_get_sn(subsystem), sizeof(cdata->sn), ' ');
|
|
cdata->aerl = 0;
|
|
cdata->kas = 10;
|
|
|
|
cdata->rab = 6;
|
|
cdata->ctratt.host_id_exhid_supported = 1;
|
|
cdata->aerl = 0;
|
|
cdata->frmw.slot1_ro = 1;
|
|
cdata->frmw.num_slots = 1;
|
|
|
|
cdata->sqes.min = 6;
|
|
cdata->sqes.max = 6;
|
|
cdata->cqes.min = 4;
|
|
cdata->cqes.max = 4;
|
|
cdata->nn = subsystem->max_nsid;
|
|
cdata->vwc.present = 1;
|
|
|
|
cdata->nvmf_specific.ioccsz = sizeof(struct spdk_nvme_cmd) / 16;
|
|
cdata->nvmf_specific.iorcsz = sizeof(struct spdk_nvme_cpl) / 16;
|
|
cdata->nvmf_specific.icdoff = 0; /* offset starts directly after SQE */
|
|
cdata->nvmf_specific.ctrattr.ctrlr_model = SPDK_NVMF_CTRLR_MODEL_DYNAMIC;
|
|
cdata->nvmf_specific.msdbd = 1; /* target supports single SGL in capsule */
|
|
|
|
/* TODO: this should be set by the transport */
|
|
cdata->nvmf_specific.ioccsz += tgt->opts.in_capsule_data_size / 16;
|
|
|
|
cdata->oncs.dsm = spdk_nvmf_ctrlr_dsm_supported(ctrlr);
|
|
cdata->oncs.write_zeroes = spdk_nvmf_ctrlr_write_zeroes_supported(ctrlr);
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "ext ctrlr data: ioccsz 0x%x\n",
|
|
cdata->nvmf_specific.ioccsz);
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "ext ctrlr data: iorcsz 0x%x\n",
|
|
cdata->nvmf_specific.iorcsz);
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "ext ctrlr data: icdoff 0x%x\n",
|
|
cdata->nvmf_specific.icdoff);
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "ext ctrlr data: ctrattr 0x%x\n",
|
|
*(uint8_t *)&cdata->nvmf_specific.ctrattr);
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "ext ctrlr data: msdbd 0x%x\n",
|
|
cdata->nvmf_specific.msdbd);
|
|
}
|
|
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_identify_active_ns_list(struct spdk_nvmf_subsystem *subsystem,
|
|
struct spdk_nvme_cmd *cmd,
|
|
struct spdk_nvme_cpl *rsp,
|
|
struct spdk_nvme_ns_list *ns_list)
|
|
{
|
|
struct spdk_nvmf_ns *ns;
|
|
uint32_t count = 0;
|
|
|
|
if (cmd->nsid >= 0xfffffffeUL) {
|
|
SPDK_ERRLOG("Identify Active Namespace List with invalid NSID %u\n", cmd->nsid);
|
|
rsp->status.sc = SPDK_NVME_SC_INVALID_NAMESPACE_OR_FORMAT;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
for (ns = spdk_nvmf_subsystem_get_first_ns(subsystem); ns != NULL;
|
|
ns = spdk_nvmf_subsystem_get_next_ns(subsystem, ns)) {
|
|
if (ns->id <= cmd->nsid) {
|
|
continue;
|
|
}
|
|
|
|
ns_list->ns_list[count++] = ns->id;
|
|
if (count == SPDK_COUNTOF(ns_list->ns_list)) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_identify(struct spdk_nvmf_request *req)
|
|
{
|
|
uint8_t cns;
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
struct spdk_nvme_cpl *rsp = &req->rsp->nvme_cpl;
|
|
struct spdk_nvmf_subsystem *subsystem = ctrlr->subsys;
|
|
|
|
if (req->data == NULL || req->length < 4096) {
|
|
SPDK_ERRLOG("identify command with invalid buffer\n");
|
|
rsp->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
rsp->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
cns = cmd->cdw10 & 0xFF;
|
|
|
|
if (subsystem->subtype == SPDK_NVMF_SUBTYPE_DISCOVERY &&
|
|
cns != SPDK_NVME_IDENTIFY_CTRLR) {
|
|
/* Discovery controllers only support Identify Controller */
|
|
goto invalid_cns;
|
|
}
|
|
|
|
switch (cns) {
|
|
case SPDK_NVME_IDENTIFY_NS:
|
|
return spdk_nvmf_ctrlr_identify_ns(subsystem, cmd, rsp, req->data);
|
|
case SPDK_NVME_IDENTIFY_CTRLR:
|
|
return spdk_nvmf_ctrlr_identify_ctrlr(ctrlr, req->data);
|
|
case SPDK_NVME_IDENTIFY_ACTIVE_NS_LIST:
|
|
return spdk_nvmf_ctrlr_identify_active_ns_list(subsystem, cmd, rsp, req->data);
|
|
default:
|
|
goto invalid_cns;
|
|
}
|
|
|
|
invalid_cns:
|
|
SPDK_ERRLOG("Identify command with unsupported CNS 0x%02x\n", cns);
|
|
rsp->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
rsp->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_abort(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvme_cpl *rsp = &req->rsp->nvme_cpl;
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
uint32_t cdw10 = cmd->cdw10;
|
|
uint16_t cid = cdw10 >> 16;
|
|
uint16_t sqid = cdw10 & 0xFFFFu;
|
|
struct spdk_nvmf_qpair *qpair;
|
|
struct spdk_nvmf_request *req_to_abort;
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "abort sqid=%u cid=%u\n", sqid, cid);
|
|
|
|
rsp->cdw0 = 1; /* Command not aborted */
|
|
|
|
qpair = spdk_nvmf_ctrlr_get_qpair(ctrlr, sqid);
|
|
if (qpair == NULL) {
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "sqid %u not found\n", sqid);
|
|
rsp->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
rsp->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
/*
|
|
* NOTE: This relies on the assumption that all connections for a ctrlr will be handled
|
|
* on the same thread. If this assumption becomes untrue, this will need to pass a message
|
|
* to the thread handling qpair, and the abort will need to be asynchronous.
|
|
*/
|
|
req_to_abort = spdk_nvmf_qpair_get_request(qpair, cid);
|
|
if (req_to_abort == NULL) {
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "cid %u not found\n", cid);
|
|
rsp->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
rsp->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
if (spdk_nvmf_request_abort(req_to_abort) == 0) {
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "abort ctrlr=%p req=%p sqid=%u cid=%u successful\n",
|
|
ctrlr, req_to_abort, sqid, cid);
|
|
rsp->cdw0 = 0; /* Command successfully aborted */
|
|
}
|
|
rsp->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
rsp->status.sc = SPDK_NVME_SC_SUCCESS;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_get_features(struct spdk_nvmf_request *req)
|
|
{
|
|
uint8_t feature;
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
struct spdk_nvme_cpl *response = &req->rsp->nvme_cpl;
|
|
|
|
feature = cmd->cdw10 & 0xff; /* mask out the FID value */
|
|
switch (feature) {
|
|
case SPDK_NVME_FEAT_NUMBER_OF_QUEUES:
|
|
return spdk_nvmf_ctrlr_get_features_number_of_queues(req);
|
|
case SPDK_NVME_FEAT_VOLATILE_WRITE_CACHE:
|
|
return spdk_nvmf_ctrlr_get_features_write_cache(req);
|
|
case SPDK_NVME_FEAT_KEEP_ALIVE_TIMER:
|
|
return spdk_nvmf_ctrlr_get_features_keep_alive_timer(req);
|
|
case SPDK_NVME_FEAT_ASYNC_EVENT_CONFIGURATION:
|
|
return spdk_nvmf_ctrlr_get_features_async_event_configuration(req);
|
|
case SPDK_NVME_FEAT_HOST_IDENTIFIER:
|
|
return spdk_nvmf_ctrlr_get_features_host_identifier(req);
|
|
default:
|
|
SPDK_ERRLOG("Get Features command with unsupported feature ID 0x%02x\n", feature);
|
|
response->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_set_features(struct spdk_nvmf_request *req)
|
|
{
|
|
uint8_t feature;
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
struct spdk_nvme_cpl *response = &req->rsp->nvme_cpl;
|
|
|
|
feature = cmd->cdw10 & 0xff; /* mask out the FID value */
|
|
switch (feature) {
|
|
case SPDK_NVME_FEAT_NUMBER_OF_QUEUES:
|
|
return spdk_nvmf_ctrlr_set_features_number_of_queues(req);
|
|
case SPDK_NVME_FEAT_KEEP_ALIVE_TIMER:
|
|
return spdk_nvmf_ctrlr_set_features_keep_alive_timer(req);
|
|
case SPDK_NVME_FEAT_ASYNC_EVENT_CONFIGURATION:
|
|
return spdk_nvmf_ctrlr_set_features_async_event_configuration(req);
|
|
case SPDK_NVME_FEAT_HOST_IDENTIFIER:
|
|
return spdk_nvmf_ctrlr_set_features_host_identifier(req);
|
|
default:
|
|
SPDK_ERRLOG("Set Features command with unsupported feature ID 0x%02x\n", feature);
|
|
response->status.sc = SPDK_NVME_SC_INVALID_FIELD;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
}
|
|
|
|
static int
|
|
spdk_nvmf_ctrlr_keep_alive(struct spdk_nvmf_request *req)
|
|
{
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Keep Alive\n");
|
|
/*
|
|
* To handle keep alive just clear or reset the
|
|
* ctrlr based keep alive duration counter.
|
|
* When added, a separate timer based process
|
|
* will monitor if the time since last recorded
|
|
* keep alive has exceeded the max duration and
|
|
* take appropriate action.
|
|
*/
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
int
|
|
spdk_nvmf_ctrlr_process_admin_cmd(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
struct spdk_nvme_cpl *response = &req->rsp->nvme_cpl;
|
|
|
|
if (ctrlr == NULL) {
|
|
SPDK_ERRLOG("Admin command sent before CONNECT\n");
|
|
response->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
response->status.sc = SPDK_NVME_SC_COMMAND_SEQUENCE_ERROR;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
if (ctrlr->vcprop.cc.bits.en != 1) {
|
|
SPDK_ERRLOG("Admin command sent to disabled controller\n");
|
|
response->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
response->status.sc = SPDK_NVME_SC_COMMAND_SEQUENCE_ERROR;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
if (req->data && spdk_nvme_opc_get_data_transfer(cmd->opc) == SPDK_NVME_DATA_CONTROLLER_TO_HOST) {
|
|
memset(req->data, 0, req->length);
|
|
}
|
|
|
|
if (ctrlr->subsys->subtype == SPDK_NVMF_SUBTYPE_DISCOVERY) {
|
|
/* Discovery controllers only support Get Log Page and Identify */
|
|
switch (cmd->opc) {
|
|
case SPDK_NVME_OPC_IDENTIFY:
|
|
case SPDK_NVME_OPC_GET_LOG_PAGE:
|
|
break;
|
|
default:
|
|
goto invalid_opcode;
|
|
}
|
|
}
|
|
|
|
switch (cmd->opc) {
|
|
case SPDK_NVME_OPC_GET_LOG_PAGE:
|
|
return spdk_nvmf_ctrlr_get_log_page(req);
|
|
case SPDK_NVME_OPC_IDENTIFY:
|
|
return spdk_nvmf_ctrlr_identify(req);
|
|
case SPDK_NVME_OPC_ABORT:
|
|
return spdk_nvmf_ctrlr_abort(req);
|
|
case SPDK_NVME_OPC_GET_FEATURES:
|
|
return spdk_nvmf_ctrlr_get_features(req);
|
|
case SPDK_NVME_OPC_SET_FEATURES:
|
|
return spdk_nvmf_ctrlr_set_features(req);
|
|
case SPDK_NVME_OPC_ASYNC_EVENT_REQUEST:
|
|
return spdk_nvmf_ctrlr_async_event_request(req);
|
|
case SPDK_NVME_OPC_KEEP_ALIVE:
|
|
return spdk_nvmf_ctrlr_keep_alive(req);
|
|
|
|
case SPDK_NVME_OPC_CREATE_IO_SQ:
|
|
case SPDK_NVME_OPC_CREATE_IO_CQ:
|
|
case SPDK_NVME_OPC_DELETE_IO_SQ:
|
|
case SPDK_NVME_OPC_DELETE_IO_CQ:
|
|
/* Create and Delete I/O CQ/SQ not allowed in NVMe-oF */
|
|
goto invalid_opcode;
|
|
|
|
default:
|
|
goto invalid_opcode;
|
|
}
|
|
|
|
invalid_opcode:
|
|
SPDK_ERRLOG("Unsupported admin opcode 0x%x\n", cmd->opc);
|
|
response->status.sct = SPDK_NVME_SCT_GENERIC;
|
|
response->status.sc = SPDK_NVME_SC_INVALID_OPCODE;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
|
|
int
|
|
spdk_nvmf_ctrlr_process_fabrics_cmd(struct spdk_nvmf_request *req)
|
|
{
|
|
struct spdk_nvmf_qpair *qpair = req->qpair;
|
|
struct spdk_nvmf_capsule_cmd *cap_hdr;
|
|
|
|
cap_hdr = &req->cmd->nvmf_cmd;
|
|
|
|
if (qpair->ctrlr == NULL) {
|
|
/* No ctrlr established yet; the only valid command is Connect */
|
|
if (cap_hdr->fctype == SPDK_NVMF_FABRIC_COMMAND_CONNECT) {
|
|
return spdk_nvmf_ctrlr_connect(req);
|
|
} else {
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Got fctype 0x%x, expected Connect\n",
|
|
cap_hdr->fctype);
|
|
req->rsp->nvme_cpl.status.sct = SPDK_NVME_SCT_GENERIC;
|
|
req->rsp->nvme_cpl.status.sc = SPDK_NVME_SC_COMMAND_SEQUENCE_ERROR;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
} else if (qpair->type == QPAIR_TYPE_AQ) {
|
|
/*
|
|
* Controller session is established, and this is an admin queue.
|
|
* Disallow Connect and allow other fabrics commands.
|
|
*/
|
|
switch (cap_hdr->fctype) {
|
|
case SPDK_NVMF_FABRIC_COMMAND_PROPERTY_SET:
|
|
return spdk_nvmf_property_set(req);
|
|
case SPDK_NVMF_FABRIC_COMMAND_PROPERTY_GET:
|
|
return spdk_nvmf_property_get(req);
|
|
default:
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "unknown fctype 0x%02x\n",
|
|
cap_hdr->fctype);
|
|
req->rsp->nvme_cpl.status.sct = SPDK_NVME_SCT_GENERIC;
|
|
req->rsp->nvme_cpl.status.sc = SPDK_NVME_SC_INVALID_OPCODE;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
} else {
|
|
/* Controller session is established, and this is an I/O queue */
|
|
/* For now, no I/O-specific Fabrics commands are implemented (other than Connect) */
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Unexpected I/O fctype 0x%x\n", cap_hdr->fctype);
|
|
req->rsp->nvme_cpl.status.sct = SPDK_NVME_SCT_GENERIC;
|
|
req->rsp->nvme_cpl.status.sc = SPDK_NVME_SC_INVALID_OPCODE;
|
|
return SPDK_NVMF_REQUEST_EXEC_STATUS_COMPLETE;
|
|
}
|
|
}
|