blob: bb4a81a5a54f8eb2c3a047f866b624deea39cc7a [file] [log] [blame]
Jens Axboe2866c822006-10-09 15:57:48 +02001/*
2 * regular read/write sync io engine
3 *
4 */
5#include <stdio.h>
6#include <stdlib.h>
7#include <unistd.h>
8#include <errno.h>
9#include <assert.h>
10#include <sys/mman.h>
Jens Axboe5f350952006-11-07 15:20:59 +010011
12#include "../fio.h"
13#include "../os.h"
Jens Axboe2866c822006-10-09 15:57:48 +020014
Jens Axboe2866c822006-10-09 15:57:48 +020015static int fio_mmapio_queue(struct thread_data *td, struct io_u *io_u)
16{
Jens Axboe53cdc682006-10-18 11:50:58 +020017 struct fio_file *f = io_u->file;
18 unsigned long long real_off = io_u->offset - f->file_offset;
Jens Axboe2866c822006-10-09 15:57:48 +020019
20 if (io_u->ddir == DDIR_READ)
Jens Axboecec6b552007-02-06 20:15:38 +010021 memcpy(io_u->xfer_buf, f->mmap + real_off, io_u->xfer_buflen);
Jens Axboe87dc1ab2006-10-24 14:41:26 +020022 else if (io_u->ddir == DDIR_WRITE)
Jens Axboecec6b552007-02-06 20:15:38 +010023 memcpy(f->mmap + real_off, io_u->xfer_buf, io_u->xfer_buflen);
Jens Axboeb907a5b2006-10-24 14:46:13 +020024 else if (io_u->ddir == DDIR_SYNC) {
25 if (msync(f->mmap, f->file_size, MS_SYNC))
26 io_u->error = errno;
27 }
Jens Axboe2866c822006-10-09 15:57:48 +020028
29 /*
30 * not really direct, but should drop the pages from the cache
31 */
Jens Axboeb907a5b2006-10-24 14:46:13 +020032 if (td->odirect && io_u->ddir != DDIR_SYNC) {
Jens Axboecec6b552007-02-06 20:15:38 +010033 if (msync(f->mmap + real_off, io_u->xfer_buflen, MS_SYNC) < 0)
Jens Axboe2866c822006-10-09 15:57:48 +020034 io_u->error = errno;
Jens Axboecec6b552007-02-06 20:15:38 +010035 if (madvise(f->mmap + real_off, io_u->xfer_buflen, MADV_DONTNEED) < 0)
Jens Axboe2866c822006-10-09 15:57:48 +020036 io_u->error = errno;
37 }
38
Jens Axboe36167d82007-02-18 05:41:31 +010039 if (io_u->error)
Jens Axboee1161c32007-02-22 19:36:48 +010040 td_verror(td, io_u->error, "sync");
Jens Axboe2866c822006-10-09 15:57:48 +020041
Jens Axboe36167d82007-02-18 05:41:31 +010042 return FIO_Q_COMPLETED;
Jens Axboe2866c822006-10-09 15:57:48 +020043}
44
Jens Axboeb5af8292007-03-08 12:43:13 +010045static int fio_mmapio_open(struct thread_data *td, struct fio_file *f)
46{
47 int ret, flags;
48
49 ret = generic_open_file(td, f);
50 if (ret)
51 return ret;
52
53 if (td_rw(td))
54 flags = PROT_READ | PROT_WRITE;
55 else if (td_write(td)) {
56 flags = PROT_WRITE;
57
58 if (td->verify != VERIFY_NONE)
59 flags |= PROT_READ;
60 } else
61 flags = PROT_READ;
62
63 f->mmap = mmap(NULL, f->file_size, flags, MAP_SHARED, f->fd, f->file_offset);
64 if (f->mmap == MAP_FAILED) {
65 f->mmap = NULL;
66 td_verror(td, errno, "mmap");
67 goto err;
68 }
69
70 if (file_invalidate_cache(td, f))
71 goto err;
72
73 if (!td_random(td)) {
74 if (madvise(f->mmap, f->file_size, MADV_SEQUENTIAL) < 0) {
75 td_verror(td, errno, "madvise");
76 goto err;
77 }
78 } else {
79 if (madvise(f->mmap, f->file_size, MADV_RANDOM) < 0) {
80 td_verror(td, errno, "madvise");
81 goto err;
82 }
83 }
84
85 return 0;
86
87err:
Jens Axboe02638822007-03-12 09:25:55 +010088 td->io_ops->close_file(td, f);
Jens Axboeb5af8292007-03-08 12:43:13 +010089 return 1;
90}
91
92static void fio_mmapio_close(struct thread_data fio_unused *td,
93 struct fio_file *f)
94{
95 if (f->mmap) {
96 munmap(f->mmap, f->file_size);
97 f->mmap = NULL;
98 }
Jens Axboe02638822007-03-12 09:25:55 +010099 generic_close_file(td, f);
Jens Axboeb5af8292007-03-08 12:43:13 +0100100}
101
Jens Axboe5f350952006-11-07 15:20:59 +0100102static struct ioengine_ops ioengine = {
Jens Axboe2866c822006-10-09 15:57:48 +0200103 .name = "mmap",
104 .version = FIO_IOOPS_VERSION,
Jens Axboe2866c822006-10-09 15:57:48 +0200105 .queue = fio_mmapio_queue,
Jens Axboeb5af8292007-03-08 12:43:13 +0100106 .open_file = fio_mmapio_open,
107 .close_file = fio_mmapio_close,
Jens Axboe02638822007-03-12 09:25:55 +0100108 .flags = FIO_SYNCIO | FIO_NOEXTEND,
Jens Axboe2866c822006-10-09 15:57:48 +0200109};
Jens Axboe5f350952006-11-07 15:20:59 +0100110
111static void fio_init fio_mmapio_register(void)
112{
113 register_ioengine(&ioengine);
114}
115
116static void fio_exit fio_mmapio_unregister(void)
117{
118 unregister_ioengine(&ioengine);
119}