blob: 492cc9153ecde358dc363664bf29fdd886f46ba1 [file] [log] [blame]
Jens Axboee29d1b72006-10-18 15:43:15 +02001/*
2 * IO verification helpers
3 */
4#include <unistd.h>
5#include <fcntl.h>
6#include <string.h>
Jens Axboe97af62c2007-05-22 11:12:13 +02007#include <assert.h>
Jens Axboee29d1b72006-10-18 15:43:15 +02008
9#include "fio.h"
Jens Axboee29d1b72006-10-18 15:43:15 +020010
11static void fill_random_bytes(struct thread_data *td,
12 unsigned char *p, unsigned int len)
13{
14 unsigned int todo;
Jens Axboe4c5946c2007-07-26 11:55:10 +020015 int r;
Jens Axboee29d1b72006-10-18 15:43:15 +020016
17 while (len) {
Jens Axboe4c5946c2007-07-26 11:55:10 +020018 r = os_random_long(&td->verify_state);
Jens Axboee29d1b72006-10-18 15:43:15 +020019
20 /*
21 * lrand48_r seems to be broken and only fill the bottom
22 * 32-bits, even on 64-bit archs with 64-bit longs
23 */
24 todo = sizeof(r);
25 if (todo > len)
26 todo = len;
27
28 memcpy(p, &r, todo);
29
30 len -= todo;
31 p += todo;
32 }
33}
34
35static void hexdump(void *buffer, int len)
36{
37 unsigned char *p = buffer;
38 int i;
39
40 for (i = 0; i < len; i++)
Jens Axboe6d861442007-03-15 09:22:23 +010041 log_info("%02x", p[i]);
42 log_info("\n");
Jens Axboee29d1b72006-10-18 15:43:15 +020043}
44
Jens Axboe1e154bd2007-07-27 09:52:40 +020045static int verify_io_u_crc7(struct verify_header *hdr, struct io_u *io_u)
46{
47 unsigned char *p = io_u->buf;
48 unsigned char c;
49
50 p += sizeof(*hdr);
51 c = crc7(p, hdr->len - sizeof(*hdr));
52
53 if (c != hdr->crc7) {
54 log_err("crc7: verify failed at %llu/%lu\n", io_u->offset, io_u->buflen);
55 log_err("crc7: wanted %x, got %x\n", hdr->crc7, c);
56 return 1;
57 }
58
59 return 0;
60}
61
Jens Axboe969f7ed2007-07-27 09:07:17 +020062static int verify_io_u_crc16(struct verify_header *hdr, struct io_u *io_u)
63{
64 unsigned char *p = io_u->buf;
65 unsigned short c;
66
67 p += sizeof(*hdr);
68 c = crc16(p, hdr->len - sizeof(*hdr));
69
70 if (c != hdr->crc16) {
71 log_err("crc16: verify failed at %llu/%lu\n", io_u->offset, io_u->buflen);
72 log_err("crc16: wanted %lx, got %x\n", hdr->crc32, c);
73 return 1;
74 }
75
76 return 0;
77}
78
Jens Axboee29d1b72006-10-18 15:43:15 +020079static int verify_io_u_crc32(struct verify_header *hdr, struct io_u *io_u)
80{
Jens Axboe969f7ed2007-07-27 09:07:17 +020081 unsigned char *p = io_u->buf;
Jens Axboee29d1b72006-10-18 15:43:15 +020082 unsigned long c;
83
84 p += sizeof(*hdr);
85 c = crc32(p, hdr->len - sizeof(*hdr));
86
87 if (c != hdr->crc32) {
Jens Axboea4f4fdd2007-02-14 01:16:39 +010088 log_err("crc32: verify failed at %llu/%lu\n", io_u->offset, io_u->buflen);
Jens Axboee29d1b72006-10-18 15:43:15 +020089 log_err("crc32: wanted %lx, got %lx\n", hdr->crc32, c);
90 return 1;
91 }
92
93 return 0;
94}
95
96static int verify_io_u_md5(struct verify_header *hdr, struct io_u *io_u)
97{
Jens Axboe969f7ed2007-07-27 09:07:17 +020098 unsigned char *p = io_u->buf;
Jens Axboee29d1b72006-10-18 15:43:15 +020099 struct md5_ctx md5_ctx;
100
101 memset(&md5_ctx, 0, sizeof(md5_ctx));
102 p += sizeof(*hdr);
103 md5_update(&md5_ctx, p, hdr->len - sizeof(*hdr));
104
105 if (memcmp(hdr->md5_digest, md5_ctx.hash, sizeof(md5_ctx.hash))) {
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100106 log_err("md5: verify failed at %llu/%lu\n", io_u->offset, io_u->buflen);
Jens Axboee29d1b72006-10-18 15:43:15 +0200107 hexdump(hdr->md5_digest, sizeof(hdr->md5_digest));
108 hexdump(md5_ctx.hash, sizeof(md5_ctx.hash));
109 return 1;
110 }
111
112 return 0;
113}
114
Jens Axboe36690c92007-03-26 10:23:34 +0200115int verify_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboee29d1b72006-10-18 15:43:15 +0200116{
117 struct verify_header *hdr = (struct verify_header *) io_u->buf;
118 int ret;
119
Shawn Lewis1dcc0492007-07-27 08:02:45 +0200120 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
Jens Axboe36690c92007-03-26 10:23:34 +0200121 return 0;
122
Jens Axboe36167d82007-02-18 05:41:31 +0100123 if (hdr->fio_magic != FIO_HDR_MAGIC) {
124 log_err("Bad verify header %x\n", hdr->fio_magic);
Jens Axboea7dfe862007-03-12 10:05:08 +0100125 return EIO;
Jens Axboe36167d82007-02-18 05:41:31 +0100126 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200127
128 if (hdr->verify_type == VERIFY_MD5)
129 ret = verify_io_u_md5(hdr, io_u);
130 else if (hdr->verify_type == VERIFY_CRC32)
131 ret = verify_io_u_crc32(hdr, io_u);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200132 else if (hdr->verify_type == VERIFY_CRC16)
133 ret = verify_io_u_crc16(hdr, io_u);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200134 else if (hdr->verify_type == VERIFY_CRC7)
135 ret = verify_io_u_crc7(hdr, io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200136 else {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100137 log_err("Bad verify type %u\n", hdr->verify_type);
Jens Axboee29d1b72006-10-18 15:43:15 +0200138 ret = 1;
139 }
140
Jens Axboea7dfe862007-03-12 10:05:08 +0100141 if (ret)
142 return EIO;
143
144 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200145}
146
Jens Axboe1e154bd2007-07-27 09:52:40 +0200147static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
148{
149 hdr->crc7 = crc7(p, len);
150}
151
Jens Axboe969f7ed2007-07-27 09:07:17 +0200152static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
153{
154 hdr->crc16 = crc16(p, len);
155}
156
Jens Axboee29d1b72006-10-18 15:43:15 +0200157static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
158{
159 hdr->crc32 = crc32(p, len);
160}
161
162static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
163{
164 struct md5_ctx md5_ctx;
165
166 memset(&md5_ctx, 0, sizeof(md5_ctx));
167 md5_update(&md5_ctx, p, len);
168 memcpy(hdr->md5_digest, md5_ctx.hash, sizeof(md5_ctx.hash));
169}
170
171/*
172 * fill body of io_u->buf with random data and add a header with the
173 * crc32 or md5 sum of that data.
174 */
175void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
176{
177 unsigned char *p = (unsigned char *) io_u->buf;
178 struct verify_header hdr;
179
Jens Axboe9cc3d152007-03-26 10:32:30 +0200180 if (td->o.verify == VERIFY_NULL)
181 return;
182
Jens Axboee29d1b72006-10-18 15:43:15 +0200183 hdr.fio_magic = FIO_HDR_MAGIC;
184 hdr.len = io_u->buflen;
185 p += sizeof(hdr);
186 fill_random_bytes(td, p, io_u->buflen - sizeof(hdr));
187
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100188 if (td->o.verify == VERIFY_MD5) {
Jens Axboee29d1b72006-10-18 15:43:15 +0200189 fill_md5(&hdr, p, io_u->buflen - sizeof(hdr));
190 hdr.verify_type = VERIFY_MD5;
Jens Axboe36690c92007-03-26 10:23:34 +0200191 } else if (td->o.verify == VERIFY_CRC32) {
Jens Axboee29d1b72006-10-18 15:43:15 +0200192 fill_crc32(&hdr, p, io_u->buflen - sizeof(hdr));
193 hdr.verify_type = VERIFY_CRC32;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200194 } else if (td->o.verify == VERIFY_CRC16) {
195 fill_crc16(&hdr, p, io_u->buflen - sizeof(hdr));
196 hdr.verify_type = VERIFY_CRC16;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200197 } else if (td->o.verify == VERIFY_CRC7) {
198 fill_crc7(&hdr, p, io_u->buflen - sizeof(hdr));
199 hdr.verify_type = VERIFY_CRC7;
Jens Axboee29d1b72006-10-18 15:43:15 +0200200 }
201
202 memcpy(io_u->buf, &hdr, sizeof(hdr));
203}
204
205int get_next_verify(struct thread_data *td, struct io_u *io_u)
206{
Jens Axboe8de8f042007-03-27 10:36:12 +0200207 struct io_piece *ipo = NULL;
Jens Axboee29d1b72006-10-18 15:43:15 +0200208
Jens Axboed2d7fa52007-02-19 13:21:35 +0100209 /*
210 * this io_u is from a requeue, we already filled the offsets
211 */
212 if (io_u->file)
213 return 0;
214
Jens Axboe8de8f042007-03-27 10:36:12 +0200215 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
216 struct rb_node *n = rb_first(&td->io_hist_tree);
217
Jens Axboe4b878982007-03-26 09:32:22 +0200218 ipo = rb_entry(n, struct io_piece, rb_node);
Jens Axboe4b878982007-03-26 09:32:22 +0200219 rb_erase(n, &td->io_hist_tree);
Jens Axboe8de8f042007-03-27 10:36:12 +0200220 } else if (!list_empty(&td->io_hist_list)) {
221 ipo = list_entry(td->io_hist_list.next, struct io_piece, list);
222 list_del(&ipo->list);
223 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200224
Jens Axboe8de8f042007-03-27 10:36:12 +0200225 if (ipo) {
Jens Axboee29d1b72006-10-18 15:43:15 +0200226 io_u->offset = ipo->offset;
227 io_u->buflen = ipo->len;
Jens Axboe36167d82007-02-18 05:41:31 +0100228 io_u->file = ipo->file;
Jens Axboe97af62c2007-05-22 11:12:13 +0200229
230 if ((io_u->file->flags & FIO_FILE_OPEN) == 0) {
231 int r = td_io_open_file(td, io_u->file);
232
233 if (r)
234 return 1;
235 }
236
237 get_file(ipo->file);
238 assert(io_u->file->flags & FIO_FILE_OPEN);
Jens Axboee29d1b72006-10-18 15:43:15 +0200239 io_u->ddir = DDIR_READ;
Jens Axboe36167d82007-02-18 05:41:31 +0100240 io_u->xfer_buf = io_u->buf;
241 io_u->xfer_buflen = io_u->buflen;
Jens Axboee29d1b72006-10-18 15:43:15 +0200242 free(ipo);
243 return 0;
244 }
245
246 return 1;
247}