Spdk/test/env/vtophys/vtophys.c
paul luse a6dbe3721e update Intel copyright notices
per Intel policy to include file commit date using git cmd
below.  The policy does not apply to non-Intel (C) notices.

git log --follow -C90% --format=%ad --date default <file> | tail -1

and then pull just the 4 digit year from the result.

Intel copyrights were not added to files where Intel either had
no contribution ot the contribution lacked substance (ie license
header updates, formatting changes, etc).  Contribution date used
"--follow -C95%" to get the most accurate date.

Note that several files in this patch didn't end the license/(c)
block with a blank comment line so these were added as the vast
majority of files do have this last blank line.  Simply there for
consistency.

Signed-off-by: paul luse <paul.e.luse@intel.com>
Change-Id: Id5b7ce4f658fe87132f14139ead58d6e285c04d4
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15192
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
Community-CI: Mellanox Build Bot
2022-11-10 08:28:53 +00:00

169 lines
3.9 KiB
C

/* SPDX-License-Identifier: BSD-3-Clause
* Copyright (C) 2015 Intel Corporation.
* All rights reserved.
*/
#include "spdk/stdinc.h"
#include "spdk/config.h"
#include "spdk/env.h"
#include "spdk/util.h"
#include "CUnit/Basic.h"
#define __SPDK_ENV_NAME(path) (strrchr(#path, '/') + 1)
#define _SPDK_ENV_NAME(path) __SPDK_ENV_NAME(path)
#define SPDK_ENV_NAME _SPDK_ENV_NAME(SPDK_CONFIG_ENV)
static void
vtophys_malloc_test(void)
{
void *p = NULL;
int i;
unsigned int size = 1;
uint64_t paddr;
/* Verify vtophys doesn't work on regular malloc memory */
for (i = 0; i < 31; i++) {
p = malloc(size);
if (p == NULL) {
continue;
}
paddr = spdk_vtophys(p, NULL);
CU_ASSERT(paddr == SPDK_VTOPHYS_ERROR);
free(p);
size = size << 1;
}
/* Test addresses that are not in the valid x86-64 usermode range */
paddr = spdk_vtophys((void *)0x0000800000000000ULL, NULL);
CU_ASSERT(paddr == SPDK_VTOPHYS_ERROR);
}
static void
vtophys_spdk_malloc_test(void)
{
void *buf = NULL, *p = NULL;
size_t buf_align = 512;
int i;
unsigned int size = 1;
uint64_t paddr, tmpsize;
/* Test vtophys on memory allocated through SPDK */
for (i = 0; i < 31; i++) {
buf = spdk_zmalloc(size, buf_align, NULL, SPDK_ENV_LCORE_ID_ANY, SPDK_MALLOC_DMA);
if (buf == NULL) {
continue;
}
/* 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);
CU_ASSERT(paddr != SPDK_VTOPHYS_ERROR);
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;
}
spdk_free(buf);
size = size << 1;
}
}
int
main(int argc, char **argv)
{
struct spdk_env_opts opts;
CU_pSuite suite = NULL;
unsigned num_failures;
spdk_env_opts_init(&opts);
opts.name = "vtophys";
opts.core_mask = "0x1";
if (strcmp(SPDK_ENV_NAME, "env_dpdk") == 0) {
opts.env_context = "--log-level=lib.eal:8";
}
if (spdk_env_init(&opts) < 0) {
printf("Err: Unable to initialize SPDK env\n");
return 1;
}
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();
}
CU_basic_set_mode(CU_BRM_VERBOSE);
CU_basic_run_tests();
num_failures = CU_get_number_of_failures();
CU_cleanup_registry();
return num_failures;
}