blob: 8c04a19a748a7d13c77c2ec4ee1f876201a9ce31 [file] [log] [blame]
Jens Axboe2866c822006-10-09 15:57:48 +02001/*
Jens Axboeda751ca2007-03-14 10:59:33 +01002 * mmap engine
3 *
4 * IO engine that reads/writes from files by doing memcpy to/from
5 * a memory mapped region of the file.
Jens Axboe2866c822006-10-09 15:57:48 +02006 *
7 */
8#include <stdio.h>
9#include <stdlib.h>
10#include <unistd.h>
11#include <errno.h>
Jens Axboe2866c822006-10-09 15:57:48 +020012#include <sys/mman.h>
Jens Axboe5f350952006-11-07 15:20:59 +010013
14#include "../fio.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020015#include "../verify.h"
Jens Axboe2866c822006-10-09 15:57:48 +020016
Jens Axboeac893112009-06-02 13:06:01 +020017/*
Jens Axboeff455a02009-06-29 11:54:56 +020018 * Limits us to 1GB of mapped files in total
Jens Axboeac893112009-06-02 13:06:01 +020019 */
Jens Axboeff455a02009-06-29 11:54:56 +020020#define MMAP_TOTAL_SZ (1 * 1024 * 1024 * 1024UL)
Jens Axboeac893112009-06-02 13:06:01 +020021
22static unsigned long mmap_map_size;
23static unsigned long mmap_map_mask;
24
25static int fio_mmap_file(struct thread_data *td, struct fio_file *f,
26 size_t length, off_t off)
Jens Axboe2866c822006-10-09 15:57:48 +020027{
Jens Axboeac893112009-06-02 13:06:01 +020028 int flags = 0;
Jens Axboec97d8362007-05-21 14:52:43 +020029
Jens Axboeb5af8292007-03-08 12:43:13 +010030 if (td_rw(td))
31 flags = PROT_READ | PROT_WRITE;
32 else if (td_write(td)) {
33 flags = PROT_WRITE;
34
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010035 if (td->o.verify != VERIFY_NONE)
Jens Axboeb5af8292007-03-08 12:43:13 +010036 flags |= PROT_READ;
37 } else
38 flags = PROT_READ;
39
Jens Axboeac893112009-06-02 13:06:01 +020040 f->mmap_ptr = mmap(NULL, length, flags, MAP_SHARED, f->fd, off);
41 if (f->mmap_ptr == MAP_FAILED) {
Jens Axboeac893112009-06-02 13:06:01 +020042 f->mmap_ptr = NULL;
Jens Axboeed47cbf2009-07-03 22:52:38 +020043 td_verror(td, errno, "mmap");
Jens Axboeb5af8292007-03-08 12:43:13 +010044 goto err;
45 }
46
Jens Axboeb5af8292007-03-08 12:43:13 +010047 if (!td_random(td)) {
Bruce Cran03e20d62011-01-02 20:14:54 +010048 if (posix_madvise(f->mmap_ptr, length, POSIX_MADV_SEQUENTIAL) < 0) {
Jens Axboeb5af8292007-03-08 12:43:13 +010049 td_verror(td, errno, "madvise");
50 goto err;
51 }
52 } else {
Bruce Cran03e20d62011-01-02 20:14:54 +010053 if (posix_madvise(f->mmap_ptr, length, POSIX_MADV_RANDOM) < 0) {
Jens Axboeb5af8292007-03-08 12:43:13 +010054 td_verror(td, errno, "madvise");
55 goto err;
56 }
57 }
58
Jens Axboeb5af8292007-03-08 12:43:13 +010059err:
Jens Axboeed47cbf2009-07-03 22:52:38 +020060 if (td->error && f->mmap_ptr)
61 munmap(f->mmap_ptr, length);
Bruce Cran93bcfd22012-02-20 20:18:19 +010062
Jens Axboeed47cbf2009-07-03 22:52:38 +020063 return td->error;
Jens Axboeb5af8292007-03-08 12:43:13 +010064}
65
Jens Axboeed47cbf2009-07-03 22:52:38 +020066/*
67 * Just mmap an appropriate portion, we cannot mmap the full extent
68 */
69static int fio_mmapio_prep_limited(struct thread_data *td, struct io_u *io_u)
Jens Axboeb5af8292007-03-08 12:43:13 +010070{
Jens Axboeac893112009-06-02 13:06:01 +020071 struct fio_file *f = io_u->file;
Jens Axboe6977bcd2008-03-01 15:55:36 +010072
Jens Axboeac893112009-06-02 13:06:01 +020073 if (io_u->buflen > mmap_map_size) {
74 log_err("fio: bs too big for mmap engine\n");
Jens Axboeed47cbf2009-07-03 22:52:38 +020075 return EIO;
Jens Axboeb5af8292007-03-08 12:43:13 +010076 }
Jens Axboe6977bcd2008-03-01 15:55:36 +010077
Jens Axboeac893112009-06-02 13:06:01 +020078 f->mmap_sz = mmap_map_size;
79 if (f->mmap_sz > f->io_size)
80 f->mmap_sz = f->io_size;
81
Jens Axboeff455a02009-06-29 11:54:56 +020082 f->mmap_off = io_u->offset;
Jens Axboeac893112009-06-02 13:06:01 +020083
Jens Axboeed47cbf2009-07-03 22:52:38 +020084 return fio_mmap_file(td, f, f->mmap_sz, f->mmap_off);
85}
86
87/*
88 * Attempt to mmap the entire file
89 */
90static int fio_mmapio_prep_full(struct thread_data *td, struct io_u *io_u)
91{
92 struct fio_file *f = io_u->file;
93 int ret;
94
95 if (fio_file_partial_mmap(f))
96 return EINVAL;
97
Jens Axboeed47cbf2009-07-03 22:52:38 +020098 f->mmap_sz = f->io_size;
99 f->mmap_off = 0;
100
Jens Axboeac893112009-06-02 13:06:01 +0200101 ret = fio_mmap_file(td, f, f->mmap_sz, f->mmap_off);
Jens Axboeed47cbf2009-07-03 22:52:38 +0200102 if (ret)
103 fio_file_set_partial_mmap(f);
104
Jens Axboe6977bcd2008-03-01 15:55:36 +0100105 return ret;
Jens Axboeb5af8292007-03-08 12:43:13 +0100106}
107
Jens Axboeed47cbf2009-07-03 22:52:38 +0200108static int fio_mmapio_prep(struct thread_data *td, struct io_u *io_u)
109{
110 struct fio_file *f = io_u->file;
111 int ret;
112
Jens Axboe8f933ca2009-07-04 20:29:04 +0200113 /*
114 * It fits within existing mapping, use it
115 */
Jens Axboeed47cbf2009-07-03 22:52:38 +0200116 if (io_u->offset >= f->mmap_off &&
117 io_u->offset + io_u->buflen < f->mmap_off + f->mmap_sz)
118 goto done;
119
Jens Axboe8f933ca2009-07-04 20:29:04 +0200120 /*
121 * unmap any existing mapping
122 */
123 if (f->mmap_ptr) {
124 if (munmap(f->mmap_ptr, f->mmap_sz) < 0)
125 return errno;
126 f->mmap_ptr = NULL;
127 }
128
Jens Axboeed47cbf2009-07-03 22:52:38 +0200129 if (fio_mmapio_prep_full(td, io_u)) {
130 td_clear_error(td);
131 ret = fio_mmapio_prep_limited(td, io_u);
132 if (ret)
133 return ret;
134 }
135
136done:
137 io_u->mmap_data = f->mmap_ptr + io_u->offset - f->mmap_off -
138 f->file_offset;
139 return 0;
140}
141
Jens Axboeac893112009-06-02 13:06:01 +0200142static int fio_mmapio_queue(struct thread_data *td, struct io_u *io_u)
143{
144 struct fio_file *f = io_u->file;
145
146 fio_ro_check(td, io_u);
147
148 if (io_u->ddir == DDIR_READ)
149 memcpy(io_u->xfer_buf, io_u->mmap_data, io_u->xfer_buflen);
150 else if (io_u->ddir == DDIR_WRITE)
151 memcpy(io_u->mmap_data, io_u->xfer_buf, io_u->xfer_buflen);
Jens Axboe5f9099e2009-06-16 22:40:26 +0200152 else if (ddir_sync(io_u->ddir)) {
Jens Axboeac893112009-06-02 13:06:01 +0200153 if (msync(f->mmap_ptr, f->mmap_sz, MS_SYNC)) {
154 io_u->error = errno;
155 td_verror(td, io_u->error, "msync");
156 }
Jens Axboeff58fce2010-08-25 12:02:08 +0200157 } else if (io_u->ddir == DDIR_TRIM) {
158 int ret = do_io_u_trim(td, io_u);
159
160 if (!ret)
161 td_verror(td, io_u->error, "trim");
Jens Axboeac893112009-06-02 13:06:01 +0200162 }
163
Jens Axboeff58fce2010-08-25 12:02:08 +0200164
Jens Axboeac893112009-06-02 13:06:01 +0200165 /*
166 * not really direct, but should drop the pages from the cache
167 */
Jens Axboeff58fce2010-08-25 12:02:08 +0200168 if (td->o.odirect && ddir_rw(io_u->ddir)) {
Jens Axboeac893112009-06-02 13:06:01 +0200169 if (msync(io_u->mmap_data, io_u->xfer_buflen, MS_SYNC) < 0) {
170 io_u->error = errno;
171 td_verror(td, io_u->error, "msync");
172 }
Bruce Cran03e20d62011-01-02 20:14:54 +0100173 if (posix_madvise(io_u->mmap_data, io_u->xfer_buflen, POSIX_MADV_DONTNEED) < 0) {
Jens Axboeac893112009-06-02 13:06:01 +0200174 io_u->error = errno;
175 td_verror(td, io_u->error, "madvise");
176 }
177 }
178
179 return FIO_Q_COMPLETED;
180}
181
182static int fio_mmapio_init(struct thread_data *td)
183{
Jens Axboe913ea0d2011-01-22 15:11:13 -0700184 struct thread_options *o = &td->o;
Jens Axboeac893112009-06-02 13:06:01 +0200185 unsigned long shift, mask;
186
Jens Axboe913ea0d2011-01-22 15:11:13 -0700187 if ((td->o.rw_min_bs & page_mask) &&
188 (o->odirect || o->fsync_blocks || o->fdatasync_blocks)) {
189 log_err("fio: mmap options dictate a minimum block size of "
Jens Axboe4e0a8fa2013-04-15 11:40:57 +0200190 "%llu bytes\n", (unsigned long long) page_size);
Jens Axboe913ea0d2011-01-22 15:11:13 -0700191 return 1;
192 }
193
Jens Axboeac893112009-06-02 13:06:01 +0200194 mmap_map_size = MMAP_TOTAL_SZ / td->o.nr_files;
195 mask = mmap_map_size;
196 shift = 0;
197 do {
198 mask >>= 1;
199 if (!mask)
200 break;
201 shift++;
202 } while (1);
Bruce Cran93bcfd22012-02-20 20:18:19 +0100203
Jens Axboeac893112009-06-02 13:06:01 +0200204 mmap_map_mask = 1UL << shift;
205 return 0;
206}
207
Jens Axboe5f350952006-11-07 15:20:59 +0100208static struct ioengine_ops ioengine = {
Jens Axboe2866c822006-10-09 15:57:48 +0200209 .name = "mmap",
210 .version = FIO_IOOPS_VERSION,
Jens Axboeac893112009-06-02 13:06:01 +0200211 .init = fio_mmapio_init,
212 .prep = fio_mmapio_prep,
Jens Axboe2866c822006-10-09 15:57:48 +0200213 .queue = fio_mmapio_queue,
Jens Axboeac893112009-06-02 13:06:01 +0200214 .open_file = generic_open_file,
215 .close_file = generic_close_file,
Jens Axboedf9c26b2009-03-05 10:13:58 +0100216 .get_file_size = generic_get_file_size,
Jens Axboe02638822007-03-12 09:25:55 +0100217 .flags = FIO_SYNCIO | FIO_NOEXTEND,
Jens Axboe2866c822006-10-09 15:57:48 +0200218};
Jens Axboe5f350952006-11-07 15:20:59 +0100219
220static void fio_init fio_mmapio_register(void)
221{
222 register_ioengine(&ioengine);
223}
224
225static void fio_exit fio_mmapio_unregister(void)
226{
227 unregister_ioengine(&ioengine);
228}