Fix for terminating threads in ramp time
[fio.git] / verify.c
CommitLineData
e29d1b70
JA
1/*
2 * IO verification helpers
3 */
4#include <unistd.h>
5#include <fcntl.h>
6#include <string.h>
97af62ce 7#include <assert.h>
e8462bd8 8#include <pthread.h>
79402a12 9#include <libgen.h>
e29d1b70
JA
10
11#include "fio.h"
4f5af7b2 12#include "verify.h"
e8462bd8 13#include "smalloc.h"
0d29de83 14#include "trim.h"
637ef8d9 15#include "lib/rand.h"
e29d1b70 16
eef6eea1
JA
17#include "crc/md5.h"
18#include "crc/crc64.h"
19#include "crc/crc32.h"
bac39e0e 20#include "crc/crc32c.h"
eef6eea1
JA
21#include "crc/crc16.h"
22#include "crc/crc7.h"
23#include "crc/sha256.h"
24#include "crc/sha512.h"
7c353ceb 25#include "crc/sha1.h"
cd14cc10 26
7d9fb455
JA
27static void populate_hdr(struct thread_data *td, struct io_u *io_u,
28 struct verify_header *hdr, unsigned int header_num,
29 unsigned int header_len);
30
31void fill_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u *io_u, unsigned long seed, int use_seed)
90059d65
JA
32{
33 switch (td->o.verify_pattern_bytes) {
34 case 0:
bd6f78b2 35 dprint(FD_VERIFY, "fill random bytes len=%u\n", len);
7d9fb455
JA
36 if (use_seed)
37 __fill_random_buf(p, len, seed);
38 else
39 io_u->rand_seed = fill_random_buf(p, len);
90059d65
JA
40 break;
41 case 1:
efda12bd
JA
42 /*
43 * See below write barrier comment
44 */
45#if 0
46 read_barrier();
10e8a7b3 47 if (io_u->buf_filled_len >= len) {
cbe8d756
RR
48 dprint(FD_VERIFY, "using already filled verify pattern b=0 len=%u\n", len);
49 return;
50 }
efda12bd 51#endif
bd6f78b2 52 dprint(FD_VERIFY, "fill verify pattern b=0 len=%u\n", len);
0e92f873 53 memset(p, td->o.verify_pattern[0], len);
efda12bd
JA
54 /*
55 * We need to ensure that the pattern stores are seen before
56 * the fill length store, or we could observe headers that
57 * aren't valid to the extent notified by the fill length
58 */
59 write_barrier();
cbe8d756 60 io_u->buf_filled_len = len;
90059d65 61 break;
0e92f873
RR
62 default: {
63 unsigned int i = 0, size = 0;
90059d65
JA
64 unsigned char *b = p;
65
efda12bd
JA
66#if 0
67 read_barrier();
10e8a7b3 68 if (io_u->buf_filled_len >= len) {
cbe8d756
RR
69 dprint(FD_VERIFY, "using already filled verify pattern b=%d len=%u\n",
70 td->o.verify_pattern_bytes, len);
71 return;
72 }
efda12bd 73#endif
bd6f78b2
JA
74 dprint(FD_VERIFY, "fill verify pattern b=%d len=%u\n",
75 td->o.verify_pattern_bytes, len);
76
90059d65 77 while (i < len) {
0e92f873
RR
78 size = td->o.verify_pattern_bytes;
79 if (size > (len - i))
80 size = len - i;
81 memcpy(b+i, td->o.verify_pattern, size);
82 i += size;
90059d65 83 }
efda12bd 84 write_barrier();
cbe8d756 85 io_u->buf_filled_len = len;
90059d65
JA
86 break;
87 }
88 }
89}
90
cfbcd0dc
JA
91static unsigned int get_hdr_inc(struct thread_data *td, struct io_u *io_u)
92{
93 unsigned int hdr_inc;
94
95 hdr_inc = io_u->buflen;
96 if (td->o.verify_interval)
97 hdr_inc = td->o.verify_interval;
98
99 return hdr_inc;
100}
101
c50ca7bd
JA
102static void fill_pattern_headers(struct thread_data *td, struct io_u *io_u,
103 unsigned long seed, int use_seed)
104{
105 unsigned int hdr_inc, header_num;
106 struct verify_header *hdr;
107 void *p = io_u->buf;
108
109 fill_pattern(td, p, io_u->buflen, io_u, seed, use_seed);
110
cfbcd0dc 111 hdr_inc = get_hdr_inc(td, io_u);
c50ca7bd
JA
112 header_num = 0;
113 for (; p < io_u->buf + io_u->buflen; p += hdr_inc) {
114 hdr = p;
115 populate_hdr(td, io_u, hdr, header_num, hdr_inc);
116 header_num++;
117 }
118}
119
4764aec9 120static void memswp(void *buf1, void *buf2, unsigned int len)
546a9142 121{
dee6de74
SL
122 char swap[200];
123
124 assert(len <= sizeof(swap));
90059d65 125
546a9142
SL
126 memcpy(&swap, buf1, len);
127 memcpy(buf1, buf2, len);
128 memcpy(buf2, &swap, len);
129}
130
e29d1b70
JA
131static void hexdump(void *buffer, int len)
132{
133 unsigned char *p = buffer;
134 int i;
135
136 for (i = 0; i < len; i++)
bfacf389
JA
137 log_err("%02x", p[i]);
138 log_err("\n");
e29d1b70
JA
139}
140
87677832
JA
141/*
142 * Prepare for seperation of verify_header and checksum header
143 */
546dfd9f 144static inline unsigned int __hdr_size(int verify_type)
87677832 145{
03e20d68 146 unsigned int len = 0;
87677832 147
546dfd9f
JA
148 switch (verify_type) {
149 case VERIFY_NONE:
150 case VERIFY_NULL:
151 len = 0;
152 break;
153 case VERIFY_MD5:
154 len = sizeof(struct vhdr_md5);
155 break;
156 case VERIFY_CRC64:
157 len = sizeof(struct vhdr_crc64);
158 break;
bac39e0e 159 case VERIFY_CRC32C:
546dfd9f 160 case VERIFY_CRC32:
3845591f 161 case VERIFY_CRC32C_INTEL:
546dfd9f
JA
162 len = sizeof(struct vhdr_crc32);
163 break;
164 case VERIFY_CRC16:
165 len = sizeof(struct vhdr_crc16);
166 break;
167 case VERIFY_CRC7:
168 len = sizeof(struct vhdr_crc7);
169 break;
170 case VERIFY_SHA256:
171 len = sizeof(struct vhdr_sha256);
172 break;
173 case VERIFY_SHA512:
174 len = sizeof(struct vhdr_sha512);
175 break;
7437ee87
SL
176 case VERIFY_META:
177 len = sizeof(struct vhdr_meta);
178 break;
7c353ceb
JA
179 case VERIFY_SHA1:
180 len = sizeof(struct vhdr_sha1);
181 break;
92bf48d5
JA
182 case VERIFY_PATTERN:
183 len = 0;
184 break;
546dfd9f
JA
185 default:
186 log_err("fio: unknown verify header!\n");
187 assert(0);
188 }
189
190 return len + sizeof(struct verify_header);
87677832
JA
191}
192
193static inline unsigned int hdr_size(struct verify_header *hdr)
194{
546dfd9f
JA
195 return __hdr_size(hdr->verify_type);
196}
197
198static void *hdr_priv(struct verify_header *hdr)
199{
200 void *priv = hdr;
201
202 return priv + sizeof(struct verify_header);
87677832
JA
203}
204
936216f8
JA
205/*
206 * Verify container, pass info to verify handlers and allow them to
207 * pass info back in case of error
208 */
209struct vcont {
210 /*
211 * Input
212 */
213 struct io_u *io_u;
214 unsigned int hdr_num;
7d9fb455 215 struct thread_data *td;
936216f8
JA
216
217 /*
218 * Output, only valid in case of error
219 */
bfacf389
JA
220 const char *name;
221 void *good_crc;
222 void *bad_crc;
936216f8
JA
223 unsigned int crc_len;
224};
225
c50ca7bd
JA
226static void dump_buf(char *buf, unsigned int len, unsigned long long offset,
227 const char *type, struct fio_file *f)
7d9fb455 228{
6f260b31 229 char *ptr, fname[256];
7d9fb455
JA
230 int ret, fd;
231
6f260b31
JA
232 ptr = strdup(f->file_name);
233 strcpy(fname, basename(ptr));
c50ca7bd
JA
234
235 sprintf(fname + strlen(fname), ".%llu.%s", offset, type);
7d9fb455
JA
236
237 fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 0644);
238 if (fd < 0) {
239 perror("open verify buf file");
240 return;
241 }
242
243 while (len) {
244 ret = write(fd, buf, len);
245 if (!ret)
246 break;
247 else if (ret < 0) {
248 perror("write verify buf file");
249 break;
250 }
251 len -= ret;
252 buf += ret;
253 }
254
255 close(fd);
c50ca7bd 256 log_err(" %s data dumped as %s\n", type, fname);
6f260b31 257 free(ptr);
7d9fb455
JA
258}
259
c50ca7bd
JA
260/*
261 * Dump the contents of the read block and re-generate the correct data
262 * and dump that too.
263 */
7d9fb455
JA
264static void dump_verify_buffers(struct verify_header *hdr, struct vcont *vc)
265{
266 struct thread_data *td = vc->td;
267 struct io_u *io_u = vc->io_u;
268 unsigned long hdr_offset;
7d9fb455 269 struct io_u dummy;
c50ca7bd 270 void *buf;
7d9fb455 271
c50ca7bd
JA
272 /*
273 * Dump the contents we just read off disk
274 */
7d9fb455
JA
275 hdr_offset = vc->hdr_num * hdr->len;
276
c50ca7bd
JA
277 dump_buf(io_u->buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
278 "received", vc->io_u->file);
7d9fb455 279
c50ca7bd
JA
280 /*
281 * Allocate a new buf and re-generate the original data
282 */
283 buf = malloc(io_u->buflen);
7d9fb455 284 dummy = *io_u;
c50ca7bd 285 dummy.buf = buf;
4aae38a6 286 dummy.rand_seed = hdr->rand_seed;
cfbcd0dc 287 dummy.buf_filled_len = 0;
7d9fb455 288
c50ca7bd 289 fill_pattern_headers(td, &dummy, hdr->rand_seed, 1);
7d9fb455 290
c50ca7bd
JA
291 dump_buf(buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
292 "expected", vc->io_u->file);
7d9fb455
JA
293 free(buf);
294}
295
bfacf389
JA
296static void log_verify_failure(struct verify_header *hdr, struct vcont *vc)
297{
298 unsigned long long offset;
299
300 offset = vc->io_u->offset;
301 offset += vc->hdr_num * hdr->len;
32c17adf
JA
302 log_err("%.8s: verify failed at file %s offset %llu, length %u\n",
303 vc->name, vc->io_u->file->file_name, offset, hdr->len);
bfacf389
JA
304
305 if (vc->good_crc && vc->bad_crc) {
306 log_err(" Expected CRC: ");
307 hexdump(vc->good_crc, vc->crc_len);
308 log_err(" Received CRC: ");
309 hexdump(vc->bad_crc, vc->crc_len);
310 }
7d9fb455
JA
311
312 dump_verify_buffers(hdr, vc);
bfacf389
JA
313}
314
d9f2caf3
JA
315/*
316 * Return data area 'header_num'
317 */
936216f8 318static inline void *io_u_verify_off(struct verify_header *hdr, struct vcont *vc)
d9f2caf3 319{
936216f8 320 return vc->io_u->buf + vc->hdr_num * hdr->len + hdr_size(hdr);
d9f2caf3
JA
321}
322
92bf48d5
JA
323static unsigned int hweight8(unsigned int w)
324{
325 unsigned int res = w - ((w >> 1) & 0x55);
326
327 res = (res & 0x33) + ((res >> 2) & 0x33);
328 return (res + (res >> 4)) & 0x0F;
329}
330
331static int verify_io_u_pattern(struct verify_header *hdr, struct vcont *vc)
332{
333 struct thread_data *td = vc->td;
334 struct io_u *io_u = vc->io_u;
335 char *buf, *pattern;
2b13e716 336 unsigned int header_size = __hdr_size(td->o.verify);
92bf48d5
JA
337 unsigned int len, mod, i;
338
339 pattern = td->o.verify_pattern;
2b13e716
JA
340 buf = (void *) hdr + header_size;
341 len = get_hdr_inc(td, io_u) - header_size;
342 mod = header_size % td->o.verify_pattern_bytes;
92bf48d5
JA
343
344 for (i = 0; i < len; i++) {
345 if (buf[i] != pattern[mod]) {
346 unsigned int bits;
347
348 bits = hweight8(buf[i] ^ pattern[mod]);
349 log_err("fio: got pattern %x, wanted %x. Bad bits %d\n",
350 buf[i], pattern[mod], bits);
351 log_err("fio: bad pattern block offset %u\n", i);
352 dump_verify_buffers(hdr, vc);
353 return EILSEQ;
354 }
355 mod++;
356 if (mod == td->o.verify_pattern_bytes)
357 mod = 0;
358 }
359
360 return 0;
361}
362
363static int verify_io_u_meta(struct verify_header *hdr, struct vcont *vc)
7437ee87 364{
92bf48d5 365 struct thread_data *td = vc->td;
7437ee87 366 struct vhdr_meta *vh = hdr_priv(hdr);
936216f8 367 struct io_u *io_u = vc->io_u;
92bf48d5 368 int ret = EILSEQ;
7437ee87 369
bd6f78b2
JA
370 dprint(FD_VERIFY, "meta verify io_u %p, len %u\n", io_u, hdr->len);
371
bfacf389 372 if (vh->offset == io_u->offset + vc->hdr_num * td->o.verify_interval)
92bf48d5
JA
373 ret = 0;
374
375 if (td->o.verify_pattern_bytes)
376 ret |= verify_io_u_pattern(hdr, vc);
377
378 if (!ret)
bfacf389 379 return 0;
7437ee87 380
bfacf389
JA
381 vc->name = "meta";
382 log_verify_failure(hdr, vc);
92bf48d5 383 return ret;
7437ee87
SL
384}
385
936216f8 386static int verify_io_u_sha512(struct verify_header *hdr, struct vcont *vc)
cd14cc10 387{
936216f8 388 void *p = io_u_verify_off(hdr, vc);
546dfd9f 389 struct vhdr_sha512 *vh = hdr_priv(hdr);
cd14cc10
JA
390 uint8_t sha512[128];
391 struct sha512_ctx sha512_ctx = {
392 .buf = sha512,
393 };
394
936216f8 395 dprint(FD_VERIFY, "sha512 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 396
cd14cc10 397 sha512_init(&sha512_ctx);
87677832 398 sha512_update(&sha512_ctx, p, hdr->len - hdr_size(hdr));
cd14cc10 399
bfacf389
JA
400 if (!memcmp(vh->sha512, sha512_ctx.buf, sizeof(sha512)))
401 return 0;
cd14cc10 402
bfacf389
JA
403 vc->name = "sha512";
404 vc->good_crc = vh->sha512;
405 vc->bad_crc = sha512_ctx.buf;
406 vc->crc_len = sizeof(vh->sha512);
407 log_verify_failure(hdr, vc);
408 return EILSEQ;
cd14cc10
JA
409}
410
936216f8 411static int verify_io_u_sha256(struct verify_header *hdr, struct vcont *vc)
cd14cc10 412{
936216f8 413 void *p = io_u_verify_off(hdr, vc);
546dfd9f 414 struct vhdr_sha256 *vh = hdr_priv(hdr);
bc77f56f 415 uint8_t sha256[64];
cd14cc10
JA
416 struct sha256_ctx sha256_ctx = {
417 .buf = sha256,
418 };
419
936216f8 420 dprint(FD_VERIFY, "sha256 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 421
cd14cc10 422 sha256_init(&sha256_ctx);
87677832 423 sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
cd14cc10 424
bfacf389
JA
425 if (!memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256)))
426 return 0;
cd14cc10 427
bfacf389
JA
428 vc->name = "sha256";
429 vc->good_crc = vh->sha256;
430 vc->bad_crc = sha256_ctx.buf;
431 vc->crc_len = sizeof(vh->sha256);
432 log_verify_failure(hdr, vc);
433 return EILSEQ;
cd14cc10
JA
434}
435
936216f8 436static int verify_io_u_sha1(struct verify_header *hdr, struct vcont *vc)
7c353ceb 437{
936216f8 438 void *p = io_u_verify_off(hdr, vc);
7c353ceb
JA
439 struct vhdr_sha1 *vh = hdr_priv(hdr);
440 uint32_t sha1[5];
441 struct sha1_ctx sha1_ctx = {
442 .H = sha1,
443 };
444
936216f8 445 dprint(FD_VERIFY, "sha1 verify io_u %p, len %u\n", vc->io_u, hdr->len);
7c353ceb
JA
446
447 sha1_init(&sha1_ctx);
448 sha1_update(&sha1_ctx, p, hdr->len - hdr_size(hdr));
449
bfacf389
JA
450 if (!memcmp(vh->sha1, sha1_ctx.H, sizeof(sha1)))
451 return 0;
7c353ceb 452
bfacf389
JA
453 vc->name = "sha1";
454 vc->good_crc = vh->sha1;
455 vc->bad_crc = sha1_ctx.H;
456 vc->crc_len = sizeof(vh->sha1);
457 log_verify_failure(hdr, vc);
458 return EILSEQ;
7c353ceb
JA
459}
460
936216f8 461static int verify_io_u_crc7(struct verify_header *hdr, struct vcont *vc)
1e154bdb 462{
936216f8 463 void *p = io_u_verify_off(hdr, vc);
546dfd9f 464 struct vhdr_crc7 *vh = hdr_priv(hdr);
1e154bdb
JA
465 unsigned char c;
466
936216f8 467 dprint(FD_VERIFY, "crc7 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 468
87677832 469 c = crc7(p, hdr->len - hdr_size(hdr));
1e154bdb 470
bfacf389
JA
471 if (c == vh->crc7)
472 return 0;
1e154bdb 473
bfacf389
JA
474 vc->name = "crc7";
475 vc->good_crc = &vh->crc7;
476 vc->bad_crc = &c;
477 vc->crc_len = 1;
478 log_verify_failure(hdr, vc);
479 return EILSEQ;
1e154bdb
JA
480}
481
936216f8 482static int verify_io_u_crc16(struct verify_header *hdr, struct vcont *vc)
969f7ed3 483{
936216f8 484 void *p = io_u_verify_off(hdr, vc);
546dfd9f 485 struct vhdr_crc16 *vh = hdr_priv(hdr);
969f7ed3
JA
486 unsigned short c;
487
936216f8 488 dprint(FD_VERIFY, "crc16 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 489
87677832 490 c = crc16(p, hdr->len - hdr_size(hdr));
969f7ed3 491
bfacf389
JA
492 if (c == vh->crc16)
493 return 0;
969f7ed3 494
bfacf389
JA
495 vc->name = "crc16";
496 vc->good_crc = &vh->crc16;
497 vc->bad_crc = &c;
498 vc->crc_len = 2;
499 log_verify_failure(hdr, vc);
500 return EILSEQ;
969f7ed3
JA
501}
502
936216f8 503static int verify_io_u_crc64(struct verify_header *hdr, struct vcont *vc)
d77a7af3 504{
936216f8 505 void *p = io_u_verify_off(hdr, vc);
546dfd9f 506 struct vhdr_crc64 *vh = hdr_priv(hdr);
d77a7af3
JA
507 unsigned long long c;
508
936216f8 509 dprint(FD_VERIFY, "crc64 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 510
87677832 511 c = crc64(p, hdr->len - hdr_size(hdr));
d77a7af3 512
bfacf389
JA
513 if (c == vh->crc64)
514 return 0;
d77a7af3 515
bfacf389
JA
516 vc->name = "crc64";
517 vc->good_crc = &vh->crc64;
518 vc->bad_crc = &c;
519 vc->crc_len = 8;
520 log_verify_failure(hdr, vc);
521 return EILSEQ;
d77a7af3
JA
522}
523
936216f8 524static int verify_io_u_crc32(struct verify_header *hdr, struct vcont *vc)
e29d1b70 525{
936216f8 526 void *p = io_u_verify_off(hdr, vc);
546dfd9f
JA
527 struct vhdr_crc32 *vh = hdr_priv(hdr);
528 uint32_t c;
e29d1b70 529
936216f8 530 dprint(FD_VERIFY, "crc32 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 531
87677832 532 c = crc32(p, hdr->len - hdr_size(hdr));
e29d1b70 533
bfacf389
JA
534 if (c == vh->crc32)
535 return 0;
e29d1b70 536
bfacf389
JA
537 vc->name = "crc32";
538 vc->good_crc = &vh->crc32;
539 vc->bad_crc = &c;
540 vc->crc_len = 4;
541 log_verify_failure(hdr, vc);
542 return EILSEQ;
e29d1b70
JA
543}
544
936216f8 545static int verify_io_u_crc32c(struct verify_header *hdr, struct vcont *vc)
bac39e0e 546{
936216f8 547 void *p = io_u_verify_off(hdr, vc);
bac39e0e
JA
548 struct vhdr_crc32 *vh = hdr_priv(hdr);
549 uint32_t c;
550
936216f8 551 dprint(FD_VERIFY, "crc32c verify io_u %p, len %u\n", vc->io_u, hdr->len);
bac39e0e 552
3845591f
JA
553 if (hdr->verify_type == VERIFY_CRC32C_INTEL)
554 c = crc32c_intel(p, hdr->len - hdr_size(hdr));
555 else
556 c = crc32c(p, hdr->len - hdr_size(hdr));
bac39e0e 557
bfacf389
JA
558 if (c == vh->crc32)
559 return 0;
bac39e0e 560
bfacf389
JA
561 vc->name = "crc32c";
562 vc->good_crc = &vh->crc32;
563 vc->bad_crc = &c;
564 vc->crc_len = 4;
565 log_verify_failure(hdr, vc);
566 return EILSEQ;
bac39e0e
JA
567}
568
936216f8 569static int verify_io_u_md5(struct verify_header *hdr, struct vcont *vc)
e29d1b70 570{
936216f8 571 void *p = io_u_verify_off(hdr, vc);
546dfd9f 572 struct vhdr_md5 *vh = hdr_priv(hdr);
8c432325
JA
573 uint32_t hash[MD5_HASH_WORDS];
574 struct md5_ctx md5_ctx = {
575 .hash = hash,
576 };
e29d1b70 577
936216f8 578 dprint(FD_VERIFY, "md5 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 579
61f821f1 580 md5_init(&md5_ctx);
87677832 581 md5_update(&md5_ctx, p, hdr->len - hdr_size(hdr));
e29d1b70 582
bfacf389
JA
583 if (!memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash)))
584 return 0;
e29d1b70 585
bfacf389
JA
586 vc->name = "md5";
587 vc->good_crc = vh->md5_digest;
588 vc->bad_crc = md5_ctx.hash;
589 vc->crc_len = sizeof(hash);
590 log_verify_failure(hdr, vc);
591 return EILSEQ;
e29d1b70
JA
592}
593
e8462bd8
JA
594/*
595 * Push IO verification to a separate thread
596 */
597int verify_io_u_async(struct thread_data *td, struct io_u *io_u)
598{
599 if (io_u->file)
600 put_file_log(td, io_u->file);
601
602 io_u->file = NULL;
603
604 pthread_mutex_lock(&td->io_u_lock);
0c41214f
RR
605
606 if (io_u->flags & IO_U_F_IN_CUR_DEPTH) {
607 td->cur_depth--;
608 io_u->flags &= ~IO_U_F_IN_CUR_DEPTH;
609 }
e8462bd8
JA
610 flist_del(&io_u->list);
611 flist_add_tail(&io_u->list, &td->verify_list);
2ecc1b57 612 io_u->flags |= IO_U_F_FREE_DEF;
e8462bd8
JA
613 pthread_mutex_unlock(&td->io_u_lock);
614
615 pthread_cond_signal(&td->verify_cond);
e8462bd8
JA
616 return 0;
617}
618
0d29de83
JA
619static int verify_trimmed_io_u(struct thread_data *td, struct io_u *io_u)
620{
621 static char zero_buf[1024];
622 unsigned int this_len, len;
623 int ret = 0;
624 void *p;
625
626 if (!td->o.trim_zero)
627 return 0;
628
629 len = io_u->buflen;
630 p = io_u->buf;
631 do {
632 this_len = sizeof(zero_buf);
633 if (this_len > len)
634 this_len = len;
635 if (memcmp(p, zero_buf, this_len)) {
636 ret = EILSEQ;
637 break;
638 }
639 len -= this_len;
640 p += this_len;
641 } while (len);
642
643 if (!ret)
644 return 0;
645
a917a8b3
JA
646 log_err("trim: verify failed at file %s offset %llu, length %lu"
647 ", block offset %lu\n",
648 io_u->file->file_name, io_u->offset, io_u->buflen,
2f68124f 649 (unsigned long) (p - io_u->buf));
0d29de83
JA
650 return ret;
651}
652
36690c9b 653int verify_io_u(struct thread_data *td, struct io_u *io_u)
e29d1b70 654{
3f9f4e26 655 struct verify_header *hdr;
2b13e716 656 unsigned int header_size, hdr_inc, hdr_num = 0;
95646108 657 void *p;
e29d1b70
JA
658 int ret;
659
1dcc0498 660 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
36690c9b 661 return 0;
0d29de83
JA
662 if (io_u->flags & IO_U_F_TRIMMED) {
663 ret = verify_trimmed_io_u(td, io_u);
664 goto done;
665 }
36690c9b 666
cfbcd0dc 667 hdr_inc = get_hdr_inc(td, io_u);
e29d1b70 668
a12a3b4d 669 ret = 0;
5ec10eaa
JA
670 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
671 p += hdr_inc, hdr_num++) {
bfacf389
JA
672 struct vcont vc = {
673 .io_u = io_u,
674 .hdr_num = hdr_num,
7d9fb455 675 .td = td,
bfacf389 676 };
936216f8 677
f3e6cb95 678 if (ret && td->o.verify_fatal)
a12a3b4d 679 break;
f3e6cb95 680
2b13e716 681 header_size = __hdr_size(td->o.verify);
a59e170d 682 if (td->o.verify_offset)
2b13e716 683 memswp(p, p + td->o.verify_offset, header_size);
95646108 684 hdr = p;
e29d1b70 685
3f199b01 686 if (hdr->fio_magic != FIO_HDR_MAGIC) {
c9b44031
JA
687 log_err("verify: bad magic header %x, wanted %x at file %s offset %llu, length %u\n",
688 hdr->fio_magic, FIO_HDR_MAGIC,
689 io_u->file->file_name,
690 io_u->offset + hdr_num * hdr->len, hdr->len);
9fd18969 691 return EILSEQ;
3f199b01
JA
692 }
693
3f9f4e26
SL
694 switch (hdr->verify_type) {
695 case VERIFY_MD5:
936216f8 696 ret = verify_io_u_md5(hdr, &vc);
3f9f4e26
SL
697 break;
698 case VERIFY_CRC64:
936216f8 699 ret = verify_io_u_crc64(hdr, &vc);
3f9f4e26 700 break;
bac39e0e 701 case VERIFY_CRC32C:
3845591f 702 case VERIFY_CRC32C_INTEL:
936216f8 703 ret = verify_io_u_crc32c(hdr, &vc);
bac39e0e 704 break;
3f9f4e26 705 case VERIFY_CRC32:
936216f8 706 ret = verify_io_u_crc32(hdr, &vc);
3f9f4e26
SL
707 break;
708 case VERIFY_CRC16:
936216f8 709 ret = verify_io_u_crc16(hdr, &vc);
3f9f4e26
SL
710 break;
711 case VERIFY_CRC7:
936216f8 712 ret = verify_io_u_crc7(hdr, &vc);
3f9f4e26 713 break;
cd14cc10 714 case VERIFY_SHA256:
936216f8 715 ret = verify_io_u_sha256(hdr, &vc);
cd14cc10
JA
716 break;
717 case VERIFY_SHA512:
936216f8 718 ret = verify_io_u_sha512(hdr, &vc);
cd14cc10 719 break;
7437ee87 720 case VERIFY_META:
92bf48d5 721 ret = verify_io_u_meta(hdr, &vc);
7437ee87 722 break;
7c353ceb 723 case VERIFY_SHA1:
936216f8 724 ret = verify_io_u_sha1(hdr, &vc);
7c353ceb 725 break;
92bf48d5
JA
726 case VERIFY_PATTERN:
727 ret = verify_io_u_pattern(hdr, &vc);
728 break;
3f9f4e26
SL
729 default:
730 log_err("Bad verify type %u\n", hdr->verify_type);
d16d4e09 731 ret = EINVAL;
3f9f4e26 732 }
3f9f4e26 733 }
a7dfe862 734
0d29de83 735done:
f3e6cb95
JA
736 if (ret && td->o.verify_fatal)
737 td->terminate = 1;
738
a12a3b4d 739 return ret;
e29d1b70
JA
740}
741
7437ee87 742static void fill_meta(struct verify_header *hdr, struct thread_data *td,
5ec10eaa 743 struct io_u *io_u, unsigned int header_num)
7437ee87
SL
744{
745 struct vhdr_meta *vh = hdr_priv(hdr);
746
747 vh->thread = td->thread_number;
748
749 vh->time_sec = io_u->start_time.tv_sec;
750 vh->time_usec = io_u->start_time.tv_usec;
751
752 vh->numberio = td->io_issues[DDIR_WRITE];
753
754 vh->offset = io_u->offset + header_num * td->o.verify_interval;
755}
756
cd14cc10
JA
757static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
758{
546dfd9f 759 struct vhdr_sha512 *vh = hdr_priv(hdr);
cd14cc10 760 struct sha512_ctx sha512_ctx = {
546dfd9f 761 .buf = vh->sha512,
cd14cc10
JA
762 };
763
764 sha512_init(&sha512_ctx);
765 sha512_update(&sha512_ctx, p, len);
766}
767
768static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
769{
546dfd9f 770 struct vhdr_sha256 *vh = hdr_priv(hdr);
cd14cc10 771 struct sha256_ctx sha256_ctx = {
546dfd9f 772 .buf = vh->sha256,
cd14cc10
JA
773 };
774
775 sha256_init(&sha256_ctx);
776 sha256_update(&sha256_ctx, p, len);
777}
778
7c353ceb
JA
779static void fill_sha1(struct verify_header *hdr, void *p, unsigned int len)
780{
781 struct vhdr_sha1 *vh = hdr_priv(hdr);
782 struct sha1_ctx sha1_ctx = {
783 .H = vh->sha1,
784 };
785
786 sha1_init(&sha1_ctx);
787 sha1_update(&sha1_ctx, p, len);
788}
789
1e154bdb
JA
790static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
791{
546dfd9f
JA
792 struct vhdr_crc7 *vh = hdr_priv(hdr);
793
794 vh->crc7 = crc7(p, len);
1e154bdb
JA
795}
796
969f7ed3
JA
797static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
798{
546dfd9f
JA
799 struct vhdr_crc16 *vh = hdr_priv(hdr);
800
801 vh->crc16 = crc16(p, len);
969f7ed3
JA
802}
803
e29d1b70
JA
804static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
805{
546dfd9f
JA
806 struct vhdr_crc32 *vh = hdr_priv(hdr);
807
808 vh->crc32 = crc32(p, len);
e29d1b70
JA
809}
810
bac39e0e
JA
811static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
812{
813 struct vhdr_crc32 *vh = hdr_priv(hdr);
814
3845591f
JA
815 if (hdr->verify_type == VERIFY_CRC32C_INTEL)
816 vh->crc32 = crc32c_intel(p, len);
817 else
818 vh->crc32 = crc32c(p, len);
bac39e0e
JA
819}
820
d77a7af3
JA
821static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
822{
546dfd9f
JA
823 struct vhdr_crc64 *vh = hdr_priv(hdr);
824
825 vh->crc64 = crc64(p, len);
d77a7af3
JA
826}
827
e29d1b70
JA
828static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
829{
546dfd9f 830 struct vhdr_md5 *vh = hdr_priv(hdr);
8c432325 831 struct md5_ctx md5_ctx = {
546dfd9f 832 .hash = (uint32_t *) vh->md5_digest,
8c432325 833 };
e29d1b70 834
61f821f1 835 md5_init(&md5_ctx);
e29d1b70 836 md5_update(&md5_ctx, p, len);
e29d1b70
JA
837}
838
7d9fb455
JA
839static void populate_hdr(struct thread_data *td, struct io_u *io_u,
840 struct verify_header *hdr, unsigned int header_num,
841 unsigned int header_len)
842{
843 unsigned int data_len;
844 void *data, *p;
845
846 p = (void *) hdr;
847
848 hdr->fio_magic = FIO_HDR_MAGIC;
849 hdr->len = header_len;
850 hdr->verify_type = td->o.verify;
851 hdr->rand_seed = io_u->rand_seed;
852 data_len = header_len - hdr_size(hdr);
853
854 data = p + hdr_size(hdr);
855 switch (td->o.verify) {
856 case VERIFY_MD5:
857 dprint(FD_VERIFY, "fill md5 io_u %p, len %u\n",
858 io_u, hdr->len);
859 fill_md5(hdr, data, data_len);
860 break;
861 case VERIFY_CRC64:
862 dprint(FD_VERIFY, "fill crc64 io_u %p, len %u\n",
863 io_u, hdr->len);
864 fill_crc64(hdr, data, data_len);
865 break;
866 case VERIFY_CRC32C:
867 case VERIFY_CRC32C_INTEL:
868 dprint(FD_VERIFY, "fill crc32c io_u %p, len %u\n",
869 io_u, hdr->len);
870 fill_crc32c(hdr, data, data_len);
871 break;
872 case VERIFY_CRC32:
873 dprint(FD_VERIFY, "fill crc32 io_u %p, len %u\n",
874 io_u, hdr->len);
875 fill_crc32(hdr, data, data_len);
876 break;
877 case VERIFY_CRC16:
878 dprint(FD_VERIFY, "fill crc16 io_u %p, len %u\n",
879 io_u, hdr->len);
880 fill_crc16(hdr, data, data_len);
881 break;
882 case VERIFY_CRC7:
883 dprint(FD_VERIFY, "fill crc7 io_u %p, len %u\n",
884 io_u, hdr->len);
885 fill_crc7(hdr, data, data_len);
886 break;
887 case VERIFY_SHA256:
888 dprint(FD_VERIFY, "fill sha256 io_u %p, len %u\n",
889 io_u, hdr->len);
890 fill_sha256(hdr, data, data_len);
891 break;
892 case VERIFY_SHA512:
893 dprint(FD_VERIFY, "fill sha512 io_u %p, len %u\n",
894 io_u, hdr->len);
895 fill_sha512(hdr, data, data_len);
896 break;
897 case VERIFY_META:
898 dprint(FD_VERIFY, "fill meta io_u %p, len %u\n",
899 io_u, hdr->len);
900 fill_meta(hdr, td, io_u, header_num);
901 break;
902 case VERIFY_SHA1:
903 dprint(FD_VERIFY, "fill sha1 io_u %p, len %u\n",
904 io_u, hdr->len);
905 fill_sha1(hdr, data, data_len);
906 break;
92bf48d5
JA
907 case VERIFY_PATTERN:
908 /* nothing to do here */
909 break;
7d9fb455
JA
910 default:
911 log_err("fio: bad verify type: %d\n", td->o.verify);
912 assert(0);
913 }
914 if (td->o.verify_offset)
915 memswp(p, p + td->o.verify_offset, hdr_size(hdr));
916}
917
e29d1b70
JA
918/*
919 * fill body of io_u->buf with random data and add a header with the
c50ca7bd 920 * checksum of choice
e29d1b70
JA
921 */
922void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
923{
9cc3d150
JA
924 if (td->o.verify == VERIFY_NULL)
925 return;
926
c50ca7bd 927 fill_pattern_headers(td, io_u, 0, 0);
e29d1b70
JA
928}
929
930int get_next_verify(struct thread_data *td, struct io_u *io_u)
931{
8de8f047 932 struct io_piece *ipo = NULL;
e29d1b70 933
d2d7fa53
JA
934 /*
935 * this io_u is from a requeue, we already filled the offsets
936 */
937 if (io_u->file)
938 return 0;
939
8de8f047
JA
940 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
941 struct rb_node *n = rb_first(&td->io_hist_tree);
e29d1b70 942
8de8f047 943 ipo = rb_entry(n, struct io_piece, rb_node);
4b87898e 944 rb_erase(n, &td->io_hist_tree);
a917a8b3
JA
945 assert(ipo->flags & IP_F_ONRB);
946 ipo->flags &= ~IP_F_ONRB;
01743ee1
JA
947 } else if (!flist_empty(&td->io_hist_list)) {
948 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
949 flist_del(&ipo->list);
a917a8b3
JA
950 assert(ipo->flags & IP_F_ONLIST);
951 ipo->flags &= ~IP_F_ONLIST;
8de8f047 952 }
e29d1b70 953
8de8f047 954 if (ipo) {
0d29de83
JA
955 td->io_hist_len--;
956
e29d1b70
JA
957 io_u->offset = ipo->offset;
958 io_u->buflen = ipo->len;
36167d82 959 io_u->file = ipo->file;
97af62ce 960
0d29de83
JA
961 if (ipo->flags & IP_F_TRIMMED)
962 io_u->flags |= IO_U_F_TRIMMED;
963
d6aed795 964 if (!fio_file_open(io_u->file)) {
97af62ce
JA
965 int r = td_io_open_file(td, io_u->file);
966
bd6f78b2
JA
967 if (r) {
968 dprint(FD_VERIFY, "failed file %s open\n",
969 io_u->file->file_name);
97af62ce 970 return 1;
bd6f78b2 971 }
97af62ce
JA
972 }
973
974 get_file(ipo->file);
d6aed795 975 assert(fio_file_open(io_u->file));
e29d1b70 976 io_u->ddir = DDIR_READ;
36167d82
JA
977 io_u->xfer_buf = io_u->buf;
978 io_u->xfer_buflen = io_u->buflen;
0d29de83
JA
979
980 remove_trim_entry(td, ipo);
e29d1b70 981 free(ipo);
bd6f78b2 982 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
e29d1b70
JA
983 return 0;
984 }
985
bd6f78b2 986 dprint(FD_VERIFY, "get_next_verify: empty\n");
e29d1b70
JA
987 return 1;
988}
e8462bd8
JA
989
990static void *verify_async_thread(void *data)
991{
992 struct thread_data *td = data;
993 struct io_u *io_u;
994 int ret = 0;
995
996 if (td->o.verify_cpumask_set &&
997 fio_setaffinity(td->pid, td->o.verify_cpumask)) {
998 log_err("fio: failed setting verify thread affinity\n");
999 goto done;
1000 }
1001
1002 do {
e53ab27c
JA
1003 FLIST_HEAD(list);
1004
e8462bd8
JA
1005 read_barrier();
1006 if (td->verify_thread_exit)
1007 break;
1008
1009 pthread_mutex_lock(&td->io_u_lock);
1010
1011 while (flist_empty(&td->verify_list) &&
1012 !td->verify_thread_exit) {
b36e298b
JA
1013 ret = pthread_cond_wait(&td->verify_cond,
1014 &td->io_u_lock);
e8462bd8
JA
1015 if (ret) {
1016 pthread_mutex_unlock(&td->io_u_lock);
1017 break;
1018 }
1019 }
1020
e53ab27c
JA
1021 flist_splice_init(&td->verify_list, &list);
1022 pthread_mutex_unlock(&td->io_u_lock);
1023
1024 if (flist_empty(&list))
e8462bd8 1025 continue;
e8462bd8 1026
e53ab27c
JA
1027 while (!flist_empty(&list)) {
1028 io_u = flist_entry(list.next, struct io_u, list);
1029 flist_del_init(&io_u->list);
e8462bd8 1030
d561f2ab 1031 ret = verify_io_u(td, io_u);
e53ab27c 1032 put_io_u(td, io_u);
d561f2ab
JA
1033 if (!ret)
1034 continue;
1035 if (td->o.continue_on_error &&
1036 td_non_fatal_error(ret)) {
1037 update_error_count(td, ret);
1038 td_clear_error(td);
1039 ret = 0;
1040 }
e53ab27c 1041 }
e8462bd8
JA
1042 } while (!ret);
1043
d561f2ab
JA
1044 if (ret) {
1045 td_verror(td, ret, "async_verify");
f3e6cb95
JA
1046 if (td->o.verify_fatal)
1047 td->terminate = 1;
d561f2ab
JA
1048 }
1049
e8462bd8
JA
1050done:
1051 pthread_mutex_lock(&td->io_u_lock);
1052 td->nr_verify_threads--;
1053 pthread_mutex_unlock(&td->io_u_lock);
1054
1055 pthread_cond_signal(&td->free_cond);
1056 return NULL;
1057}
1058
1059int verify_async_init(struct thread_data *td)
1060{
1061 int i, ret;
304a47c7
VA
1062 pthread_attr_t attr;
1063
1064 pthread_attr_init(&attr);
1065 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
e8462bd8
JA
1066
1067 td->verify_thread_exit = 0;
1068
1069 td->verify_threads = malloc(sizeof(pthread_t) * td->o.verify_async);
1070 for (i = 0; i < td->o.verify_async; i++) {
304a47c7 1071 ret = pthread_create(&td->verify_threads[i], &attr,
e8462bd8
JA
1072 verify_async_thread, td);
1073 if (ret) {
1074 log_err("fio: async verify creation failed: %s\n",
1075 strerror(ret));
1076 break;
1077 }
1078 ret = pthread_detach(td->verify_threads[i]);
1079 if (ret) {
1080 log_err("fio: async verify thread detach failed: %s\n",
1081 strerror(ret));
1082 break;
1083 }
1084 td->nr_verify_threads++;
1085 }
1086
304a47c7
VA
1087 pthread_attr_destroy(&attr);
1088
e8462bd8 1089 if (i != td->o.verify_async) {
e40823b1 1090 log_err("fio: only %d verify threads started, exiting\n", i);
e8462bd8
JA
1091 td->verify_thread_exit = 1;
1092 write_barrier();
1093 pthread_cond_broadcast(&td->verify_cond);
1094 return 1;
1095 }
1096
1097 return 0;
1098}
1099
1100void verify_async_exit(struct thread_data *td)
1101{
1102 td->verify_thread_exit = 1;
1103 write_barrier();
1104 pthread_cond_broadcast(&td->verify_cond);
1105
1106 pthread_mutex_lock(&td->io_u_lock);
1107
1108 while (td->nr_verify_threads)
1109 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1110
1111 pthread_mutex_unlock(&td->io_u_lock);
1112 free(td->verify_threads);
1113 td->verify_threads = NULL;
1114}