2015-09-21 15:52:41 +00:00
|
|
|
/*-
|
|
|
|
* BSD LICENSE
|
|
|
|
*
|
2016-01-26 17:47:22 +00:00
|
|
|
* Copyright (c) Intel Corporation.
|
2015-09-21 15:52:41 +00:00
|
|
|
* 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"
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2016-08-10 17:21:45 +00:00
|
|
|
#include "spdk/env.h"
|
2018-12-28 11:59:21 +00:00
|
|
|
#include "spdk/util.h"
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-12-28 12:54:52 +00:00
|
|
|
#include "CUnit/Basic.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
vtophys_malloc_test(void)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
|
|
|
void *p = NULL;
|
|
|
|
int i;
|
|
|
|
unsigned int size = 1;
|
2018-12-28 12:54:52 +00:00
|
|
|
uint64_t paddr;
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-12-28 12:54:52 +00:00
|
|
|
/* Verify vtophys doesn't work on regular malloc memory */
|
2015-09-21 15:52:41 +00:00
|
|
|
for (i = 0; i < 31; i++) {
|
|
|
|
p = malloc(size);
|
2017-12-07 23:23:48 +00:00
|
|
|
if (p == NULL) {
|
2015-09-21 15:52:41 +00:00
|
|
|
continue;
|
2017-12-07 23:23:48 +00:00
|
|
|
}
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-12-28 11:59:21 +00:00
|
|
|
paddr = spdk_vtophys(p, NULL);
|
2018-12-28 12:54:52 +00:00
|
|
|
CU_ASSERT(paddr == SPDK_VTOPHYS_ERROR);
|
2015-09-21 15:52:41 +00:00
|
|
|
|
|
|
|
free(p);
|
|
|
|
size = size << 1;
|
|
|
|
}
|
|
|
|
|
2016-06-22 21:57:53 +00:00
|
|
|
/* Test addresses that are not in the valid x86-64 usermode range */
|
2018-12-28 11:59:21 +00:00
|
|
|
paddr = spdk_vtophys((void *)0x0000800000000000ULL, NULL);
|
2018-12-28 12:54:52 +00:00
|
|
|
CU_ASSERT(paddr == SPDK_VTOPHYS_ERROR)
|
2015-09-21 15:52:41 +00:00
|
|
|
}
|
|
|
|
|
2018-12-28 12:54:52 +00:00
|
|
|
static void
|
|
|
|
vtophys_spdk_malloc_test(void)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
2018-12-28 11:59:21 +00:00
|
|
|
void *buf = NULL, *p = NULL;
|
|
|
|
size_t buf_align = 512;
|
2015-09-21 15:52:41 +00:00
|
|
|
int i;
|
|
|
|
unsigned int size = 1;
|
2018-12-28 11:59:21 +00:00
|
|
|
uint64_t paddr, tmpsize;
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-12-28 12:54:52 +00:00
|
|
|
/* Test vtophys on memory allocated through SPDK */
|
2015-09-21 15:52:41 +00:00
|
|
|
for (i = 0; i < 31; i++) {
|
2018-12-28 11:59:21 +00:00
|
|
|
buf = spdk_dma_zmalloc(size, buf_align, NULL);
|
|
|
|
if (buf == NULL) {
|
2015-09-21 15:52:41 +00:00
|
|
|
continue;
|
2017-12-07 23:23:48 +00:00
|
|
|
}
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-12-28 11:59:21 +00:00
|
|
|
/* test vtophys translation with no length parameter */
|
|
|
|
paddr = spdk_vtophys(buf, NULL);
|
|
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
|
|
|
|
|
|
|
/* translate the entire buffer; it's not necessarily contiguous */
|
|
|
|
p = buf;
|
|
|
|
tmpsize = size;
|
|
|
|
while (p < buf + size) {
|
|
|
|
paddr = spdk_vtophys(p, &tmpsize);
|
|
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
|
|
|
CU_ASSERT(tmpsize >= spdk_min(size, buf_align));
|
|
|
|
p += tmpsize;
|
|
|
|
tmpsize = buf + size - p;
|
|
|
|
}
|
|
|
|
CU_ASSERT(tmpsize == 0);
|
|
|
|
|
|
|
|
/* translate a valid vaddr, but with length 0 */
|
|
|
|
p = buf;
|
|
|
|
tmpsize = 0;
|
|
|
|
paddr = spdk_vtophys(p, &tmpsize);
|
2018-12-28 12:54:52 +00:00
|
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
2018-12-28 11:59:21 +00:00
|
|
|
CU_ASSERT(tmpsize == 0);
|
|
|
|
|
|
|
|
/* translate the first half of the buffer */
|
|
|
|
p = buf;
|
|
|
|
tmpsize = size / 2;
|
|
|
|
while (p < buf + size / 2) {
|
|
|
|
paddr = spdk_vtophys(p, &tmpsize);
|
|
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
|
|
|
CU_ASSERT(tmpsize >= spdk_min(size / 2, buf_align));
|
|
|
|
p += tmpsize;
|
|
|
|
tmpsize = buf + size / 2 - p;
|
|
|
|
}
|
|
|
|
CU_ASSERT(tmpsize == 0);
|
|
|
|
|
|
|
|
/* translate the second half of the buffer */
|
|
|
|
p = buf + size / 2;
|
|
|
|
tmpsize = size / 2;
|
|
|
|
while (p < buf + size) {
|
|
|
|
paddr = spdk_vtophys(p, &tmpsize);
|
|
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
|
|
|
CU_ASSERT(tmpsize >= spdk_min(size / 2, buf_align));
|
|
|
|
p += tmpsize;
|
|
|
|
tmpsize = buf + size - p;
|
|
|
|
}
|
|
|
|
CU_ASSERT(tmpsize == 0);
|
|
|
|
|
|
|
|
/* translate a region that's not entirely registered */
|
|
|
|
p = buf;
|
|
|
|
tmpsize = UINT64_MAX;
|
|
|
|
while (p < buf + size) {
|
|
|
|
paddr = spdk_vtophys(p, &tmpsize);
|
|
|
|
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
|
|
|
|
CU_ASSERT(tmpsize >= buf_align);
|
|
|
|
p += tmpsize;
|
|
|
|
/* verify our region is really contiguous */
|
|
|
|
CU_ASSERT(paddr + tmpsize - 1 == spdk_vtophys(p - 1, &tmpsize));
|
|
|
|
tmpsize = UINT64_MAX;
|
|
|
|
}
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-12-28 11:59:21 +00:00
|
|
|
spdk_dma_free(buf);
|
2015-09-21 15:52:41 +00:00
|
|
|
size = size << 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2018-12-28 12:54:52 +00:00
|
|
|
struct spdk_env_opts opts;
|
|
|
|
CU_pSuite suite = NULL;
|
|
|
|
unsigned num_failures;
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2017-01-12 18:25:17 +00:00
|
|
|
spdk_env_opts_init(&opts);
|
|
|
|
opts.name = "vtophys";
|
|
|
|
opts.core_mask = "0x1";
|
2017-12-18 19:57:01 +00:00
|
|
|
if (spdk_env_init(&opts) < 0) {
|
|
|
|
printf("Err: Unable to initialize SPDK env\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-12-28 12:54:52 +00:00
|
|
|
if (CU_initialize_registry() != CUE_SUCCESS) {
|
|
|
|
return CU_get_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
suite = CU_add_suite("components_suite", NULL, NULL);
|
|
|
|
if (suite == NULL) {
|
|
|
|
CU_cleanup_registry();
|
|
|
|
return CU_get_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (
|
|
|
|
CU_add_test(suite, "vtophys_malloc_test", vtophys_malloc_test) == NULL ||
|
|
|
|
CU_add_test(suite, "vtophys_spdk_malloc_test", vtophys_spdk_malloc_test) == NULL
|
|
|
|
) {
|
|
|
|
CU_cleanup_registry();
|
|
|
|
return CU_get_error();
|
2017-12-07 23:23:48 +00:00
|
|
|
}
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-12-28 12:54:52 +00:00
|
|
|
CU_basic_set_mode(CU_BRM_VERBOSE);
|
|
|
|
CU_basic_run_tests();
|
|
|
|
num_failures = CU_get_number_of_failures();
|
|
|
|
CU_cleanup_registry();
|
|
|
|
return num_failures;
|
2015-09-21 15:52:41 +00:00
|
|
|
}
|