2016-06-06 14:44:30 -07: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NVMF_INTERNAL_H__
|
|
|
|
#define __NVMF_INTERNAL_H__
|
|
|
|
|
2017-05-02 11:18:25 -07:00
|
|
|
#include "spdk/stdinc.h"
|
2016-06-06 14:44:30 -07:00
|
|
|
|
2017-08-17 18:20:49 -07:00
|
|
|
#include "spdk/likely.h"
|
2017-05-31 16:14:01 -07:00
|
|
|
#include "spdk/nvmf.h"
|
2016-06-06 14:44:30 -07:00
|
|
|
#include "spdk/nvmf_spec.h"
|
|
|
|
#include "spdk/assert.h"
|
|
|
|
#include "spdk/queue.h"
|
2017-02-02 10:07:12 -07:00
|
|
|
#include "spdk/util.h"
|
2016-06-06 14:44:30 -07:00
|
|
|
|
2017-07-13 14:18:08 -07:00
|
|
|
#define SPDK_NVMF_DEFAULT_NUM_CTRLRS_PER_LCORE 1
|
2016-06-08 13:36:53 -07:00
|
|
|
|
2017-01-19 11:55:56 -07:00
|
|
|
struct spdk_nvmf_tgt {
|
2017-08-17 13:39:27 -07:00
|
|
|
struct spdk_nvmf_tgt_opts opts;
|
|
|
|
|
2017-08-23 11:32:09 -07:00
|
|
|
struct spdk_thread *master_thread;
|
|
|
|
|
2017-08-22 16:38:53 -07:00
|
|
|
uint16_t next_cntlid;
|
2017-02-17 09:32:09 +08:00
|
|
|
uint64_t discovery_genctr;
|
2017-02-17 07:42:30 +08:00
|
|
|
TAILQ_HEAD(, spdk_nvmf_subsystem) subsystems;
|
2017-02-17 09:47:56 +08:00
|
|
|
struct spdk_nvmf_discovery_log_page *discovery_log_page;
|
2017-02-17 10:01:34 +08:00
|
|
|
size_t discovery_log_page_size;
|
2017-03-03 12:24:16 +08:00
|
|
|
uint32_t current_subsystem_id;
|
2017-07-24 16:30:07 -07:00
|
|
|
TAILQ_HEAD(, spdk_nvmf_transport) transports;
|
2016-06-08 13:19:48 -07:00
|
|
|
};
|
|
|
|
|
2017-08-18 14:08:29 -07:00
|
|
|
struct spdk_nvmf_host {
|
|
|
|
char *nqn;
|
|
|
|
TAILQ_ENTRY(spdk_nvmf_host) link;
|
|
|
|
};
|
|
|
|
|
2017-08-18 14:43:15 -07:00
|
|
|
struct spdk_nvmf_listener {
|
2017-08-23 10:23:44 -07:00
|
|
|
struct spdk_nvme_transport_id trid;
|
2017-08-18 14:43:15 -07:00
|
|
|
TAILQ_ENTRY(spdk_nvmf_listener) link;
|
|
|
|
};
|
|
|
|
|
2017-07-28 11:21:45 -07:00
|
|
|
struct spdk_nvmf_poll_group {
|
|
|
|
struct spdk_nvmf_transport *transport;
|
|
|
|
TAILQ_ENTRY(spdk_nvmf_poll_group) link;
|
|
|
|
};
|
|
|
|
|
2017-08-17 09:01:51 -07:00
|
|
|
struct spdk_nvmf_ns {
|
|
|
|
struct spdk_bdev *bdev;
|
|
|
|
struct spdk_bdev_desc *desc;
|
|
|
|
struct spdk_io_channel *ch;
|
|
|
|
uint32_t id;
|
|
|
|
bool allocated;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct spdk_nvmf_subsystem {
|
|
|
|
uint32_t id;
|
|
|
|
char subnqn[SPDK_NVMF_NQN_MAX_LEN + 1];
|
|
|
|
enum spdk_nvmf_subtype subtype;
|
|
|
|
bool is_removed;
|
|
|
|
|
2017-08-18 15:26:41 -07:00
|
|
|
struct spdk_nvmf_tgt *tgt;
|
|
|
|
|
2017-08-23 11:16:37 -07:00
|
|
|
char sn[SPDK_NVME_CTRLR_SN_LEN + 1];
|
2017-08-17 09:01:51 -07:00
|
|
|
|
2017-08-24 13:48:59 -07:00
|
|
|
/* Array of namespaces of size max_nsid indexed by nsid - 1 */
|
|
|
|
struct spdk_nvmf_ns *ns;
|
2017-08-17 09:01:51 -07:00
|
|
|
uint32_t max_nsid;
|
2017-08-24 13:48:59 -07:00
|
|
|
uint32_t num_allocated_nsid;
|
2017-08-17 09:01:51 -07:00
|
|
|
|
|
|
|
TAILQ_HEAD(, spdk_nvmf_ctrlr) ctrlrs;
|
|
|
|
|
|
|
|
TAILQ_HEAD(, spdk_nvmf_host) hosts;
|
|
|
|
|
|
|
|
TAILQ_HEAD(, spdk_nvmf_listener) listeners;
|
|
|
|
|
|
|
|
TAILQ_ENTRY(spdk_nvmf_subsystem) entries;
|
|
|
|
};
|
|
|
|
|
2017-08-22 16:38:53 -07:00
|
|
|
uint16_t spdk_nvmf_tgt_gen_cntlid(struct spdk_nvmf_tgt *tgt);
|
|
|
|
|
2017-07-24 16:30:07 -07:00
|
|
|
struct spdk_nvmf_transport *spdk_nvmf_tgt_get_transport(struct spdk_nvmf_tgt *tgt,
|
|
|
|
enum spdk_nvme_transport_type);
|
|
|
|
|
2017-08-17 18:20:49 -07:00
|
|
|
static inline struct spdk_nvmf_ns *
|
|
|
|
_spdk_nvmf_subsystem_get_ns(struct spdk_nvmf_subsystem *subsystem, uint32_t nsid)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_ns *ns;
|
|
|
|
|
|
|
|
/* NOTE: This implicitly also checks for 0, since 0 - 1 wraps around to UINT32_MAX. */
|
|
|
|
if (spdk_unlikely(nsid - 1 >= subsystem->max_nsid)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ns = &subsystem->ns[nsid - 1];
|
|
|
|
if (!ns->allocated) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ns;
|
|
|
|
}
|
|
|
|
|
2017-01-19 11:33:46 -07:00
|
|
|
#define OBJECT_NVMF_IO 0x30
|
|
|
|
|
|
|
|
#define TRACE_GROUP_NVMF 0x3
|
|
|
|
#define TRACE_NVMF_IO_START SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x0)
|
|
|
|
#define TRACE_RDMA_READ_START SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x1)
|
|
|
|
#define TRACE_RDMA_WRITE_START SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x2)
|
|
|
|
#define TRACE_RDMA_READ_COMPLETE SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x3)
|
|
|
|
#define TRACE_RDMA_WRITE_COMPLETE SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x4)
|
|
|
|
#define TRACE_NVMF_LIB_READ_START SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x5)
|
|
|
|
#define TRACE_NVMF_LIB_WRITE_START SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x6)
|
|
|
|
#define TRACE_NVMF_LIB_COMPLETE SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x7)
|
|
|
|
#define TRACE_NVMF_IO_COMPLETE SPDK_TPOINT_ID(TRACE_GROUP_NVMF, 0x8)
|
|
|
|
|
2016-06-06 14:44:30 -07:00
|
|
|
#endif /* __NVMF_INTERNAL_H__ */
|