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-08 20:29:15 +00:00
|
|
|
|
2016-06-06 21:44:30 +00:00
|
|
|
#include "nvmf_internal.h"
|
2016-07-15 18:18:37 +00:00
|
|
|
#include "transport.h"
|
2016-09-19 17:01:52 +00:00
|
|
|
|
2017-12-06 02:07:47 +00:00
|
|
|
#include "spdk/event.h"
|
2017-08-18 01:20:49 +00:00
|
|
|
#include "spdk/likely.h"
|
2016-06-06 21:44:30 +00:00
|
|
|
#include "spdk/string.h"
|
|
|
|
#include "spdk/trace.h"
|
2016-06-22 23:23:36 +00:00
|
|
|
#include "spdk/nvmf_spec.h"
|
2018-03-02 00:59:50 +00:00
|
|
|
#include "spdk/uuid.h"
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2018-05-23 21:01:03 +00:00
|
|
|
#include "spdk/bdev_module.h"
|
2016-11-07 22:10:28 +00:00
|
|
|
#include "spdk_internal/log.h"
|
2018-01-09 21:39:00 +00:00
|
|
|
#include "spdk_internal/utf.h"
|
2016-11-07 22:10:28 +00:00
|
|
|
|
2017-12-29 18:00:09 +00:00
|
|
|
/*
|
|
|
|
* States for parsing valid domains in NQNs according to RFC 1034
|
|
|
|
*/
|
|
|
|
enum spdk_nvmf_nqn_domain_states {
|
|
|
|
/* First character of a domain must be a letter */
|
|
|
|
SPDK_NVMF_DOMAIN_ACCEPT_LETTER = 0,
|
|
|
|
|
|
|
|
/* Subsequent characters can be any of letter, digit, or hyphen */
|
|
|
|
SPDK_NVMF_DOMAIN_ACCEPT_LDH = 1,
|
|
|
|
|
|
|
|
/* A domain label must end with either a letter or digit */
|
|
|
|
SPDK_NVMF_DOMAIN_ACCEPT_ANY = 2
|
|
|
|
};
|
|
|
|
|
2018-04-04 16:57:58 +00:00
|
|
|
/* Returns true if is a valid ASCII string as defined by the NVMe spec */
|
|
|
|
static bool
|
|
|
|
spdk_nvmf_valid_ascii_string(const void *buf, size_t size)
|
|
|
|
{
|
|
|
|
const uint8_t *str = buf;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
if (str[i] < 0x20 || str[i] > 0x7E) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-08-23 17:10:07 +00:00
|
|
|
static bool
|
|
|
|
spdk_nvmf_valid_nqn(const char *nqn)
|
|
|
|
{
|
|
|
|
size_t len;
|
2018-03-02 00:59:50 +00:00
|
|
|
struct spdk_uuid uuid_value;
|
2018-04-04 17:00:17 +00:00
|
|
|
uint32_t i;
|
2018-01-09 21:39:00 +00:00
|
|
|
int bytes_consumed;
|
2018-04-04 17:00:17 +00:00
|
|
|
uint32_t domain_label_length;
|
2017-12-29 18:00:09 +00:00
|
|
|
char *reverse_domain_end;
|
2018-04-04 17:00:17 +00:00
|
|
|
uint32_t reverse_domain_end_index;
|
2017-12-29 18:00:09 +00:00
|
|
|
enum spdk_nvmf_nqn_domain_states domain_state = SPDK_NVMF_DOMAIN_ACCEPT_LETTER;
|
2016-08-23 17:10:07 +00:00
|
|
|
|
2017-12-29 18:00:09 +00:00
|
|
|
/* Check for length requirements */
|
2016-08-23 17:10:07 +00:00
|
|
|
len = strlen(nqn);
|
2017-05-18 17:00:36 +00:00
|
|
|
if (len > SPDK_NVMF_NQN_MAX_LEN) {
|
|
|
|
SPDK_ERRLOG("Invalid NQN \"%s\": length %zu > max %d\n", nqn, len, SPDK_NVMF_NQN_MAX_LEN);
|
2016-08-23 17:10:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-29 18:00:09 +00:00
|
|
|
/* The nqn must be at least as long as SPDK_NVMF_NQN_MIN_LEN to contain the necessary prefix. */
|
|
|
|
if (len < SPDK_NVMF_NQN_MIN_LEN) {
|
|
|
|
SPDK_ERRLOG("Invalid NQN \"%s\": length %zu < min %d\n", nqn, len, SPDK_NVMF_NQN_MIN_LEN);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for discovery controller nqn */
|
|
|
|
if (!strcmp(nqn, SPDK_NVMF_DISCOVERY_NQN)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for equality with the generic nqn structure of the form "nqn.2014-08.org.nvmexpress:uuid:11111111-2222-3333-4444-555555555555" */
|
|
|
|
if (!strncmp(nqn, SPDK_NVMF_NQN_UUID_PRE, SPDK_NVMF_NQN_UUID_PRE_LEN)) {
|
|
|
|
if (len != SPDK_NVMF_NQN_UUID_PRE_LEN + SPDK_NVMF_UUID_STRING_LEN) {
|
|
|
|
SPDK_ERRLOG("Invalid NQN \"%s\": uuid is not the correct length\n", nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-03-02 00:59:50 +00:00
|
|
|
if (spdk_uuid_parse(&uuid_value, &nqn[SPDK_NVMF_NQN_UUID_PRE_LEN])) {
|
2017-12-29 18:00:09 +00:00
|
|
|
SPDK_ERRLOG("Invalid NQN \"%s\": uuid is not formatted correctly\n", nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the nqn does not match the uuid structure, the next several checks validate the form "nqn.yyyy-mm.reverse.domain:user-string" */
|
|
|
|
|
2016-09-13 16:32:43 +00:00
|
|
|
if (strncmp(nqn, "nqn.", 4) != 0) {
|
2016-08-23 17:10:07 +00:00
|
|
|
SPDK_ERRLOG("Invalid NQN \"%s\": NQN must begin with \"nqn.\".\n", nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-29 18:00:09 +00:00
|
|
|
/* Check for yyyy-mm. */
|
2016-08-23 17:10:07 +00:00
|
|
|
if (!(isdigit(nqn[4]) && isdigit(nqn[5]) && isdigit(nqn[6]) && isdigit(nqn[7]) &&
|
|
|
|
nqn[8] == '-' && isdigit(nqn[9]) && isdigit(nqn[10]) && nqn[11] == '.')) {
|
|
|
|
SPDK_ERRLOG("Invalid date code in NQN \"%s\"\n", nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-29 18:00:09 +00:00
|
|
|
reverse_domain_end = strchr(nqn, ':');
|
|
|
|
if (reverse_domain_end != NULL && (reverse_domain_end_index = reverse_domain_end - nqn) < len - 1) {
|
|
|
|
} else {
|
|
|
|
SPDK_ERRLOG("Invalid NQN \"%s\". NQN must contain user specified name with a ':' as a prefix.\n",
|
|
|
|
nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for valid reverse domain */
|
|
|
|
domain_label_length = 0;
|
|
|
|
for (i = 12; i < reverse_domain_end_index; i++) {
|
|
|
|
if (domain_label_length > SPDK_DOMAIN_LABEL_MAX_LEN) {
|
|
|
|
SPDK_ERRLOG("Invalid domain name in NQN \"%s\". At least one Label is too long.\n", nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (domain_state) {
|
|
|
|
|
|
|
|
case SPDK_NVMF_DOMAIN_ACCEPT_LETTER: {
|
|
|
|
if (isalpha(nqn[i])) {
|
|
|
|
domain_state = SPDK_NVMF_DOMAIN_ACCEPT_ANY;
|
|
|
|
domain_label_length++;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
SPDK_ERRLOG("Invalid domain name in NQN \"%s\". Label names must start with a letter.\n", nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
case SPDK_NVMF_DOMAIN_ACCEPT_LDH: {
|
|
|
|
if (isalpha(nqn[i]) || isdigit(nqn[i])) {
|
|
|
|
domain_state = SPDK_NVMF_DOMAIN_ACCEPT_ANY;
|
|
|
|
domain_label_length++;
|
|
|
|
break;
|
|
|
|
} else if (nqn[i] == '-') {
|
|
|
|
if (i == reverse_domain_end_index - 1) {
|
|
|
|
SPDK_ERRLOG("Invalid domain name in NQN \"%s\". Label names must end with an alphanumeric symbol.\n",
|
|
|
|
nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
domain_state = SPDK_NVMF_DOMAIN_ACCEPT_LDH;
|
|
|
|
domain_label_length++;
|
|
|
|
break;
|
|
|
|
} else if (nqn[i] == '.') {
|
|
|
|
SPDK_ERRLOG("Invalid domain name in NQN \"%s\". Label names must end with an alphanumeric symbol.\n",
|
|
|
|
nqn);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
SPDK_ERRLOG("Invalid domain name in NQN \"%s\". Label names must contain only [a-z,A-Z,0-9,'-','.'].\n",
|
|
|
|
nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
case SPDK_NVMF_DOMAIN_ACCEPT_ANY: {
|
|
|
|
if (isalpha(nqn[i]) || isdigit(nqn[i])) {
|
|
|
|
domain_state = SPDK_NVMF_DOMAIN_ACCEPT_ANY;
|
|
|
|
domain_label_length++;
|
|
|
|
break;
|
|
|
|
} else if (nqn[i] == '-') {
|
|
|
|
if (i == reverse_domain_end_index - 1) {
|
|
|
|
SPDK_ERRLOG("Invalid domain name in NQN \"%s\". Label names must end with an alphanumeric symbol.\n",
|
|
|
|
nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
domain_state = SPDK_NVMF_DOMAIN_ACCEPT_LDH;
|
|
|
|
domain_label_length++;
|
|
|
|
break;
|
|
|
|
} else if (nqn[i] == '.') {
|
|
|
|
domain_state = SPDK_NVMF_DOMAIN_ACCEPT_LETTER;
|
|
|
|
domain_label_length = 0;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
SPDK_ERRLOG("Invalid domain name in NQN \"%s\". Label names must contain only [a-z,A-Z,0-9,'-','.'].\n",
|
|
|
|
nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-09 21:39:00 +00:00
|
|
|
|
|
|
|
i = reverse_domain_end_index + 1;
|
|
|
|
while (i < len) {
|
|
|
|
bytes_consumed = utf8_valid(&nqn[i], &nqn[len]);
|
|
|
|
if (bytes_consumed <= 0) {
|
|
|
|
SPDK_ERRLOG("Invalid domain name in NQN \"%s\". Label names must contain only valid utf-8.\n", nqn);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
i += bytes_consumed;
|
|
|
|
}
|
2016-08-23 17:10:07 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-06-06 21:44:30 +00:00
|
|
|
struct spdk_nvmf_subsystem *
|
2017-12-19 23:39:04 +00:00
|
|
|
spdk_nvmf_subsystem_create(struct spdk_nvmf_tgt *tgt,
|
2017-08-18 22:57:03 +00:00
|
|
|
const char *nqn,
|
2016-10-10 17:25:01 +00:00
|
|
|
enum spdk_nvmf_subtype type,
|
2017-08-28 21:21:41 +00:00
|
|
|
uint32_t num_ns)
|
2016-06-06 21:44:30 +00:00
|
|
|
{
|
|
|
|
struct spdk_nvmf_subsystem *subsystem;
|
2017-08-29 20:03:13 +00:00
|
|
|
uint32_t sid;
|
2016-06-06 21:44:30 +00:00
|
|
|
|
2018-03-10 00:13:35 +00:00
|
|
|
if (spdk_nvmf_tgt_find_subsystem(tgt, nqn)) {
|
|
|
|
SPDK_ERRLOG("Subsystem NQN '%s' already exists\n", nqn);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-10-10 17:25:01 +00:00
|
|
|
if (!spdk_nvmf_valid_nqn(nqn)) {
|
2016-08-23 17:10:07 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-08-24 20:48:59 +00:00
|
|
|
if (type == SPDK_NVMF_SUBTYPE_DISCOVERY && num_ns != 0) {
|
|
|
|
SPDK_ERRLOG("Discovery subsystem cannot have namespaces.\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-08-29 20:03:13 +00:00
|
|
|
/* Find a free subsystem id (sid) */
|
2018-10-19 20:19:09 +00:00
|
|
|
for (sid = 0; sid < tgt->max_subsystems; sid++) {
|
2017-08-29 20:03:13 +00:00
|
|
|
if (tgt->subsystems[sid] == NULL) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-10-19 20:19:09 +00:00
|
|
|
if (sid >= tgt->max_subsystems) {
|
2018-05-08 23:05:28 +00:00
|
|
|
return NULL;
|
2017-08-29 20:03:13 +00:00
|
|
|
}
|
|
|
|
|
2016-06-06 21:44:30 +00:00
|
|
|
subsystem = calloc(1, sizeof(struct spdk_nvmf_subsystem));
|
|
|
|
if (subsystem == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-02-27 04:54:59 +00:00
|
|
|
subsystem->thread = spdk_get_thread();
|
2017-12-19 23:39:04 +00:00
|
|
|
subsystem->state = SPDK_NVMF_SUBSYSTEM_INACTIVE;
|
2017-08-18 22:57:03 +00:00
|
|
|
subsystem->tgt = tgt;
|
2017-08-29 20:03:13 +00:00
|
|
|
subsystem->id = sid;
|
2016-10-10 17:25:01 +00:00
|
|
|
subsystem->subtype = type;
|
2017-08-24 20:48:59 +00:00
|
|
|
subsystem->max_nsid = num_ns;
|
2018-03-27 04:58:48 +00:00
|
|
|
subsystem->max_allowed_nsid = num_ns;
|
2017-08-29 20:32:41 +00:00
|
|
|
subsystem->next_cntlid = 0;
|
2016-10-10 17:25:01 +00:00
|
|
|
snprintf(subsystem->subnqn, sizeof(subsystem->subnqn), "%s", nqn);
|
2017-08-18 21:43:15 +00:00
|
|
|
TAILQ_INIT(&subsystem->listeners);
|
2016-07-15 21:16:59 +00:00
|
|
|
TAILQ_INIT(&subsystem->hosts);
|
2017-07-13 21:18:08 +00:00
|
|
|
TAILQ_INIT(&subsystem->ctrlrs);
|
2016-07-15 18:34:11 +00:00
|
|
|
|
2017-08-24 20:48:59 +00:00
|
|
|
if (num_ns != 0) {
|
2018-02-14 21:19:02 +00:00
|
|
|
subsystem->ns = calloc(num_ns, sizeof(struct spdk_nvmf_ns *));
|
2017-08-24 20:48:59 +00:00
|
|
|
if (subsystem->ns == NULL) {
|
|
|
|
SPDK_ERRLOG("Namespace memory allocation failed\n");
|
|
|
|
free(subsystem);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-10 22:59:57 +00:00
|
|
|
memset(subsystem->sn, '0', sizeof(subsystem->sn) - 1);
|
|
|
|
subsystem->sn[sizeof(subsystem->sn) - 1] = '\n';
|
|
|
|
|
2017-08-29 20:03:13 +00:00
|
|
|
tgt->subsystems[sid] = subsystem;
|
2017-08-18 22:57:03 +00:00
|
|
|
tgt->discovery_genctr++;
|
2016-06-06 21:44:30 +00:00
|
|
|
|
|
|
|
return subsystem;
|
|
|
|
}
|
|
|
|
|
2018-01-23 22:03:38 +00:00
|
|
|
static void
|
|
|
|
_spdk_nvmf_subsystem_remove_host(struct spdk_nvmf_subsystem *subsystem, struct spdk_nvmf_host *host)
|
|
|
|
{
|
|
|
|
TAILQ_REMOVE(&subsystem->hosts, host, link);
|
|
|
|
free(host->nqn);
|
|
|
|
free(host);
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:31:40 +00:00
|
|
|
static int _spdk_nvmf_subsystem_remove_ns(struct spdk_nvmf_subsystem *subsystem, uint32_t nsid);
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
void
|
|
|
|
spdk_nvmf_subsystem_destroy(struct spdk_nvmf_subsystem *subsystem)
|
2017-11-20 16:50:10 +00:00
|
|
|
{
|
2017-12-19 23:39:04 +00:00
|
|
|
struct spdk_nvmf_listener *listener, *listener_tmp;
|
|
|
|
struct spdk_nvmf_host *host, *host_tmp;
|
|
|
|
struct spdk_nvmf_ctrlr *ctrlr, *ctrlr_tmp;
|
|
|
|
struct spdk_nvmf_ns *ns;
|
|
|
|
|
|
|
|
if (!subsystem) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(subsystem->state == SPDK_NVMF_SUBSYSTEM_INACTIVE);
|
|
|
|
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "subsystem is %p\n", subsystem);
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(listener, &subsystem->listeners, link, listener_tmp) {
|
|
|
|
TAILQ_REMOVE(&subsystem->listeners, listener, link);
|
|
|
|
free(listener);
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(host, &subsystem->hosts, link, host_tmp) {
|
2018-01-23 22:03:38 +00:00
|
|
|
_spdk_nvmf_subsystem_remove_host(subsystem, host);
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(ctrlr, &subsystem->ctrlrs, link, ctrlr_tmp) {
|
|
|
|
spdk_nvmf_ctrlr_destruct(ctrlr);
|
|
|
|
}
|
2017-12-05 06:56:10 +00:00
|
|
|
|
2018-02-14 21:19:02 +00:00
|
|
|
ns = spdk_nvmf_subsystem_get_first_ns(subsystem);
|
|
|
|
while (ns != NULL) {
|
|
|
|
struct spdk_nvmf_ns *next_ns = spdk_nvmf_subsystem_get_next_ns(subsystem, ns);
|
|
|
|
|
2018-04-18 16:31:40 +00:00
|
|
|
_spdk_nvmf_subsystem_remove_ns(subsystem, ns->opts.nsid);
|
2018-02-14 21:19:02 +00:00
|
|
|
ns = next_ns;
|
2017-12-05 06:56:10 +00:00
|
|
|
}
|
2017-11-20 16:50:10 +00:00
|
|
|
|
|
|
|
free(subsystem->ns);
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
subsystem->tgt->subsystems[subsystem->id] = NULL;
|
|
|
|
subsystem->tgt->discovery_genctr++;
|
2017-11-20 16:50:10 +00:00
|
|
|
|
|
|
|
free(subsystem);
|
|
|
|
}
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
static int
|
|
|
|
spdk_nvmf_subsystem_set_state(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
enum spdk_nvmf_subsystem_state state)
|
|
|
|
{
|
|
|
|
enum spdk_nvmf_subsystem_state actual_old_state, expected_old_state;
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_INACTIVE:
|
|
|
|
expected_old_state = SPDK_NVMF_SUBSYSTEM_DEACTIVATING;
|
|
|
|
break;
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_ACTIVATING:
|
|
|
|
expected_old_state = SPDK_NVMF_SUBSYSTEM_INACTIVE;
|
|
|
|
break;
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_ACTIVE:
|
|
|
|
expected_old_state = SPDK_NVMF_SUBSYSTEM_ACTIVATING;
|
|
|
|
break;
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_PAUSING:
|
|
|
|
expected_old_state = SPDK_NVMF_SUBSYSTEM_ACTIVE;
|
|
|
|
break;
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_PAUSED:
|
|
|
|
expected_old_state = SPDK_NVMF_SUBSYSTEM_PAUSING;
|
|
|
|
break;
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_RESUMING:
|
|
|
|
expected_old_state = SPDK_NVMF_SUBSYSTEM_PAUSED;
|
|
|
|
break;
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_DEACTIVATING:
|
|
|
|
expected_old_state = SPDK_NVMF_SUBSYSTEM_ACTIVE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(false);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
actual_old_state = __sync_val_compare_and_swap(&subsystem->state, expected_old_state, state);
|
|
|
|
if (actual_old_state != expected_old_state) {
|
|
|
|
if (actual_old_state == SPDK_NVMF_SUBSYSTEM_RESUMING &&
|
|
|
|
state == SPDK_NVMF_SUBSYSTEM_ACTIVE) {
|
|
|
|
expected_old_state = SPDK_NVMF_SUBSYSTEM_RESUMING;
|
|
|
|
}
|
2018-08-20 22:48:27 +00:00
|
|
|
/* This is for the case when activating the subsystem fails. */
|
|
|
|
if (actual_old_state == SPDK_NVMF_SUBSYSTEM_ACTIVATING &&
|
|
|
|
state == SPDK_NVMF_SUBSYSTEM_DEACTIVATING) {
|
|
|
|
expected_old_state = SPDK_NVMF_SUBSYSTEM_ACTIVATING;
|
|
|
|
}
|
2017-12-19 23:39:04 +00:00
|
|
|
actual_old_state = __sync_val_compare_and_swap(&subsystem->state, expected_old_state, state);
|
|
|
|
}
|
|
|
|
assert(actual_old_state == expected_old_state);
|
|
|
|
return actual_old_state - expected_old_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct subsystem_state_change_ctx {
|
|
|
|
struct spdk_nvmf_subsystem *subsystem;
|
|
|
|
|
|
|
|
enum spdk_nvmf_subsystem_state requested_state;
|
|
|
|
|
|
|
|
spdk_nvmf_subsystem_state_change_done cb_fn;
|
|
|
|
void *cb_arg;
|
|
|
|
};
|
|
|
|
|
2017-12-11 22:14:19 +00:00
|
|
|
static void
|
2017-12-19 23:39:04 +00:00
|
|
|
subsystem_state_change_done(struct spdk_io_channel_iter *i, int status)
|
2017-11-20 16:50:10 +00:00
|
|
|
{
|
2017-12-19 23:39:04 +00:00
|
|
|
struct subsystem_state_change_ctx *ctx = spdk_io_channel_iter_get_ctx(i);
|
2017-11-20 16:50:10 +00:00
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
if (status == 0) {
|
|
|
|
status = spdk_nvmf_subsystem_set_state(ctx->subsystem, ctx->requested_state);
|
|
|
|
if (status) {
|
|
|
|
status = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-10 21:03:24 +00:00
|
|
|
if (ctx->cb_fn) {
|
|
|
|
ctx->cb_fn(ctx->subsystem, ctx->cb_arg, status);
|
|
|
|
}
|
2017-12-19 23:39:04 +00:00
|
|
|
free(ctx);
|
|
|
|
}
|
|
|
|
|
2018-07-13 23:23:23 +00:00
|
|
|
static void
|
|
|
|
subsystem_state_change_continue(void *ctx, int status)
|
|
|
|
{
|
|
|
|
struct spdk_io_channel_iter *i = ctx;
|
|
|
|
spdk_for_each_channel_continue(i, status);
|
|
|
|
}
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
static void
|
|
|
|
subsystem_state_change_on_pg(struct spdk_io_channel_iter *i)
|
|
|
|
{
|
|
|
|
struct subsystem_state_change_ctx *ctx;
|
|
|
|
struct spdk_io_channel *ch;
|
|
|
|
struct spdk_nvmf_poll_group *group;
|
|
|
|
|
|
|
|
ctx = spdk_io_channel_iter_get_ctx(i);
|
|
|
|
ch = spdk_io_channel_iter_get_channel(i);
|
|
|
|
group = spdk_io_channel_get_ctx(ch);
|
|
|
|
|
|
|
|
switch (ctx->requested_state) {
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_INACTIVE:
|
2018-07-13 23:23:23 +00:00
|
|
|
spdk_nvmf_poll_group_remove_subsystem(group, ctx->subsystem, subsystem_state_change_continue, i);
|
2017-12-19 23:39:04 +00:00
|
|
|
break;
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_ACTIVE:
|
|
|
|
if (ctx->subsystem->state == SPDK_NVMF_SUBSYSTEM_ACTIVATING) {
|
2018-07-13 23:23:23 +00:00
|
|
|
spdk_nvmf_poll_group_add_subsystem(group, ctx->subsystem, subsystem_state_change_continue, i);
|
2017-12-19 23:39:04 +00:00
|
|
|
} else if (ctx->subsystem->state == SPDK_NVMF_SUBSYSTEM_RESUMING) {
|
2018-07-13 23:23:23 +00:00
|
|
|
spdk_nvmf_poll_group_resume_subsystem(group, ctx->subsystem, subsystem_state_change_continue, i);
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_PAUSED:
|
2018-07-13 23:23:23 +00:00
|
|
|
spdk_nvmf_poll_group_pause_subsystem(group, ctx->subsystem, subsystem_state_change_continue, i);
|
2017-12-19 23:39:04 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(false);
|
|
|
|
break;
|
|
|
|
}
|
2017-11-20 16:50:10 +00:00
|
|
|
}
|
|
|
|
|
2018-01-10 21:03:24 +00:00
|
|
|
static int
|
2017-12-19 23:39:04 +00:00
|
|
|
spdk_nvmf_subsystem_state_change(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
enum spdk_nvmf_subsystem_state requested_state,
|
|
|
|
spdk_nvmf_subsystem_state_change_done cb_fn,
|
|
|
|
void *cb_arg)
|
2016-06-06 21:44:30 +00:00
|
|
|
{
|
2017-12-19 23:39:04 +00:00
|
|
|
struct subsystem_state_change_ctx *ctx;
|
|
|
|
enum spdk_nvmf_subsystem_state intermediate_state;
|
|
|
|
int rc;
|
2016-07-11 20:31:46 +00:00
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
switch (requested_state) {
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_INACTIVE:
|
|
|
|
intermediate_state = SPDK_NVMF_SUBSYSTEM_DEACTIVATING;
|
|
|
|
break;
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_ACTIVE:
|
|
|
|
if (subsystem->state == SPDK_NVMF_SUBSYSTEM_PAUSED) {
|
|
|
|
intermediate_state = SPDK_NVMF_SUBSYSTEM_RESUMING;
|
|
|
|
} else {
|
|
|
|
intermediate_state = SPDK_NVMF_SUBSYSTEM_ACTIVATING;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SPDK_NVMF_SUBSYSTEM_PAUSED:
|
|
|
|
intermediate_state = SPDK_NVMF_SUBSYSTEM_PAUSING;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(false);
|
2018-01-10 21:03:24 +00:00
|
|
|
return -EINVAL;
|
2016-09-13 02:25:57 +00:00
|
|
|
}
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
ctx = calloc(1, sizeof(*ctx));
|
|
|
|
if (!ctx) {
|
2018-01-10 21:03:24 +00:00
|
|
|
return -ENOMEM;
|
2016-07-15 21:16:59 +00:00
|
|
|
}
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
rc = spdk_nvmf_subsystem_set_state(subsystem, intermediate_state);
|
|
|
|
if (rc) {
|
|
|
|
free(ctx);
|
2018-01-10 21:03:24 +00:00
|
|
|
return rc;
|
2016-07-11 20:31:46 +00:00
|
|
|
}
|
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
ctx->subsystem = subsystem;
|
|
|
|
ctx->requested_state = requested_state;
|
|
|
|
ctx->cb_fn = cb_fn;
|
|
|
|
ctx->cb_arg = cb_arg;
|
2016-09-19 20:29:17 +00:00
|
|
|
|
2017-11-20 16:50:10 +00:00
|
|
|
spdk_for_each_channel(subsystem->tgt,
|
2017-12-19 23:39:04 +00:00
|
|
|
subsystem_state_change_on_pg,
|
|
|
|
ctx,
|
|
|
|
subsystem_state_change_done);
|
2018-01-10 21:03:24 +00:00
|
|
|
|
|
|
|
return 0;
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
|
2018-01-10 21:03:24 +00:00
|
|
|
int
|
2017-12-19 23:39:04 +00:00
|
|
|
spdk_nvmf_subsystem_start(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
spdk_nvmf_subsystem_state_change_done cb_fn,
|
|
|
|
void *cb_arg)
|
|
|
|
{
|
2018-01-10 21:03:24 +00:00
|
|
|
return spdk_nvmf_subsystem_state_change(subsystem, SPDK_NVMF_SUBSYSTEM_ACTIVE, cb_fn, cb_arg);
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
|
2018-01-10 21:03:24 +00:00
|
|
|
int
|
2017-12-19 23:39:04 +00:00
|
|
|
spdk_nvmf_subsystem_stop(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
spdk_nvmf_subsystem_state_change_done cb_fn,
|
|
|
|
void *cb_arg)
|
|
|
|
{
|
2018-01-10 21:03:24 +00:00
|
|
|
return spdk_nvmf_subsystem_state_change(subsystem, SPDK_NVMF_SUBSYSTEM_INACTIVE, cb_fn, cb_arg);
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
|
2018-01-10 21:03:24 +00:00
|
|
|
int
|
2017-12-19 23:39:04 +00:00
|
|
|
spdk_nvmf_subsystem_pause(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
spdk_nvmf_subsystem_state_change_done cb_fn,
|
|
|
|
void *cb_arg)
|
|
|
|
{
|
2018-01-10 21:03:24 +00:00
|
|
|
return spdk_nvmf_subsystem_state_change(subsystem, SPDK_NVMF_SUBSYSTEM_PAUSED, cb_fn, cb_arg);
|
2017-12-19 23:39:04 +00:00
|
|
|
}
|
|
|
|
|
2018-01-10 21:03:24 +00:00
|
|
|
int
|
2017-12-19 23:39:04 +00:00
|
|
|
spdk_nvmf_subsystem_resume(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
spdk_nvmf_subsystem_state_change_done cb_fn,
|
|
|
|
void *cb_arg)
|
|
|
|
{
|
2018-01-10 21:03:24 +00:00
|
|
|
return spdk_nvmf_subsystem_state_change(subsystem, SPDK_NVMF_SUBSYSTEM_ACTIVE, cb_fn, cb_arg);
|
2016-06-06 21:44:30 +00:00
|
|
|
}
|
|
|
|
|
2017-11-20 18:16:06 +00:00
|
|
|
struct spdk_nvmf_subsystem *
|
|
|
|
spdk_nvmf_subsystem_get_first(struct spdk_nvmf_tgt *tgt)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_subsystem *subsystem;
|
|
|
|
uint32_t sid;
|
|
|
|
|
2018-10-19 20:19:09 +00:00
|
|
|
for (sid = 0; sid < tgt->max_subsystems; sid++) {
|
2017-11-20 18:16:06 +00:00
|
|
|
subsystem = tgt->subsystems[sid];
|
|
|
|
if (subsystem) {
|
|
|
|
return subsystem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_nvmf_subsystem *
|
|
|
|
spdk_nvmf_subsystem_get_next(struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
uint32_t sid;
|
|
|
|
struct spdk_nvmf_tgt *tgt;
|
|
|
|
|
|
|
|
if (!subsystem) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
tgt = subsystem->tgt;
|
|
|
|
|
2018-10-19 20:19:09 +00:00
|
|
|
for (sid = subsystem->id + 1; sid < tgt->max_subsystems; sid++) {
|
2017-11-20 18:16:06 +00:00
|
|
|
subsystem = tgt->subsystems[sid];
|
|
|
|
if (subsystem) {
|
|
|
|
return subsystem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-08-18 21:08:29 +00:00
|
|
|
|
2018-01-23 22:03:38 +00:00
|
|
|
static struct spdk_nvmf_host *
|
|
|
|
_spdk_nvmf_subsystem_find_host(struct spdk_nvmf_subsystem *subsystem, const char *hostnqn)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_host *host = NULL;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(host, &subsystem->hosts, link) {
|
|
|
|
if (strcmp(hostnqn, host->nqn) == 0) {
|
|
|
|
return host;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-08-18 21:08:29 +00:00
|
|
|
int
|
|
|
|
spdk_nvmf_subsystem_add_host(struct spdk_nvmf_subsystem *subsystem, const char *hostnqn)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_host *host;
|
|
|
|
|
|
|
|
if (!spdk_nvmf_valid_nqn(hostnqn)) {
|
2018-01-17 22:33:27 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(subsystem->state == SPDK_NVMF_SUBSYSTEM_INACTIVE ||
|
|
|
|
subsystem->state == SPDK_NVMF_SUBSYSTEM_PAUSED)) {
|
|
|
|
return -EAGAIN;
|
2017-08-18 21:08:29 +00:00
|
|
|
}
|
|
|
|
|
2018-01-23 22:03:38 +00:00
|
|
|
if (_spdk_nvmf_subsystem_find_host(subsystem, hostnqn)) {
|
|
|
|
/* This subsystem already allows the specified host. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-18 21:08:29 +00:00
|
|
|
host = calloc(1, sizeof(*host));
|
|
|
|
if (!host) {
|
2018-01-17 22:33:27 +00:00
|
|
|
return -ENOMEM;
|
2017-08-18 21:08:29 +00:00
|
|
|
}
|
|
|
|
host->nqn = strdup(hostnqn);
|
|
|
|
if (!host->nqn) {
|
|
|
|
free(host);
|
2018-01-17 22:33:27 +00:00
|
|
|
return -ENOMEM;
|
2017-08-18 21:08:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_INSERT_HEAD(&subsystem->hosts, host, link);
|
2017-08-18 22:26:41 +00:00
|
|
|
subsystem->tgt->discovery_genctr++;
|
2017-08-18 21:08:29 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-23 22:03:38 +00:00
|
|
|
int
|
|
|
|
spdk_nvmf_subsystem_remove_host(struct spdk_nvmf_subsystem *subsystem, const char *hostnqn)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_host *host;
|
|
|
|
|
|
|
|
if (!(subsystem->state == SPDK_NVMF_SUBSYSTEM_INACTIVE ||
|
|
|
|
subsystem->state == SPDK_NVMF_SUBSYSTEM_PAUSED)) {
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
host = _spdk_nvmf_subsystem_find_host(subsystem, hostnqn);
|
|
|
|
if (host == NULL) {
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
_spdk_nvmf_subsystem_remove_host(subsystem, host);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-01-17 22:33:27 +00:00
|
|
|
int
|
2017-08-30 20:21:12 +00:00
|
|
|
spdk_nvmf_subsystem_set_allow_any_host(struct spdk_nvmf_subsystem *subsystem, bool allow_any_host)
|
|
|
|
{
|
2018-01-17 22:33:27 +00:00
|
|
|
if (!(subsystem->state == SPDK_NVMF_SUBSYSTEM_INACTIVE ||
|
|
|
|
subsystem->state == SPDK_NVMF_SUBSYSTEM_PAUSED)) {
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
2017-08-30 20:21:12 +00:00
|
|
|
subsystem->allow_any_host = allow_any_host;
|
2018-01-17 22:33:27 +00:00
|
|
|
|
|
|
|
return 0;
|
2017-08-30 20:21:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
spdk_nvmf_subsystem_get_allow_any_host(const struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
return subsystem->allow_any_host;
|
|
|
|
}
|
|
|
|
|
2017-08-18 21:08:29 +00:00
|
|
|
bool
|
|
|
|
spdk_nvmf_subsystem_host_allowed(struct spdk_nvmf_subsystem *subsystem, const char *hostnqn)
|
|
|
|
{
|
|
|
|
if (!hostnqn) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-08-30 20:21:12 +00:00
|
|
|
if (subsystem->allow_any_host) {
|
2017-08-18 21:08:29 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-23 22:03:38 +00:00
|
|
|
return _spdk_nvmf_subsystem_find_host(subsystem, hostnqn) != NULL;
|
2017-08-18 21:08:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_nvmf_host *
|
|
|
|
spdk_nvmf_subsystem_get_first_host(struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
return TAILQ_FIRST(&subsystem->hosts);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct spdk_nvmf_host *
|
|
|
|
spdk_nvmf_subsystem_get_next_host(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
struct spdk_nvmf_host *prev_host)
|
|
|
|
{
|
|
|
|
return TAILQ_NEXT(prev_host, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
spdk_nvmf_host_get_nqn(struct spdk_nvmf_host *host)
|
|
|
|
{
|
|
|
|
return host->nqn;
|
|
|
|
}
|
|
|
|
|
2018-02-06 15:24:02 +00:00
|
|
|
static struct spdk_nvmf_listener *
|
|
|
|
_spdk_nvmf_subsystem_find_listener(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
const struct spdk_nvme_transport_id *trid)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_listener *listener;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(listener, &subsystem->listeners, link) {
|
|
|
|
if (spdk_nvme_transport_id_compare(&listener->trid, trid) == 0) {
|
|
|
|
return listener;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-02-20 04:49:39 +00:00
|
|
|
int
|
|
|
|
spdk_nvmf_subsystem_add_listener(struct spdk_nvmf_subsystem *subsystem,
|
2017-08-23 17:23:44 +00:00
|
|
|
struct spdk_nvme_transport_id *trid)
|
2017-02-20 04:49:39 +00:00
|
|
|
{
|
2017-09-11 20:35:39 +00:00
|
|
|
struct spdk_nvmf_transport *transport;
|
2017-08-18 21:43:15 +00:00
|
|
|
struct spdk_nvmf_listener *listener;
|
2017-02-20 04:49:39 +00:00
|
|
|
|
2018-01-17 22:33:27 +00:00
|
|
|
if (!(subsystem->state == SPDK_NVMF_SUBSYSTEM_INACTIVE ||
|
|
|
|
subsystem->state == SPDK_NVMF_SUBSYSTEM_PAUSED)) {
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
2018-02-06 15:24:02 +00:00
|
|
|
if (_spdk_nvmf_subsystem_find_listener(subsystem, trid)) {
|
|
|
|
/* Listener already exists in this subsystem */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-09-11 20:35:39 +00:00
|
|
|
transport = spdk_nvmf_tgt_get_transport(subsystem->tgt, trid->trtype);
|
|
|
|
if (transport == NULL) {
|
|
|
|
SPDK_ERRLOG("Unknown transport type %d\n", trid->trtype);
|
2018-01-17 22:33:27 +00:00
|
|
|
return -EINVAL;
|
2017-09-11 20:35:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-18 21:43:15 +00:00
|
|
|
listener = calloc(1, sizeof(*listener));
|
|
|
|
if (!listener) {
|
2018-01-17 22:33:27 +00:00
|
|
|
return -ENOMEM;
|
2017-02-20 04:49:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-23 17:23:44 +00:00
|
|
|
listener->trid = *trid;
|
2017-09-11 20:35:39 +00:00
|
|
|
listener->transport = transport;
|
2017-02-20 04:49:39 +00:00
|
|
|
|
2017-08-18 21:43:15 +00:00
|
|
|
TAILQ_INSERT_HEAD(&subsystem->listeners, listener, link);
|
2018-02-06 16:00:03 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
spdk_nvmf_subsystem_remove_listener(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
const struct spdk_nvme_transport_id *trid)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_listener *listener;
|
|
|
|
|
|
|
|
if (!(subsystem->state == SPDK_NVMF_SUBSYSTEM_INACTIVE ||
|
|
|
|
subsystem->state == SPDK_NVMF_SUBSYSTEM_PAUSED)) {
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
listener = _spdk_nvmf_subsystem_find_listener(subsystem, trid);
|
|
|
|
if (listener == NULL) {
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_REMOVE(&subsystem->listeners, listener, link);
|
|
|
|
free(listener);
|
2017-02-20 04:49:39 +00:00
|
|
|
|
2016-06-06 21:44:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-02-20 04:49:39 +00:00
|
|
|
bool
|
|
|
|
spdk_nvmf_subsystem_listener_allowed(struct spdk_nvmf_subsystem *subsystem,
|
2017-08-23 17:23:44 +00:00
|
|
|
struct spdk_nvme_transport_id *trid)
|
2017-02-20 04:49:39 +00:00
|
|
|
{
|
2017-08-18 21:43:15 +00:00
|
|
|
struct spdk_nvmf_listener *listener;
|
2017-02-20 04:49:39 +00:00
|
|
|
|
2018-09-07 21:05:01 +00:00
|
|
|
if (!strcmp(subsystem->subnqn, SPDK_NVMF_DISCOVERY_NQN)) {
|
2017-02-20 04:49:39 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-08-18 21:43:15 +00:00
|
|
|
TAILQ_FOREACH(listener, &subsystem->listeners, link) {
|
2017-08-23 17:23:44 +00:00
|
|
|
if (spdk_nvme_transport_id_compare(&listener->trid, trid) == 0) {
|
2017-02-20 04:49:39 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-08-18 21:43:15 +00:00
|
|
|
struct spdk_nvmf_listener *
|
|
|
|
spdk_nvmf_subsystem_get_first_listener(struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
return TAILQ_FIRST(&subsystem->listeners);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_nvmf_listener *
|
|
|
|
spdk_nvmf_subsystem_get_next_listener(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
struct spdk_nvmf_listener *prev_listener)
|
|
|
|
{
|
|
|
|
return TAILQ_NEXT(prev_listener, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct spdk_nvme_transport_id *
|
|
|
|
spdk_nvmf_listener_get_trid(struct spdk_nvmf_listener *listener)
|
|
|
|
{
|
2017-08-23 17:23:44 +00:00
|
|
|
return &listener->trid;
|
2017-08-18 21:43:15 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 16:31:40 +00:00
|
|
|
struct subsystem_update_ns_ctx {
|
|
|
|
struct spdk_nvmf_subsystem *subsystem;
|
|
|
|
|
|
|
|
spdk_nvmf_subsystem_state_change_done cb_fn;
|
|
|
|
void *cb_arg;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
subsystem_update_ns_done(struct spdk_io_channel_iter *i, int status)
|
|
|
|
{
|
|
|
|
struct subsystem_update_ns_ctx *ctx = spdk_io_channel_iter_get_ctx(i);
|
|
|
|
|
|
|
|
if (ctx->cb_fn) {
|
|
|
|
ctx->cb_fn(ctx->subsystem, ctx->cb_arg, status);
|
|
|
|
}
|
|
|
|
free(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
subsystem_update_ns_on_pg(struct spdk_io_channel_iter *i)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct subsystem_update_ns_ctx *ctx;
|
|
|
|
struct spdk_nvmf_poll_group *group;
|
|
|
|
struct spdk_nvmf_subsystem *subsystem;
|
|
|
|
|
|
|
|
ctx = spdk_io_channel_iter_get_ctx(i);
|
|
|
|
group = spdk_io_channel_get_ctx(spdk_io_channel_iter_get_channel(i));
|
|
|
|
subsystem = ctx->subsystem;
|
|
|
|
|
|
|
|
rc = spdk_nvmf_poll_group_update_subsystem(group, subsystem);
|
|
|
|
spdk_for_each_channel_continue(i, rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
spdk_nvmf_subsystem_update_ns(struct spdk_nvmf_subsystem *subsystem, spdk_channel_for_each_cpl cpl,
|
|
|
|
void *ctx)
|
|
|
|
{
|
|
|
|
spdk_for_each_channel(subsystem->tgt,
|
|
|
|
subsystem_update_ns_on_pg,
|
|
|
|
ctx,
|
|
|
|
cpl);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-28 01:05:49 +00:00
|
|
|
static void
|
|
|
|
spdk_nvmf_subsystem_ns_changed(struct spdk_nvmf_subsystem *subsystem, uint32_t nsid)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_ctrlr *ctrlr;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(ctrlr, &subsystem->ctrlrs, link) {
|
2018-03-23 21:20:04 +00:00
|
|
|
spdk_nvmf_ctrlr_ns_changed(ctrlr, nsid);
|
2018-03-28 01:05:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-18 16:31:40 +00:00
|
|
|
static int
|
|
|
|
_spdk_nvmf_subsystem_remove_ns(struct spdk_nvmf_subsystem *subsystem, uint32_t nsid)
|
2017-12-14 02:38:18 +00:00
|
|
|
{
|
|
|
|
struct spdk_nvmf_ns *ns;
|
2019-02-28 02:50:03 +00:00
|
|
|
struct spdk_nvmf_registrant *reg, *reg_tmp;
|
2017-12-14 02:38:18 +00:00
|
|
|
|
2018-01-09 22:11:30 +00:00
|
|
|
assert(subsystem->state == SPDK_NVMF_SUBSYSTEM_PAUSED ||
|
|
|
|
subsystem->state == SPDK_NVMF_SUBSYSTEM_INACTIVE);
|
|
|
|
|
2017-12-14 02:38:18 +00:00
|
|
|
if (nsid == 0 || nsid > subsystem->max_nsid) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-01-17 22:33:27 +00:00
|
|
|
if (!(subsystem->state == SPDK_NVMF_SUBSYSTEM_INACTIVE ||
|
|
|
|
subsystem->state == SPDK_NVMF_SUBSYSTEM_PAUSED)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-02-14 21:19:02 +00:00
|
|
|
ns = subsystem->ns[nsid - 1];
|
|
|
|
if (!ns) {
|
2017-12-14 02:38:18 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-02-14 21:19:02 +00:00
|
|
|
subsystem->ns[nsid - 1] = NULL;
|
|
|
|
|
2019-02-28 02:50:03 +00:00
|
|
|
TAILQ_FOREACH_SAFE(reg, &ns->registrants, link, reg_tmp) {
|
|
|
|
TAILQ_REMOVE(&ns->registrants, reg, link);
|
|
|
|
free(reg);
|
|
|
|
}
|
2018-07-26 05:34:52 +00:00
|
|
|
spdk_bdev_module_release_bdev(ns->bdev);
|
2017-12-19 23:39:04 +00:00
|
|
|
spdk_bdev_close(ns->desc);
|
2018-02-14 21:19:02 +00:00
|
|
|
free(ns);
|
2017-11-20 17:45:39 +00:00
|
|
|
|
2018-03-28 01:05:49 +00:00
|
|
|
spdk_nvmf_subsystem_ns_changed(subsystem, nsid);
|
2018-02-06 05:16:08 +00:00
|
|
|
|
2017-12-19 23:39:04 +00:00
|
|
|
return 0;
|
2017-11-20 17:45:39 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 16:31:40 +00:00
|
|
|
int
|
|
|
|
spdk_nvmf_subsystem_remove_ns(struct spdk_nvmf_subsystem *subsystem, uint32_t nsid,
|
|
|
|
spdk_nvmf_subsystem_state_change_done cb_fn, void *cb_arg)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
struct subsystem_update_ns_ctx *ctx;
|
|
|
|
|
|
|
|
rc = _spdk_nvmf_subsystem_remove_ns(subsystem, nsid);
|
|
|
|
if (rc < 0) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx = calloc(1, sizeof(*ctx));
|
|
|
|
|
|
|
|
if (ctx == NULL) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->subsystem = subsystem;
|
|
|
|
ctx->cb_fn = cb_fn;
|
|
|
|
ctx->cb_arg = cb_arg;
|
|
|
|
|
|
|
|
spdk_nvmf_subsystem_update_ns(subsystem, subsystem_update_ns_done, ctx);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_spdk_nvmf_ns_hot_remove_done(struct spdk_nvmf_subsystem *subsystem, void *cb_arg, int status)
|
|
|
|
{
|
|
|
|
if (status != 0) {
|
|
|
|
SPDK_ERRLOG("Failed to make changes to NVMe-oF subsystem with id %u\n", subsystem->id);
|
|
|
|
}
|
|
|
|
spdk_nvmf_subsystem_resume(subsystem, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2017-12-06 02:07:47 +00:00
|
|
|
static void
|
2018-01-09 22:11:30 +00:00
|
|
|
_spdk_nvmf_ns_hot_remove(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
void *cb_arg, int status)
|
2017-12-06 02:07:47 +00:00
|
|
|
{
|
2018-01-09 22:11:30 +00:00
|
|
|
struct spdk_nvmf_ns *ns = cb_arg;
|
2017-12-06 02:07:47 +00:00
|
|
|
|
2018-04-18 16:31:40 +00:00
|
|
|
spdk_nvmf_subsystem_remove_ns(subsystem, ns->opts.nsid, _spdk_nvmf_ns_hot_remove_done,
|
|
|
|
subsystem);
|
2017-12-06 02:07:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
spdk_nvmf_ns_hot_remove(void *remove_ctx)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_ns *ns = remove_ctx;
|
2018-01-09 22:11:30 +00:00
|
|
|
int rc;
|
2017-12-06 02:07:47 +00:00
|
|
|
|
2018-01-09 22:11:30 +00:00
|
|
|
rc = spdk_nvmf_subsystem_pause(ns->subsystem, _spdk_nvmf_ns_hot_remove, ns);
|
|
|
|
if (rc) {
|
|
|
|
SPDK_ERRLOG("Unable to pause subsystem to process namespace removal!\n");
|
|
|
|
}
|
2017-12-06 02:07:47 +00:00
|
|
|
}
|
|
|
|
|
2017-08-22 15:54:12 +00:00
|
|
|
void
|
|
|
|
spdk_nvmf_ns_opts_get_defaults(struct spdk_nvmf_ns_opts *opts, size_t opts_size)
|
|
|
|
{
|
|
|
|
/* All current fields are set to 0 by default. */
|
|
|
|
memset(opts, 0, opts_size);
|
|
|
|
}
|
|
|
|
|
2018-07-26 05:34:52 +00:00
|
|
|
/* Dummy bdev module used to to claim bdevs. */
|
|
|
|
static struct spdk_bdev_module ns_bdev_module = {
|
|
|
|
.name = "NVMe-oF Target",
|
|
|
|
};
|
|
|
|
|
2017-06-14 20:00:11 +00:00
|
|
|
uint32_t
|
|
|
|
spdk_nvmf_subsystem_add_ns(struct spdk_nvmf_subsystem *subsystem, struct spdk_bdev *bdev,
|
2017-08-22 15:54:12 +00:00
|
|
|
const struct spdk_nvmf_ns_opts *user_opts, size_t opts_size)
|
2016-08-15 01:16:49 +00:00
|
|
|
{
|
2017-08-22 15:54:12 +00:00
|
|
|
struct spdk_nvmf_ns_opts opts;
|
2017-08-18 01:20:49 +00:00
|
|
|
struct spdk_nvmf_ns *ns;
|
2017-06-29 18:23:50 +00:00
|
|
|
int rc;
|
2016-08-15 01:16:49 +00:00
|
|
|
|
2018-01-17 22:33:27 +00:00
|
|
|
if (!(subsystem->state == SPDK_NVMF_SUBSYSTEM_INACTIVE ||
|
|
|
|
subsystem->state == SPDK_NVMF_SUBSYSTEM_PAUSED)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2017-12-19 23:39:04 +00:00
|
|
|
|
2017-08-22 15:54:12 +00:00
|
|
|
spdk_nvmf_ns_opts_get_defaults(&opts, sizeof(opts));
|
|
|
|
if (user_opts) {
|
|
|
|
memcpy(&opts, user_opts, spdk_min(sizeof(opts), opts_size));
|
|
|
|
}
|
|
|
|
|
2018-02-22 00:09:56 +00:00
|
|
|
if (spdk_mem_all_zero(&opts.uuid, sizeof(opts.uuid))) {
|
|
|
|
opts.uuid = *spdk_bdev_get_uuid(bdev);
|
|
|
|
}
|
|
|
|
|
2017-08-22 15:54:12 +00:00
|
|
|
if (opts.nsid == SPDK_NVME_GLOBAL_NS_TAG) {
|
|
|
|
SPDK_ERRLOG("Invalid NSID %" PRIu32 "\n", opts.nsid);
|
2017-09-15 23:17:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-22 15:54:12 +00:00
|
|
|
if (opts.nsid == 0) {
|
2018-06-12 22:19:09 +00:00
|
|
|
/*
|
|
|
|
* NSID not specified - find a free index.
|
|
|
|
*
|
|
|
|
* If no free slots are found, opts.nsid will be subsystem->max_nsid + 1, which will
|
|
|
|
* expand max_nsid if possible.
|
|
|
|
*/
|
|
|
|
for (opts.nsid = 1; opts.nsid <= subsystem->max_nsid; opts.nsid++) {
|
|
|
|
if (_spdk_nvmf_subsystem_get_ns(subsystem, opts.nsid) == NULL) {
|
2017-06-14 20:00:11 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-06-12 22:19:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (_spdk_nvmf_subsystem_get_ns(subsystem, opts.nsid)) {
|
|
|
|
SPDK_ERRLOG("Requested NSID %" PRIu32 " already in use\n", opts.nsid);
|
|
|
|
return 0;
|
2016-08-15 01:16:49 +00:00
|
|
|
}
|
2017-03-03 23:32:45 +00:00
|
|
|
|
2018-05-25 21:51:51 +00:00
|
|
|
if (opts.nsid > subsystem->max_nsid) {
|
|
|
|
struct spdk_nvmf_ns **new_ns_array;
|
|
|
|
|
2018-06-12 22:19:09 +00:00
|
|
|
/* If MaxNamespaces was specified, we can't extend max_nsid beyond it. */
|
|
|
|
if (subsystem->max_allowed_nsid > 0 && opts.nsid > subsystem->max_allowed_nsid) {
|
|
|
|
SPDK_ERRLOG("Can't extend NSID range above MaxNamespaces\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If a controller is connected, we can't change NN. */
|
|
|
|
if (!TAILQ_EMPTY(&subsystem->ctrlrs)) {
|
|
|
|
SPDK_ERRLOG("Can't extend NSID range while controllers are connected\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-05-25 21:51:51 +00:00
|
|
|
new_ns_array = realloc(subsystem->ns, sizeof(struct spdk_nvmf_ns *) * opts.nsid);
|
|
|
|
if (new_ns_array == NULL) {
|
|
|
|
SPDK_ERRLOG("Memory allocation error while resizing namespace array.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(new_ns_array + subsystem->max_nsid, 0,
|
|
|
|
sizeof(struct spdk_nvmf_ns *) * (opts.nsid - subsystem->max_nsid));
|
|
|
|
subsystem->ns = new_ns_array;
|
|
|
|
subsystem->max_nsid = opts.nsid;
|
|
|
|
}
|
|
|
|
|
2018-02-14 21:19:02 +00:00
|
|
|
ns = calloc(1, sizeof(*ns));
|
|
|
|
if (ns == NULL) {
|
|
|
|
SPDK_ERRLOG("Namespace allocation failed\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-18 01:20:49 +00:00
|
|
|
ns->bdev = bdev;
|
2017-08-22 15:54:12 +00:00
|
|
|
ns->opts = opts;
|
2017-12-14 02:19:57 +00:00
|
|
|
ns->subsystem = subsystem;
|
2017-12-06 02:07:47 +00:00
|
|
|
rc = spdk_bdev_open(bdev, true, spdk_nvmf_ns_hot_remove, ns, &ns->desc);
|
2017-06-29 18:23:50 +00:00
|
|
|
if (rc != 0) {
|
|
|
|
SPDK_ERRLOG("Subsystem %s: bdev %s cannot be opened, error=%d\n",
|
|
|
|
subsystem->subnqn, spdk_bdev_get_name(bdev), rc);
|
2018-02-14 21:19:02 +00:00
|
|
|
free(ns);
|
2017-06-14 20:00:11 +00:00
|
|
|
return 0;
|
2017-03-03 23:32:45 +00:00
|
|
|
}
|
2018-07-26 05:34:52 +00:00
|
|
|
rc = spdk_bdev_module_claim_bdev(bdev, ns->desc, &ns_bdev_module);
|
|
|
|
if (rc != 0) {
|
|
|
|
spdk_bdev_close(ns->desc);
|
|
|
|
free(ns);
|
|
|
|
return 0;
|
|
|
|
}
|
2017-08-22 15:54:12 +00:00
|
|
|
subsystem->ns[opts.nsid - 1] = ns;
|
2019-01-08 06:14:53 +00:00
|
|
|
ns->nsid = opts.nsid;
|
2019-02-28 02:50:03 +00:00
|
|
|
TAILQ_INIT(&ns->registrants);
|
2017-03-03 23:32:45 +00:00
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Subsystem %s: bdev %s assigned nsid %" PRIu32 "\n",
|
2017-06-14 20:00:11 +00:00
|
|
|
spdk_nvmf_subsystem_get_nqn(subsystem),
|
|
|
|
spdk_bdev_get_name(bdev),
|
2017-08-22 15:54:12 +00:00
|
|
|
opts.nsid);
|
2017-06-14 20:00:11 +00:00
|
|
|
|
2018-03-28 01:05:49 +00:00
|
|
|
spdk_nvmf_subsystem_ns_changed(subsystem, opts.nsid);
|
|
|
|
|
2017-08-22 15:54:12 +00:00
|
|
|
return opts.nsid;
|
2016-08-15 01:16:49 +00:00
|
|
|
}
|
2016-09-19 17:01:52 +00:00
|
|
|
|
2017-08-18 01:20:49 +00:00
|
|
|
static uint32_t
|
|
|
|
spdk_nvmf_subsystem_get_next_allocated_nsid(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
uint32_t prev_nsid)
|
|
|
|
{
|
|
|
|
uint32_t nsid;
|
|
|
|
|
|
|
|
if (prev_nsid >= subsystem->max_nsid) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (nsid = prev_nsid + 1; nsid <= subsystem->max_nsid; nsid++) {
|
2018-02-14 21:19:02 +00:00
|
|
|
if (subsystem->ns[nsid - 1]) {
|
2017-08-18 01:20:49 +00:00
|
|
|
return nsid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_nvmf_ns *
|
|
|
|
spdk_nvmf_subsystem_get_first_ns(struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
uint32_t first_nsid;
|
|
|
|
|
|
|
|
first_nsid = spdk_nvmf_subsystem_get_next_allocated_nsid(subsystem, 0);
|
|
|
|
return _spdk_nvmf_subsystem_get_ns(subsystem, first_nsid);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_nvmf_ns *
|
|
|
|
spdk_nvmf_subsystem_get_next_ns(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
struct spdk_nvmf_ns *prev_ns)
|
|
|
|
{
|
|
|
|
uint32_t next_nsid;
|
|
|
|
|
2017-08-22 15:54:12 +00:00
|
|
|
next_nsid = spdk_nvmf_subsystem_get_next_allocated_nsid(subsystem, prev_ns->opts.nsid);
|
2017-08-18 01:20:49 +00:00
|
|
|
return _spdk_nvmf_subsystem_get_ns(subsystem, next_nsid);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_nvmf_ns *
|
|
|
|
spdk_nvmf_subsystem_get_ns(struct spdk_nvmf_subsystem *subsystem, uint32_t nsid)
|
|
|
|
{
|
|
|
|
return _spdk_nvmf_subsystem_get_ns(subsystem, nsid);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
spdk_nvmf_ns_get_id(const struct spdk_nvmf_ns *ns)
|
|
|
|
{
|
2017-08-22 15:54:12 +00:00
|
|
|
return ns->opts.nsid;
|
2017-08-18 01:20:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_bdev *
|
|
|
|
spdk_nvmf_ns_get_bdev(struct spdk_nvmf_ns *ns)
|
|
|
|
{
|
|
|
|
return ns->bdev;
|
|
|
|
}
|
|
|
|
|
2017-08-22 15:54:12 +00:00
|
|
|
void
|
|
|
|
spdk_nvmf_ns_get_opts(const struct spdk_nvmf_ns *ns, struct spdk_nvmf_ns_opts *opts,
|
|
|
|
size_t opts_size)
|
|
|
|
{
|
|
|
|
memset(opts, 0, opts_size);
|
|
|
|
memcpy(opts, &ns->opts, spdk_min(sizeof(ns->opts), opts_size));
|
|
|
|
}
|
|
|
|
|
2017-06-01 00:01:00 +00:00
|
|
|
const char *
|
|
|
|
spdk_nvmf_subsystem_get_sn(const struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
2017-08-18 01:20:49 +00:00
|
|
|
return subsystem->sn;
|
2017-06-01 00:01:00 +00:00
|
|
|
}
|
|
|
|
|
2016-09-19 17:01:52 +00:00
|
|
|
int
|
|
|
|
spdk_nvmf_subsystem_set_sn(struct spdk_nvmf_subsystem *subsystem, const char *sn)
|
|
|
|
{
|
2017-05-31 23:46:17 +00:00
|
|
|
size_t len, max_len;
|
|
|
|
|
2017-08-18 01:20:49 +00:00
|
|
|
max_len = sizeof(subsystem->sn) - 1;
|
2017-05-31 23:46:17 +00:00
|
|
|
len = strlen(sn);
|
|
|
|
if (len > max_len) {
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Invalid sn \"%s\": length %zu > max %zu\n",
|
2017-05-31 23:46:17 +00:00
|
|
|
sn, len, max_len);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-04-04 16:57:58 +00:00
|
|
|
if (!spdk_nvmf_valid_ascii_string(sn, len)) {
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Non-ASCII sn\n");
|
2018-11-27 07:17:57 +00:00
|
|
|
SPDK_LOGDUMP(SPDK_LOG_NVMF, "sn", sn, len);
|
2018-04-04 16:57:58 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2017-08-18 01:20:49 +00:00
|
|
|
snprintf(subsystem->sn, sizeof(subsystem->sn), "%s", sn);
|
2016-09-19 17:01:52 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2016-10-10 17:25:01 +00:00
|
|
|
|
|
|
|
const char *
|
|
|
|
spdk_nvmf_subsystem_get_nqn(struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
return subsystem->subnqn;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Workaround for astyle formatting bug */
|
|
|
|
typedef enum spdk_nvmf_subtype nvmf_subtype_t;
|
|
|
|
|
|
|
|
nvmf_subtype_t
|
|
|
|
spdk_nvmf_subsystem_get_type(struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
return subsystem->subtype;
|
|
|
|
}
|
2017-08-29 20:32:41 +00:00
|
|
|
|
2017-09-11 23:50:29 +00:00
|
|
|
static uint16_t
|
2017-08-29 20:32:41 +00:00
|
|
|
spdk_nvmf_subsystem_gen_cntlid(struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
2017-09-11 23:50:29 +00:00
|
|
|
int count;
|
2017-08-29 20:32:41 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* In the worst case, we might have to try all CNTLID values between 1 and 0xFFF0 - 1
|
|
|
|
* before we find one that is unused (or find that all values are in use).
|
|
|
|
*/
|
2017-09-11 23:50:29 +00:00
|
|
|
for (count = 0; count < 0xFFF0 - 1; count++) {
|
2017-08-29 20:32:41 +00:00
|
|
|
subsystem->next_cntlid++;
|
|
|
|
if (subsystem->next_cntlid >= 0xFFF0) {
|
|
|
|
/* The spec reserves cntlid values in the range FFF0h to FFFFh. */
|
|
|
|
subsystem->next_cntlid = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if a controller with this cntlid currently exists. */
|
2017-09-11 23:50:29 +00:00
|
|
|
if (spdk_nvmf_subsystem_get_ctrlr(subsystem, subsystem->next_cntlid) == NULL) {
|
|
|
|
/* Found unused cntlid */
|
|
|
|
return subsystem->next_cntlid;
|
2017-08-29 20:32:41 +00:00
|
|
|
}
|
2017-09-11 23:50:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* All valid cntlid values are in use. */
|
|
|
|
return 0xFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
spdk_nvmf_subsystem_add_ctrlr(struct spdk_nvmf_subsystem *subsystem, struct spdk_nvmf_ctrlr *ctrlr)
|
|
|
|
{
|
|
|
|
ctrlr->cntlid = spdk_nvmf_subsystem_gen_cntlid(subsystem);
|
|
|
|
if (ctrlr->cntlid == 0xFFFF) {
|
|
|
|
/* Unable to get a cntlid */
|
|
|
|
SPDK_ERRLOG("Reached max simultaneous ctrlrs\n");
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
|
|
|
|
TAILQ_INSERT_TAIL(&subsystem->ctrlrs, ctrlr, link);
|
2017-08-29 20:32:41 +00:00
|
|
|
|
2017-09-11 23:50:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
spdk_nvmf_subsystem_remove_ctrlr(struct spdk_nvmf_subsystem *subsystem,
|
|
|
|
struct spdk_nvmf_ctrlr *ctrlr)
|
|
|
|
{
|
|
|
|
assert(subsystem == ctrlr->subsys);
|
|
|
|
TAILQ_REMOVE(&subsystem->ctrlrs, ctrlr, link);
|
|
|
|
}
|
2017-08-29 20:32:41 +00:00
|
|
|
|
2017-09-11 23:50:29 +00:00
|
|
|
struct spdk_nvmf_ctrlr *
|
|
|
|
spdk_nvmf_subsystem_get_ctrlr(struct spdk_nvmf_subsystem *subsystem, uint16_t cntlid)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_ctrlr *ctrlr;
|
|
|
|
|
|
|
|
TAILQ_FOREACH(ctrlr, &subsystem->ctrlrs, link) {
|
|
|
|
if (ctrlr->cntlid == cntlid) {
|
|
|
|
return ctrlr;
|
|
|
|
}
|
2017-08-29 20:32:41 +00:00
|
|
|
}
|
|
|
|
|
2017-09-11 23:50:29 +00:00
|
|
|
return NULL;
|
2017-08-29 20:32:41 +00:00
|
|
|
}
|
2018-06-12 17:11:45 +00:00
|
|
|
|
|
|
|
uint32_t
|
|
|
|
spdk_nvmf_subsystem_get_max_namespaces(const struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
return subsystem->max_allowed_nsid;
|
|
|
|
}
|
2019-02-28 02:50:03 +00:00
|
|
|
|
|
|
|
static struct spdk_nvmf_registrant *
|
|
|
|
nvmf_ns_reservation_get_registrant(struct spdk_nvmf_ns *ns,
|
|
|
|
struct spdk_uuid *uuid)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_registrant *reg, *tmp;
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(reg, &ns->registrants, link, tmp) {
|
|
|
|
if (spdk_uuid_compare(®->hostid, uuid) == 0) {
|
|
|
|
return reg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-02-28 12:56:04 +00:00
|
|
|
/* current reservation type is all registrants or not */
|
|
|
|
static bool
|
|
|
|
nvmf_ns_reservation_all_registrants_type(struct spdk_nvmf_ns *ns)
|
|
|
|
{
|
|
|
|
return (ns->rtype == SPDK_NVME_RESERVE_WRITE_EXCLUSIVE_ALL_REGS ||
|
|
|
|
ns->rtype == SPDK_NVME_RESERVE_EXCLUSIVE_ACCESS_ALL_REGS);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* current registrant is reservation holder or not */
|
|
|
|
static bool
|
|
|
|
nvmf_ns_reservation_registrant_is_holder(struct spdk_nvmf_ns *ns,
|
|
|
|
struct spdk_nvmf_registrant *reg)
|
|
|
|
{
|
|
|
|
if (!reg) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nvmf_ns_reservation_all_registrants_type(ns)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ns->holder == reg);
|
|
|
|
}
|
|
|
|
|
2019-02-28 02:50:03 +00:00
|
|
|
static int
|
|
|
|
nvmf_ns_reservation_add_registrant(struct spdk_nvmf_ns *ns,
|
|
|
|
struct spdk_nvmf_ctrlr *ctrlr,
|
|
|
|
uint64_t nrkey)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_registrant *reg;
|
|
|
|
|
|
|
|
reg = calloc(1, sizeof(*reg));
|
|
|
|
if (!reg) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
reg->rkey = nrkey;
|
|
|
|
/* set hostid for the registrant */
|
|
|
|
spdk_uuid_copy(®->hostid, &ctrlr->hostid);
|
|
|
|
TAILQ_INSERT_TAIL(&ns->registrants, reg, link);
|
|
|
|
ns->gen++;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-03-01 00:54:52 +00:00
|
|
|
/* release the reservation if the last registrant was removed */
|
|
|
|
static void
|
|
|
|
nvmf_ns_reservation_check_release_on_remove_registrant(struct spdk_nvmf_ns *ns,
|
|
|
|
struct spdk_nvmf_registrant *reg)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_registrant *next_reg;
|
|
|
|
|
|
|
|
/* no reservation holder */
|
|
|
|
if (!ns->holder) {
|
|
|
|
assert(ns->rtype == 0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
next_reg = TAILQ_FIRST(&ns->registrants);
|
|
|
|
if (next_reg && nvmf_ns_reservation_all_registrants_type(ns)) {
|
|
|
|
/* the next valid registrant is the new holder now */
|
|
|
|
ns->holder = next_reg;
|
|
|
|
} else if (nvmf_ns_reservation_registrant_is_holder(ns, reg)) {
|
|
|
|
/* release the reservation */
|
|
|
|
ns->rtype = 0;
|
|
|
|
ns->crkey = 0;
|
|
|
|
ns->holder = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-28 02:50:03 +00:00
|
|
|
static void
|
|
|
|
nvmf_ns_reservation_remove_registrant(struct spdk_nvmf_ns *ns,
|
|
|
|
struct spdk_nvmf_registrant *reg)
|
|
|
|
{
|
|
|
|
TAILQ_REMOVE(&ns->registrants, reg, link);
|
2019-03-01 00:54:52 +00:00
|
|
|
nvmf_ns_reservation_check_release_on_remove_registrant(ns, reg);
|
2019-02-28 02:50:03 +00:00
|
|
|
free(reg);
|
|
|
|
ns->gen++;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-28 12:56:04 +00:00
|
|
|
static uint32_t
|
|
|
|
nvmf_ns_reservation_remove_registrants_by_key(struct spdk_nvmf_ns *ns,
|
|
|
|
uint64_t rkey)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_registrant *reg, *tmp;
|
|
|
|
uint32_t count = 0;
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(reg, &ns->registrants, link, tmp) {
|
|
|
|
if (reg->rkey == rkey) {
|
|
|
|
nvmf_ns_reservation_remove_registrant(ns, reg);
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t
|
|
|
|
nvmf_ns_reservation_remove_all_other_registrants(struct spdk_nvmf_ns *ns,
|
|
|
|
struct spdk_nvmf_registrant *reg)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_registrant *reg_tmp, *reg_tmp2;
|
|
|
|
uint32_t count = 0;
|
|
|
|
|
|
|
|
TAILQ_FOREACH_SAFE(reg_tmp, &ns->registrants, link, reg_tmp2) {
|
|
|
|
if (reg_tmp != reg) {
|
|
|
|
nvmf_ns_reservation_remove_registrant(ns, reg_tmp);
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nvmf_ns_reservation_acquire_reservation(struct spdk_nvmf_ns *ns, uint64_t rkey,
|
|
|
|
enum spdk_nvme_reservation_type rtype,
|
|
|
|
struct spdk_nvmf_registrant *holder)
|
|
|
|
{
|
|
|
|
ns->rtype = rtype;
|
|
|
|
ns->crkey = rkey;
|
|
|
|
assert(ns->holder == NULL);
|
|
|
|
ns->holder = holder;
|
|
|
|
}
|
|
|
|
|
2019-02-28 02:50:03 +00:00
|
|
|
static void
|
|
|
|
nvmf_ns_reservation_register(struct spdk_nvmf_ns *ns,
|
|
|
|
struct spdk_nvmf_ctrlr *ctrlr,
|
|
|
|
struct spdk_nvmf_request *req)
|
|
|
|
{
|
|
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
|
|
uint8_t rrega, iekey, cptpl;
|
|
|
|
struct spdk_nvme_reservation_register_data key;
|
|
|
|
struct spdk_nvmf_registrant *reg;
|
|
|
|
uint8_t status = SPDK_NVME_SC_SUCCESS;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rrega = cmd->cdw10 & 0x7u;
|
|
|
|
iekey = (cmd->cdw10 >> 3) & 0x1u;
|
|
|
|
cptpl = (cmd->cdw10 >> 30) & 0x3u;
|
|
|
|
memcpy(&key, req->data, sizeof(key));
|
|
|
|
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "REGISTER: RREGA %u, IEKEY %u, CPTPL %u, "
|
|
|
|
"NRKEY 0x%"PRIx64", NRKEY 0x%"PRIx64"\n",
|
|
|
|
rrega, iekey, cptpl, key.crkey, key.nrkey);
|
|
|
|
|
|
|
|
/* TODO: doesn't support for now */
|
|
|
|
if (cptpl == SPDK_NVME_RESERVE_PTPL_PERSIST_POWER_LOSS) {
|
|
|
|
SPDK_ERRLOG("Can't change persist through power loss for now\n");
|
|
|
|
status = SPDK_NVME_SC_INVALID_FIELD;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* current Host Identifier has registrant or not */
|
|
|
|
reg = nvmf_ns_reservation_get_registrant(ns, &ctrlr->hostid);
|
|
|
|
|
|
|
|
switch (rrega) {
|
|
|
|
case SPDK_NVME_RESERVE_REGISTER_KEY:
|
|
|
|
if (!reg) {
|
|
|
|
/* register new controller */
|
|
|
|
if (key.nrkey == 0) {
|
|
|
|
SPDK_ERRLOG("Can't register zeroed new key\n");
|
|
|
|
status = SPDK_NVME_SC_INVALID_FIELD;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
rc = nvmf_ns_reservation_add_registrant(ns, ctrlr, key.nrkey);
|
|
|
|
if (rc < 0) {
|
|
|
|
status = SPDK_NVME_SC_INTERNAL_DEVICE_ERROR;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* register with same key is not an error */
|
|
|
|
if (reg->rkey != key.nrkey) {
|
|
|
|
SPDK_ERRLOG("The same host already register a "
|
|
|
|
"key with 0x%"PRIx64"\n",
|
|
|
|
reg->rkey);
|
|
|
|
status = SPDK_NVME_SC_RESERVATION_CONFLICT;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SPDK_NVME_RESERVE_UNREGISTER_KEY:
|
|
|
|
if (!reg || (!iekey && reg->rkey != key.crkey)) {
|
|
|
|
SPDK_ERRLOG("No registrant or current key doesn't match "
|
|
|
|
"with existing registrant key\n");
|
|
|
|
status = SPDK_NVME_SC_RESERVATION_CONFLICT;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
nvmf_ns_reservation_remove_registrant(ns, reg);
|
|
|
|
break;
|
|
|
|
case SPDK_NVME_RESERVE_REPLACE_KEY:
|
|
|
|
if (!reg || (!iekey && reg->rkey != key.crkey)) {
|
|
|
|
SPDK_ERRLOG("No registrant or current key doesn't match "
|
|
|
|
"with existing registrant key\n");
|
|
|
|
status = SPDK_NVME_SC_RESERVATION_CONFLICT;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
if (key.nrkey == 0) {
|
|
|
|
SPDK_ERRLOG("Can't register zeroed new key\n");
|
|
|
|
status = SPDK_NVME_SC_INVALID_FIELD;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
reg->rkey = key.nrkey;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
status = SPDK_NVME_SC_INVALID_FIELD;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
req->rsp->nvme_cpl.status.sct = SPDK_NVME_SCT_GENERIC;
|
|
|
|
req->rsp->nvme_cpl.status.sc = status;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-28 12:56:04 +00:00
|
|
|
static void
|
|
|
|
nvmf_ns_reservation_acquire(struct spdk_nvmf_ns *ns,
|
|
|
|
struct spdk_nvmf_ctrlr *ctrlr,
|
|
|
|
struct spdk_nvmf_request *req)
|
|
|
|
{
|
|
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
|
|
uint8_t racqa, iekey, rtype;
|
|
|
|
struct spdk_nvme_reservation_acquire_data key;
|
|
|
|
struct spdk_nvmf_registrant *reg;
|
|
|
|
bool all_regs = false;
|
|
|
|
uint32_t count = 0;
|
|
|
|
uint8_t status = SPDK_NVME_SC_SUCCESS;
|
|
|
|
|
|
|
|
racqa = cmd->cdw10 & 0x7u;
|
|
|
|
iekey = (cmd->cdw10 >> 3) & 0x1u;
|
|
|
|
rtype = (cmd->cdw10 >> 8) & 0xffu;
|
|
|
|
memcpy(&key, req->data, sizeof(key));
|
|
|
|
|
|
|
|
SPDK_DEBUGLOG(SPDK_LOG_NVMF, "ACQUIIRE: RACQA %u, IEKEY %u, RTYPE %u, "
|
|
|
|
"NRKEY 0x%"PRIx64", PRKEY 0x%"PRIx64"\n",
|
|
|
|
racqa, iekey, rtype, key.crkey, key.prkey);
|
|
|
|
|
|
|
|
if (iekey) {
|
|
|
|
SPDK_ERRLOG("Ignore existing key field set to 1\n");
|
|
|
|
status = SPDK_NVME_SC_INVALID_FIELD;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
reg = nvmf_ns_reservation_get_registrant(ns, &ctrlr->hostid);
|
|
|
|
/* must be registrant and CRKEY must match */
|
|
|
|
if (!reg || reg->rkey != key.crkey) {
|
|
|
|
SPDK_ERRLOG("No registrant or current key doesn't match "
|
|
|
|
"with existing registrant key\n");
|
|
|
|
status = SPDK_NVME_SC_RESERVATION_CONFLICT;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
all_regs = nvmf_ns_reservation_all_registrants_type(ns);
|
|
|
|
|
|
|
|
switch (racqa) {
|
|
|
|
case SPDK_NVME_RESERVE_ACQUIRE:
|
|
|
|
/* it's not an error for the holder to acquire same reservation type again */
|
|
|
|
if (nvmf_ns_reservation_registrant_is_holder(ns, reg) && ns->rtype == rtype) {
|
|
|
|
/* do nothing */
|
|
|
|
} else if (ns->holder == NULL) {
|
|
|
|
/* fisrt time to acquire the reservation */
|
|
|
|
nvmf_ns_reservation_acquire_reservation(ns, key.crkey, rtype, reg);
|
|
|
|
} else {
|
|
|
|
SPDK_ERRLOG("Invalid rtype or current registrant is not holder\n");
|
|
|
|
status = SPDK_NVME_SC_RESERVATION_CONFLICT;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SPDK_NVME_RESERVE_PREEMPT:
|
|
|
|
/* no reservation holder */
|
|
|
|
if (!ns->holder) {
|
|
|
|
/* unregister with PRKEY */
|
|
|
|
nvmf_ns_reservation_remove_registrants_by_key(ns, key.prkey);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* only 1 reservation holder and reservation key is valid */
|
|
|
|
if (!all_regs) {
|
|
|
|
/* preempt itself */
|
|
|
|
if (nvmf_ns_reservation_registrant_is_holder(ns, reg) &&
|
|
|
|
ns->crkey == key.prkey) {
|
|
|
|
ns->rtype = rtype;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ns->crkey == key.prkey) {
|
|
|
|
nvmf_ns_reservation_remove_registrant(ns, ns->holder);
|
|
|
|
nvmf_ns_reservation_acquire_reservation(ns, key.crkey, rtype, reg);
|
|
|
|
} else if (key.prkey != 0) {
|
|
|
|
nvmf_ns_reservation_remove_registrants_by_key(ns, key.prkey);
|
|
|
|
} else {
|
|
|
|
/* PRKEY is zero */
|
|
|
|
SPDK_ERRLOG("Current PRKEY is zero\n");
|
|
|
|
status = SPDK_NVME_SC_RESERVATION_CONFLICT;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* release all other registrants except for the current one */
|
|
|
|
if (key.prkey == 0) {
|
|
|
|
nvmf_ns_reservation_remove_all_other_registrants(ns, reg);
|
|
|
|
assert(ns->holder == reg);
|
|
|
|
} else {
|
|
|
|
count = nvmf_ns_reservation_remove_registrants_by_key(ns, key.prkey);
|
|
|
|
if (count == 0) {
|
|
|
|
SPDK_ERRLOG("PRKEY doesn't match any registrant\n");
|
|
|
|
status = SPDK_NVME_SC_RESERVATION_CONFLICT;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
req->rsp->nvme_cpl.status.sct = SPDK_NVME_SCT_GENERIC;
|
|
|
|
req->rsp->nvme_cpl.status.sc = status;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-02-28 02:50:03 +00:00
|
|
|
static void
|
|
|
|
spdk_nvmf_ns_reservation_complete(void *ctx)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_request *req = ctx;
|
|
|
|
|
|
|
|
spdk_nvmf_request_complete(req);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
spdk_nvmf_ns_reservation_request(void *ctx)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_request *req = (struct spdk_nvmf_request *)ctx;
|
|
|
|
struct spdk_nvme_cmd *cmd = &req->cmd->nvme_cmd;
|
|
|
|
struct spdk_nvmf_poll_group *group = req->qpair->group;
|
|
|
|
struct spdk_nvmf_ctrlr *ctrlr = req->qpair->ctrlr;
|
|
|
|
uint32_t nsid;
|
|
|
|
struct spdk_nvmf_ns *ns;
|
|
|
|
|
|
|
|
nsid = cmd->nsid;
|
|
|
|
ns = _spdk_nvmf_subsystem_get_ns(ctrlr->subsys, nsid);
|
|
|
|
assert(ns != NULL);
|
|
|
|
|
|
|
|
switch (cmd->opc) {
|
|
|
|
case SPDK_NVME_OPC_RESERVATION_REGISTER:
|
|
|
|
nvmf_ns_reservation_register(ns, ctrlr, req);
|
|
|
|
break;
|
2019-02-28 12:56:04 +00:00
|
|
|
case SPDK_NVME_OPC_RESERVATION_ACQUIRE:
|
|
|
|
nvmf_ns_reservation_acquire(ns, ctrlr, req);
|
|
|
|
break;
|
2019-02-28 02:50:03 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
spdk_thread_send_msg(group->thread, spdk_nvmf_ns_reservation_complete, req);
|
|
|
|
}
|