2017-01-18 16:35:00 +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"
|
2017-01-18 16:35:00 +00:00
|
|
|
|
|
|
|
#include "spdk_cunit.h"
|
|
|
|
|
2019-06-19 23:59:20 +00:00
|
|
|
#include "spdk_internal/mock.h"
|
|
|
|
|
2018-02-13 15:24:28 +00:00
|
|
|
#include "nvmf/ctrlr_bdev.c"
|
2017-01-18 16:35:00 +00:00
|
|
|
|
|
|
|
|
2017-08-30 18:06:33 +00:00
|
|
|
SPDK_LOG_REGISTER_COMPONENT("nvmf", SPDK_LOG_NVMF)
|
2017-06-16 17:06:09 +00:00
|
|
|
|
2019-06-19 23:59:20 +00:00
|
|
|
DEFINE_STUB(spdk_nvmf_request_complete, int, (struct spdk_nvmf_request *req), -1);
|
2017-01-18 16:35:00 +00:00
|
|
|
|
2019-06-19 23:59:20 +00:00
|
|
|
DEFINE_STUB(spdk_bdev_get_name, const char *, (const struct spdk_bdev *bdev), "test");
|
2017-05-10 20:29:31 +00:00
|
|
|
|
2019-06-20 00:30:24 +00:00
|
|
|
struct spdk_bdev {
|
|
|
|
uint32_t blocklen;
|
|
|
|
uint32_t md_len;
|
|
|
|
};
|
|
|
|
|
2017-05-12 17:29:00 +00:00
|
|
|
uint32_t
|
|
|
|
spdk_bdev_get_block_size(const struct spdk_bdev *bdev)
|
|
|
|
{
|
2019-06-20 00:30:24 +00:00
|
|
|
return bdev->blocklen;
|
2017-05-12 17:29:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t
|
|
|
|
spdk_bdev_get_num_blocks(const struct spdk_bdev *bdev)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-16 20:58:29 +00:00
|
|
|
uint32_t
|
|
|
|
spdk_bdev_get_optimal_io_boundary(const struct spdk_bdev *bdev)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-06-20 00:30:24 +00:00
|
|
|
uint32_t
|
|
|
|
spdk_bdev_get_md_size(const struct spdk_bdev *bdev)
|
|
|
|
{
|
|
|
|
return bdev->md_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_is_md_interleaved, bool, (const struct spdk_bdev *bdev), false);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_get_dif_type, enum spdk_dif_type,
|
|
|
|
(const struct spdk_bdev *bdev), SPDK_DIF_DISABLE);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_is_dif_head_of_md, bool, (const struct spdk_bdev *bdev), false);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_is_dif_check_enabled, bool,
|
|
|
|
(const struct spdk_bdev *bdev, enum spdk_dif_check_type check_type), false);
|
|
|
|
|
2019-06-19 23:59:20 +00:00
|
|
|
DEFINE_STUB(spdk_bdev_get_io_channel, struct spdk_io_channel *,
|
|
|
|
(struct spdk_bdev_desc *desc), NULL);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_flush_blocks, int,
|
|
|
|
(struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
uint64_t offset_blocks, uint64_t num_blocks,
|
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_unmap_blocks, int,
|
|
|
|
(struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
uint64_t offset_blocks, uint64_t num_blocks,
|
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_io_type_supported, bool,
|
|
|
|
(struct spdk_bdev *bdev, enum spdk_bdev_io_type io_type), false);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_queue_io_wait, int,
|
|
|
|
(struct spdk_bdev *bdev, struct spdk_io_channel *ch,
|
|
|
|
struct spdk_bdev_io_wait_entry *entry),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_write_blocks, int,
|
|
|
|
(struct spdk_bdev_desc *desc, struct spdk_io_channel *ch, void *buf,
|
|
|
|
uint64_t offset_blocks, uint64_t num_blocks,
|
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_writev_blocks, int,
|
|
|
|
(struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
struct iovec *iov, int iovcnt, uint64_t offset_blocks, uint64_t num_blocks,
|
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_read_blocks, int,
|
|
|
|
(struct spdk_bdev_desc *desc, struct spdk_io_channel *ch, void *buf,
|
|
|
|
uint64_t offset_blocks, uint64_t num_blocks,
|
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_readv_blocks, int,
|
|
|
|
(struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
struct iovec *iov, int iovcnt, uint64_t offset_blocks, uint64_t num_blocks,
|
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_write_zeroes_blocks, int,
|
|
|
|
(struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
uint64_t offset_blocks, uint64_t num_blocks,
|
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_bdev_nvme_io_passthru, int,
|
|
|
|
(struct spdk_bdev_desc *desc, struct spdk_io_channel *ch,
|
|
|
|
const struct spdk_nvme_cmd *cmd, void *buf, size_t nbytes,
|
|
|
|
spdk_bdev_io_completion_cb cb, void *cb_arg),
|
|
|
|
0);
|
|
|
|
|
|
|
|
DEFINE_STUB_V(spdk_bdev_free_io, (struct spdk_bdev_io *bdev_io));
|
|
|
|
|
|
|
|
DEFINE_STUB(spdk_nvmf_subsystem_get_nqn, const char *,
|
|
|
|
(struct spdk_nvmf_subsystem *subsystem), NULL);
|
2017-01-18 16:35:00 +00:00
|
|
|
|
2017-08-18 01:20:49 +00:00
|
|
|
struct spdk_nvmf_ns *
|
|
|
|
spdk_nvmf_subsystem_get_ns(struct spdk_nvmf_subsystem *subsystem, uint32_t nsid)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_nvmf_ns *
|
|
|
|
spdk_nvmf_subsystem_get_first_ns(struct spdk_nvmf_subsystem *subsystem)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct spdk_nvmf_ns *
|
|
|
|
spdk_nvmf_subsystem_get_next_ns(struct spdk_nvmf_subsystem *subsystem, struct spdk_nvmf_ns *prev_ns)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-06-19 23:59:20 +00:00
|
|
|
DEFINE_STUB_V(spdk_bdev_io_get_nvme_status,
|
|
|
|
(const struct spdk_bdev_io *bdev_io, int *sct, int *sc));
|
2017-01-18 16:35:00 +00:00
|
|
|
|
2019-06-20 00:30:24 +00:00
|
|
|
int
|
|
|
|
spdk_dif_ctx_init(struct spdk_dif_ctx *ctx, uint32_t block_size, uint32_t md_size,
|
|
|
|
bool md_interleave, bool dif_loc, enum spdk_dif_type dif_type, uint32_t dif_flags,
|
|
|
|
uint32_t init_ref_tag, uint16_t apptag_mask, uint16_t app_tag,
|
|
|
|
uint32_t data_offset, uint16_t guard_seed)
|
|
|
|
{
|
|
|
|
ctx->block_size = block_size;
|
|
|
|
ctx->md_size = md_size;
|
|
|
|
ctx->init_ref_tag = init_ref_tag;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-01-18 16:35:00 +00:00
|
|
|
static void
|
2017-09-05 23:45:29 +00:00
|
|
|
test_get_rw_params(void)
|
2017-01-18 16:35:00 +00:00
|
|
|
{
|
2017-09-05 23:45:29 +00:00
|
|
|
struct spdk_nvme_cmd cmd = {0};
|
|
|
|
uint64_t lba;
|
|
|
|
uint64_t count;
|
|
|
|
|
|
|
|
lba = 0;
|
|
|
|
count = 0;
|
|
|
|
to_le64(&cmd.cdw10, 0x1234567890ABCDEF);
|
|
|
|
to_le32(&cmd.cdw12, 0x9875 | SPDK_NVME_IO_FLAGS_FORCE_UNIT_ACCESS);
|
|
|
|
nvmf_bdev_ctrlr_get_rw_params(&cmd, &lba, &count);
|
|
|
|
CU_ASSERT(lba == 0x1234567890ABCDEF);
|
|
|
|
CU_ASSERT(count == 0x9875 + 1); /* NOTE: this field is 0's based, hence the +1 */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
test_lba_in_range(void)
|
|
|
|
{
|
|
|
|
/* Trivial cases (no overflow) */
|
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(1000, 0, 1) == true);
|
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(1000, 0, 1000) == true);
|
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(1000, 0, 1001) == false);
|
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(1000, 1, 999) == true);
|
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(1000, 1, 1000) == false);
|
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(1000, 999, 1) == true);
|
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(1000, 1000, 1) == false);
|
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(1000, 1001, 1) == false);
|
|
|
|
|
|
|
|
/* Overflow edge cases */
|
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(UINT64_MAX, 0, UINT64_MAX) == true);
|
2019-06-28 09:02:00 +00:00
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(UINT64_MAX, 1, UINT64_MAX) == false);
|
2017-09-05 23:45:29 +00:00
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(UINT64_MAX, UINT64_MAX - 1, 1) == true);
|
|
|
|
CU_ASSERT(nvmf_bdev_ctrlr_lba_in_range(UINT64_MAX, UINT64_MAX, 1) == false);
|
2017-01-18 16:35:00 +00:00
|
|
|
}
|
|
|
|
|
2019-06-20 00:30:24 +00:00
|
|
|
static void
|
|
|
|
test_get_dif_ctx(void)
|
|
|
|
{
|
|
|
|
struct spdk_bdev bdev = {};
|
|
|
|
struct spdk_nvme_cmd cmd = {};
|
|
|
|
struct spdk_dif_ctx dif_ctx = {};
|
|
|
|
bool ret;
|
|
|
|
|
|
|
|
bdev.md_len = 0;
|
|
|
|
|
|
|
|
ret = spdk_nvmf_bdev_ctrlr_get_dif_ctx(&bdev, &cmd, &dif_ctx);
|
|
|
|
CU_ASSERT(ret == false);
|
|
|
|
|
|
|
|
to_le64(&cmd.cdw10, 0x1234567890ABCDEF);
|
|
|
|
bdev.blocklen = 520;
|
|
|
|
bdev.md_len = 8;
|
|
|
|
|
|
|
|
ret = spdk_nvmf_bdev_ctrlr_get_dif_ctx(&bdev, &cmd, &dif_ctx);
|
|
|
|
CU_ASSERT(ret == true);
|
|
|
|
CU_ASSERT(dif_ctx.block_size = 520);
|
|
|
|
CU_ASSERT(dif_ctx.md_size == 8);
|
|
|
|
CU_ASSERT(dif_ctx.init_ref_tag == 0x90ABCDEF);
|
|
|
|
}
|
|
|
|
|
2017-01-18 16:35:00 +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();
|
|
|
|
}
|
|
|
|
|
2017-09-05 23:45:29 +00:00
|
|
|
if (
|
|
|
|
CU_add_test(suite, "get_rw_params", test_get_rw_params) == NULL ||
|
2019-06-20 00:30:24 +00:00
|
|
|
CU_add_test(suite, "lba_in_range", test_lba_in_range) == NULL ||
|
|
|
|
CU_add_test(suite, "get_dif_ctx", test_get_dif_ctx) == NULL
|
2017-09-05 23:45:29 +00:00
|
|
|
) {
|
2017-01-18 16:35:00 +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;
|
|
|
|
}
|