1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
#include "stress-ng.h"
#include "core-numa.h"
#include "core-out-of-memory.h"
static const stress_help_t help[] = {
{ NULL, "mmapmany N", "start N workers stressing many mmaps and munmaps" },
{ NULL, "mmapmany-mlock", "attempt to mlock pages into memory" },
{ NULL, "mmapmany-numa", "bind memory mappings to randomly selected NUMA nodes" },
{ NULL, "mmapmany-ops N", "stop after N mmapmany bogo operations" },
{ NULL, NULL, NULL }
};
#define MMAP_MAX (256 * 1024)
#if defined(__linux__)
static void stress_mmapmany_read_proc_file(const char *path)
{
int fd;
char buf[4096];
fd = open(path, O_RDONLY);
if (fd < 0)
return;
while (read(fd, buf, sizeof(buf)) > 0) {
if (UNLIKELY(!stress_continue_flag()))
break;
}
(void)close(fd);
}
#endif
static int stress_mmapmany_child(stress_args_t *args, void *context)
{
const size_t page_size = args->page_size;
const long int max = STRESS_MAXIMUM(sysconf(_SC_MAPPED_FILES), MMAP_MAX);
uint64_t **mappings;
const uint64_t pattern0 = stress_mwc64();
const uint64_t pattern1 = stress_mwc64();
const size_t offset2pages = (page_size * 2) / sizeof(uint64_t);
bool mmapmany_mlock = false;
bool mmapmany_numa = false;
int rc = EXIT_SUCCESS;
#if defined(HAVE_LINUX_MEMPOLICY_H)
stress_numa_mask_t *numa_mask = NULL;
#endif
(void)context;
(void)stress_get_setting("mmapmany-mlock", &mmapmany_mlock);
(void)stress_get_setting("mmapmany-numa", &mmapmany_numa);
mappings = (uint64_t **)calloc((size_t)max, sizeof(*mappings));
if (UNLIKELY(!mappings)) {
pr_fail("%s: malloc failed, out of memory\n", args->name);
return EXIT_NO_RESOURCE;
}
if (mmapmany_numa) {
#if defined(HAVE_LINUX_MEMPOLICY_H)
if (stress_numa_nodes() > 1) {
numa_mask = stress_numa_mask_alloc();
if (!numa_mask) {
pr_inf("%s: cannot allocate NUMA mask, disabling --mmapmany-numa\n",
args->name);
mmapmany_numa = false;
}
} else {
if (args->instance == 0) {
pr_inf("%s: only 1 NUMA node available, disabling --mmapmany-numa\n",
args->name);
mmapmany_numa = false;
}
}
#else
if (args->instance == 0)
pr_inf("%s: --mmapmany-numa selected but not supported by this system, disabling option\n",
args->name);
mmapmany_numa = false;
#endif
}
stress_set_proc_state(args->name, STRESS_STATE_SYNC_WAIT);
stress_sync_start_wait(args);
stress_set_proc_state(args->name, STRESS_STATE_RUN);
do {
size_t i, n;
for (n = 0; LIKELY(stress_continue_flag() && (n < (size_t)max)); n++) {
uint64_t *ptr;
if (UNLIKELY(!stress_continue(args)))
break;
ptr = (uint64_t *)mmap(NULL, page_size * 3, PROT_READ | PROT_WRITE,
MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
if (UNLIKELY(ptr == MAP_FAILED))
break;
#if defined(HAVE_LINUX_MEMPOLICY_H)
if (mmapmany_numa)
stress_numa_randomize_pages(numa_mask, ptr, page_size, page_size * 3);
#endif
if (mmapmany_mlock)
(void)shim_mlock(ptr, page_size * 3);
mappings[n] = ptr;
*ptr = pattern0 ^ (uint64_t)n;
ptr += offset2pages;
*ptr = pattern1 ^ (uint64_t)n;
if (UNLIKELY(stress_munmap_retry_enomem((void *)(((uintptr_t)mappings[n]) + page_size), page_size) < 0))
break;
stress_bogo_inc(args);
}
#if defined(__linux__)
stress_mmapmany_read_proc_file("/proc/self/smaps");
stress_mmapmany_read_proc_file("/proc/self/maps");
#endif
for (i = 0; i < n; i++) {
uint64_t *ptr, val;
ptr = (uint64_t *)mappings[i];
val = (uint64_t)i ^ pattern0;
if (UNLIKELY(*ptr != val)) {
pr_fail("%s: failed: mapping %zd at %p was %" PRIx64 " and not %" PRIx64 "\n",
args->name, i, (void *)ptr, *ptr, val);
rc = EXIT_FAILURE;
}
ptr += offset2pages;
val = (uint64_t)i ^ pattern1;
if (UNLIKELY(*ptr != val)) {
pr_fail("%s: failed: mapping %zd at %p was %" PRIx64 " and not %" PRIx64 "\n",
args->name, i, (void *)ptr, *ptr, val);
rc = EXIT_FAILURE;
}
(void)stress_munmap_retry_enomem((void *)mappings[i], page_size);
(void)stress_munmap_retry_enomem((void *)(((uintptr_t)mappings[i]) + page_size), page_size);
(void)stress_munmap_retry_enomem((void *)(((uintptr_t)mappings[i]) + page_size + page_size), page_size);
}
} while ((rc == EXIT_SUCCESS) && stress_continue(args));
stress_set_proc_state(args->name, STRESS_STATE_DEINIT);
#if defined(HAVE_LINUX_MEMPOLICY_H)
if (numa_mask)
stress_numa_mask_free(numa_mask);
#endif
free(mappings);
return rc;
}
static int stress_mmapmany(stress_args_t *args)
{
return stress_oomable_child(args, NULL, stress_mmapmany_child, STRESS_OOMABLE_NORMAL);
}
static const stress_opt_t opts[] = {
{ OPT_mmapmany_mlock, "mmapmany-mlock", TYPE_ID_BOOL, 0, 1, NULL },
{ OPT_mmapmany_numa, "mmapmany-numa", TYPE_ID_BOOL, 0, 1, NULL },
END_OPT,
};
const stressor_info_t stress_mmapmany_info = {
.stressor = stress_mmapmany,
.class = CLASS_VM | CLASS_OS,
.opts = opts,
.verify = VERIFY_ALWAYS,
.help = help
};
|