2018-09-19 04:04:40 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "spdk/stdinc.h"
|
|
|
|
|
|
|
|
#include "spdk_cunit.h"
|
2019-05-14 17:21:52 +00:00
|
|
|
|
2018-09-19 04:04:40 +00:00
|
|
|
#include "spdk_internal/mock.h"
|
2018-09-17 23:18:53 +00:00
|
|
|
#include "spdk_internal/thread.h"
|
2018-09-19 04:04:40 +00:00
|
|
|
|
|
|
|
#include "common/lib/test_env.c"
|
2019-05-14 17:21:52 +00:00
|
|
|
#include "common/lib/test_sock.c"
|
|
|
|
|
2018-09-19 04:04:40 +00:00
|
|
|
#include "nvmf/ctrlr.c"
|
|
|
|
#include "nvmf/tcp.c"
|
|
|
|
|
|
|
|
#define UT_IPV4_ADDR "192.168.0.1"
|
|
|
|
#define UT_PORT "4420"
|
|
|
|
#define UT_NVMF_ADRFAM_INVALID 0xf
|
|
|
|
#define UT_MAX_QUEUE_DEPTH 128
|
|
|
|
#define UT_MAX_QPAIRS_PER_CTRLR 128
|
|
|
|
#define UT_IN_CAPSULE_DATA_SIZE 1024
|
|
|
|
#define UT_MAX_IO_SIZE 4096
|
|
|
|
#define UT_IO_UNIT_SIZE 1024
|
|
|
|
#define UT_MAX_AQ_DEPTH 64
|
|
|
|
#define UT_SQ_HEAD_MAX 128
|
2018-12-06 21:48:51 +00:00
|
|
|
#define UT_NUM_SHARED_BUFFERS 128
|
2018-09-19 04:04:40 +00:00
|
|
|
|
|
|
|
SPDK_LOG_REGISTER_COMPONENT("nvmf", SPDK_LOG_NVMF)
|
|
|
|
SPDK_LOG_REGISTER_COMPONENT("nvme", SPDK_LOG_NVME)
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_qpair_get_listen_trid,
|
|
|
|
int,
|
|
|
|
(struct spdk_nvmf_qpair *qpair, struct spdk_nvme_transport_id *trid),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_subsystem_add_ctrlr,
|
|
|
|
int,
|
|
|
|
(struct spdk_nvmf_subsystem *subsystem, struct spdk_nvmf_ctrlr *ctrlr),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_subsystem_get_ctrlr,
|
|
|
|
struct spdk_nvmf_ctrlr *,
|
|
|
|
(struct spdk_nvmf_subsystem *subsystem, uint16_t cntlid),
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_tgt_find_subsystem,
|
|
|
|
struct spdk_nvmf_subsystem *,
|
|
|
|
(struct spdk_nvmf_tgt *tgt, const char *subnqn),
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_subsystem_listener_allowed,
|
|
|
|
bool,
|
|
|
|
(struct spdk_nvmf_subsystem *subsystem, struct spdk_nvme_transport_id *trid),
|
|
|
|
true);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_transport_qpair_set_sqsize,
|
|
|
|
int,
|
|
|
|
(struct spdk_nvmf_qpair *qpair),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB_V(spdk_nvmf_get_discovery_log_page,
|
2019-07-18 08:40:33 +00:00
|
|
|
(struct spdk_nvmf_tgt *tgt, const char *hostnqn, struct iovec *iov,
|
|
|
|
uint32_t iovcnt, uint64_t offset, uint32_t length));
|
2018-09-19 04:04:40 +00:00
|
|
|
|
|
|
|
DEFINE_STUB_V(spdk_nvmf_subsystem_remove_ctrlr,
|
|
|
|
(struct spdk_nvmf_subsystem *subsystem, struct spdk_nvmf_ctrlr *ctrlr));
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_subsystem_get_first_ns,
|
|
|
|
struct spdk_nvmf_ns *,
|
|
|
|
(struct spdk_nvmf_subsystem *subsystem),
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_subsystem_get_next_ns,
|
|
|
|
struct spdk_nvmf_ns *,
|
|
|
|
(struct spdk_nvmf_subsystem *subsystem, struct spdk_nvmf_ns *prev_ns),
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_subsystem_host_allowed,
|
|
|
|
bool,
|
|
|
|
(struct spdk_nvmf_subsystem *subsystem, const char *hostnqn),
|
|
|
|
true);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_ctrlr_dsm_supported,
|
|
|
|
bool,
|
|
|
|
(struct spdk_nvmf_ctrlr *ctrlr),
|
|
|
|
false);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_ctrlr_write_zeroes_supported,
|
|
|
|
bool,
|
|
|
|
(struct spdk_nvmf_ctrlr *ctrlr),
|
|
|
|
false);
|
|
|
|
|
2019-01-15 17:47:56 +00:00
|
|
|
DEFINE_STUB(spdk_nvmf_bdev_ctrlr_read_cmd,
|
|
|
|
int,
|
|
|
|
(struct spdk_bdev *bdev, struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
struct spdk_nvmf_request *req),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_bdev_ctrlr_write_cmd,
|
|
|
|
int,
|
|
|
|
(struct spdk_bdev *bdev, struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
struct spdk_nvmf_request *req),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_bdev_ctrlr_write_zeroes_cmd,
|
|
|
|
int,
|
|
|
|
(struct spdk_bdev *bdev, struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
struct spdk_nvmf_request *req),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_bdev_ctrlr_flush_cmd,
|
|
|
|
int,
|
|
|
|
(struct spdk_bdev *bdev, struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
struct spdk_nvmf_request *req),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_bdev_ctrlr_dsm_cmd,
|
|
|
|
int,
|
|
|
|
(struct spdk_bdev *bdev, struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
struct spdk_nvmf_request *req),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_bdev_ctrlr_nvme_passthru_io,
|
|
|
|
int,
|
|
|
|
(struct spdk_bdev *bdev, struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
struct spdk_nvmf_request *req),
|
|
|
|
0);
|
|
|
|
|
2019-06-21 05:00:28 +00:00
|
|
|
DEFINE_STUB(spdk_nvmf_bdev_ctrlr_get_dif_ctx,
|
|
|
|
bool,
|
|
|
|
(struct spdk_bdev *bdev, struct spdk_nvme_cmd *cmd, struct spdk_dif_ctx *dif_ctx),
|
|
|
|
false);
|
|
|
|
|
2019-01-15 20:19:42 +00:00
|
|
|
DEFINE_STUB(spdk_nvmf_transport_req_complete,
|
|
|
|
int,
|
|
|
|
(struct spdk_nvmf_request *req),
|
|
|
|
0);
|
|
|
|
|
2019-08-22 03:04:23 +00:00
|
|
|
DEFINE_STUB(spdk_nvmf_request_get_buffers,
|
|
|
|
int,
|
|
|
|
(struct spdk_nvmf_request *req, struct spdk_nvmf_transport_poll_group *group,
|
|
|
|
struct spdk_nvmf_transport *transport, uint32_t num_buffers),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB_V(spdk_nvmf_request_free_buffers,
|
|
|
|
(struct spdk_nvmf_request *req, struct spdk_nvmf_transport_poll_group *group,
|
|
|
|
struct spdk_nvmf_transport *transport, uint32_t num_buffers));
|
|
|
|
|
2019-05-15 13:53:39 +00:00
|
|
|
DEFINE_STUB(spdk_sock_get_optimal_sock_group,
|
|
|
|
int,
|
|
|
|
(struct spdk_sock *sock, struct spdk_sock_group **group),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_sock_group_get_ctx,
|
|
|
|
void *,
|
|
|
|
(struct spdk_sock_group *group),
|
|
|
|
NULL);
|
|
|
|
|
2019-07-15 12:58:16 +00:00
|
|
|
DEFINE_STUB(spdk_sock_set_priority,
|
|
|
|
int,
|
|
|
|
(struct spdk_sock *sock, int priority),
|
|
|
|
0);
|
|
|
|
|
2019-02-28 02:50:03 +00:00
|
|
|
DEFINE_STUB_V(spdk_nvmf_ns_reservation_request, (void *ctx));
|
|
|
|
|
2018-09-19 04:04:40 +00:00
|
|
|
struct spdk_trace_histories *g_trace_histories;
|
|
|
|
|
|
|
|
struct spdk_bdev {
|
|
|
|
int ut_mock;
|
|
|
|
uint64_t blockcnt;
|
|
|
|
};
|
|
|
|
|
|
|
|
int
|
|
|
|
spdk_nvme_transport_id_compare(const struct spdk_nvme_transport_id *trid1,
|
|
|
|
const struct spdk_nvme_transport_id *trid2)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
spdk_trace_register_object(uint8_t type, char id_prefix)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-04-30 20:45:03 +00:00
|
|
|
spdk_trace_register_description(const char *name,
|
2018-09-19 04:04:40 +00:00
|
|
|
uint16_t tpoint_id, uint8_t owner_type,
|
|
|
|
uint8_t object_type, uint8_t new_object,
|
2019-04-25 12:48:01 +00:00
|
|
|
uint8_t arg1_type, const char *arg1_name)
|
2018-09-19 04:04:40 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_spdk_trace_record(uint64_t tsc, uint16_t tpoint_id, uint16_t poller_id,
|
|
|
|
uint32_t size, uint64_t object_id, uint64_t arg1)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
spdk_nvmf_qpair_disconnect(struct spdk_nvmf_qpair *qpair, nvmf_qpair_disconnect_cb cb_fn, void *ctx)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2019-06-21 05:20:22 +00:00
|
|
|
spdk_nvmf_bdev_ctrlr_identify_ns(struct spdk_nvmf_ns *ns, struct spdk_nvme_ns_data *nsdata,
|
|
|
|
bool dif_insert_or_strip)
|
2018-09-19 04:04:40 +00:00
|
|
|
{
|
|
|
|
uint64_t num_blocks;
|
|
|
|
|
|
|
|
SPDK_CU_ASSERT_FATAL(ns->bdev != NULL);
|
|
|
|
num_blocks = ns->bdev->blockcnt;
|
|
|
|
nsdata->nsze = num_blocks;
|
|
|
|
nsdata->ncap = num_blocks;
|
|
|
|
nsdata->nuse = num_blocks;
|
|
|
|
nsdata->nlbaf = 0;
|
|
|
|
nsdata->flbas.format = 0;
|
|
|
|
nsdata->lbaf[0].lbads = spdk_u32log2(512);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
spdk_nvmf_subsystem_get_sn(const struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
return subsystem->sn;
|
|
|
|
}
|
|
|
|
|
2018-12-29 19:39:48 +00:00
|
|
|
const char *
|
|
|
|
spdk_nvmf_subsystem_get_mn(const struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
return subsystem->mn;
|
|
|
|
}
|
|
|
|
|
2018-09-19 04:04:40 +00:00
|
|
|
void
|
|
|
|
spdk_trace_add_register_fn(struct spdk_trace_register_fn *reg_fn)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_nvmf_tcp_create(void)
|
|
|
|
{
|
|
|
|
struct spdk_thread *thread;
|
|
|
|
struct spdk_nvmf_transport *transport;
|
|
|
|
struct spdk_nvmf_tcp_transport *ttransport;
|
|
|
|
struct spdk_nvmf_transport_opts opts;
|
|
|
|
|
2019-04-22 20:29:06 +00:00
|
|
|
thread = spdk_thread_create(NULL, NULL);
|
2018-09-19 04:04:40 +00:00
|
|
|
SPDK_CU_ASSERT_FATAL(thread != NULL);
|
2018-09-17 23:18:53 +00:00
|
|
|
spdk_set_thread(thread);
|
2018-09-19 04:04:40 +00:00
|
|
|
|
|
|
|
/* case 1 */
|
|
|
|
memset(&opts, 0, sizeof(opts));
|
|
|
|
opts.max_queue_depth = UT_MAX_QUEUE_DEPTH;
|
|
|
|
opts.max_qpairs_per_ctrlr = UT_MAX_QPAIRS_PER_CTRLR;
|
|
|
|
opts.in_capsule_data_size = UT_IN_CAPSULE_DATA_SIZE;
|
|
|
|
opts.max_io_size = UT_MAX_IO_SIZE;
|
|
|
|
opts.io_unit_size = UT_IO_UNIT_SIZE;
|
|
|
|
opts.max_aq_depth = UT_MAX_AQ_DEPTH;
|
2018-12-06 21:48:51 +00:00
|
|
|
opts.num_shared_buffers = UT_NUM_SHARED_BUFFERS;
|
2018-09-19 04:04:40 +00:00
|
|
|
/* expect success */
|
|
|
|
transport = spdk_nvmf_tcp_create(&opts);
|
|
|
|
CU_ASSERT_PTR_NOT_NULL(transport);
|
|
|
|
ttransport = SPDK_CONTAINEROF(transport, struct spdk_nvmf_tcp_transport, transport);
|
|
|
|
SPDK_CU_ASSERT_FATAL(ttransport != NULL);
|
2018-12-14 14:49:44 +00:00
|
|
|
transport->opts = opts;
|
|
|
|
CU_ASSERT(transport->opts.max_queue_depth == UT_MAX_QUEUE_DEPTH);
|
|
|
|
CU_ASSERT(transport->opts.max_io_size == UT_MAX_IO_SIZE);
|
|
|
|
CU_ASSERT(transport->opts.in_capsule_data_size == UT_IN_CAPSULE_DATA_SIZE);
|
|
|
|
CU_ASSERT(transport->opts.io_unit_size == UT_IO_UNIT_SIZE);
|
2018-09-19 04:04:40 +00:00
|
|
|
/* destroy transport */
|
2019-01-14 19:55:06 +00:00
|
|
|
spdk_mempool_free(ttransport->transport.data_buf_pool);
|
2018-09-19 04:04:40 +00:00
|
|
|
free(ttransport);
|
|
|
|
|
|
|
|
/* case 2 */
|
|
|
|
memset(&opts, 0, sizeof(opts));
|
|
|
|
opts.max_queue_depth = UT_MAX_QUEUE_DEPTH;
|
|
|
|
opts.max_qpairs_per_ctrlr = UT_MAX_QPAIRS_PER_CTRLR;
|
|
|
|
opts.in_capsule_data_size = UT_IN_CAPSULE_DATA_SIZE;
|
|
|
|
opts.max_io_size = UT_MAX_IO_SIZE;
|
|
|
|
opts.io_unit_size = UT_MAX_IO_SIZE + 1;
|
|
|
|
opts.max_aq_depth = UT_MAX_AQ_DEPTH;
|
2018-12-06 21:48:51 +00:00
|
|
|
opts.num_shared_buffers = UT_NUM_SHARED_BUFFERS;
|
2018-09-19 04:04:40 +00:00
|
|
|
/* expect success */
|
|
|
|
transport = spdk_nvmf_tcp_create(&opts);
|
2018-12-14 14:49:44 +00:00
|
|
|
CU_ASSERT_PTR_NOT_NULL(transport);
|
2018-09-19 04:04:40 +00:00
|
|
|
ttransport = SPDK_CONTAINEROF(transport, struct spdk_nvmf_tcp_transport, transport);
|
|
|
|
SPDK_CU_ASSERT_FATAL(ttransport != NULL);
|
2018-12-14 14:49:44 +00:00
|
|
|
transport->opts = opts;
|
|
|
|
CU_ASSERT(transport->opts.max_queue_depth == UT_MAX_QUEUE_DEPTH);
|
|
|
|
CU_ASSERT(transport->opts.max_io_size == UT_MAX_IO_SIZE);
|
|
|
|
CU_ASSERT(transport->opts.in_capsule_data_size == UT_IN_CAPSULE_DATA_SIZE);
|
|
|
|
CU_ASSERT(transport->opts.io_unit_size == UT_MAX_IO_SIZE);
|
2018-09-19 04:04:40 +00:00
|
|
|
/* destroy transport */
|
2019-01-14 19:55:06 +00:00
|
|
|
spdk_mempool_free(ttransport->transport.data_buf_pool);
|
2018-09-19 04:04:40 +00:00
|
|
|
free(ttransport);
|
|
|
|
|
|
|
|
/* case 3 */
|
|
|
|
memset(&opts, 0, sizeof(opts));
|
|
|
|
opts.max_queue_depth = UT_MAX_QUEUE_DEPTH;
|
|
|
|
opts.max_qpairs_per_ctrlr = UT_MAX_QPAIRS_PER_CTRLR;
|
|
|
|
opts.in_capsule_data_size = UT_IN_CAPSULE_DATA_SIZE;
|
|
|
|
opts.max_io_size = UT_MAX_IO_SIZE;
|
|
|
|
opts.io_unit_size = 16;
|
|
|
|
opts.max_aq_depth = UT_MAX_AQ_DEPTH;
|
|
|
|
/* expect failse */
|
|
|
|
transport = spdk_nvmf_tcp_create(&opts);
|
|
|
|
CU_ASSERT_PTR_NULL(transport);
|
|
|
|
|
2019-01-15 20:54:51 +00:00
|
|
|
spdk_thread_exit(thread);
|
2019-05-21 21:59:12 +00:00
|
|
|
spdk_thread_destroy(thread);
|
2018-09-19 04:04:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_nvmf_tcp_destroy(void)
|
|
|
|
{
|
|
|
|
struct spdk_thread *thread;
|
|
|
|
struct spdk_nvmf_transport *transport;
|
|
|
|
struct spdk_nvmf_transport_opts opts;
|
|
|
|
|
2019-04-22 20:29:06 +00:00
|
|
|
thread = spdk_thread_create(NULL, NULL);
|
2018-09-19 04:04:40 +00:00
|
|
|
SPDK_CU_ASSERT_FATAL(thread != NULL);
|
2018-09-17 23:18:53 +00:00
|
|
|
spdk_set_thread(thread);
|
2018-09-19 04:04:40 +00:00
|
|
|
|
|
|
|
/* case 1 */
|
|
|
|
memset(&opts, 0, sizeof(opts));
|
|
|
|
opts.max_queue_depth = UT_MAX_QUEUE_DEPTH;
|
|
|
|
opts.max_qpairs_per_ctrlr = UT_MAX_QPAIRS_PER_CTRLR;
|
|
|
|
opts.in_capsule_data_size = UT_IN_CAPSULE_DATA_SIZE;
|
|
|
|
opts.max_io_size = UT_MAX_IO_SIZE;
|
|
|
|
opts.io_unit_size = UT_IO_UNIT_SIZE;
|
|
|
|
opts.max_aq_depth = UT_MAX_AQ_DEPTH;
|
2018-12-06 21:48:51 +00:00
|
|
|
opts.num_shared_buffers = UT_NUM_SHARED_BUFFERS;
|
2018-09-19 04:04:40 +00:00
|
|
|
transport = spdk_nvmf_tcp_create(&opts);
|
|
|
|
CU_ASSERT_PTR_NOT_NULL(transport);
|
2018-12-14 14:49:44 +00:00
|
|
|
transport->opts = opts;
|
2018-09-19 04:04:40 +00:00
|
|
|
/* destroy transport */
|
|
|
|
CU_ASSERT(spdk_nvmf_tcp_destroy(transport) == 0);
|
|
|
|
|
2019-01-15 20:54:51 +00:00
|
|
|
spdk_thread_exit(thread);
|
2019-05-21 21:59:12 +00:00
|
|
|
spdk_thread_destroy(thread);
|
2018-09-19 04:04:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_nvmf_tcp_poll_group_create(void)
|
|
|
|
{
|
2018-12-06 21:48:51 +00:00
|
|
|
struct spdk_nvmf_transport *transport;
|
2018-09-19 04:04:40 +00:00
|
|
|
struct spdk_nvmf_transport_poll_group *group;
|
2018-11-28 15:22:37 +00:00
|
|
|
struct spdk_thread *thread;
|
2018-12-06 21:48:51 +00:00
|
|
|
struct spdk_nvmf_transport_opts opts;
|
2019-05-14 17:21:52 +00:00
|
|
|
struct spdk_sock_group grp = {};
|
2018-11-28 15:22:37 +00:00
|
|
|
|
2019-04-22 20:29:06 +00:00
|
|
|
thread = spdk_thread_create(NULL, NULL);
|
2018-11-28 15:22:37 +00:00
|
|
|
SPDK_CU_ASSERT_FATAL(thread != NULL);
|
|
|
|
spdk_set_thread(thread);
|
2018-09-19 04:04:40 +00:00
|
|
|
|
2018-12-06 21:48:51 +00:00
|
|
|
memset(&opts, 0, sizeof(opts));
|
|
|
|
opts.max_queue_depth = UT_MAX_QUEUE_DEPTH;
|
|
|
|
opts.max_qpairs_per_ctrlr = UT_MAX_QPAIRS_PER_CTRLR;
|
|
|
|
opts.in_capsule_data_size = UT_IN_CAPSULE_DATA_SIZE;
|
|
|
|
opts.max_io_size = UT_MAX_IO_SIZE;
|
|
|
|
opts.io_unit_size = UT_IO_UNIT_SIZE;
|
|
|
|
opts.max_aq_depth = UT_MAX_AQ_DEPTH;
|
|
|
|
opts.num_shared_buffers = UT_NUM_SHARED_BUFFERS;
|
|
|
|
transport = spdk_nvmf_tcp_create(&opts);
|
|
|
|
CU_ASSERT_PTR_NOT_NULL(transport);
|
|
|
|
transport->opts = opts;
|
2019-05-14 17:21:52 +00:00
|
|
|
MOCK_SET(spdk_sock_group_create, &grp);
|
2018-12-06 21:48:51 +00:00
|
|
|
group = spdk_nvmf_tcp_poll_group_create(transport);
|
2019-05-14 17:21:52 +00:00
|
|
|
MOCK_CLEAR_P(spdk_sock_group_create);
|
2018-12-06 21:48:51 +00:00
|
|
|
SPDK_CU_ASSERT_FATAL(group);
|
|
|
|
group->transport = transport;
|
2018-09-19 04:04:40 +00:00
|
|
|
spdk_nvmf_tcp_poll_group_destroy(group);
|
2019-01-28 21:02:47 +00:00
|
|
|
spdk_nvmf_tcp_destroy(transport);
|
2018-11-28 15:22:37 +00:00
|
|
|
|
2019-01-15 20:54:51 +00:00
|
|
|
spdk_thread_exit(thread);
|
2019-05-21 21:59:12 +00:00
|
|
|
spdk_thread_destroy(thread);
|
2018-09-19 04:04:40 +00:00
|
|
|
}
|
|
|
|
|
2019-05-24 05:14:59 +00:00
|
|
|
static void
|
|
|
|
test_nvmf_tcp_send_c2h_data(void)
|
|
|
|
{
|
|
|
|
struct spdk_thread *thread;
|
|
|
|
struct spdk_nvmf_tcp_transport ttransport = {};
|
|
|
|
struct spdk_nvmf_tcp_qpair tqpair = {};
|
|
|
|
struct spdk_nvmf_tcp_req tcp_req = {};
|
|
|
|
struct nvme_tcp_pdu pdu = {};
|
|
|
|
struct spdk_nvme_tcp_c2h_data_hdr *c2h_data;
|
|
|
|
|
2019-08-20 07:38:24 +00:00
|
|
|
pdu.hdr = &pdu.hdr_mem;
|
2019-05-24 05:14:59 +00:00
|
|
|
thread = spdk_thread_create(NULL, NULL);
|
|
|
|
SPDK_CU_ASSERT_FATAL(thread != NULL);
|
|
|
|
spdk_set_thread(thread);
|
|
|
|
|
|
|
|
tqpair.qpair.transport = &ttransport.transport;
|
|
|
|
TAILQ_INIT(&tqpair.free_queue);
|
|
|
|
TAILQ_INIT(&tqpair.send_queue);
|
2019-08-29 00:42:26 +00:00
|
|
|
STAILQ_INIT(&tqpair.queued_c2h_data_tcp_req);
|
2019-05-24 05:14:59 +00:00
|
|
|
|
|
|
|
/* Set qpair state to make unrelated operations NOP */
|
|
|
|
tqpair.state = NVME_TCP_QPAIR_STATE_RUNNING;
|
|
|
|
tqpair.recv_state = NVME_TCP_PDU_RECV_STATE_ERROR;
|
|
|
|
|
|
|
|
TAILQ_INSERT_TAIL(&tqpair.free_queue, &pdu, tailq);
|
|
|
|
tqpair.free_pdu_num++;
|
|
|
|
|
|
|
|
tcp_req.req.cmd = (union nvmf_h2c_msg *)&tcp_req.cmd;
|
|
|
|
|
|
|
|
tcp_req.req.iov[0].iov_base = (void *)0xDEADBEEF;
|
|
|
|
tcp_req.req.iov[0].iov_len = NVMF_TCP_PDU_MAX_C2H_DATA_SIZE;
|
|
|
|
tcp_req.req.iov[1].iov_base = (void *)0xFEEDBEEF;
|
|
|
|
tcp_req.req.iov[1].iov_len = NVMF_TCP_PDU_MAX_C2H_DATA_SIZE;
|
|
|
|
tcp_req.req.iov[2].iov_base = (void *)0xC0FFEE;
|
|
|
|
tcp_req.req.iov[2].iov_len = NVMF_TCP_PDU_MAX_C2H_DATA_SIZE;
|
|
|
|
tcp_req.req.iovcnt = 3;
|
|
|
|
tcp_req.req.length = NVMF_TCP_PDU_MAX_C2H_DATA_SIZE * 3;
|
|
|
|
|
|
|
|
CU_ASSERT(spdk_nvmf_tcp_calc_c2h_data_pdu_num(&tcp_req) == 3);
|
|
|
|
|
2019-08-29 00:42:26 +00:00
|
|
|
STAILQ_INSERT_TAIL(&tqpair.queued_c2h_data_tcp_req, &tcp_req, link);
|
2019-05-24 05:14:59 +00:00
|
|
|
|
|
|
|
tcp_req.c2h_data_offset = NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2;
|
|
|
|
|
|
|
|
/* 1st C2H */
|
|
|
|
spdk_nvmf_tcp_send_c2h_data(&tqpair, &tcp_req);
|
|
|
|
|
|
|
|
CU_ASSERT(TAILQ_FIRST(&tqpair.send_queue) == &pdu);
|
|
|
|
TAILQ_REMOVE(&tqpair.send_queue, &pdu, tailq);
|
|
|
|
TAILQ_INSERT_TAIL(&tqpair.free_queue, &pdu, tailq);
|
|
|
|
tqpair.free_pdu_num++;
|
|
|
|
|
2019-08-20 07:38:24 +00:00
|
|
|
c2h_data = &pdu.hdr->c2h_data;
|
2019-05-24 05:14:59 +00:00
|
|
|
CU_ASSERT(c2h_data->datao == NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2);
|
|
|
|
CU_ASSERT(c2h_data->datal = NVMF_TCP_PDU_MAX_C2H_DATA_SIZE);
|
|
|
|
CU_ASSERT(c2h_data->common.plen == sizeof(*c2h_data) + NVMF_TCP_PDU_MAX_C2H_DATA_SIZE);
|
|
|
|
CU_ASSERT(!(c2h_data->common.flags & SPDK_NVME_TCP_C2H_DATA_FLAGS_LAST_PDU));
|
|
|
|
|
|
|
|
CU_ASSERT(pdu.data_iovcnt == 2);
|
|
|
|
CU_ASSERT((uint64_t)pdu.data_iov[0].iov_base == 0xDEADBEEF + NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2);
|
|
|
|
CU_ASSERT(pdu.data_iov[0].iov_len == NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2);
|
|
|
|
CU_ASSERT((uint64_t)pdu.data_iov[1].iov_base == 0xFEEDBEEF);
|
|
|
|
CU_ASSERT(pdu.data_iov[1].iov_len == NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2);
|
|
|
|
|
|
|
|
CU_ASSERT(tcp_req.c2h_data_offset == (NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2) * 3);
|
2019-08-29 00:42:26 +00:00
|
|
|
CU_ASSERT(STAILQ_FIRST(&tqpair.queued_c2h_data_tcp_req) == &tcp_req);
|
2019-05-24 05:14:59 +00:00
|
|
|
|
|
|
|
/* 2nd C2H */
|
|
|
|
spdk_nvmf_tcp_send_c2h_data(&tqpair, &tcp_req);
|
|
|
|
|
|
|
|
CU_ASSERT(TAILQ_FIRST(&tqpair.send_queue) == &pdu);
|
|
|
|
TAILQ_REMOVE(&tqpair.send_queue, &pdu, tailq);
|
|
|
|
TAILQ_INSERT_TAIL(&tqpair.free_queue, &pdu, tailq);
|
|
|
|
tqpair.free_pdu_num++;
|
|
|
|
|
2019-08-20 07:38:24 +00:00
|
|
|
c2h_data = &pdu.hdr->c2h_data;
|
2019-05-24 05:14:59 +00:00
|
|
|
CU_ASSERT(c2h_data->datao == (NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2) * 3);
|
|
|
|
CU_ASSERT(c2h_data->datal = NVMF_TCP_PDU_MAX_C2H_DATA_SIZE);
|
|
|
|
CU_ASSERT(c2h_data->common.plen == sizeof(*c2h_data) + NVMF_TCP_PDU_MAX_C2H_DATA_SIZE);
|
|
|
|
CU_ASSERT(!(c2h_data->common.flags & SPDK_NVME_TCP_C2H_DATA_FLAGS_LAST_PDU));
|
|
|
|
|
|
|
|
CU_ASSERT(pdu.data_iovcnt == 2);
|
|
|
|
CU_ASSERT((uint64_t)pdu.data_iov[0].iov_base == 0xFEEDBEEF + NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2);
|
|
|
|
CU_ASSERT(pdu.data_iov[0].iov_len == NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2);
|
|
|
|
CU_ASSERT((uint64_t)pdu.data_iov[1].iov_base == 0xC0FFEE);
|
|
|
|
CU_ASSERT(pdu.data_iov[1].iov_len == NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2);
|
|
|
|
|
|
|
|
CU_ASSERT(tcp_req.c2h_data_offset == (NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2) * 5);
|
2019-08-29 00:42:26 +00:00
|
|
|
CU_ASSERT(STAILQ_FIRST(&tqpair.queued_c2h_data_tcp_req) == &tcp_req);
|
2019-05-24 05:14:59 +00:00
|
|
|
|
|
|
|
/* 3rd C2H */
|
|
|
|
spdk_nvmf_tcp_send_c2h_data(&tqpair, &tcp_req);
|
|
|
|
|
|
|
|
CU_ASSERT(TAILQ_FIRST(&tqpair.send_queue) == &pdu);
|
|
|
|
TAILQ_REMOVE(&tqpair.send_queue, &pdu, tailq);
|
|
|
|
CU_ASSERT(TAILQ_EMPTY(&tqpair.send_queue));
|
|
|
|
|
2019-08-20 07:38:24 +00:00
|
|
|
c2h_data = &pdu.hdr->c2h_data;
|
2019-05-24 05:14:59 +00:00
|
|
|
CU_ASSERT(c2h_data->datao == (NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2) * 5);
|
|
|
|
CU_ASSERT(c2h_data->datal = NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2);
|
|
|
|
CU_ASSERT(c2h_data->common.plen == sizeof(*c2h_data) + NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2);
|
|
|
|
CU_ASSERT(c2h_data->common.flags & SPDK_NVME_TCP_C2H_DATA_FLAGS_LAST_PDU);
|
|
|
|
|
|
|
|
CU_ASSERT(pdu.data_iovcnt == 1);
|
|
|
|
CU_ASSERT((uint64_t)pdu.data_iov[0].iov_base == 0xC0FFEE + NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2);
|
|
|
|
CU_ASSERT(pdu.data_iov[0].iov_len == NVMF_TCP_PDU_MAX_C2H_DATA_SIZE / 2);
|
|
|
|
|
|
|
|
CU_ASSERT(tcp_req.c2h_data_offset == NVMF_TCP_PDU_MAX_C2H_DATA_SIZE * 3);
|
|
|
|
CU_ASSERT(tqpair.c2h_data_pdu_cnt == 3);
|
2019-08-29 00:42:26 +00:00
|
|
|
CU_ASSERT(STAILQ_EMPTY(&tqpair.queued_c2h_data_tcp_req));
|
2019-05-24 05:14:59 +00:00
|
|
|
|
|
|
|
spdk_poller_unregister(&tqpair.flush_poller);
|
|
|
|
|
|
|
|
spdk_thread_exit(thread);
|
|
|
|
spdk_thread_destroy(thread);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_nvmf_tcp_h2c_data_hdr_handle(void)
|
|
|
|
{
|
|
|
|
struct spdk_nvmf_tcp_transport ttransport = {};
|
|
|
|
struct spdk_nvmf_tcp_qpair tqpair = {};
|
|
|
|
struct nvme_tcp_pdu pdu = {};
|
|
|
|
struct spdk_nvmf_tcp_req tcp_req = {};
|
|
|
|
struct spdk_nvme_tcp_h2c_data_hdr *h2c_data;
|
|
|
|
|
2019-08-20 07:38:24 +00:00
|
|
|
pdu.hdr = &pdu.hdr_mem;
|
2019-05-24 05:14:59 +00:00
|
|
|
TAILQ_INIT(&tqpair.state_queue[TCP_REQUEST_STATE_TRANSFERRING_HOST_TO_CONTROLLER]);
|
|
|
|
tqpair.maxh2cdata = NVMF_TCP_PDU_MAX_H2C_DATA_SIZE;
|
|
|
|
|
|
|
|
/* Set qpair state to make unrelated operations NOP */
|
|
|
|
tqpair.state = NVME_TCP_QPAIR_STATE_RUNNING;
|
|
|
|
tqpair.recv_state = NVME_TCP_PDU_RECV_STATE_ERROR;
|
|
|
|
|
|
|
|
tcp_req.req.iov[0].iov_base = (void *)0xDEADBEEF;
|
|
|
|
tcp_req.req.iov[0].iov_len = (NVMF_TCP_PDU_MAX_H2C_DATA_SIZE / 2) * 5;
|
|
|
|
tcp_req.req.iov[1].iov_base = (void *)0xFEEDBEEF;
|
|
|
|
tcp_req.req.iov[1].iov_len = NVMF_TCP_PDU_MAX_H2C_DATA_SIZE / 2;
|
|
|
|
tcp_req.req.iovcnt = 2;
|
|
|
|
tcp_req.req.length = NVMF_TCP_PDU_MAX_H2C_DATA_SIZE * 3;
|
|
|
|
|
|
|
|
tcp_req.req.cmd = (union nvmf_h2c_msg *)&tcp_req.cmd;
|
|
|
|
tcp_req.req.cmd->nvme_cmd.cid = 1;
|
|
|
|
tcp_req.req.length = NVMF_TCP_PDU_MAX_H2C_DATA_SIZE * 3;
|
|
|
|
tcp_req.ttag = 2;
|
|
|
|
tcp_req.next_expected_r2t_offset = NVMF_TCP_PDU_MAX_H2C_DATA_SIZE * 2;
|
|
|
|
|
|
|
|
TAILQ_INSERT_TAIL(&tqpair.state_queue[TCP_REQUEST_STATE_TRANSFERRING_HOST_TO_CONTROLLER],
|
|
|
|
&tcp_req, state_link);
|
|
|
|
|
2019-08-20 07:38:24 +00:00
|
|
|
h2c_data = &pdu.hdr->h2c_data;
|
2019-05-24 05:14:59 +00:00
|
|
|
h2c_data->cccid = 1;
|
|
|
|
h2c_data->ttag = 2;
|
|
|
|
h2c_data->datao = NVMF_TCP_PDU_MAX_H2C_DATA_SIZE * 2;
|
|
|
|
h2c_data->datal = NVMF_TCP_PDU_MAX_H2C_DATA_SIZE;
|
|
|
|
|
|
|
|
spdk_nvmf_tcp_h2c_data_hdr_handle(&ttransport, &tqpair, &pdu);
|
|
|
|
|
|
|
|
CU_ASSERT(pdu.data_iovcnt == 2);
|
|
|
|
CU_ASSERT((uint64_t)pdu.data_iov[0].iov_base == 0xDEADBEEF + NVMF_TCP_PDU_MAX_H2C_DATA_SIZE * 2);
|
|
|
|
CU_ASSERT(pdu.data_iov[0].iov_len == NVMF_TCP_PDU_MAX_H2C_DATA_SIZE / 2);
|
|
|
|
CU_ASSERT((uint64_t)pdu.data_iov[1].iov_base == 0xFEEDBEEF);
|
|
|
|
CU_ASSERT(pdu.data_iov[1].iov_len == NVMF_TCP_PDU_MAX_H2C_DATA_SIZE / 2);
|
|
|
|
|
|
|
|
CU_ASSERT(TAILQ_FIRST(&tqpair.state_queue[TCP_REQUEST_STATE_TRANSFERRING_HOST_TO_CONTROLLER]) ==
|
|
|
|
&tcp_req);
|
|
|
|
TAILQ_REMOVE(&tqpair.state_queue[TCP_REQUEST_STATE_TRANSFERRING_HOST_TO_CONTROLLER],
|
|
|
|
&tcp_req, state_link);
|
|
|
|
}
|
|
|
|
|
2018-09-19 04:04:40 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
CU_pSuite suite = NULL;
|
|
|
|
unsigned int num_failures;
|
|
|
|
|
|
|
|
if (CU_initialize_registry() != CUE_SUCCESS) {
|
|
|
|
return CU_get_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
suite = CU_add_suite("nvmf", NULL, NULL);
|
|
|
|
if (suite == NULL) {
|
|
|
|
CU_cleanup_registry();
|
|
|
|
return CU_get_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
CU_add_test(suite, "nvmf_tcp_create", test_nvmf_tcp_create) == NULL ||
|
|
|
|
CU_add_test(suite, "nvmf_tcp_destroy", test_nvmf_tcp_destroy) == NULL ||
|
2019-05-24 05:14:59 +00:00
|
|
|
CU_add_test(suite, "nvmf_tcp_poll_group_create", test_nvmf_tcp_poll_group_create) == NULL ||
|
|
|
|
CU_add_test(suite, "nvmf_tcp_send_c2h_data", test_nvmf_tcp_send_c2h_data) == NULL ||
|
|
|
|
CU_add_test(suite, "nvmf_tcp_h2c_data_hdr_handle", test_nvmf_tcp_h2c_data_hdr_handle) == NULL
|
2018-09-19 04:04:40 +00:00
|
|
|
) {
|
|
|
|
CU_cleanup_registry();
|
|
|
|
return CU_get_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
CU_basic_set_mode(CU_BRM_VERBOSE);
|
|
|
|
CU_basic_run_tests();
|
|
|
|
num_failures = CU_get_number_of_failures();
|
|
|
|
CU_cleanup_registry();
|
|
|
|
return num_failures;
|
|
|
|
}
|