blob: 14d32134d8c688f3513f2602800bab78b61d93b5 [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 Axboee8462bd2009-07-06 12:59:04 +02008#include <pthread.h>
Jens Axboee29d1b72006-10-18 15:43:15 +02009
10#include "fio.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020011#include "verify.h"
Jens Axboee8462bd2009-07-06 12:59:04 +020012#include "smalloc.h"
Jens Axboe0d29de82010-09-01 13:54:15 +020013#include "trim.h"
Jens Axboe637ef8d2010-06-21 20:39:38 +020014#include "lib/rand.h"
Jens Axboee29d1b72006-10-18 15:43:15 +020015
Jens Axboeeef6eea2007-07-30 12:27:58 +020016#include "crc/md5.h"
17#include "crc/crc64.h"
18#include "crc/crc32.h"
Jens Axboebac39e02008-06-11 20:46:19 +020019#include "crc/crc32c.h"
Jens Axboeeef6eea2007-07-30 12:27:58 +020020#include "crc/crc16.h"
21#include "crc/crc7.h"
22#include "crc/sha256.h"
23#include "crc/sha512.h"
Jens Axboe7c353ce2009-08-09 22:40:33 +020024#include "crc/sha1.h"
Jens Axboecd14cc12007-07-30 10:59:33 +020025
Jens Axboe7d9fb452011-01-11 22:16:49 +010026static void populate_hdr(struct thread_data *td, struct io_u *io_u,
27 struct verify_header *hdr, unsigned int header_num,
28 unsigned int header_len);
29
30void fill_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u *io_u, unsigned long seed, int use_seed)
Jens Axboe90059d62007-07-30 09:33:12 +020031{
32 switch (td->o.verify_pattern_bytes) {
33 case 0:
Jens Axboebd6f78b2008-02-01 20:27:52 +010034 dprint(FD_VERIFY, "fill random bytes len=%u\n", len);
Jens Axboe7d9fb452011-01-11 22:16:49 +010035 if (use_seed)
36 __fill_random_buf(p, len, seed);
37 else
38 io_u->rand_seed = fill_random_buf(p, len);
Jens Axboe90059d62007-07-30 09:33:12 +020039 break;
40 case 1:
Radha Ramachandran10e8a7b2010-07-14 17:39:05 -060041 if (io_u->buf_filled_len >= len) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020042 dprint(FD_VERIFY, "using already filled verify pattern b=0 len=%u\n", len);
43 return;
44 }
Jens Axboebd6f78b2008-02-01 20:27:52 +010045 dprint(FD_VERIFY, "fill verify pattern b=0 len=%u\n", len);
Radha Ramachandran0e92f872009-10-27 20:14:27 +010046 memset(p, td->o.verify_pattern[0], len);
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020047 io_u->buf_filled_len = len;
Jens Axboe90059d62007-07-30 09:33:12 +020048 break;
Radha Ramachandran0e92f872009-10-27 20:14:27 +010049 default: {
50 unsigned int i = 0, size = 0;
Jens Axboe90059d62007-07-30 09:33:12 +020051 unsigned char *b = p;
52
Radha Ramachandran10e8a7b2010-07-14 17:39:05 -060053 if (io_u->buf_filled_len >= len) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020054 dprint(FD_VERIFY, "using already filled verify pattern b=%d len=%u\n",
55 td->o.verify_pattern_bytes, len);
56 return;
57 }
Jens Axboebd6f78b2008-02-01 20:27:52 +010058 dprint(FD_VERIFY, "fill verify pattern b=%d len=%u\n",
59 td->o.verify_pattern_bytes, len);
60
Jens Axboe90059d62007-07-30 09:33:12 +020061 while (i < len) {
Radha Ramachandran0e92f872009-10-27 20:14:27 +010062 size = td->o.verify_pattern_bytes;
63 if (size > (len - i))
64 size = len - i;
65 memcpy(b+i, td->o.verify_pattern, size);
66 i += size;
Jens Axboe90059d62007-07-30 09:33:12 +020067 }
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020068 io_u->buf_filled_len = len;
Jens Axboe90059d62007-07-30 09:33:12 +020069 break;
70 }
71 }
72}
73
Jens Axboec50ca7b2011-01-12 08:31:54 +010074static void fill_pattern_headers(struct thread_data *td, struct io_u *io_u,
75 unsigned long seed, int use_seed)
76{
77 unsigned int hdr_inc, header_num;
78 struct verify_header *hdr;
79 void *p = io_u->buf;
80
81 fill_pattern(td, p, io_u->buflen, io_u, seed, use_seed);
82
83 hdr_inc = io_u->buflen;
84 if (td->o.verify_interval)
85 hdr_inc = td->o.verify_interval;
86
87 header_num = 0;
88 for (; p < io_u->buf + io_u->buflen; p += hdr_inc) {
89 hdr = p;
90 populate_hdr(td, io_u, hdr, header_num, hdr_inc);
91 header_num++;
92 }
93}
94
Jens Axboe4764aec2007-08-23 09:03:38 +020095static void memswp(void *buf1, void *buf2, unsigned int len)
Shawn Lewis546a9142007-07-28 21:11:37 +020096{
Shawn Lewisdee6de72007-08-02 22:17:52 +020097 char swap[200];
98
99 assert(len <= sizeof(swap));
Jens Axboe90059d62007-07-30 09:33:12 +0200100
Shawn Lewis546a9142007-07-28 21:11:37 +0200101 memcpy(&swap, buf1, len);
102 memcpy(buf1, buf2, len);
103 memcpy(buf2, &swap, len);
104}
105
Jens Axboee29d1b72006-10-18 15:43:15 +0200106static void hexdump(void *buffer, int len)
107{
108 unsigned char *p = buffer;
109 int i;
110
111 for (i = 0; i < len; i++)
Jens Axboebfacf382010-06-18 14:29:52 +0200112 log_err("%02x", p[i]);
113 log_err("\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200114}
115
Jens Axboed9f2caf2007-07-28 21:22:03 +0200116/*
Jens Axboe87677832007-07-30 12:08:14 +0200117 * Prepare for seperation of verify_header and checksum header
118 */
Jens Axboe546dfd92007-07-30 12:23:05 +0200119static inline unsigned int __hdr_size(int verify_type)
Jens Axboe87677832007-07-30 12:08:14 +0200120{
Bruce Cran03e20d62011-01-02 20:14:54 +0100121 unsigned int len = 0;
Jens Axboe87677832007-07-30 12:08:14 +0200122
Jens Axboe546dfd92007-07-30 12:23:05 +0200123 switch (verify_type) {
124 case VERIFY_NONE:
125 case VERIFY_NULL:
126 len = 0;
127 break;
128 case VERIFY_MD5:
129 len = sizeof(struct vhdr_md5);
130 break;
131 case VERIFY_CRC64:
132 len = sizeof(struct vhdr_crc64);
133 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200134 case VERIFY_CRC32C:
Jens Axboe546dfd92007-07-30 12:23:05 +0200135 case VERIFY_CRC32:
Jens Axboe38455912008-08-04 15:35:26 +0200136 case VERIFY_CRC32C_INTEL:
Jens Axboe546dfd92007-07-30 12:23:05 +0200137 len = sizeof(struct vhdr_crc32);
138 break;
139 case VERIFY_CRC16:
140 len = sizeof(struct vhdr_crc16);
141 break;
142 case VERIFY_CRC7:
143 len = sizeof(struct vhdr_crc7);
144 break;
145 case VERIFY_SHA256:
146 len = sizeof(struct vhdr_sha256);
147 break;
148 case VERIFY_SHA512:
149 len = sizeof(struct vhdr_sha512);
150 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200151 case VERIFY_META:
152 len = sizeof(struct vhdr_meta);
153 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200154 case VERIFY_SHA1:
155 len = sizeof(struct vhdr_sha1);
156 break;
Jens Axboe546dfd92007-07-30 12:23:05 +0200157 default:
158 log_err("fio: unknown verify header!\n");
159 assert(0);
160 }
161
162 return len + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200163}
164
165static inline unsigned int hdr_size(struct verify_header *hdr)
166{
Jens Axboe546dfd92007-07-30 12:23:05 +0200167 return __hdr_size(hdr->verify_type);
168}
169
170static void *hdr_priv(struct verify_header *hdr)
171{
172 void *priv = hdr;
173
174 return priv + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200175}
176
177/*
Jens Axboe936216f2010-06-18 13:44:11 +0200178 * Verify container, pass info to verify handlers and allow them to
179 * pass info back in case of error
180 */
181struct vcont {
182 /*
183 * Input
184 */
185 struct io_u *io_u;
186 unsigned int hdr_num;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100187 struct thread_data *td;
Jens Axboe936216f2010-06-18 13:44:11 +0200188
189 /*
190 * Output, only valid in case of error
191 */
Jens Axboebfacf382010-06-18 14:29:52 +0200192 const char *name;
193 void *good_crc;
194 void *bad_crc;
Jens Axboe936216f2010-06-18 13:44:11 +0200195 unsigned int crc_len;
196};
197
Jens Axboec50ca7b2011-01-12 08:31:54 +0100198static void dump_buf(char *buf, unsigned int len, unsigned long long offset,
199 const char *type, struct fio_file *f)
Jens Axboe7d9fb452011-01-11 22:16:49 +0100200{
Jens Axboe6f260b32011-01-13 18:57:54 +0100201 char *ptr, fname[256];
Jens Axboe7d9fb452011-01-11 22:16:49 +0100202 int ret, fd;
203
Jens Axboe6f260b32011-01-13 18:57:54 +0100204 ptr = strdup(f->file_name);
205 strcpy(fname, basename(ptr));
Jens Axboec50ca7b2011-01-12 08:31:54 +0100206
207 sprintf(fname + strlen(fname), ".%llu.%s", offset, type);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100208
209 fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 0644);
210 if (fd < 0) {
211 perror("open verify buf file");
212 return;
213 }
214
215 while (len) {
216 ret = write(fd, buf, len);
217 if (!ret)
218 break;
219 else if (ret < 0) {
220 perror("write verify buf file");
221 break;
222 }
223 len -= ret;
224 buf += ret;
225 }
226
227 close(fd);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100228 log_err(" %s data dumped as %s\n", type, fname);
Jens Axboe6f260b32011-01-13 18:57:54 +0100229 free(ptr);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100230}
231
Jens Axboec50ca7b2011-01-12 08:31:54 +0100232/*
233 * Dump the contents of the read block and re-generate the correct data
234 * and dump that too.
235 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100236static void dump_verify_buffers(struct verify_header *hdr, struct vcont *vc)
237{
238 struct thread_data *td = vc->td;
239 struct io_u *io_u = vc->io_u;
240 unsigned long hdr_offset;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100241 struct io_u dummy;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100242 void *buf;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100243
Jens Axboec50ca7b2011-01-12 08:31:54 +0100244 /*
245 * Dump the contents we just read off disk
246 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100247 hdr_offset = vc->hdr_num * hdr->len;
248
Jens Axboec50ca7b2011-01-12 08:31:54 +0100249 dump_buf(io_u->buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
250 "received", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100251
Jens Axboec50ca7b2011-01-12 08:31:54 +0100252 /*
253 * Allocate a new buf and re-generate the original data
254 */
255 buf = malloc(io_u->buflen);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100256 dummy = *io_u;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100257 dummy.buf = buf;
Jens Axboe4aae38a2011-01-12 08:59:12 +0100258 dummy.rand_seed = hdr->rand_seed;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100259
Jens Axboec50ca7b2011-01-12 08:31:54 +0100260 fill_pattern_headers(td, &dummy, hdr->rand_seed, 1);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100261
Jens Axboec50ca7b2011-01-12 08:31:54 +0100262 dump_buf(buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
263 "expected", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100264 free(buf);
265}
266
Jens Axboebfacf382010-06-18 14:29:52 +0200267static void log_verify_failure(struct verify_header *hdr, struct vcont *vc)
268{
269 unsigned long long offset;
270
271 offset = vc->io_u->offset;
272 offset += vc->hdr_num * hdr->len;
Jens Axboe32c17ad2010-06-18 14:32:21 +0200273 log_err("%.8s: verify failed at file %s offset %llu, length %u\n",
274 vc->name, vc->io_u->file->file_name, offset, hdr->len);
Jens Axboebfacf382010-06-18 14:29:52 +0200275
276 if (vc->good_crc && vc->bad_crc) {
277 log_err(" Expected CRC: ");
278 hexdump(vc->good_crc, vc->crc_len);
279 log_err(" Received CRC: ");
280 hexdump(vc->bad_crc, vc->crc_len);
281 }
Jens Axboe7d9fb452011-01-11 22:16:49 +0100282
283 dump_verify_buffers(hdr, vc);
Jens Axboebfacf382010-06-18 14:29:52 +0200284}
285
Jens Axboe936216f2010-06-18 13:44:11 +0200286/*
Jens Axboed9f2caf2007-07-28 21:22:03 +0200287 * Return data area 'header_num'
288 */
Jens Axboe936216f2010-06-18 13:44:11 +0200289static inline void *io_u_verify_off(struct verify_header *hdr, struct vcont *vc)
Jens Axboed9f2caf2007-07-28 21:22:03 +0200290{
Jens Axboe936216f2010-06-18 13:44:11 +0200291 return vc->io_u->buf + vc->hdr_num * hdr->len + hdr_size(hdr);
Jens Axboed9f2caf2007-07-28 21:22:03 +0200292}
293
Shawn Lewis7437ee82007-08-02 21:05:58 +0200294static int verify_io_u_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe936216f2010-06-18 13:44:11 +0200295 struct vcont *vc)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200296{
297 struct vhdr_meta *vh = hdr_priv(hdr);
Jens Axboe936216f2010-06-18 13:44:11 +0200298 struct io_u *io_u = vc->io_u;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200299
Jens Axboebd6f78b2008-02-01 20:27:52 +0100300 dprint(FD_VERIFY, "meta verify io_u %p, len %u\n", io_u, hdr->len);
301
Jens Axboebfacf382010-06-18 14:29:52 +0200302 if (vh->offset == io_u->offset + vc->hdr_num * td->o.verify_interval)
303 return 0;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200304
Jens Axboebfacf382010-06-18 14:29:52 +0200305 vc->name = "meta";
306 log_verify_failure(hdr, vc);
307 return EILSEQ;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200308}
309
Jens Axboe936216f2010-06-18 13:44:11 +0200310static int verify_io_u_sha512(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200311{
Jens Axboe936216f2010-06-18 13:44:11 +0200312 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200313 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200314 uint8_t sha512[128];
315 struct sha512_ctx sha512_ctx = {
316 .buf = sha512,
317 };
318
Jens Axboe936216f2010-06-18 13:44:11 +0200319 dprint(FD_VERIFY, "sha512 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100320
Jens Axboecd14cc12007-07-30 10:59:33 +0200321 sha512_init(&sha512_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200322 sha512_update(&sha512_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200323
Jens Axboebfacf382010-06-18 14:29:52 +0200324 if (!memcmp(vh->sha512, sha512_ctx.buf, sizeof(sha512)))
325 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200326
Jens Axboebfacf382010-06-18 14:29:52 +0200327 vc->name = "sha512";
328 vc->good_crc = vh->sha512;
329 vc->bad_crc = sha512_ctx.buf;
330 vc->crc_len = sizeof(vh->sha512);
331 log_verify_failure(hdr, vc);
332 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200333}
334
Jens Axboe936216f2010-06-18 13:44:11 +0200335static int verify_io_u_sha256(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200336{
Jens Axboe936216f2010-06-18 13:44:11 +0200337 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200338 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboebc77f562010-02-23 10:36:21 +0100339 uint8_t sha256[64];
Jens Axboecd14cc12007-07-30 10:59:33 +0200340 struct sha256_ctx sha256_ctx = {
341 .buf = sha256,
342 };
343
Jens Axboe936216f2010-06-18 13:44:11 +0200344 dprint(FD_VERIFY, "sha256 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100345
Jens Axboecd14cc12007-07-30 10:59:33 +0200346 sha256_init(&sha256_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200347 sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200348
Jens Axboebfacf382010-06-18 14:29:52 +0200349 if (!memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256)))
350 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200351
Jens Axboebfacf382010-06-18 14:29:52 +0200352 vc->name = "sha256";
353 vc->good_crc = vh->sha256;
354 vc->bad_crc = sha256_ctx.buf;
355 vc->crc_len = sizeof(vh->sha256);
356 log_verify_failure(hdr, vc);
357 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200358}
359
Jens Axboe936216f2010-06-18 13:44:11 +0200360static int verify_io_u_sha1(struct verify_header *hdr, struct vcont *vc)
Jens Axboe7c353ce2009-08-09 22:40:33 +0200361{
Jens Axboe936216f2010-06-18 13:44:11 +0200362 void *p = io_u_verify_off(hdr, vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200363 struct vhdr_sha1 *vh = hdr_priv(hdr);
364 uint32_t sha1[5];
365 struct sha1_ctx sha1_ctx = {
366 .H = sha1,
367 };
368
Jens Axboe936216f2010-06-18 13:44:11 +0200369 dprint(FD_VERIFY, "sha1 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200370
371 sha1_init(&sha1_ctx);
372 sha1_update(&sha1_ctx, p, hdr->len - hdr_size(hdr));
373
Jens Axboebfacf382010-06-18 14:29:52 +0200374 if (!memcmp(vh->sha1, sha1_ctx.H, sizeof(sha1)))
375 return 0;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200376
Jens Axboebfacf382010-06-18 14:29:52 +0200377 vc->name = "sha1";
378 vc->good_crc = vh->sha1;
379 vc->bad_crc = sha1_ctx.H;
380 vc->crc_len = sizeof(vh->sha1);
381 log_verify_failure(hdr, vc);
382 return EILSEQ;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200383}
384
Jens Axboe936216f2010-06-18 13:44:11 +0200385static int verify_io_u_crc7(struct verify_header *hdr, struct vcont *vc)
Jens Axboe1e154bd2007-07-27 09:52:40 +0200386{
Jens Axboe936216f2010-06-18 13:44:11 +0200387 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200388 struct vhdr_crc7 *vh = hdr_priv(hdr);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200389 unsigned char c;
390
Jens Axboe936216f2010-06-18 13:44:11 +0200391 dprint(FD_VERIFY, "crc7 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100392
Jens Axboe87677832007-07-30 12:08:14 +0200393 c = crc7(p, hdr->len - hdr_size(hdr));
Jens Axboe1e154bd2007-07-27 09:52:40 +0200394
Jens Axboebfacf382010-06-18 14:29:52 +0200395 if (c == vh->crc7)
396 return 0;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200397
Jens Axboebfacf382010-06-18 14:29:52 +0200398 vc->name = "crc7";
399 vc->good_crc = &vh->crc7;
400 vc->bad_crc = &c;
401 vc->crc_len = 1;
402 log_verify_failure(hdr, vc);
403 return EILSEQ;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200404}
405
Jens Axboe936216f2010-06-18 13:44:11 +0200406static int verify_io_u_crc16(struct verify_header *hdr, struct vcont *vc)
Jens Axboe969f7ed2007-07-27 09:07:17 +0200407{
Jens Axboe936216f2010-06-18 13:44:11 +0200408 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200409 struct vhdr_crc16 *vh = hdr_priv(hdr);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200410 unsigned short c;
411
Jens Axboe936216f2010-06-18 13:44:11 +0200412 dprint(FD_VERIFY, "crc16 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100413
Jens Axboe87677832007-07-30 12:08:14 +0200414 c = crc16(p, hdr->len - hdr_size(hdr));
Jens Axboe969f7ed2007-07-27 09:07:17 +0200415
Jens Axboebfacf382010-06-18 14:29:52 +0200416 if (c == vh->crc16)
417 return 0;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200418
Jens Axboebfacf382010-06-18 14:29:52 +0200419 vc->name = "crc16";
420 vc->good_crc = &vh->crc16;
421 vc->bad_crc = &c;
422 vc->crc_len = 2;
423 log_verify_failure(hdr, vc);
424 return EILSEQ;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200425}
426
Jens Axboe936216f2010-06-18 13:44:11 +0200427static int verify_io_u_crc64(struct verify_header *hdr, struct vcont *vc)
Jens Axboed77a7af2007-07-27 15:35:06 +0200428{
Jens Axboe936216f2010-06-18 13:44:11 +0200429 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200430 struct vhdr_crc64 *vh = hdr_priv(hdr);
Jens Axboed77a7af2007-07-27 15:35:06 +0200431 unsigned long long c;
432
Jens Axboe936216f2010-06-18 13:44:11 +0200433 dprint(FD_VERIFY, "crc64 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100434
Jens Axboe87677832007-07-30 12:08:14 +0200435 c = crc64(p, hdr->len - hdr_size(hdr));
Jens Axboed77a7af2007-07-27 15:35:06 +0200436
Jens Axboebfacf382010-06-18 14:29:52 +0200437 if (c == vh->crc64)
438 return 0;
Jens Axboed77a7af2007-07-27 15:35:06 +0200439
Jens Axboebfacf382010-06-18 14:29:52 +0200440 vc->name = "crc64";
441 vc->good_crc = &vh->crc64;
442 vc->bad_crc = &c;
443 vc->crc_len = 8;
444 log_verify_failure(hdr, vc);
445 return EILSEQ;
Jens Axboed77a7af2007-07-27 15:35:06 +0200446}
447
Jens Axboe936216f2010-06-18 13:44:11 +0200448static int verify_io_u_crc32(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200449{
Jens Axboe936216f2010-06-18 13:44:11 +0200450 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200451 struct vhdr_crc32 *vh = hdr_priv(hdr);
452 uint32_t c;
Jens Axboee29d1b72006-10-18 15:43:15 +0200453
Jens Axboe936216f2010-06-18 13:44:11 +0200454 dprint(FD_VERIFY, "crc32 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100455
Jens Axboe87677832007-07-30 12:08:14 +0200456 c = crc32(p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200457
Jens Axboebfacf382010-06-18 14:29:52 +0200458 if (c == vh->crc32)
459 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200460
Jens Axboebfacf382010-06-18 14:29:52 +0200461 vc->name = "crc32";
462 vc->good_crc = &vh->crc32;
463 vc->bad_crc = &c;
464 vc->crc_len = 4;
465 log_verify_failure(hdr, vc);
466 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200467}
468
Jens Axboe936216f2010-06-18 13:44:11 +0200469static int verify_io_u_crc32c(struct verify_header *hdr, struct vcont *vc)
Jens Axboebac39e02008-06-11 20:46:19 +0200470{
Jens Axboe936216f2010-06-18 13:44:11 +0200471 void *p = io_u_verify_off(hdr, vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200472 struct vhdr_crc32 *vh = hdr_priv(hdr);
473 uint32_t c;
474
Jens Axboe936216f2010-06-18 13:44:11 +0200475 dprint(FD_VERIFY, "crc32c verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebac39e02008-06-11 20:46:19 +0200476
Jens Axboe38455912008-08-04 15:35:26 +0200477 if (hdr->verify_type == VERIFY_CRC32C_INTEL)
478 c = crc32c_intel(p, hdr->len - hdr_size(hdr));
479 else
480 c = crc32c(p, hdr->len - hdr_size(hdr));
Jens Axboebac39e02008-06-11 20:46:19 +0200481
Jens Axboebfacf382010-06-18 14:29:52 +0200482 if (c == vh->crc32)
483 return 0;
Jens Axboebac39e02008-06-11 20:46:19 +0200484
Jens Axboebfacf382010-06-18 14:29:52 +0200485 vc->name = "crc32c";
486 vc->good_crc = &vh->crc32;
487 vc->bad_crc = &c;
488 vc->crc_len = 4;
489 log_verify_failure(hdr, vc);
490 return EILSEQ;
Jens Axboebac39e02008-06-11 20:46:19 +0200491}
492
Jens Axboe936216f2010-06-18 13:44:11 +0200493static int verify_io_u_md5(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200494{
Jens Axboe936216f2010-06-18 13:44:11 +0200495 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200496 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200497 uint32_t hash[MD5_HASH_WORDS];
498 struct md5_ctx md5_ctx = {
499 .hash = hash,
500 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200501
Jens Axboe936216f2010-06-18 13:44:11 +0200502 dprint(FD_VERIFY, "md5 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100503
Jens Axboe61f821f2007-07-30 10:18:06 +0200504 md5_init(&md5_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200505 md5_update(&md5_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200506
Jens Axboebfacf382010-06-18 14:29:52 +0200507 if (!memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash)))
508 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200509
Jens Axboebfacf382010-06-18 14:29:52 +0200510 vc->name = "md5";
511 vc->good_crc = vh->md5_digest;
512 vc->bad_crc = md5_ctx.hash;
513 vc->crc_len = sizeof(hash);
514 log_verify_failure(hdr, vc);
515 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200516}
517
Jens Axboe3f199b02007-08-09 10:16:31 +0200518static unsigned int hweight8(unsigned int w)
519{
520 unsigned int res = w - ((w >> 1) & 0x55);
521
522 res = (res & 0x33) + ((res >> 2) & 0x33);
523 return (res + (res >> 4)) & 0x0F;
524}
525
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100526int verify_io_u_pattern(char *pattern, unsigned long pattern_size,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100527 char *buf, unsigned int len, unsigned int mod)
Shawn Lewisa944e332007-08-02 22:18:29 +0200528{
529 unsigned int i;
Shawn Lewisa944e332007-08-02 22:18:29 +0200530
531 for (i = 0; i < len; i++) {
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100532 if (buf[i] != pattern[mod]) {
Jens Axboe3f199b02007-08-09 10:16:31 +0200533 unsigned int bits;
534
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100535 bits = hweight8(buf[i] ^ pattern[mod]);
Jens Axboe3f199b02007-08-09 10:16:31 +0200536 log_err("fio: got pattern %x, wanted %x. Bad bits %d\n",
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100537 buf[i], pattern[mod], bits);
Jens Axboe3f199b02007-08-09 10:16:31 +0200538 log_err("fio: bad pattern block offset %u\n", i);
Jens Axboe9fd18962009-05-19 10:35:38 +0200539 return EILSEQ;
Jens Axboe3f199b02007-08-09 10:16:31 +0200540 }
Shawn Lewisa944e332007-08-02 22:18:29 +0200541 mod++;
542 if (mod == pattern_size)
543 mod = 0;
544 }
545
546 return 0;
547}
548
Jens Axboee8462bd2009-07-06 12:59:04 +0200549/*
550 * Push IO verification to a separate thread
551 */
552int verify_io_u_async(struct thread_data *td, struct io_u *io_u)
553{
554 if (io_u->file)
555 put_file_log(td, io_u->file);
556
557 io_u->file = NULL;
558
559 pthread_mutex_lock(&td->io_u_lock);
Radha Ramachandran0c412142009-11-03 21:45:31 +0100560
561 if (io_u->flags & IO_U_F_IN_CUR_DEPTH) {
562 td->cur_depth--;
563 io_u->flags &= ~IO_U_F_IN_CUR_DEPTH;
564 }
Jens Axboee8462bd2009-07-06 12:59:04 +0200565 flist_del(&io_u->list);
566 flist_add_tail(&io_u->list, &td->verify_list);
Jens Axboe2ecc1b52009-11-04 20:58:09 +0100567 io_u->flags |= IO_U_F_FREE_DEF;
Jens Axboee8462bd2009-07-06 12:59:04 +0200568 pthread_mutex_unlock(&td->io_u_lock);
569
570 pthread_cond_signal(&td->verify_cond);
Jens Axboee8462bd2009-07-06 12:59:04 +0200571 return 0;
572}
573
Jens Axboe0d29de82010-09-01 13:54:15 +0200574static int verify_trimmed_io_u(struct thread_data *td, struct io_u *io_u)
575{
576 static char zero_buf[1024];
577 unsigned int this_len, len;
578 int ret = 0;
579 void *p;
580
581 if (!td->o.trim_zero)
582 return 0;
583
584 len = io_u->buflen;
585 p = io_u->buf;
586 do {
587 this_len = sizeof(zero_buf);
588 if (this_len > len)
589 this_len = len;
590 if (memcmp(p, zero_buf, this_len)) {
591 ret = EILSEQ;
592 break;
593 }
594 len -= this_len;
595 p += this_len;
596 } while (len);
597
598 if (!ret)
599 return 0;
600
Jens Axboea917a8b2010-09-02 13:23:20 +0200601 log_err("trim: verify failed at file %s offset %llu, length %lu"
602 ", block offset %lu\n",
603 io_u->file->file_name, io_u->offset, io_u->buflen,
Jens Axboe2f681242010-10-21 08:15:59 +0200604 (unsigned long) (p - io_u->buf));
Jens Axboe0d29de82010-09-01 13:54:15 +0200605 return ret;
606}
607
Jens Axboe36690c92007-03-26 10:23:34 +0200608int verify_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboee29d1b72006-10-18 15:43:15 +0200609{
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200610 struct verify_header *hdr;
Shawn Lewisa944e332007-08-02 22:18:29 +0200611 unsigned int hdr_size, hdr_inc, hdr_num = 0;
Jens Axboe95646102007-07-28 21:17:50 +0200612 void *p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200613 int ret;
614
Shawn Lewis1dcc0492007-07-27 08:02:45 +0200615 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
Jens Axboe36690c92007-03-26 10:23:34 +0200616 return 0;
Jens Axboe0d29de82010-09-01 13:54:15 +0200617 if (io_u->flags & IO_U_F_TRIMMED) {
618 ret = verify_trimmed_io_u(td, io_u);
619 goto done;
620 }
Jens Axboe36690c92007-03-26 10:23:34 +0200621
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200622 hdr_inc = io_u->buflen;
Jens Axboea59e1702007-07-30 08:53:27 +0200623 if (td->o.verify_interval)
624 hdr_inc = td->o.verify_interval;
Jens Axboee29d1b72006-10-18 15:43:15 +0200625
Jens Axboea12a3b42007-08-09 10:20:54 +0200626 ret = 0;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100627 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
628 p += hdr_inc, hdr_num++) {
Jens Axboebfacf382010-06-18 14:29:52 +0200629 struct vcont vc = {
630 .io_u = io_u,
631 .hdr_num = hdr_num,
Jens Axboe7d9fb452011-01-11 22:16:49 +0100632 .td = td,
Jens Axboebfacf382010-06-18 14:29:52 +0200633 };
Jens Axboe936216f2010-06-18 13:44:11 +0200634
Jens Axboef3e6cb92010-06-18 14:48:43 +0200635 if (ret && td->o.verify_fatal)
Jens Axboea12a3b42007-08-09 10:20:54 +0200636 break;
Jens Axboef3e6cb92010-06-18 14:48:43 +0200637
Shawn Lewisa944e332007-08-02 22:18:29 +0200638 hdr_size = __hdr_size(td->o.verify);
Jens Axboea59e1702007-07-30 08:53:27 +0200639 if (td->o.verify_offset)
Shawn Lewisa944e332007-08-02 22:18:29 +0200640 memswp(p, p + td->o.verify_offset, hdr_size);
Jens Axboe95646102007-07-28 21:17:50 +0200641 hdr = p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200642
Jens Axboe3f199b02007-08-09 10:16:31 +0200643 if (hdr->fio_magic != FIO_HDR_MAGIC) {
Jens Axboec9b44032010-06-18 14:46:06 +0200644 log_err("verify: bad magic header %x, wanted %x at file %s offset %llu, length %u\n",
645 hdr->fio_magic, FIO_HDR_MAGIC,
646 io_u->file->file_name,
647 io_u->offset + hdr_num * hdr->len, hdr->len);
Jens Axboe9fd18962009-05-19 10:35:38 +0200648 return EILSEQ;
Jens Axboe3f199b02007-08-09 10:16:31 +0200649 }
650
Shawn Lewise28218f2008-01-16 11:01:33 +0100651 if (td->o.verify_pattern_bytes) {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100652 dprint(FD_VERIFY, "pattern verify io_u %p, len %u\n",
653 io_u, hdr->len);
Shawn Lewise28218f2008-01-16 11:01:33 +0100654 ret = verify_io_u_pattern(td->o.verify_pattern,
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100655 td->o.verify_pattern_bytes,
656 p + hdr_size,
657 hdr_inc - hdr_size,
658 hdr_size % td->o.verify_pattern_bytes);
Jens Axboec9b44032010-06-18 14:46:06 +0200659
660 if (ret) {
661 log_err("pattern: verify failed at file %s offset %llu, length %u\n",
662 io_u->file->file_name,
663 io_u->offset + hdr_num * hdr->len,
664 hdr->len);
665 }
666
Radha Ramachandrane92d3d72009-07-27 12:27:55 +0200667 /*
668 * Also verify the meta data, if applicable
669 */
670 if (hdr->verify_type == VERIFY_META)
Jens Axboe936216f2010-06-18 13:44:11 +0200671 ret |= verify_io_u_meta(hdr, td, &vc);
Shawn Lewise28218f2008-01-16 11:01:33 +0100672 continue;
673 }
674
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200675 switch (hdr->verify_type) {
676 case VERIFY_MD5:
Jens Axboe936216f2010-06-18 13:44:11 +0200677 ret = verify_io_u_md5(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200678 break;
679 case VERIFY_CRC64:
Jens Axboe936216f2010-06-18 13:44:11 +0200680 ret = verify_io_u_crc64(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200681 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200682 case VERIFY_CRC32C:
Jens Axboe38455912008-08-04 15:35:26 +0200683 case VERIFY_CRC32C_INTEL:
Jens Axboe936216f2010-06-18 13:44:11 +0200684 ret = verify_io_u_crc32c(hdr, &vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200685 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200686 case VERIFY_CRC32:
Jens Axboe936216f2010-06-18 13:44:11 +0200687 ret = verify_io_u_crc32(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200688 break;
689 case VERIFY_CRC16:
Jens Axboe936216f2010-06-18 13:44:11 +0200690 ret = verify_io_u_crc16(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200691 break;
692 case VERIFY_CRC7:
Jens Axboe936216f2010-06-18 13:44:11 +0200693 ret = verify_io_u_crc7(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200694 break;
Jens Axboecd14cc12007-07-30 10:59:33 +0200695 case VERIFY_SHA256:
Jens Axboe936216f2010-06-18 13:44:11 +0200696 ret = verify_io_u_sha256(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200697 break;
698 case VERIFY_SHA512:
Jens Axboe936216f2010-06-18 13:44:11 +0200699 ret = verify_io_u_sha512(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200700 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200701 case VERIFY_META:
Jens Axboe936216f2010-06-18 13:44:11 +0200702 ret = verify_io_u_meta(hdr, td, &vc);
Shawn Lewis7437ee82007-08-02 21:05:58 +0200703 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200704 case VERIFY_SHA1:
Jens Axboe936216f2010-06-18 13:44:11 +0200705 ret = verify_io_u_sha1(hdr, &vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200706 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200707 default:
708 log_err("Bad verify type %u\n", hdr->verify_type);
Jens Axboed16d4e02007-09-06 16:16:44 +0200709 ret = EINVAL;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200710 }
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200711 }
Jens Axboea7dfe862007-03-12 10:05:08 +0100712
Jens Axboe0d29de82010-09-01 13:54:15 +0200713done:
Jens Axboef3e6cb92010-06-18 14:48:43 +0200714 if (ret && td->o.verify_fatal)
715 td->terminate = 1;
716
Jens Axboea12a3b42007-08-09 10:20:54 +0200717 return ret;
Jens Axboee29d1b72006-10-18 15:43:15 +0200718}
719
Shawn Lewis7437ee82007-08-02 21:05:58 +0200720static void fill_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100721 struct io_u *io_u, unsigned int header_num)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200722{
723 struct vhdr_meta *vh = hdr_priv(hdr);
724
725 vh->thread = td->thread_number;
726
727 vh->time_sec = io_u->start_time.tv_sec;
728 vh->time_usec = io_u->start_time.tv_usec;
729
730 vh->numberio = td->io_issues[DDIR_WRITE];
731
732 vh->offset = io_u->offset + header_num * td->o.verify_interval;
733}
734
Jens Axboecd14cc12007-07-30 10:59:33 +0200735static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
736{
Jens Axboe546dfd92007-07-30 12:23:05 +0200737 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200738 struct sha512_ctx sha512_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200739 .buf = vh->sha512,
Jens Axboecd14cc12007-07-30 10:59:33 +0200740 };
741
742 sha512_init(&sha512_ctx);
743 sha512_update(&sha512_ctx, p, len);
744}
745
746static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
747{
Jens Axboe546dfd92007-07-30 12:23:05 +0200748 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200749 struct sha256_ctx sha256_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200750 .buf = vh->sha256,
Jens Axboecd14cc12007-07-30 10:59:33 +0200751 };
752
753 sha256_init(&sha256_ctx);
754 sha256_update(&sha256_ctx, p, len);
755}
756
Jens Axboe7c353ce2009-08-09 22:40:33 +0200757static void fill_sha1(struct verify_header *hdr, void *p, unsigned int len)
758{
759 struct vhdr_sha1 *vh = hdr_priv(hdr);
760 struct sha1_ctx sha1_ctx = {
761 .H = vh->sha1,
762 };
763
764 sha1_init(&sha1_ctx);
765 sha1_update(&sha1_ctx, p, len);
766}
767
Jens Axboe1e154bd2007-07-27 09:52:40 +0200768static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
769{
Jens Axboe546dfd92007-07-30 12:23:05 +0200770 struct vhdr_crc7 *vh = hdr_priv(hdr);
771
772 vh->crc7 = crc7(p, len);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200773}
774
Jens Axboe969f7ed2007-07-27 09:07:17 +0200775static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
776{
Jens Axboe546dfd92007-07-30 12:23:05 +0200777 struct vhdr_crc16 *vh = hdr_priv(hdr);
778
779 vh->crc16 = crc16(p, len);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200780}
781
Jens Axboee29d1b72006-10-18 15:43:15 +0200782static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
783{
Jens Axboe546dfd92007-07-30 12:23:05 +0200784 struct vhdr_crc32 *vh = hdr_priv(hdr);
785
786 vh->crc32 = crc32(p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200787}
788
Jens Axboebac39e02008-06-11 20:46:19 +0200789static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
790{
791 struct vhdr_crc32 *vh = hdr_priv(hdr);
792
Jens Axboe38455912008-08-04 15:35:26 +0200793 if (hdr->verify_type == VERIFY_CRC32C_INTEL)
794 vh->crc32 = crc32c_intel(p, len);
795 else
796 vh->crc32 = crc32c(p, len);
Jens Axboebac39e02008-06-11 20:46:19 +0200797}
798
Jens Axboed77a7af2007-07-27 15:35:06 +0200799static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
800{
Jens Axboe546dfd92007-07-30 12:23:05 +0200801 struct vhdr_crc64 *vh = hdr_priv(hdr);
802
803 vh->crc64 = crc64(p, len);
Jens Axboed77a7af2007-07-27 15:35:06 +0200804}
805
Jens Axboee29d1b72006-10-18 15:43:15 +0200806static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
807{
Jens Axboe546dfd92007-07-30 12:23:05 +0200808 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200809 struct md5_ctx md5_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200810 .hash = (uint32_t *) vh->md5_digest,
Jens Axboe8c432322007-07-27 13:16:24 +0200811 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200812
Jens Axboe61f821f2007-07-30 10:18:06 +0200813 md5_init(&md5_ctx);
Jens Axboee29d1b72006-10-18 15:43:15 +0200814 md5_update(&md5_ctx, p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200815}
816
Jens Axboe7d9fb452011-01-11 22:16:49 +0100817static void populate_hdr(struct thread_data *td, struct io_u *io_u,
818 struct verify_header *hdr, unsigned int header_num,
819 unsigned int header_len)
820{
821 unsigned int data_len;
822 void *data, *p;
823
824 p = (void *) hdr;
825
826 hdr->fio_magic = FIO_HDR_MAGIC;
827 hdr->len = header_len;
828 hdr->verify_type = td->o.verify;
829 hdr->rand_seed = io_u->rand_seed;
830 data_len = header_len - hdr_size(hdr);
831
832 data = p + hdr_size(hdr);
833 switch (td->o.verify) {
834 case VERIFY_MD5:
835 dprint(FD_VERIFY, "fill md5 io_u %p, len %u\n",
836 io_u, hdr->len);
837 fill_md5(hdr, data, data_len);
838 break;
839 case VERIFY_CRC64:
840 dprint(FD_VERIFY, "fill crc64 io_u %p, len %u\n",
841 io_u, hdr->len);
842 fill_crc64(hdr, data, data_len);
843 break;
844 case VERIFY_CRC32C:
845 case VERIFY_CRC32C_INTEL:
846 dprint(FD_VERIFY, "fill crc32c io_u %p, len %u\n",
847 io_u, hdr->len);
848 fill_crc32c(hdr, data, data_len);
849 break;
850 case VERIFY_CRC32:
851 dprint(FD_VERIFY, "fill crc32 io_u %p, len %u\n",
852 io_u, hdr->len);
853 fill_crc32(hdr, data, data_len);
854 break;
855 case VERIFY_CRC16:
856 dprint(FD_VERIFY, "fill crc16 io_u %p, len %u\n",
857 io_u, hdr->len);
858 fill_crc16(hdr, data, data_len);
859 break;
860 case VERIFY_CRC7:
861 dprint(FD_VERIFY, "fill crc7 io_u %p, len %u\n",
862 io_u, hdr->len);
863 fill_crc7(hdr, data, data_len);
864 break;
865 case VERIFY_SHA256:
866 dprint(FD_VERIFY, "fill sha256 io_u %p, len %u\n",
867 io_u, hdr->len);
868 fill_sha256(hdr, data, data_len);
869 break;
870 case VERIFY_SHA512:
871 dprint(FD_VERIFY, "fill sha512 io_u %p, len %u\n",
872 io_u, hdr->len);
873 fill_sha512(hdr, data, data_len);
874 break;
875 case VERIFY_META:
876 dprint(FD_VERIFY, "fill meta io_u %p, len %u\n",
877 io_u, hdr->len);
878 fill_meta(hdr, td, io_u, header_num);
879 break;
880 case VERIFY_SHA1:
881 dprint(FD_VERIFY, "fill sha1 io_u %p, len %u\n",
882 io_u, hdr->len);
883 fill_sha1(hdr, data, data_len);
884 break;
885 default:
886 log_err("fio: bad verify type: %d\n", td->o.verify);
887 assert(0);
888 }
889 if (td->o.verify_offset)
890 memswp(p, p + td->o.verify_offset, hdr_size(hdr));
891}
892
Jens Axboee29d1b72006-10-18 15:43:15 +0200893/*
894 * fill body of io_u->buf with random data and add a header with the
Jens Axboec50ca7b2011-01-12 08:31:54 +0100895 * checksum of choice
Jens Axboee29d1b72006-10-18 15:43:15 +0200896 */
897void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
898{
Jens Axboe9cc3d152007-03-26 10:32:30 +0200899 if (td->o.verify == VERIFY_NULL)
900 return;
901
Jens Axboec50ca7b2011-01-12 08:31:54 +0100902 fill_pattern_headers(td, io_u, 0, 0);
Jens Axboee29d1b72006-10-18 15:43:15 +0200903}
904
905int get_next_verify(struct thread_data *td, struct io_u *io_u)
906{
Jens Axboe8de8f042007-03-27 10:36:12 +0200907 struct io_piece *ipo = NULL;
Jens Axboee29d1b72006-10-18 15:43:15 +0200908
Jens Axboed2d7fa52007-02-19 13:21:35 +0100909 /*
910 * this io_u is from a requeue, we already filled the offsets
911 */
912 if (io_u->file)
913 return 0;
914
Jens Axboe8de8f042007-03-27 10:36:12 +0200915 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
916 struct rb_node *n = rb_first(&td->io_hist_tree);
917
Jens Axboe4b878982007-03-26 09:32:22 +0200918 ipo = rb_entry(n, struct io_piece, rb_node);
Jens Axboe4b878982007-03-26 09:32:22 +0200919 rb_erase(n, &td->io_hist_tree);
Jens Axboea917a8b2010-09-02 13:23:20 +0200920 assert(ipo->flags & IP_F_ONRB);
921 ipo->flags &= ~IP_F_ONRB;
Jens Axboe01743ee2008-06-02 12:19:19 +0200922 } else if (!flist_empty(&td->io_hist_list)) {
923 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
924 flist_del(&ipo->list);
Jens Axboea917a8b2010-09-02 13:23:20 +0200925 assert(ipo->flags & IP_F_ONLIST);
926 ipo->flags &= ~IP_F_ONLIST;
Jens Axboe8de8f042007-03-27 10:36:12 +0200927 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200928
Jens Axboe8de8f042007-03-27 10:36:12 +0200929 if (ipo) {
Jens Axboe0d29de82010-09-01 13:54:15 +0200930 td->io_hist_len--;
931
Jens Axboee29d1b72006-10-18 15:43:15 +0200932 io_u->offset = ipo->offset;
933 io_u->buflen = ipo->len;
Jens Axboe36167d82007-02-18 05:41:31 +0100934 io_u->file = ipo->file;
Jens Axboe97af62c2007-05-22 11:12:13 +0200935
Jens Axboe0d29de82010-09-01 13:54:15 +0200936 if (ipo->flags & IP_F_TRIMMED)
937 io_u->flags |= IO_U_F_TRIMMED;
938
Jens Axboed6aed792009-06-03 08:41:15 +0200939 if (!fio_file_open(io_u->file)) {
Jens Axboe97af62c2007-05-22 11:12:13 +0200940 int r = td_io_open_file(td, io_u->file);
941
Jens Axboebd6f78b2008-02-01 20:27:52 +0100942 if (r) {
943 dprint(FD_VERIFY, "failed file %s open\n",
944 io_u->file->file_name);
Jens Axboe97af62c2007-05-22 11:12:13 +0200945 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100946 }
Jens Axboe97af62c2007-05-22 11:12:13 +0200947 }
948
949 get_file(ipo->file);
Jens Axboed6aed792009-06-03 08:41:15 +0200950 assert(fio_file_open(io_u->file));
Jens Axboee29d1b72006-10-18 15:43:15 +0200951 io_u->ddir = DDIR_READ;
Jens Axboe36167d82007-02-18 05:41:31 +0100952 io_u->xfer_buf = io_u->buf;
953 io_u->xfer_buflen = io_u->buflen;
Jens Axboe0d29de82010-09-01 13:54:15 +0200954
955 remove_trim_entry(td, ipo);
Jens Axboee29d1b72006-10-18 15:43:15 +0200956 free(ipo);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100957 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200958 return 0;
959 }
960
Jens Axboebd6f78b2008-02-01 20:27:52 +0100961 dprint(FD_VERIFY, "get_next_verify: empty\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200962 return 1;
963}
Jens Axboee8462bd2009-07-06 12:59:04 +0200964
965static void *verify_async_thread(void *data)
966{
967 struct thread_data *td = data;
968 struct io_u *io_u;
969 int ret = 0;
970
971 if (td->o.verify_cpumask_set &&
972 fio_setaffinity(td->pid, td->o.verify_cpumask)) {
973 log_err("fio: failed setting verify thread affinity\n");
974 goto done;
975 }
976
977 do {
Jens Axboee53ab272009-07-06 13:43:46 +0200978 FLIST_HEAD(list);
979
Jens Axboee8462bd2009-07-06 12:59:04 +0200980 read_barrier();
981 if (td->verify_thread_exit)
982 break;
983
984 pthread_mutex_lock(&td->io_u_lock);
985
986 while (flist_empty(&td->verify_list) &&
987 !td->verify_thread_exit) {
Jens Axboeb36e2982009-07-06 14:12:52 +0200988 ret = pthread_cond_wait(&td->verify_cond,
989 &td->io_u_lock);
Jens Axboee8462bd2009-07-06 12:59:04 +0200990 if (ret) {
991 pthread_mutex_unlock(&td->io_u_lock);
992 break;
993 }
994 }
995
Jens Axboee53ab272009-07-06 13:43:46 +0200996 flist_splice_init(&td->verify_list, &list);
Jens Axboee8462bd2009-07-06 12:59:04 +0200997 pthread_mutex_unlock(&td->io_u_lock);
998
Jens Axboee53ab272009-07-06 13:43:46 +0200999 if (flist_empty(&list))
1000 continue;
1001
1002 while (!flist_empty(&list)) {
1003 io_u = flist_entry(list.next, struct io_u, list);
1004 flist_del_init(&io_u->list);
1005
Jens Axboed561f2a2009-07-06 13:51:05 +02001006 ret = verify_io_u(td, io_u);
Jens Axboee53ab272009-07-06 13:43:46 +02001007 put_io_u(td, io_u);
Jens Axboed561f2a2009-07-06 13:51:05 +02001008 if (!ret)
1009 continue;
1010 if (td->o.continue_on_error &&
1011 td_non_fatal_error(ret)) {
1012 update_error_count(td, ret);
1013 td_clear_error(td);
1014 ret = 0;
1015 }
Jens Axboee53ab272009-07-06 13:43:46 +02001016 }
Jens Axboee8462bd2009-07-06 12:59:04 +02001017 } while (!ret);
1018
Jens Axboed561f2a2009-07-06 13:51:05 +02001019 if (ret) {
1020 td_verror(td, ret, "async_verify");
Jens Axboef3e6cb92010-06-18 14:48:43 +02001021 if (td->o.verify_fatal)
1022 td->terminate = 1;
Jens Axboed561f2a2009-07-06 13:51:05 +02001023 }
1024
Jens Axboee8462bd2009-07-06 12:59:04 +02001025done:
1026 pthread_mutex_lock(&td->io_u_lock);
1027 td->nr_verify_threads--;
1028 pthread_mutex_unlock(&td->io_u_lock);
1029
1030 pthread_cond_signal(&td->free_cond);
1031 return NULL;
1032}
1033
1034int verify_async_init(struct thread_data *td)
1035{
1036 int i, ret;
bart Van Assche304a47c2010-08-01 21:31:26 +02001037 pthread_attr_t attr;
1038
1039 pthread_attr_init(&attr);
1040 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
Jens Axboee8462bd2009-07-06 12:59:04 +02001041
1042 td->verify_thread_exit = 0;
1043
1044 td->verify_threads = malloc(sizeof(pthread_t) * td->o.verify_async);
1045 for (i = 0; i < td->o.verify_async; i++) {
bart Van Assche304a47c2010-08-01 21:31:26 +02001046 ret = pthread_create(&td->verify_threads[i], &attr,
Jens Axboee8462bd2009-07-06 12:59:04 +02001047 verify_async_thread, td);
1048 if (ret) {
1049 log_err("fio: async verify creation failed: %s\n",
1050 strerror(ret));
1051 break;
1052 }
1053 ret = pthread_detach(td->verify_threads[i]);
1054 if (ret) {
1055 log_err("fio: async verify thread detach failed: %s\n",
1056 strerror(ret));
1057 break;
1058 }
1059 td->nr_verify_threads++;
1060 }
1061
bart Van Assche304a47c2010-08-01 21:31:26 +02001062 pthread_attr_destroy(&attr);
1063
Jens Axboee8462bd2009-07-06 12:59:04 +02001064 if (i != td->o.verify_async) {
Jens Axboee40823b2009-07-06 14:28:21 +02001065 log_err("fio: only %d verify threads started, exiting\n", i);
Jens Axboee8462bd2009-07-06 12:59:04 +02001066 td->verify_thread_exit = 1;
1067 write_barrier();
1068 pthread_cond_broadcast(&td->verify_cond);
1069 return 1;
1070 }
1071
1072 return 0;
1073}
1074
1075void verify_async_exit(struct thread_data *td)
1076{
1077 td->verify_thread_exit = 1;
1078 write_barrier();
1079 pthread_cond_broadcast(&td->verify_cond);
1080
1081 pthread_mutex_lock(&td->io_u_lock);
1082
1083 while (td->nr_verify_threads)
1084 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1085
1086 pthread_mutex_unlock(&td->io_u_lock);
1087 free(td->verify_threads);
1088 td->verify_threads = NULL;
1089}