blob: 156f068687097343469a6839c712adf862d35ab5 [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);
Jens Axboe1f24ea42007-07-27 09:53:14 +020072 log_err("crc16: wanted %x, got %x\n", hdr->crc16, c);
Jens Axboe969f7ed2007-07-27 09:07:17 +020073 return 1;
74 }
75
76 return 0;
77}
78
Jens Axboed77a7af2007-07-27 15:35:06 +020079static int verify_io_u_crc64(struct verify_header *hdr, struct io_u *io_u)
80{
81 unsigned char *p = io_u->buf + sizeof(*hdr);
82 unsigned long long c;
83
84 c = crc64(p, hdr->len - sizeof(*hdr));
85
86 if (c != hdr->crc64) {
87 log_err("crc64: verify failed at %llu/%lu\n", io_u->offset, io_u->buflen);
88 log_err("crc64: wanted %llx, got %llx\n", hdr->crc64, c);
89 return 1;
90 }
91
92 return 0;
93}
94
Jens Axboee29d1b72006-10-18 15:43:15 +020095static int verify_io_u_crc32(struct verify_header *hdr, struct io_u *io_u)
96{
Jens Axboe969f7ed2007-07-27 09:07:17 +020097 unsigned char *p = io_u->buf;
Jens Axboee29d1b72006-10-18 15:43:15 +020098 unsigned long c;
99
100 p += sizeof(*hdr);
101 c = crc32(p, hdr->len - sizeof(*hdr));
102
103 if (c != hdr->crc32) {
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100104 log_err("crc32: verify failed at %llu/%lu\n", io_u->offset, io_u->buflen);
Jens Axboee29d1b72006-10-18 15:43:15 +0200105 log_err("crc32: wanted %lx, got %lx\n", hdr->crc32, c);
106 return 1;
107 }
108
109 return 0;
110}
111
112static int verify_io_u_md5(struct verify_header *hdr, struct io_u *io_u)
113{
Jens Axboe8c432322007-07-27 13:16:24 +0200114 unsigned char *p = io_u->buf + sizeof(*hdr);
115 uint32_t hash[MD5_HASH_WORDS];
116 struct md5_ctx md5_ctx = {
117 .hash = hash,
118 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200119
Jens Axboee29d1b72006-10-18 15:43:15 +0200120 md5_update(&md5_ctx, p, hdr->len - sizeof(*hdr));
121
Jens Axboe8c432322007-07-27 13:16:24 +0200122 if (memcmp(hdr->md5_digest, md5_ctx.hash, sizeof(hash))) {
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100123 log_err("md5: verify failed at %llu/%lu\n", io_u->offset, io_u->buflen);
Jens Axboee29d1b72006-10-18 15:43:15 +0200124 hexdump(hdr->md5_digest, sizeof(hdr->md5_digest));
Jens Axboe8c432322007-07-27 13:16:24 +0200125 hexdump(md5_ctx.hash, sizeof(hash));
Jens Axboee29d1b72006-10-18 15:43:15 +0200126 return 1;
127 }
128
129 return 0;
130}
131
Jens Axboe36690c92007-03-26 10:23:34 +0200132int verify_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboee29d1b72006-10-18 15:43:15 +0200133{
134 struct verify_header *hdr = (struct verify_header *) io_u->buf;
135 int ret;
136
Shawn Lewis1dcc0492007-07-27 08:02:45 +0200137 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
Jens Axboe36690c92007-03-26 10:23:34 +0200138 return 0;
139
Jens Axboe36167d82007-02-18 05:41:31 +0100140 if (hdr->fio_magic != FIO_HDR_MAGIC) {
141 log_err("Bad verify header %x\n", hdr->fio_magic);
Jens Axboea7dfe862007-03-12 10:05:08 +0100142 return EIO;
Jens Axboe36167d82007-02-18 05:41:31 +0100143 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200144
Jens Axboea3ff21e2007-07-27 12:59:25 +0200145 switch (hdr->verify_type) {
146 case VERIFY_MD5:
Jens Axboee29d1b72006-10-18 15:43:15 +0200147 ret = verify_io_u_md5(hdr, io_u);
Jens Axboea3ff21e2007-07-27 12:59:25 +0200148 break;
Jens Axboed77a7af2007-07-27 15:35:06 +0200149 case VERIFY_CRC64:
150 ret = verify_io_u_crc64(hdr, io_u);
151 break;
Jens Axboea3ff21e2007-07-27 12:59:25 +0200152 case VERIFY_CRC32:
Jens Axboee29d1b72006-10-18 15:43:15 +0200153 ret = verify_io_u_crc32(hdr, io_u);
Jens Axboea3ff21e2007-07-27 12:59:25 +0200154 break;
155 case VERIFY_CRC16:
Jens Axboe969f7ed2007-07-27 09:07:17 +0200156 ret = verify_io_u_crc16(hdr, io_u);
Jens Axboea3ff21e2007-07-27 12:59:25 +0200157 break;
158 case VERIFY_CRC7:
Jens Axboe1e154bd2007-07-27 09:52:40 +0200159 ret = verify_io_u_crc7(hdr, io_u);
Jens Axboea3ff21e2007-07-27 12:59:25 +0200160 break;
161 default:
Jens Axboe1e97cce2006-12-05 11:44:16 +0100162 log_err("Bad verify type %u\n", hdr->verify_type);
Jens Axboee29d1b72006-10-18 15:43:15 +0200163 ret = 1;
164 }
165
Jens Axboea7dfe862007-03-12 10:05:08 +0100166 if (ret)
167 return EIO;
168
169 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200170}
171
Jens Axboe1e154bd2007-07-27 09:52:40 +0200172static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
173{
174 hdr->crc7 = crc7(p, len);
175}
176
Jens Axboe969f7ed2007-07-27 09:07:17 +0200177static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
178{
179 hdr->crc16 = crc16(p, len);
180}
181
Jens Axboee29d1b72006-10-18 15:43:15 +0200182static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
183{
184 hdr->crc32 = crc32(p, len);
185}
186
Jens Axboed77a7af2007-07-27 15:35:06 +0200187static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
188{
189 hdr->crc64 = crc64(p, len);
190}
191
Jens Axboee29d1b72006-10-18 15:43:15 +0200192static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
193{
Jens Axboe8c432322007-07-27 13:16:24 +0200194 struct md5_ctx md5_ctx = {
195 .hash = (uint32_t *) hdr->md5_digest,
196 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200197
Jens Axboee29d1b72006-10-18 15:43:15 +0200198 md5_update(&md5_ctx, p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200199}
200
201/*
202 * fill body of io_u->buf with random data and add a header with the
203 * crc32 or md5 sum of that data.
204 */
205void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
206{
Jens Axboebaefa9b2007-07-27 12:57:25 +0200207 const unsigned int len = io_u->buflen - sizeof(struct verify_header);
208 struct verify_header *hdr;
209 unsigned char *p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200210
Jens Axboe9cc3d152007-03-26 10:32:30 +0200211 if (td->o.verify == VERIFY_NULL)
212 return;
213
Jens Axboebaefa9b2007-07-27 12:57:25 +0200214 hdr = (struct verify_header *) io_u->buf;
215 hdr->fio_magic = FIO_HDR_MAGIC;
216 hdr->len = io_u->buflen;
217 hdr->verify_type = td->o.verify;
Jens Axboee29d1b72006-10-18 15:43:15 +0200218
Jens Axboebaefa9b2007-07-27 12:57:25 +0200219 p = io_u->buf + sizeof(*hdr);
220 fill_random_bytes(td, p, len);
221
222 switch (td->o.verify) {
223 case VERIFY_MD5:
224 fill_md5(hdr, p, len);
225 break;
Jens Axboed77a7af2007-07-27 15:35:06 +0200226 case VERIFY_CRC64:
227 fill_crc64(hdr, p, len);
228 break;
Jens Axboebaefa9b2007-07-27 12:57:25 +0200229 case VERIFY_CRC32:
230 fill_crc32(hdr, p, len);
231 break;
232 case VERIFY_CRC16:
233 fill_crc16(hdr, p, len);
234 break;
235 case VERIFY_CRC7:
236 fill_crc7(hdr, p, len);
237 break;
238 default:
239 log_err("fio: bad verify type: %d\n", td->o.verify);
240 assert(0);
Jens Axboee29d1b72006-10-18 15:43:15 +0200241 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200242}
243
244int get_next_verify(struct thread_data *td, struct io_u *io_u)
245{
Jens Axboe8de8f042007-03-27 10:36:12 +0200246 struct io_piece *ipo = NULL;
Jens Axboee29d1b72006-10-18 15:43:15 +0200247
Jens Axboed2d7fa52007-02-19 13:21:35 +0100248 /*
249 * this io_u is from a requeue, we already filled the offsets
250 */
251 if (io_u->file)
252 return 0;
253
Jens Axboe8de8f042007-03-27 10:36:12 +0200254 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
255 struct rb_node *n = rb_first(&td->io_hist_tree);
256
Jens Axboe4b878982007-03-26 09:32:22 +0200257 ipo = rb_entry(n, struct io_piece, rb_node);
Jens Axboe4b878982007-03-26 09:32:22 +0200258 rb_erase(n, &td->io_hist_tree);
Jens Axboe8de8f042007-03-27 10:36:12 +0200259 } else if (!list_empty(&td->io_hist_list)) {
260 ipo = list_entry(td->io_hist_list.next, struct io_piece, list);
261 list_del(&ipo->list);
262 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200263
Jens Axboe8de8f042007-03-27 10:36:12 +0200264 if (ipo) {
Jens Axboee29d1b72006-10-18 15:43:15 +0200265 io_u->offset = ipo->offset;
266 io_u->buflen = ipo->len;
Jens Axboe36167d82007-02-18 05:41:31 +0100267 io_u->file = ipo->file;
Jens Axboe97af62c2007-05-22 11:12:13 +0200268
269 if ((io_u->file->flags & FIO_FILE_OPEN) == 0) {
270 int r = td_io_open_file(td, io_u->file);
271
272 if (r)
273 return 1;
274 }
275
276 get_file(ipo->file);
277 assert(io_u->file->flags & FIO_FILE_OPEN);
Jens Axboee29d1b72006-10-18 15:43:15 +0200278 io_u->ddir = DDIR_READ;
Jens Axboe36167d82007-02-18 05:41:31 +0100279 io_u->xfer_buf = io_u->buf;
280 io_u->xfer_buflen = io_u->buflen;
Jens Axboee29d1b72006-10-18 15:43:15 +0200281 free(ipo);
282 return 0;
283 }
284
285 return 1;
286}