/*- * 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/event.h" #include "spdk/likely.h" #include "spdk/string.h" #include "spdk/trace.h" #include "spdk/nvmf_spec.h" #include "spdk_internal/bdev.h" #include "spdk_internal/log.h" #include "spdk_internal/utf.h" #include /* * 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 }; static bool spdk_nvmf_valid_nqn(const char *nqn) { size_t len; uuid_t uuid_value; uint i; int bytes_consumed; uint domain_label_length; char *reverse_domain_end; uint reverse_domain_end_index; enum spdk_nvmf_nqn_domain_states domain_state = SPDK_NVMF_DOMAIN_ACCEPT_LETTER; /* Check for length requirements */ len = strlen(nqn); if (len > SPDK_NVMF_NQN_MAX_LEN) { SPDK_ERRLOG("Invalid NQN \"%s\": length %zu > max %d\n", nqn, len, SPDK_NVMF_NQN_MAX_LEN); return false; } /* 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; } if (uuid_parse(&nqn[SPDK_NVMF_NQN_UUID_PRE_LEN], uuid_value) == -1) { 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" */ if (strncmp(nqn, "nqn.", 4) != 0) { SPDK_ERRLOG("Invalid NQN \"%s\": NQN must begin with \"nqn.\".\n", nqn); return false; } /* Check for yyyy-mm. */ 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; } 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; } } } } 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; } return true; } struct spdk_nvmf_subsystem * spdk_nvmf_subsystem_create(struct spdk_nvmf_tgt *tgt, const char *nqn, enum spdk_nvmf_subtype type, uint32_t num_ns) { struct spdk_nvmf_subsystem *subsystem; uint32_t sid; if (!spdk_nvmf_valid_nqn(nqn)) { return NULL; } if (type == SPDK_NVMF_SUBTYPE_DISCOVERY && num_ns != 0) { SPDK_ERRLOG("Discovery subsystem cannot have namespaces.\n"); return NULL; } /* Find a free subsystem id (sid) */ for (sid = 0; sid < tgt->max_sid; sid++) { if (tgt->subsystems[sid] == NULL) { break; } } if (sid == tgt->max_sid) { struct spdk_nvmf_subsystem **subsys_array; /* No free slots. Add more. */ tgt->max_sid++; subsys_array = realloc(tgt->subsystems, tgt->max_sid * sizeof(struct spdk_nvmf_subsystem *)); if (!subsys_array) { tgt->max_sid--; return NULL; } tgt->subsystems = subsys_array; } subsystem = calloc(1, sizeof(struct spdk_nvmf_subsystem)); if (subsystem == NULL) { return NULL; } subsystem->state = SPDK_NVMF_SUBSYSTEM_INACTIVE; subsystem->tgt = tgt; subsystem->id = sid; subsystem->subtype = type; subsystem->max_nsid = num_ns; subsystem->num_allocated_nsid = 0; subsystem->next_cntlid = 0; snprintf(subsystem->subnqn, sizeof(subsystem->subnqn), "%s", nqn); TAILQ_INIT(&subsystem->listeners); TAILQ_INIT(&subsystem->hosts); TAILQ_INIT(&subsystem->ctrlrs); if (num_ns != 0) { subsystem->ns = calloc(num_ns, sizeof(struct spdk_nvmf_ns)); if (subsystem->ns == NULL) { SPDK_ERRLOG("Namespace memory allocation failed\n"); free(subsystem); return NULL; } } tgt->subsystems[sid] = subsystem; tgt->discovery_genctr++; return subsystem; } void spdk_nvmf_subsystem_destroy(struct spdk_nvmf_subsystem *subsystem) { 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) { TAILQ_REMOVE(&subsystem->hosts, host, link); free(host->nqn); free(host); } TAILQ_FOREACH_SAFE(ctrlr, &subsystem->ctrlrs, link, ctrlr_tmp) { spdk_nvmf_ctrlr_destruct(ctrlr); } for (ns = spdk_nvmf_subsystem_get_first_ns(subsystem); ns != NULL; ns = spdk_nvmf_subsystem_get_next_ns(subsystem, ns)) { if (ns->bdev == NULL) { continue; } spdk_bdev_close(ns->desc); } free(subsystem->ns); subsystem->tgt->subsystems[subsystem->id] = NULL; subsystem->tgt->discovery_genctr++; free(subsystem); } 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; } 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; }; static void subsystem_state_change_done(struct spdk_io_channel_iter *i, int status) { struct subsystem_state_change_ctx *ctx = spdk_io_channel_iter_get_ctx(i); if (status == 0) { status = spdk_nvmf_subsystem_set_state(ctx->subsystem, ctx->requested_state); if (status) { status = -1; } } if (ctx->cb_fn) { ctx->cb_fn(ctx->subsystem, ctx->cb_arg, status); } free(ctx); } 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; int rc = -1; 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: rc = spdk_nvmf_poll_group_remove_subsystem(group, ctx->subsystem); break; case SPDK_NVMF_SUBSYSTEM_ACTIVE: if (ctx->subsystem->state == SPDK_NVMF_SUBSYSTEM_ACTIVATING) { rc = spdk_nvmf_poll_group_add_subsystem(group, ctx->subsystem); } else if (ctx->subsystem->state == SPDK_NVMF_SUBSYSTEM_RESUMING) { rc = spdk_nvmf_poll_group_resume_subsystem(group, ctx->subsystem); } break; case SPDK_NVMF_SUBSYSTEM_PAUSED: rc = spdk_nvmf_poll_group_pause_subsystem(group, ctx->subsystem); break; default: assert(false); break; } spdk_for_each_channel_continue(i, rc); } static int 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) { struct subsystem_state_change_ctx *ctx; enum spdk_nvmf_subsystem_state intermediate_state; int rc; 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); return -EINVAL; } ctx = calloc(1, sizeof(*ctx)); if (!ctx) { return -ENOMEM; } rc = spdk_nvmf_subsystem_set_state(subsystem, intermediate_state); if (rc) { free(ctx); return rc; } ctx->subsystem = subsystem; ctx->requested_state = requested_state; ctx->cb_fn = cb_fn; ctx->cb_arg = cb_arg; spdk_for_each_channel(subsystem->tgt, subsystem_state_change_on_pg, ctx, subsystem_state_change_done); return 0; } int spdk_nvmf_subsystem_start(struct spdk_nvmf_subsystem *subsystem, spdk_nvmf_subsystem_state_change_done cb_fn, void *cb_arg) { return spdk_nvmf_subsystem_state_change(subsystem, SPDK_NVMF_SUBSYSTEM_ACTIVE, cb_fn, cb_arg); } int spdk_nvmf_subsystem_stop(struct spdk_nvmf_subsystem *subsystem, spdk_nvmf_subsystem_state_change_done cb_fn, void *cb_arg) { return spdk_nvmf_subsystem_state_change(subsystem, SPDK_NVMF_SUBSYSTEM_INACTIVE, cb_fn, cb_arg); } int spdk_nvmf_subsystem_pause(struct spdk_nvmf_subsystem *subsystem, spdk_nvmf_subsystem_state_change_done cb_fn, void *cb_arg) { return spdk_nvmf_subsystem_state_change(subsystem, SPDK_NVMF_SUBSYSTEM_PAUSED, cb_fn, cb_arg); } int spdk_nvmf_subsystem_resume(struct spdk_nvmf_subsystem *subsystem, spdk_nvmf_subsystem_state_change_done cb_fn, void *cb_arg) { return spdk_nvmf_subsystem_state_change(subsystem, SPDK_NVMF_SUBSYSTEM_ACTIVE, cb_fn, cb_arg); } struct spdk_nvmf_subsystem * spdk_nvmf_subsystem_get_first(struct spdk_nvmf_tgt *tgt) { struct spdk_nvmf_subsystem *subsystem; uint32_t sid; for (sid = 0; sid < tgt->max_sid; sid++) { 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; for (sid = subsystem->id + 1; sid < tgt->max_sid; sid++) { subsystem = tgt->subsystems[sid]; if (subsystem) { return subsystem; } } return NULL; } 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)) { return -1; } host = calloc(1, sizeof(*host)); if (!host) { return -1; } host->nqn = strdup(hostnqn); if (!host->nqn) { free(host); return -1; } TAILQ_INSERT_HEAD(&subsystem->hosts, host, link); subsystem->tgt->discovery_genctr++; return 0; } void spdk_nvmf_subsystem_set_allow_any_host(struct spdk_nvmf_subsystem *subsystem, bool allow_any_host) { subsystem->allow_any_host = allow_any_host; } bool spdk_nvmf_subsystem_get_allow_any_host(const struct spdk_nvmf_subsystem *subsystem) { return subsystem->allow_any_host; } bool spdk_nvmf_subsystem_host_allowed(struct spdk_nvmf_subsystem *subsystem, const char *hostnqn) { struct spdk_nvmf_host *host; if (!hostnqn) { return false; } if (subsystem->allow_any_host) { return true; } TAILQ_FOREACH(host, &subsystem->hosts, link) { if (strcmp(hostnqn, host->nqn) == 0) { return true; } } return false; } 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; } int spdk_nvmf_subsystem_add_listener(struct spdk_nvmf_subsystem *subsystem, struct spdk_nvme_transport_id *trid) { struct spdk_nvmf_transport *transport; struct spdk_nvmf_listener *listener; transport = spdk_nvmf_tgt_get_transport(subsystem->tgt, trid->trtype); if (transport == NULL) { SPDK_ERRLOG("Unknown transport type %d\n", trid->trtype); return -1; } listener = calloc(1, sizeof(*listener)); if (!listener) { return -1; } listener->trid = *trid; listener->transport = transport; TAILQ_INSERT_HEAD(&subsystem->listeners, listener, link); return 0; } /* * TODO: this is the whitelist and will be called during connection setup */ bool spdk_nvmf_subsystem_listener_allowed(struct spdk_nvmf_subsystem *subsystem, struct spdk_nvme_transport_id *trid) { struct spdk_nvmf_listener *listener; if (TAILQ_EMPTY(&subsystem->listeners)) { return true; } TAILQ_FOREACH(listener, &subsystem->listeners, link) { if (spdk_nvme_transport_id_compare(&listener->trid, trid) == 0) { return true; } } return false; } 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) { return &listener->trid; } int spdk_nvmf_subsystem_remove_ns(struct spdk_nvmf_subsystem *subsystem, uint32_t nsid) { struct spdk_nvmf_ns *ns; assert(subsystem->state == SPDK_NVMF_SUBSYSTEM_PAUSED || subsystem->state == SPDK_NVMF_SUBSYSTEM_INACTIVE); if (nsid == 0 || nsid > subsystem->max_nsid) { return -1; } ns = &subsystem->ns[nsid - 1]; if (ns->allocated == false) { return -1; } spdk_bdev_close(ns->desc); ns->allocated = false; subsystem->num_allocated_nsid--; return 0; } static void _spdk_nvmf_ns_hot_remove(struct spdk_nvmf_subsystem *subsystem, void *cb_arg, int status) { struct spdk_nvmf_ns *ns = cb_arg; spdk_nvmf_subsystem_remove_ns(ns->subsystem, ns->id); spdk_nvmf_subsystem_resume(subsystem, NULL, NULL); } static void spdk_nvmf_ns_hot_remove(void *remove_ctx) { struct spdk_nvmf_ns *ns = remove_ctx; int rc; 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"); } } uint32_t spdk_nvmf_subsystem_add_ns(struct spdk_nvmf_subsystem *subsystem, struct spdk_bdev *bdev, uint32_t nsid) { struct spdk_nvmf_ns *ns; uint32_t i; int rc; assert(subsystem->state == SPDK_NVMF_SUBSYSTEM_INACTIVE || subsystem->state == SPDK_NVMF_SUBSYSTEM_PAUSED); if (nsid == SPDK_NVME_GLOBAL_NS_TAG) { SPDK_ERRLOG("Invalid NSID %" PRIu32 "\n", nsid); return 0; } if (nsid > subsystem->max_nsid || (nsid == 0 && subsystem->num_allocated_nsid == subsystem->max_nsid)) { struct spdk_nvmf_ns *new_ns_array; uint32_t new_max_nsid; if (nsid > subsystem->max_nsid) { new_max_nsid = nsid; } else { new_max_nsid = subsystem->max_nsid + 1; } if (!TAILQ_EMPTY(&subsystem->ctrlrs)) { SPDK_ERRLOG("Can't extend NSID range with active connections\n"); return 0; } new_ns_array = realloc(subsystem->ns, sizeof(struct spdk_nvmf_ns) * new_max_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) * (new_max_nsid - subsystem->max_nsid)); subsystem->ns = new_ns_array; subsystem->max_nsid = new_max_nsid; } if (nsid == 0) { /* NSID not specified - find a free index */ for (i = 0; i < subsystem->max_nsid; i++) { if (_spdk_nvmf_subsystem_get_ns(subsystem, i + 1) == NULL) { nsid = i + 1; break; } } if (nsid == 0) { SPDK_ERRLOG("All available NSIDs in use\n"); return 0; } } else { /* Specific NSID requested */ if (_spdk_nvmf_subsystem_get_ns(subsystem, nsid)) { SPDK_ERRLOG("Requested NSID %" PRIu32 " already in use\n", nsid); return 0; } } ns = &subsystem->ns[nsid - 1]; memset(ns, 0, sizeof(*ns)); ns->bdev = bdev; ns->id = nsid; ns->subsystem = subsystem; rc = spdk_bdev_open(bdev, true, spdk_nvmf_ns_hot_remove, ns, &ns->desc); if (rc != 0) { SPDK_ERRLOG("Subsystem %s: bdev %s cannot be opened, error=%d\n", subsystem->subnqn, spdk_bdev_get_name(bdev), rc); return 0; } ns->allocated = true; SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Subsystem %s: bdev %s assigned nsid %" PRIu32 "\n", spdk_nvmf_subsystem_get_nqn(subsystem), spdk_bdev_get_name(bdev), nsid); subsystem->max_nsid = spdk_max(subsystem->max_nsid, nsid); subsystem->num_allocated_nsid++; return nsid; } 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++) { if (subsystem->ns[nsid - 1].allocated) { 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; next_nsid = spdk_nvmf_subsystem_get_next_allocated_nsid(subsystem, prev_ns->id); 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) { return ns->id; } struct spdk_bdev * spdk_nvmf_ns_get_bdev(struct spdk_nvmf_ns *ns) { return ns->bdev; } const char * spdk_nvmf_subsystem_get_sn(const struct spdk_nvmf_subsystem *subsystem) { return subsystem->sn; } int spdk_nvmf_subsystem_set_sn(struct spdk_nvmf_subsystem *subsystem, const char *sn) { size_t len, max_len; max_len = sizeof(subsystem->sn) - 1; len = strlen(sn); if (len > max_len) { SPDK_DEBUGLOG(SPDK_LOG_NVMF, "Invalid sn \"%s\": length %zu > max %zu\n", sn, len, max_len); return -1; } snprintf(subsystem->sn, sizeof(subsystem->sn), "%s", sn); return 0; } 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; } static uint16_t spdk_nvmf_subsystem_gen_cntlid(struct spdk_nvmf_subsystem *subsystem) { int count; /* * 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). */ for (count = 0; count < 0xFFF0 - 1; count++) { 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. */ if (spdk_nvmf_subsystem_get_ctrlr(subsystem, subsystem->next_cntlid) == NULL) { /* Found unused cntlid */ return subsystem->next_cntlid; } } /* 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); 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); } 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; } } return NULL; }