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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
/*
* Memory helpers
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/shm.h>
#include <sys/mman.h>
#include "fio.h"
static void *pinned_mem;
void fio_unpin_memory(void)
{
if (pinned_mem) {
dprint(FD_MEM, "unpinning %llu bytes\n", mlock_size);
if (munlock(pinned_mem, mlock_size) < 0)
perror("munlock");
munmap(pinned_mem, mlock_size);
pinned_mem = NULL;
}
}
int fio_pin_memory(void)
{
unsigned long long phys_mem;
if (!mlock_size)
return 0;
dprint(FD_MEM, "pinning %llu bytes\n", mlock_size);
/*
* Don't allow mlock of more than real_mem-128MB
*/
phys_mem = os_phys_mem();
if (phys_mem) {
if ((mlock_size + 128 * 1024 * 1024) > phys_mem) {
mlock_size = phys_mem - 128 * 1024 * 1024;
log_info("fio: limiting mlocked memory to %lluMB\n",
mlock_size >> 20);
}
}
pinned_mem = mmap(NULL, mlock_size, PROT_READ | PROT_WRITE,
MAP_PRIVATE | OS_MAP_ANON, -1, 0);
if (pinned_mem == MAP_FAILED) {
perror("malloc locked mem");
pinned_mem = NULL;
return 1;
}
if (mlock(pinned_mem, mlock_size) < 0) {
perror("mlock");
munmap(pinned_mem, mlock_size);
pinned_mem = NULL;
return 1;
}
return 0;
}
static int alloc_mem_shm(struct thread_data *td, unsigned int total_mem)
{
int flags = IPC_CREAT | S_IRUSR | S_IWUSR;
if (td->o.mem_type == MEM_SHMHUGE) {
unsigned long mask = td->o.hugepage_size - 1;
flags |= SHM_HUGETLB;
total_mem = (total_mem + mask) & ~mask;
}
td->shm_id = shmget(IPC_PRIVATE, total_mem, flags);
dprint(FD_MEM, "shmget %u, %d\n", total_mem, td->shm_id);
if (td->shm_id < 0) {
td_verror(td, errno, "shmget");
if (geteuid() != 0 && (errno == ENOMEM || errno == EPERM))
log_err("fio: you may need to run this job as root\n");
if (td->o.mem_type == MEM_SHMHUGE) {
if (errno == EINVAL) {
log_err("fio: check that you have free huge"
" pages and that hugepage-size is"
" correct.\n");
} else if (errno == ENOSYS) {
log_err("fio: your system does not appear to"
" support huge pages.\n");
} else if (errno == ENOMEM) {
log_err("fio: no huge pages available, do you"
" need to alocate some? See HOWTO.\n");
}
}
return 1;
}
td->orig_buffer = shmat(td->shm_id, NULL, 0);
dprint(FD_MEM, "shmat %d, %p\n", td->shm_id, td->orig_buffer);
if (td->orig_buffer == (void *) -1) {
td_verror(td, errno, "shmat");
td->orig_buffer = NULL;
return 1;
}
return 0;
}
static void free_mem_shm(struct thread_data *td)
{
struct shmid_ds sbuf;
dprint(FD_MEM, "shmdt/ctl %d %p\n", td->shm_id, td->orig_buffer);
shmdt(td->orig_buffer);
shmctl(td->shm_id, IPC_RMID, &sbuf);
}
static int alloc_mem_mmap(struct thread_data *td, size_t total_mem)
{
int flags = MAP_PRIVATE;
td->mmapfd = 1;
if (td->mmapfile) {
td->mmapfd = open(td->mmapfile, O_RDWR|O_CREAT, 0644);
if (td->mmapfd < 0) {
td_verror(td, errno, "open mmap file");
td->orig_buffer = NULL;
return 1;
}
if (ftruncate(td->mmapfd, total_mem) < 0) {
td_verror(td, errno, "truncate mmap file");
td->orig_buffer = NULL;
return 1;
}
} else
flags |= OS_MAP_ANON;
td->orig_buffer = mmap(NULL, total_mem, PROT_READ | PROT_WRITE, flags,
td->mmapfd, 0);
dprint(FD_MEM, "mmap %u/%d %p\n", total_mem, td->mmapfd,
td->orig_buffer);
if (td->orig_buffer == MAP_FAILED) {
td_verror(td, errno, "mmap");
td->orig_buffer = NULL;
if (td->mmapfd) {
close(td->mmapfd);
unlink(td->mmapfile);
}
return 1;
}
return 0;
}
static void free_mem_mmap(struct thread_data *td, size_t total_mem)
{
dprint(FD_MEM, "munmap %u %p\n", total_mem, td->orig_buffer);
munmap(td->orig_buffer, td->orig_buffer_size);
if (td->mmapfile) {
close(td->mmapfd);
unlink(td->mmapfile);
free(td->mmapfile);
}
}
static int alloc_mem_malloc(struct thread_data *td, size_t total_mem)
{
td->orig_buffer = malloc(total_mem);
dprint(FD_MEM, "malloc %u %p\n", total_mem, td->orig_buffer);
return td->orig_buffer == NULL;
}
static void free_mem_malloc(struct thread_data *td)
{
dprint(FD_MEM, "free malloc mem %p\n", td->orig_buffer);
free(td->orig_buffer);
}
/*
* Set up the buffer area we need for io.
*/
int allocate_io_mem(struct thread_data *td)
{
size_t total_mem;
int ret = 0;
if (td->io_ops->flags & FIO_NOIO)
return 0;
total_mem = td->orig_buffer_size;
if (td->o.odirect || td->o.mem_align ||
(td->io_ops->flags & FIO_MEMALIGN)) {
total_mem += page_mask;
if (td->o.mem_align && td->o.mem_align > page_size)
total_mem += td->o.mem_align - page_size;
}
dprint(FD_MEM, "Alloc %lu for buffers\n", (size_t) total_mem);
if (td->o.mem_type == MEM_MALLOC)
ret = alloc_mem_malloc(td, total_mem);
else if (td->o.mem_type == MEM_SHM || td->o.mem_type == MEM_SHMHUGE)
ret = alloc_mem_shm(td, total_mem);
else if (td->o.mem_type == MEM_MMAP || td->o.mem_type == MEM_MMAPHUGE)
ret = alloc_mem_mmap(td, total_mem);
else {
log_err("fio: bad mem type: %d\n", td->o.mem_type);
ret = 1;
}
if (ret)
td_verror(td, ENOMEM, "iomem allocation");
return ret;
}
void free_io_mem(struct thread_data *td)
{
unsigned int total_mem;
total_mem = td->orig_buffer_size;
if (td->o.odirect)
total_mem += page_mask;
if (td->o.mem_type == MEM_MALLOC)
free_mem_malloc(td);
else if (td->o.mem_type == MEM_SHM || td->o.mem_type == MEM_SHMHUGE)
free_mem_shm(td);
else if (td->o.mem_type == MEM_MMAP || td->o.mem_type == MEM_MMAPHUGE)
free_mem_mmap(td, total_mem);
else
log_err("Bad memory type %u\n", td->o.mem_type);
td->orig_buffer = NULL;
td->orig_buffer_size = 0;
}
|