blob: 217b686950452944c4f87fae580446f745649b7a [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 Axboe79402a12011-01-14 12:41:15 +01009#include <libgen.h>
Jens Axboee29d1b72006-10-18 15:43:15 +020010
11#include "fio.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020012#include "verify.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 Axboe51aa2da2013-01-21 10:55:02 -070015#include "lib/hweight.h"
Jens Axboee29d1b72006-10-18 15:43:15 +020016
Jens Axboeeef6eea2007-07-30 12:27:58 +020017#include "crc/md5.h"
18#include "crc/crc64.h"
19#include "crc/crc32.h"
Jens Axboebac39e02008-06-11 20:46:19 +020020#include "crc/crc32c.h"
Jens Axboeeef6eea2007-07-30 12:27:58 +020021#include "crc/crc16.h"
22#include "crc/crc7.h"
23#include "crc/sha256.h"
24#include "crc/sha512.h"
Jens Axboe7c353ce2009-08-09 22:40:33 +020025#include "crc/sha1.h"
Jens Axboe844ea602014-02-20 13:21:45 -080026#include "crc/xxhash.h"
Jens Axboecd14cc12007-07-30 10:59:33 +020027
Jens Axboe7d9fb452011-01-11 22:16:49 +010028static void populate_hdr(struct thread_data *td, struct io_u *io_u,
29 struct verify_header *hdr, unsigned int header_num,
30 unsigned int header_len);
31
Jens Axboece35b1e2014-01-14 15:35:58 -070032static void fill_pattern(struct thread_data *td, void *p, unsigned int len,
33 char *pattern, unsigned int pattern_bytes)
Jens Axboe90059d62007-07-30 09:33:12 +020034{
Jens Axboece35b1e2014-01-14 15:35:58 -070035 switch (pattern_bytes) {
Jens Axboe90059d62007-07-30 09:33:12 +020036 case 0:
Jens Axboece35b1e2014-01-14 15:35:58 -070037 assert(0);
Jens Axboe90059d62007-07-30 09:33:12 +020038 break;
39 case 1:
Jens Axboebd6f78b2008-02-01 20:27:52 +010040 dprint(FD_VERIFY, "fill verify pattern b=0 len=%u\n", len);
Jens Axboece35b1e2014-01-14 15:35:58 -070041 memset(p, pattern[0], len);
Jens Axboe90059d62007-07-30 09:33:12 +020042 break;
Radha Ramachandran0e92f872009-10-27 20:14:27 +010043 default: {
44 unsigned int i = 0, size = 0;
Jens Axboe90059d62007-07-30 09:33:12 +020045 unsigned char *b = p;
46
Jens Axboebd6f78b2008-02-01 20:27:52 +010047 dprint(FD_VERIFY, "fill verify pattern b=%d len=%u\n",
Jens Axboece35b1e2014-01-14 15:35:58 -070048 pattern_bytes, len);
Jens Axboebd6f78b2008-02-01 20:27:52 +010049
Jens Axboe90059d62007-07-30 09:33:12 +020050 while (i < len) {
Jens Axboece35b1e2014-01-14 15:35:58 -070051 size = pattern_bytes;
Radha Ramachandran0e92f872009-10-27 20:14:27 +010052 if (size > (len - i))
53 size = len - i;
Jens Axboece35b1e2014-01-14 15:35:58 -070054 memcpy(b+i, pattern, size);
Radha Ramachandran0e92f872009-10-27 20:14:27 +010055 i += size;
Jens Axboe90059d62007-07-30 09:33:12 +020056 }
57 break;
58 }
59 }
60}
61
Jens Axboece35b1e2014-01-14 15:35:58 -070062void fill_buffer_pattern(struct thread_data *td, void *p, unsigned int len)
63{
64 fill_pattern(td, p, len, td->o.buffer_pattern, td->o.buffer_pattern_bytes);
65}
66
67void fill_verify_pattern(struct thread_data *td, void *p, unsigned int len,
68 struct io_u *io_u, unsigned long seed, int use_seed)
69{
70 if (!td->o.verify_pattern_bytes) {
71 dprint(FD_VERIFY, "fill random bytes len=%u\n", len);
72
73 if (use_seed)
74 __fill_random_buf(p, len, seed);
75 else
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -070076 io_u->rand_seed = fill_random_buf(&td->__verify_state, p, len);
Jens Axboece35b1e2014-01-14 15:35:58 -070077 return;
78 }
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -070079
Jens Axboece35b1e2014-01-14 15:35:58 -070080 if (io_u->buf_filled_len >= len) {
81 dprint(FD_VERIFY, "using already filled verify pattern b=%d len=%u\n",
82 td->o.verify_pattern_bytes, len);
83 return;
84 }
85
86 fill_pattern(td, p, len, td->o.verify_pattern, td->o.verify_pattern_bytes);
87
88 io_u->buf_filled_len = len;
89}
90
Jens Axboecfbcd0d2011-01-14 14:49:20 +010091static 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;
Jens Axboe8a99fdf2012-03-06 19:24:49 +010096 if (td->o.verify_interval && td->o.verify_interval <= io_u->buflen)
Jens Axboecfbcd0d2011-01-14 14:49:20 +010097 hdr_inc = td->o.verify_interval;
98
99 return hdr_inc;
100}
101
Jens Axboec50ca7b2011-01-12 08:31:54 +0100102static 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
Jens Axboece35b1e2014-01-14 15:35:58 -0700109 fill_verify_pattern(td, p, io_u->buflen, io_u, seed, use_seed);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100110
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100111 hdr_inc = get_hdr_inc(td, io_u);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100112 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
Jens Axboe4764aec2007-08-23 09:03:38 +0200120static void memswp(void *buf1, void *buf2, unsigned int len)
Shawn Lewis546a9142007-07-28 21:11:37 +0200121{
Shawn Lewisdee6de72007-08-02 22:17:52 +0200122 char swap[200];
123
124 assert(len <= sizeof(swap));
Jens Axboe90059d62007-07-30 09:33:12 +0200125
Shawn Lewis546a9142007-07-28 21:11:37 +0200126 memcpy(&swap, buf1, len);
127 memcpy(buf1, buf2, len);
128 memcpy(buf2, &swap, len);
129}
130
Jens Axboee29d1b72006-10-18 15:43:15 +0200131static void hexdump(void *buffer, int len)
132{
133 unsigned char *p = buffer;
134 int i;
135
136 for (i = 0; i < len; i++)
Jens Axboebfacf382010-06-18 14:29:52 +0200137 log_err("%02x", p[i]);
138 log_err("\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200139}
140
Jens Axboed9f2caf2007-07-28 21:22:03 +0200141/*
Anatol Pomozovde8f6de2013-09-26 16:31:34 -0700142 * Prepare for separation of verify_header and checksum header
Jens Axboe87677832007-07-30 12:08:14 +0200143 */
Jens Axboe546dfd92007-07-30 12:23:05 +0200144static inline unsigned int __hdr_size(int verify_type)
Jens Axboe87677832007-07-30 12:08:14 +0200145{
Bruce Cran03e20d62011-01-02 20:14:54 +0100146 unsigned int len = 0;
Jens Axboe87677832007-07-30 12:08:14 +0200147
Jens Axboe546dfd92007-07-30 12:23:05 +0200148 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;
Jens Axboebac39e02008-06-11 20:46:19 +0200159 case VERIFY_CRC32C:
Jens Axboe546dfd92007-07-30 12:23:05 +0200160 case VERIFY_CRC32:
Jens Axboe38455912008-08-04 15:35:26 +0200161 case VERIFY_CRC32C_INTEL:
Jens Axboe546dfd92007-07-30 12:23:05 +0200162 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;
Jens Axboe844ea602014-02-20 13:21:45 -0800176 case VERIFY_XXHASH:
177 len = sizeof(struct vhdr_xxhash);
178 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200179 case VERIFY_META:
180 len = sizeof(struct vhdr_meta);
181 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200182 case VERIFY_SHA1:
183 len = sizeof(struct vhdr_sha1);
184 break;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100185 case VERIFY_PATTERN:
186 len = 0;
187 break;
Jens Axboe546dfd92007-07-30 12:23:05 +0200188 default:
189 log_err("fio: unknown verify header!\n");
190 assert(0);
191 }
192
193 return len + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200194}
195
196static inline unsigned int hdr_size(struct verify_header *hdr)
197{
Jens Axboe546dfd92007-07-30 12:23:05 +0200198 return __hdr_size(hdr->verify_type);
199}
200
201static void *hdr_priv(struct verify_header *hdr)
202{
203 void *priv = hdr;
204
205 return priv + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200206}
207
208/*
Jens Axboe936216f2010-06-18 13:44:11 +0200209 * Verify container, pass info to verify handlers and allow them to
210 * pass info back in case of error
211 */
212struct vcont {
213 /*
214 * Input
215 */
216 struct io_u *io_u;
217 unsigned int hdr_num;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100218 struct thread_data *td;
Jens Axboe936216f2010-06-18 13:44:11 +0200219
220 /*
221 * Output, only valid in case of error
222 */
Jens Axboebfacf382010-06-18 14:29:52 +0200223 const char *name;
224 void *good_crc;
225 void *bad_crc;
Jens Axboe936216f2010-06-18 13:44:11 +0200226 unsigned int crc_len;
227};
228
Jens Axboedacbbb82014-04-14 08:43:55 -0600229#define DUMP_BUF_SZ 255
230static int dump_buf_warned;
231
Jens Axboec50ca7b2011-01-12 08:31:54 +0100232static void dump_buf(char *buf, unsigned int len, unsigned long long offset,
233 const char *type, struct fio_file *f)
Jens Axboe7d9fb452011-01-11 22:16:49 +0100234{
Jens Axboedacbbb82014-04-14 08:43:55 -0600235 char *ptr, fname[DUMP_BUF_SZ];
236 size_t buf_left = DUMP_BUF_SZ;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100237 int ret, fd;
238
Jens Axboe6f260b32011-01-13 18:57:54 +0100239 ptr = strdup(f->file_name);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100240
Jens Axboedacbbb82014-04-14 08:43:55 -0600241 fname[DUMP_BUF_SZ - 1] = '\0';
242 strncpy(fname, basename(ptr), DUMP_BUF_SZ - 1);
243
244 buf_left -= strlen(fname);
245 if (buf_left <= 0) {
246 if (!dump_buf_warned) {
247 log_err("fio: verify failure dump buffer too small\n");
248 dump_buf_warned = 1;
249 }
250 free(ptr);
251 return;
252 }
253
254 snprintf(fname + strlen(fname), buf_left, ".%llu.%s", offset, type);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100255
256 fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 0644);
257 if (fd < 0) {
258 perror("open verify buf file");
259 return;
260 }
261
262 while (len) {
263 ret = write(fd, buf, len);
264 if (!ret)
265 break;
266 else if (ret < 0) {
267 perror("write verify buf file");
268 break;
269 }
270 len -= ret;
271 buf += ret;
272 }
273
274 close(fd);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100275 log_err(" %s data dumped as %s\n", type, fname);
Jens Axboe6f260b32011-01-13 18:57:54 +0100276 free(ptr);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100277}
278
Jens Axboec50ca7b2011-01-12 08:31:54 +0100279/*
280 * Dump the contents of the read block and re-generate the correct data
281 * and dump that too.
282 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100283static void dump_verify_buffers(struct verify_header *hdr, struct vcont *vc)
284{
285 struct thread_data *td = vc->td;
286 struct io_u *io_u = vc->io_u;
287 unsigned long hdr_offset;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100288 struct io_u dummy;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100289 void *buf;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100290
Steven Lang0dce9bc2011-10-25 22:41:05 +0200291 if (!td->o.verify_dump)
292 return;
293
Jens Axboec50ca7b2011-01-12 08:31:54 +0100294 /*
295 * Dump the contents we just read off disk
296 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100297 hdr_offset = vc->hdr_num * hdr->len;
298
Jens Axboec50ca7b2011-01-12 08:31:54 +0100299 dump_buf(io_u->buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
300 "received", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100301
Jens Axboec50ca7b2011-01-12 08:31:54 +0100302 /*
303 * Allocate a new buf and re-generate the original data
304 */
305 buf = malloc(io_u->buflen);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100306 dummy = *io_u;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100307 dummy.buf = buf;
Jens Axboe4aae38a2011-01-12 08:59:12 +0100308 dummy.rand_seed = hdr->rand_seed;
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100309 dummy.buf_filled_len = 0;
Josef Bacik0d81daf2013-07-08 20:35:01 -0400310 dummy.buflen = io_u->buflen;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100311
Jens Axboec50ca7b2011-01-12 08:31:54 +0100312 fill_pattern_headers(td, &dummy, hdr->rand_seed, 1);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100313
Jens Axboec50ca7b2011-01-12 08:31:54 +0100314 dump_buf(buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
315 "expected", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100316 free(buf);
317}
318
Jens Axboebfacf382010-06-18 14:29:52 +0200319static void log_verify_failure(struct verify_header *hdr, struct vcont *vc)
320{
321 unsigned long long offset;
322
323 offset = vc->io_u->offset;
324 offset += vc->hdr_num * hdr->len;
Jens Axboe32c17ad2010-06-18 14:32:21 +0200325 log_err("%.8s: verify failed at file %s offset %llu, length %u\n",
326 vc->name, vc->io_u->file->file_name, offset, hdr->len);
Jens Axboebfacf382010-06-18 14:29:52 +0200327
328 if (vc->good_crc && vc->bad_crc) {
329 log_err(" Expected CRC: ");
330 hexdump(vc->good_crc, vc->crc_len);
331 log_err(" Received CRC: ");
332 hexdump(vc->bad_crc, vc->crc_len);
333 }
Jens Axboe7d9fb452011-01-11 22:16:49 +0100334
335 dump_verify_buffers(hdr, vc);
Jens Axboebfacf382010-06-18 14:29:52 +0200336}
337
Jens Axboe936216f2010-06-18 13:44:11 +0200338/*
Jens Axboed9f2caf2007-07-28 21:22:03 +0200339 * Return data area 'header_num'
340 */
Jens Axboe936216f2010-06-18 13:44:11 +0200341static inline void *io_u_verify_off(struct verify_header *hdr, struct vcont *vc)
Jens Axboed9f2caf2007-07-28 21:22:03 +0200342{
Jens Axboe936216f2010-06-18 13:44:11 +0200343 return vc->io_u->buf + vc->hdr_num * hdr->len + hdr_size(hdr);
Jens Axboed9f2caf2007-07-28 21:22:03 +0200344}
345
Jens Axboe92bf48d2011-01-14 21:20:42 +0100346static int verify_io_u_pattern(struct verify_header *hdr, struct vcont *vc)
347{
348 struct thread_data *td = vc->td;
349 struct io_u *io_u = vc->io_u;
350 char *buf, *pattern;
Jens Axboe2b13e712011-01-19 14:04:16 -0700351 unsigned int header_size = __hdr_size(td->o.verify);
Steven Lang9a2a86d2012-02-07 09:42:59 +0100352 unsigned int len, mod, i, size, pattern_size;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100353
354 pattern = td->o.verify_pattern;
Steven Lang9a2a86d2012-02-07 09:42:59 +0100355 pattern_size = td->o.verify_pattern_bytes;
356 if (pattern_size <= 1)
357 pattern_size = MAX_PATTERN_SIZE;
Jens Axboe2b13e712011-01-19 14:04:16 -0700358 buf = (void *) hdr + header_size;
359 len = get_hdr_inc(td, io_u) - header_size;
Steven Lang9a2a86d2012-02-07 09:42:59 +0100360 mod = header_size % pattern_size;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100361
Steven Lang9a2a86d2012-02-07 09:42:59 +0100362 for (i = 0; i < len; i += size) {
363 size = pattern_size - mod;
364 if (size > (len - i))
365 size = len - i;
366 if (memcmp(buf + i, pattern + mod, size))
Jens Axboee4ad68b2012-02-23 08:35:04 +0100367 /* Let the slow compare find the first mismatch byte. */
Steven Lang9a2a86d2012-02-07 09:42:59 +0100368 break;
369 mod = 0;
370 }
371
372 for (; i < len; i++) {
Jens Axboe92bf48d2011-01-14 21:20:42 +0100373 if (buf[i] != pattern[mod]) {
374 unsigned int bits;
375
376 bits = hweight8(buf[i] ^ pattern[mod]);
377 log_err("fio: got pattern %x, wanted %x. Bad bits %d\n",
378 buf[i], pattern[mod], bits);
379 log_err("fio: bad pattern block offset %u\n", i);
380 dump_verify_buffers(hdr, vc);
381 return EILSEQ;
382 }
383 mod++;
384 if (mod == td->o.verify_pattern_bytes)
385 mod = 0;
386 }
387
388 return 0;
389}
390
391static int verify_io_u_meta(struct verify_header *hdr, struct vcont *vc)
392{
393 struct thread_data *td = vc->td;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200394 struct vhdr_meta *vh = hdr_priv(hdr);
Jens Axboe936216f2010-06-18 13:44:11 +0200395 struct io_u *io_u = vc->io_u;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100396 int ret = EILSEQ;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200397
Jens Axboebd6f78b2008-02-01 20:27:52 +0100398 dprint(FD_VERIFY, "meta verify io_u %p, len %u\n", io_u, hdr->len);
399
Jens Axboebfacf382010-06-18 14:29:52 +0200400 if (vh->offset == io_u->offset + vc->hdr_num * td->o.verify_interval)
Jens Axboe92bf48d2011-01-14 21:20:42 +0100401 ret = 0;
402
403 if (td->o.verify_pattern_bytes)
404 ret |= verify_io_u_pattern(hdr, vc);
405
Juan Casseda0a7bd2013-09-17 14:06:12 -0700406 /*
407 * For read-only workloads, the program cannot be certain of the
Jens Axboe984c8692014-07-21 11:31:49 +0200408 * last numberio written to a block. Checking of numberio will be
409 * done only for workloads that write data. For verify_only,
410 * numberio will be checked in the last iteration when the correct
411 * state of numberio, that would have been written to each block
412 * in a previous run of fio, has been reached.
Juan Casseda0a7bd2013-09-17 14:06:12 -0700413 */
Jens Axboe984c8692014-07-21 11:31:49 +0200414 if ((td_write(td) || td_rw(td)) && (td_min_bs(td) == td_max_bs(td)))
Juan Casse62167762013-09-17 14:06:13 -0700415 if (!td->o.verify_only || td->o.loops == 0)
416 if (vh->numberio != io_u->numberio)
417 ret = EILSEQ;
Juan Casseda0a7bd2013-09-17 14:06:12 -0700418
Jens Axboe92bf48d2011-01-14 21:20:42 +0100419 if (!ret)
Jens Axboebfacf382010-06-18 14:29:52 +0200420 return 0;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200421
Jens Axboebfacf382010-06-18 14:29:52 +0200422 vc->name = "meta";
423 log_verify_failure(hdr, vc);
Jens Axboe92bf48d2011-01-14 21:20:42 +0100424 return ret;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200425}
426
Jens Axboe844ea602014-02-20 13:21:45 -0800427static int verify_io_u_xxhash(struct verify_header *hdr, struct vcont *vc)
428{
429 void *p = io_u_verify_off(hdr, vc);
430 struct vhdr_xxhash *vh = hdr_priv(hdr);
431 uint32_t hash;
432 void *state;
433
434 dprint(FD_VERIFY, "xxhash verify io_u %p, len %u\n", vc->io_u, hdr->len);
435
436 state = XXH32_init(1);
437 XXH32_update(state, p, hdr->len - hdr_size(hdr));
438 hash = XXH32_digest(state);
439
440 if (vh->hash == hash)
441 return 0;
442
443 vc->name = "xxhash";
444 vc->good_crc = &vh->hash;
445 vc->bad_crc = &hash;
446 vc->crc_len = sizeof(hash);
447 log_verify_failure(hdr, vc);
448 return EILSEQ;
449}
450
Jens Axboe936216f2010-06-18 13:44:11 +0200451static int verify_io_u_sha512(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200452{
Jens Axboe936216f2010-06-18 13:44:11 +0200453 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200454 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200455 uint8_t sha512[128];
Jens Axboe25dfa842012-02-29 10:01:34 +0100456 struct fio_sha512_ctx sha512_ctx = {
Jens Axboecd14cc12007-07-30 10:59:33 +0200457 .buf = sha512,
458 };
459
Jens Axboe936216f2010-06-18 13:44:11 +0200460 dprint(FD_VERIFY, "sha512 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100461
Jens Axboe25dfa842012-02-29 10:01:34 +0100462 fio_sha512_init(&sha512_ctx);
463 fio_sha512_update(&sha512_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200464
Jens Axboebfacf382010-06-18 14:29:52 +0200465 if (!memcmp(vh->sha512, sha512_ctx.buf, sizeof(sha512)))
466 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200467
Jens Axboebfacf382010-06-18 14:29:52 +0200468 vc->name = "sha512";
469 vc->good_crc = vh->sha512;
470 vc->bad_crc = sha512_ctx.buf;
471 vc->crc_len = sizeof(vh->sha512);
472 log_verify_failure(hdr, vc);
473 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200474}
475
Jens Axboe936216f2010-06-18 13:44:11 +0200476static int verify_io_u_sha256(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200477{
Jens Axboe936216f2010-06-18 13:44:11 +0200478 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200479 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboebc77f562010-02-23 10:36:21 +0100480 uint8_t sha256[64];
Jens Axboe25dfa842012-02-29 10:01:34 +0100481 struct fio_sha256_ctx sha256_ctx = {
Jens Axboecd14cc12007-07-30 10:59:33 +0200482 .buf = sha256,
483 };
484
Jens Axboe936216f2010-06-18 13:44:11 +0200485 dprint(FD_VERIFY, "sha256 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100486
Jens Axboe25dfa842012-02-29 10:01:34 +0100487 fio_sha256_init(&sha256_ctx);
488 fio_sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200489
Jens Axboebfacf382010-06-18 14:29:52 +0200490 if (!memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256)))
491 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200492
Jens Axboebfacf382010-06-18 14:29:52 +0200493 vc->name = "sha256";
494 vc->good_crc = vh->sha256;
495 vc->bad_crc = sha256_ctx.buf;
496 vc->crc_len = sizeof(vh->sha256);
497 log_verify_failure(hdr, vc);
498 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200499}
500
Jens Axboe936216f2010-06-18 13:44:11 +0200501static int verify_io_u_sha1(struct verify_header *hdr, struct vcont *vc)
Jens Axboe7c353ce2009-08-09 22:40:33 +0200502{
Jens Axboe936216f2010-06-18 13:44:11 +0200503 void *p = io_u_verify_off(hdr, vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200504 struct vhdr_sha1 *vh = hdr_priv(hdr);
505 uint32_t sha1[5];
Jens Axboe25dfa842012-02-29 10:01:34 +0100506 struct fio_sha1_ctx sha1_ctx = {
Jens Axboe7c353ce2009-08-09 22:40:33 +0200507 .H = sha1,
508 };
509
Jens Axboe936216f2010-06-18 13:44:11 +0200510 dprint(FD_VERIFY, "sha1 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200511
Jens Axboe25dfa842012-02-29 10:01:34 +0100512 fio_sha1_init(&sha1_ctx);
513 fio_sha1_update(&sha1_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboe7c353ce2009-08-09 22:40:33 +0200514
Jens Axboebfacf382010-06-18 14:29:52 +0200515 if (!memcmp(vh->sha1, sha1_ctx.H, sizeof(sha1)))
516 return 0;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200517
Jens Axboebfacf382010-06-18 14:29:52 +0200518 vc->name = "sha1";
519 vc->good_crc = vh->sha1;
520 vc->bad_crc = sha1_ctx.H;
521 vc->crc_len = sizeof(vh->sha1);
522 log_verify_failure(hdr, vc);
523 return EILSEQ;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200524}
525
Jens Axboe936216f2010-06-18 13:44:11 +0200526static int verify_io_u_crc7(struct verify_header *hdr, struct vcont *vc)
Jens Axboe1e154bd2007-07-27 09:52:40 +0200527{
Jens Axboe936216f2010-06-18 13:44:11 +0200528 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200529 struct vhdr_crc7 *vh = hdr_priv(hdr);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200530 unsigned char c;
531
Jens Axboe936216f2010-06-18 13:44:11 +0200532 dprint(FD_VERIFY, "crc7 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100533
Jens Axboe25dfa842012-02-29 10:01:34 +0100534 c = fio_crc7(p, hdr->len - hdr_size(hdr));
Jens Axboe1e154bd2007-07-27 09:52:40 +0200535
Jens Axboebfacf382010-06-18 14:29:52 +0200536 if (c == vh->crc7)
537 return 0;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200538
Jens Axboebfacf382010-06-18 14:29:52 +0200539 vc->name = "crc7";
540 vc->good_crc = &vh->crc7;
541 vc->bad_crc = &c;
542 vc->crc_len = 1;
543 log_verify_failure(hdr, vc);
544 return EILSEQ;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200545}
546
Jens Axboe936216f2010-06-18 13:44:11 +0200547static int verify_io_u_crc16(struct verify_header *hdr, struct vcont *vc)
Jens Axboe969f7ed2007-07-27 09:07:17 +0200548{
Jens Axboe936216f2010-06-18 13:44:11 +0200549 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200550 struct vhdr_crc16 *vh = hdr_priv(hdr);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200551 unsigned short c;
552
Jens Axboe936216f2010-06-18 13:44:11 +0200553 dprint(FD_VERIFY, "crc16 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100554
Jens Axboe25dfa842012-02-29 10:01:34 +0100555 c = fio_crc16(p, hdr->len - hdr_size(hdr));
Jens Axboe969f7ed2007-07-27 09:07:17 +0200556
Jens Axboebfacf382010-06-18 14:29:52 +0200557 if (c == vh->crc16)
558 return 0;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200559
Jens Axboebfacf382010-06-18 14:29:52 +0200560 vc->name = "crc16";
561 vc->good_crc = &vh->crc16;
562 vc->bad_crc = &c;
563 vc->crc_len = 2;
564 log_verify_failure(hdr, vc);
565 return EILSEQ;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200566}
567
Jens Axboe936216f2010-06-18 13:44:11 +0200568static int verify_io_u_crc64(struct verify_header *hdr, struct vcont *vc)
Jens Axboed77a7af2007-07-27 15:35:06 +0200569{
Jens Axboe936216f2010-06-18 13:44:11 +0200570 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200571 struct vhdr_crc64 *vh = hdr_priv(hdr);
Jens Axboed77a7af2007-07-27 15:35:06 +0200572 unsigned long long c;
573
Jens Axboe936216f2010-06-18 13:44:11 +0200574 dprint(FD_VERIFY, "crc64 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100575
Jens Axboe25dfa842012-02-29 10:01:34 +0100576 c = fio_crc64(p, hdr->len - hdr_size(hdr));
Jens Axboed77a7af2007-07-27 15:35:06 +0200577
Jens Axboebfacf382010-06-18 14:29:52 +0200578 if (c == vh->crc64)
579 return 0;
Jens Axboed77a7af2007-07-27 15:35:06 +0200580
Jens Axboebfacf382010-06-18 14:29:52 +0200581 vc->name = "crc64";
582 vc->good_crc = &vh->crc64;
583 vc->bad_crc = &c;
584 vc->crc_len = 8;
585 log_verify_failure(hdr, vc);
586 return EILSEQ;
Jens Axboed77a7af2007-07-27 15:35:06 +0200587}
588
Jens Axboe936216f2010-06-18 13:44:11 +0200589static int verify_io_u_crc32(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200590{
Jens Axboe936216f2010-06-18 13:44:11 +0200591 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200592 struct vhdr_crc32 *vh = hdr_priv(hdr);
593 uint32_t c;
Jens Axboee29d1b72006-10-18 15:43:15 +0200594
Jens Axboe936216f2010-06-18 13:44:11 +0200595 dprint(FD_VERIFY, "crc32 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100596
Jens Axboe25dfa842012-02-29 10:01:34 +0100597 c = fio_crc32(p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200598
Jens Axboebfacf382010-06-18 14:29:52 +0200599 if (c == vh->crc32)
600 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200601
Jens Axboebfacf382010-06-18 14:29:52 +0200602 vc->name = "crc32";
603 vc->good_crc = &vh->crc32;
604 vc->bad_crc = &c;
605 vc->crc_len = 4;
606 log_verify_failure(hdr, vc);
607 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200608}
609
Jens Axboe936216f2010-06-18 13:44:11 +0200610static int verify_io_u_crc32c(struct verify_header *hdr, struct vcont *vc)
Jens Axboebac39e02008-06-11 20:46:19 +0200611{
Jens Axboe936216f2010-06-18 13:44:11 +0200612 void *p = io_u_verify_off(hdr, vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200613 struct vhdr_crc32 *vh = hdr_priv(hdr);
614 uint32_t c;
615
Jens Axboe936216f2010-06-18 13:44:11 +0200616 dprint(FD_VERIFY, "crc32c verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebac39e02008-06-11 20:46:19 +0200617
Jens Axboe25dfa842012-02-29 10:01:34 +0100618 c = fio_crc32c(p, hdr->len - hdr_size(hdr));
Jens Axboebac39e02008-06-11 20:46:19 +0200619
Jens Axboebfacf382010-06-18 14:29:52 +0200620 if (c == vh->crc32)
621 return 0;
Jens Axboebac39e02008-06-11 20:46:19 +0200622
Jens Axboebfacf382010-06-18 14:29:52 +0200623 vc->name = "crc32c";
624 vc->good_crc = &vh->crc32;
625 vc->bad_crc = &c;
626 vc->crc_len = 4;
627 log_verify_failure(hdr, vc);
628 return EILSEQ;
Jens Axboebac39e02008-06-11 20:46:19 +0200629}
630
Jens Axboe936216f2010-06-18 13:44:11 +0200631static int verify_io_u_md5(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200632{
Jens Axboe936216f2010-06-18 13:44:11 +0200633 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200634 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200635 uint32_t hash[MD5_HASH_WORDS];
Jens Axboe25dfa842012-02-29 10:01:34 +0100636 struct fio_md5_ctx md5_ctx = {
Jens Axboe8c432322007-07-27 13:16:24 +0200637 .hash = hash,
638 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200639
Jens Axboe936216f2010-06-18 13:44:11 +0200640 dprint(FD_VERIFY, "md5 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100641
Jens Axboe25dfa842012-02-29 10:01:34 +0100642 fio_md5_init(&md5_ctx);
643 fio_md5_update(&md5_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200644
Jens Axboebfacf382010-06-18 14:29:52 +0200645 if (!memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash)))
646 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200647
Jens Axboebfacf382010-06-18 14:29:52 +0200648 vc->name = "md5";
649 vc->good_crc = vh->md5_digest;
650 vc->bad_crc = md5_ctx.hash;
651 vc->crc_len = sizeof(hash);
652 log_verify_failure(hdr, vc);
653 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200654}
655
Jens Axboee8462bd2009-07-06 12:59:04 +0200656/*
657 * Push IO verification to a separate thread
658 */
Jens Axboee69fdf72014-07-23 16:11:43 +0200659int verify_io_u_async(struct thread_data *td, struct io_u **io_u_ptr)
Jens Axboee8462bd2009-07-06 12:59:04 +0200660{
Jens Axboee69fdf72014-07-23 16:11:43 +0200661 struct io_u *io_u = *io_u_ptr;
Jens Axboee8462bd2009-07-06 12:59:04 +0200662
Jens Axboee8462bd2009-07-06 12:59:04 +0200663 pthread_mutex_lock(&td->io_u_lock);
Steven Langd7ee2a72011-10-26 09:46:50 +0200664
Jens Axboee69fdf72014-07-23 16:11:43 +0200665 if (io_u->file)
666 put_file_log(td, io_u->file);
667
Radha Ramachandran0c412142009-11-03 21:45:31 +0100668 if (io_u->flags & IO_U_F_IN_CUR_DEPTH) {
669 td->cur_depth--;
670 io_u->flags &= ~IO_U_F_IN_CUR_DEPTH;
671 }
Jens Axboe2ae0b202013-05-28 14:16:55 +0200672 flist_add_tail(&io_u->verify_list, &td->verify_list);
Jens Axboee69fdf72014-07-23 16:11:43 +0200673 *io_u_ptr = NULL;
Jens Axboee8462bd2009-07-06 12:59:04 +0200674 pthread_mutex_unlock(&td->io_u_lock);
675
676 pthread_cond_signal(&td->verify_cond);
Jens Axboee8462bd2009-07-06 12:59:04 +0200677 return 0;
678}
679
Jens Axboe0d29de82010-09-01 13:54:15 +0200680static int verify_trimmed_io_u(struct thread_data *td, struct io_u *io_u)
681{
682 static char zero_buf[1024];
683 unsigned int this_len, len;
684 int ret = 0;
685 void *p;
686
687 if (!td->o.trim_zero)
688 return 0;
689
690 len = io_u->buflen;
691 p = io_u->buf;
692 do {
693 this_len = sizeof(zero_buf);
694 if (this_len > len)
695 this_len = len;
696 if (memcmp(p, zero_buf, this_len)) {
697 ret = EILSEQ;
698 break;
699 }
700 len -= this_len;
701 p += this_len;
702 } while (len);
703
704 if (!ret)
705 return 0;
706
Jens Axboea917a8b2010-09-02 13:23:20 +0200707 log_err("trim: verify failed at file %s offset %llu, length %lu"
708 ", block offset %lu\n",
709 io_u->file->file_name, io_u->offset, io_u->buflen,
Jens Axboe2f681242010-10-21 08:15:59 +0200710 (unsigned long) (p - io_u->buf));
Jens Axboe0d29de82010-09-01 13:54:15 +0200711 return ret;
712}
713
Andreas Gruenbacherbf654152014-06-24 22:13:50 +0200714static int verify_header(struct io_u *io_u, struct verify_header *hdr,
715 unsigned int hdr_num, unsigned int hdr_len)
Jens Axboef65d1c22012-02-22 20:11:57 +0100716{
717 void *p = hdr;
718 uint32_t crc;
719
Andreas Gruenbacherbf654152014-06-24 22:13:50 +0200720 if (hdr->magic != FIO_HDR_MAGIC) {
721 log_err("verify: bad magic header %x, wanted %x",
722 hdr->magic, FIO_HDR_MAGIC);
723 goto err;
724 }
Andreas Gruenbacher45474192014-06-26 19:25:30 +0200725 if (hdr->len != hdr_len) {
Andreas Gruenbacherbf654152014-06-24 22:13:50 +0200726 log_err("verify: bad header length %u, wanted %u",
727 hdr->len, hdr_len);
728 goto err;
729 }
730 if (hdr->rand_seed != io_u->rand_seed) {
731 log_err("verify: bad header rand_seed %"PRIu64
732 ", wanted %"PRIu64,
733 hdr->rand_seed, io_u->rand_seed);
734 goto err;
735 }
Jens Axboeae38c0d2012-02-23 10:31:07 +0100736
Jens Axboe25dfa842012-02-29 10:01:34 +0100737 crc = fio_crc32c(p, offsetof(struct verify_header, crc32));
Andreas Gruenbacherbf654152014-06-24 22:13:50 +0200738 if (crc != hdr->crc32) {
739 log_err("verify: bad header crc %x, calculated %x",
740 hdr->crc32, crc);
741 goto err;
742 }
743 return 0;
744
745err:
746 log_err(" at file %s offset %llu, length %u\n",
747 io_u->file->file_name,
748 io_u->offset + hdr_num * hdr_len, hdr_len);
749 return EILSEQ;
Jens Axboef65d1c22012-02-22 20:11:57 +0100750}
751
Jens Axboee69fdf72014-07-23 16:11:43 +0200752int verify_io_u(struct thread_data *td, struct io_u **io_u_ptr)
Jens Axboee29d1b72006-10-18 15:43:15 +0200753{
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200754 struct verify_header *hdr;
Jens Axboee69fdf72014-07-23 16:11:43 +0200755 struct io_u *io_u = *io_u_ptr;
Jens Axboe2b13e712011-01-19 14:04:16 -0700756 unsigned int header_size, hdr_inc, hdr_num = 0;
Jens Axboe95646102007-07-28 21:17:50 +0200757 void *p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200758 int ret;
759
Shawn Lewis1dcc0492007-07-27 08:02:45 +0200760 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
Jens Axboe36690c92007-03-26 10:23:34 +0200761 return 0;
Jens Axboe0d29de82010-09-01 13:54:15 +0200762 if (io_u->flags & IO_U_F_TRIMMED) {
763 ret = verify_trimmed_io_u(td, io_u);
764 goto done;
765 }
Jens Axboe36690c92007-03-26 10:23:34 +0200766
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100767 hdr_inc = get_hdr_inc(td, io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200768
Jens Axboea12a3b42007-08-09 10:20:54 +0200769 ret = 0;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100770 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
771 p += hdr_inc, hdr_num++) {
Jens Axboebfacf382010-06-18 14:29:52 +0200772 struct vcont vc = {
773 .io_u = io_u,
774 .hdr_num = hdr_num,
Jens Axboe7d9fb452011-01-11 22:16:49 +0100775 .td = td,
Jens Axboebfacf382010-06-18 14:29:52 +0200776 };
Jens Axboef00b2102012-11-30 09:39:02 +0100777 unsigned int verify_type;
Jens Axboe936216f2010-06-18 13:44:11 +0200778
Jens Axboef3e6cb92010-06-18 14:48:43 +0200779 if (ret && td->o.verify_fatal)
Jens Axboea12a3b42007-08-09 10:20:54 +0200780 break;
Jens Axboef3e6cb92010-06-18 14:48:43 +0200781
Jens Axboe2b13e712011-01-19 14:04:16 -0700782 header_size = __hdr_size(td->o.verify);
Jens Axboea59e1702007-07-30 08:53:27 +0200783 if (td->o.verify_offset)
Jens Axboe2b13e712011-01-19 14:04:16 -0700784 memswp(p, p + td->o.verify_offset, header_size);
Jens Axboe95646102007-07-28 21:17:50 +0200785 hdr = p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200786
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -0700787 /*
788 * Make rand_seed check pass when have verifysort or
789 * verify_backlog.
790 */
791 if (td->o.verifysort || (td->flags & TD_F_VER_BACKLOG))
792 io_u->rand_seed = hdr->rand_seed;
793
Andreas Gruenbacherbf654152014-06-24 22:13:50 +0200794 ret = verify_header(io_u, hdr, hdr_num, hdr_inc);
795 if (ret)
796 return ret;
Jens Axboe3f199b02007-08-09 10:16:31 +0200797
Jens Axboef00b2102012-11-30 09:39:02 +0100798 if (td->o.verify != VERIFY_NONE)
799 verify_type = td->o.verify;
800 else
801 verify_type = hdr->verify_type;
802
803 switch (verify_type) {
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200804 case VERIFY_MD5:
Jens Axboe936216f2010-06-18 13:44:11 +0200805 ret = verify_io_u_md5(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200806 break;
807 case VERIFY_CRC64:
Jens Axboe936216f2010-06-18 13:44:11 +0200808 ret = verify_io_u_crc64(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200809 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200810 case VERIFY_CRC32C:
Jens Axboe38455912008-08-04 15:35:26 +0200811 case VERIFY_CRC32C_INTEL:
Jens Axboe936216f2010-06-18 13:44:11 +0200812 ret = verify_io_u_crc32c(hdr, &vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200813 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200814 case VERIFY_CRC32:
Jens Axboe936216f2010-06-18 13:44:11 +0200815 ret = verify_io_u_crc32(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200816 break;
817 case VERIFY_CRC16:
Jens Axboe936216f2010-06-18 13:44:11 +0200818 ret = verify_io_u_crc16(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200819 break;
820 case VERIFY_CRC7:
Jens Axboe936216f2010-06-18 13:44:11 +0200821 ret = verify_io_u_crc7(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200822 break;
Jens Axboecd14cc12007-07-30 10:59:33 +0200823 case VERIFY_SHA256:
Jens Axboe936216f2010-06-18 13:44:11 +0200824 ret = verify_io_u_sha256(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200825 break;
826 case VERIFY_SHA512:
Jens Axboe936216f2010-06-18 13:44:11 +0200827 ret = verify_io_u_sha512(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200828 break;
Jens Axboe844ea602014-02-20 13:21:45 -0800829 case VERIFY_XXHASH:
830 ret = verify_io_u_xxhash(hdr, &vc);
831 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200832 case VERIFY_META:
Jens Axboe92bf48d2011-01-14 21:20:42 +0100833 ret = verify_io_u_meta(hdr, &vc);
Shawn Lewis7437ee82007-08-02 21:05:58 +0200834 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200835 case VERIFY_SHA1:
Jens Axboe936216f2010-06-18 13:44:11 +0200836 ret = verify_io_u_sha1(hdr, &vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200837 break;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100838 case VERIFY_PATTERN:
839 ret = verify_io_u_pattern(hdr, &vc);
840 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200841 default:
842 log_err("Bad verify type %u\n", hdr->verify_type);
Jens Axboed16d4e02007-09-06 16:16:44 +0200843 ret = EINVAL;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200844 }
Jens Axboef00b2102012-11-30 09:39:02 +0100845
846 if (ret && verify_type != hdr->verify_type)
847 log_err("fio: verify type mismatch (%u media, %u given)\n",
848 hdr->verify_type, verify_type);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200849 }
Jens Axboea7dfe862007-03-12 10:05:08 +0100850
Jens Axboe0d29de82010-09-01 13:54:15 +0200851done:
Jens Axboef3e6cb92010-06-18 14:48:43 +0200852 if (ret && td->o.verify_fatal)
Jens Axboe3b44e8b2014-07-09 11:24:12 +0200853 fio_mark_td_terminate(td);
Jens Axboef3e6cb92010-06-18 14:48:43 +0200854
Jens Axboea12a3b42007-08-09 10:20:54 +0200855 return ret;
Jens Axboee29d1b72006-10-18 15:43:15 +0200856}
857
Shawn Lewis7437ee82007-08-02 21:05:58 +0200858static void fill_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100859 struct io_u *io_u, unsigned int header_num)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200860{
861 struct vhdr_meta *vh = hdr_priv(hdr);
862
863 vh->thread = td->thread_number;
864
865 vh->time_sec = io_u->start_time.tv_sec;
866 vh->time_usec = io_u->start_time.tv_usec;
867
Juan Casseda0a7bd2013-09-17 14:06:12 -0700868 vh->numberio = io_u->numberio;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200869
870 vh->offset = io_u->offset + header_num * td->o.verify_interval;
871}
872
Jens Axboe844ea602014-02-20 13:21:45 -0800873static void fill_xxhash(struct verify_header *hdr, void *p, unsigned int len)
874{
875 struct vhdr_xxhash *vh = hdr_priv(hdr);
876 void *state;
877
878 state = XXH32_init(1);
879 XXH32_update(state, p, len);
880 vh->hash = XXH32_digest(state);
881}
882
Jens Axboecd14cc12007-07-30 10:59:33 +0200883static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
884{
Jens Axboe546dfd92007-07-30 12:23:05 +0200885 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100886 struct fio_sha512_ctx sha512_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200887 .buf = vh->sha512,
Jens Axboecd14cc12007-07-30 10:59:33 +0200888 };
889
Jens Axboe25dfa842012-02-29 10:01:34 +0100890 fio_sha512_init(&sha512_ctx);
891 fio_sha512_update(&sha512_ctx, p, len);
Jens Axboecd14cc12007-07-30 10:59:33 +0200892}
893
894static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
895{
Jens Axboe546dfd92007-07-30 12:23:05 +0200896 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100897 struct fio_sha256_ctx sha256_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200898 .buf = vh->sha256,
Jens Axboecd14cc12007-07-30 10:59:33 +0200899 };
900
Jens Axboe25dfa842012-02-29 10:01:34 +0100901 fio_sha256_init(&sha256_ctx);
902 fio_sha256_update(&sha256_ctx, p, len);
Jens Axboecd14cc12007-07-30 10:59:33 +0200903}
904
Jens Axboe7c353ce2009-08-09 22:40:33 +0200905static void fill_sha1(struct verify_header *hdr, void *p, unsigned int len)
906{
907 struct vhdr_sha1 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100908 struct fio_sha1_ctx sha1_ctx = {
Jens Axboe7c353ce2009-08-09 22:40:33 +0200909 .H = vh->sha1,
910 };
911
Jens Axboe25dfa842012-02-29 10:01:34 +0100912 fio_sha1_init(&sha1_ctx);
913 fio_sha1_update(&sha1_ctx, p, len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200914}
915
Jens Axboe1e154bd2007-07-27 09:52:40 +0200916static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
917{
Jens Axboe546dfd92007-07-30 12:23:05 +0200918 struct vhdr_crc7 *vh = hdr_priv(hdr);
919
Jens Axboe25dfa842012-02-29 10:01:34 +0100920 vh->crc7 = fio_crc7(p, len);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200921}
922
Jens Axboe969f7ed2007-07-27 09:07:17 +0200923static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
924{
Jens Axboe546dfd92007-07-30 12:23:05 +0200925 struct vhdr_crc16 *vh = hdr_priv(hdr);
926
Jens Axboe25dfa842012-02-29 10:01:34 +0100927 vh->crc16 = fio_crc16(p, len);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200928}
929
Jens Axboee29d1b72006-10-18 15:43:15 +0200930static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
931{
Jens Axboe546dfd92007-07-30 12:23:05 +0200932 struct vhdr_crc32 *vh = hdr_priv(hdr);
933
Jens Axboe25dfa842012-02-29 10:01:34 +0100934 vh->crc32 = fio_crc32(p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200935}
936
Jens Axboebac39e02008-06-11 20:46:19 +0200937static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
938{
939 struct vhdr_crc32 *vh = hdr_priv(hdr);
940
Jens Axboe25dfa842012-02-29 10:01:34 +0100941 vh->crc32 = fio_crc32c(p, len);
Jens Axboebac39e02008-06-11 20:46:19 +0200942}
943
Jens Axboed77a7af2007-07-27 15:35:06 +0200944static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
945{
Jens Axboe546dfd92007-07-30 12:23:05 +0200946 struct vhdr_crc64 *vh = hdr_priv(hdr);
947
Jens Axboe25dfa842012-02-29 10:01:34 +0100948 vh->crc64 = fio_crc64(p, len);
Jens Axboed77a7af2007-07-27 15:35:06 +0200949}
950
Jens Axboee29d1b72006-10-18 15:43:15 +0200951static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
952{
Jens Axboe546dfd92007-07-30 12:23:05 +0200953 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100954 struct fio_md5_ctx md5_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200955 .hash = (uint32_t *) vh->md5_digest,
Jens Axboe8c432322007-07-27 13:16:24 +0200956 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200957
Jens Axboe25dfa842012-02-29 10:01:34 +0100958 fio_md5_init(&md5_ctx);
959 fio_md5_update(&md5_ctx, p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200960}
961
Jens Axboe7d9fb452011-01-11 22:16:49 +0100962static void populate_hdr(struct thread_data *td, struct io_u *io_u,
963 struct verify_header *hdr, unsigned int header_num,
964 unsigned int header_len)
965{
966 unsigned int data_len;
967 void *data, *p;
968
969 p = (void *) hdr;
970
Jens Axboed3a173a2012-02-23 08:23:18 +0100971 hdr->magic = FIO_HDR_MAGIC;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100972 hdr->verify_type = td->o.verify;
Jens Axboed3a173a2012-02-23 08:23:18 +0100973 hdr->len = header_len;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100974 hdr->rand_seed = io_u->rand_seed;
Jens Axboe25dfa842012-02-29 10:01:34 +0100975 hdr->crc32 = fio_crc32c(p, offsetof(struct verify_header, crc32));
Jens Axboef65d1c22012-02-22 20:11:57 +0100976
Jens Axboe7d9fb452011-01-11 22:16:49 +0100977 data_len = header_len - hdr_size(hdr);
978
979 data = p + hdr_size(hdr);
980 switch (td->o.verify) {
981 case VERIFY_MD5:
982 dprint(FD_VERIFY, "fill md5 io_u %p, len %u\n",
983 io_u, hdr->len);
984 fill_md5(hdr, data, data_len);
985 break;
986 case VERIFY_CRC64:
987 dprint(FD_VERIFY, "fill crc64 io_u %p, len %u\n",
988 io_u, hdr->len);
989 fill_crc64(hdr, data, data_len);
990 break;
991 case VERIFY_CRC32C:
992 case VERIFY_CRC32C_INTEL:
993 dprint(FD_VERIFY, "fill crc32c io_u %p, len %u\n",
994 io_u, hdr->len);
995 fill_crc32c(hdr, data, data_len);
996 break;
997 case VERIFY_CRC32:
998 dprint(FD_VERIFY, "fill crc32 io_u %p, len %u\n",
999 io_u, hdr->len);
1000 fill_crc32(hdr, data, data_len);
1001 break;
1002 case VERIFY_CRC16:
1003 dprint(FD_VERIFY, "fill crc16 io_u %p, len %u\n",
1004 io_u, hdr->len);
1005 fill_crc16(hdr, data, data_len);
1006 break;
1007 case VERIFY_CRC7:
1008 dprint(FD_VERIFY, "fill crc7 io_u %p, len %u\n",
1009 io_u, hdr->len);
1010 fill_crc7(hdr, data, data_len);
1011 break;
1012 case VERIFY_SHA256:
1013 dprint(FD_VERIFY, "fill sha256 io_u %p, len %u\n",
1014 io_u, hdr->len);
1015 fill_sha256(hdr, data, data_len);
1016 break;
1017 case VERIFY_SHA512:
1018 dprint(FD_VERIFY, "fill sha512 io_u %p, len %u\n",
1019 io_u, hdr->len);
1020 fill_sha512(hdr, data, data_len);
1021 break;
Jens Axboe844ea602014-02-20 13:21:45 -08001022 case VERIFY_XXHASH:
1023 dprint(FD_VERIFY, "fill xxhash io_u %p, len %u\n",
1024 io_u, hdr->len);
1025 fill_xxhash(hdr, data, data_len);
1026 break;
Jens Axboe7d9fb452011-01-11 22:16:49 +01001027 case VERIFY_META:
1028 dprint(FD_VERIFY, "fill meta io_u %p, len %u\n",
1029 io_u, hdr->len);
1030 fill_meta(hdr, td, io_u, header_num);
1031 break;
1032 case VERIFY_SHA1:
1033 dprint(FD_VERIFY, "fill sha1 io_u %p, len %u\n",
1034 io_u, hdr->len);
1035 fill_sha1(hdr, data, data_len);
1036 break;
Jens Axboe92bf48d2011-01-14 21:20:42 +01001037 case VERIFY_PATTERN:
1038 /* nothing to do here */
1039 break;
Jens Axboe7d9fb452011-01-11 22:16:49 +01001040 default:
1041 log_err("fio: bad verify type: %d\n", td->o.verify);
1042 assert(0);
1043 }
1044 if (td->o.verify_offset)
1045 memswp(p, p + td->o.verify_offset, hdr_size(hdr));
1046}
1047
Jens Axboee29d1b72006-10-18 15:43:15 +02001048/*
1049 * fill body of io_u->buf with random data and add a header with the
Jens Axboec50ca7b2011-01-12 08:31:54 +01001050 * checksum of choice
Jens Axboee29d1b72006-10-18 15:43:15 +02001051 */
1052void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
1053{
Jens Axboe9cc3d152007-03-26 10:32:30 +02001054 if (td->o.verify == VERIFY_NULL)
1055 return;
1056
Juan Casseda0a7bd2013-09-17 14:06:12 -07001057 io_u->numberio = td->io_issues[io_u->ddir];
1058
Jens Axboec50ca7b2011-01-12 08:31:54 +01001059 fill_pattern_headers(td, io_u, 0, 0);
Jens Axboee29d1b72006-10-18 15:43:15 +02001060}
1061
1062int get_next_verify(struct thread_data *td, struct io_u *io_u)
1063{
Jens Axboe8de8f042007-03-27 10:36:12 +02001064 struct io_piece *ipo = NULL;
Jens Axboee29d1b72006-10-18 15:43:15 +02001065
Jens Axboed2d7fa52007-02-19 13:21:35 +01001066 /*
1067 * this io_u is from a requeue, we already filled the offsets
1068 */
1069 if (io_u->file)
1070 return 0;
1071
Jens Axboe8de8f042007-03-27 10:36:12 +02001072 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
1073 struct rb_node *n = rb_first(&td->io_hist_tree);
1074
Jens Axboe4b878982007-03-26 09:32:22 +02001075 ipo = rb_entry(n, struct io_piece, rb_node);
Jens Axboef9401282014-02-06 12:17:37 -07001076
1077 /*
1078 * Ensure that the associated IO has completed
1079 */
1080 read_barrier();
1081 if (ipo->flags & IP_F_IN_FLIGHT)
1082 goto nothing;
1083
Jens Axboe4b878982007-03-26 09:32:22 +02001084 rb_erase(n, &td->io_hist_tree);
Jens Axboea917a8b2010-09-02 13:23:20 +02001085 assert(ipo->flags & IP_F_ONRB);
1086 ipo->flags &= ~IP_F_ONRB;
Jens Axboe01743ee2008-06-02 12:19:19 +02001087 } else if (!flist_empty(&td->io_hist_list)) {
Jens Axboe12dbd062014-07-03 21:19:57 -06001088 ipo = flist_first_entry(&td->io_hist_list, struct io_piece, list);
Jens Axboef9401282014-02-06 12:17:37 -07001089
1090 /*
1091 * Ensure that the associated IO has completed
1092 */
1093 read_barrier();
1094 if (ipo->flags & IP_F_IN_FLIGHT)
1095 goto nothing;
1096
Jens Axboe01743ee2008-06-02 12:19:19 +02001097 flist_del(&ipo->list);
Jens Axboea917a8b2010-09-02 13:23:20 +02001098 assert(ipo->flags & IP_F_ONLIST);
1099 ipo->flags &= ~IP_F_ONLIST;
Jens Axboe8de8f042007-03-27 10:36:12 +02001100 }
Jens Axboee29d1b72006-10-18 15:43:15 +02001101
Jens Axboe8de8f042007-03-27 10:36:12 +02001102 if (ipo) {
Jens Axboe0d29de82010-09-01 13:54:15 +02001103 td->io_hist_len--;
1104
Jens Axboee29d1b72006-10-18 15:43:15 +02001105 io_u->offset = ipo->offset;
1106 io_u->buflen = ipo->len;
Juan Casseda0a7bd2013-09-17 14:06:12 -07001107 io_u->numberio = ipo->numberio;
Jens Axboe36167d82007-02-18 05:41:31 +01001108 io_u->file = ipo->file;
Jens Axboe82af2a72012-03-13 13:45:58 +01001109 io_u->flags |= IO_U_F_VER_LIST;
Jens Axboe97af62c2007-05-22 11:12:13 +02001110
Jens Axboe0d29de82010-09-01 13:54:15 +02001111 if (ipo->flags & IP_F_TRIMMED)
1112 io_u->flags |= IO_U_F_TRIMMED;
1113
Jens Axboed6aed792009-06-03 08:41:15 +02001114 if (!fio_file_open(io_u->file)) {
Jens Axboe97af62c2007-05-22 11:12:13 +02001115 int r = td_io_open_file(td, io_u->file);
1116
Jens Axboebd6f78b2008-02-01 20:27:52 +01001117 if (r) {
1118 dprint(FD_VERIFY, "failed file %s open\n",
1119 io_u->file->file_name);
Jens Axboe97af62c2007-05-22 11:12:13 +02001120 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +01001121 }
Jens Axboe97af62c2007-05-22 11:12:13 +02001122 }
1123
1124 get_file(ipo->file);
Jens Axboed6aed792009-06-03 08:41:15 +02001125 assert(fio_file_open(io_u->file));
Jens Axboee29d1b72006-10-18 15:43:15 +02001126 io_u->ddir = DDIR_READ;
Jens Axboe36167d82007-02-18 05:41:31 +01001127 io_u->xfer_buf = io_u->buf;
1128 io_u->xfer_buflen = io_u->buflen;
Jens Axboe0d29de82010-09-01 13:54:15 +02001129
1130 remove_trim_entry(td, ipo);
Jens Axboee29d1b72006-10-18 15:43:15 +02001131 free(ipo);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001132 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -07001133
1134 if (!td->o.verify_pattern_bytes) {
1135 io_u->rand_seed = __rand(&td->__verify_state);
1136 if (sizeof(int) != sizeof(long *))
1137 io_u->rand_seed *= __rand(&td->__verify_state);
1138 }
Jens Axboee29d1b72006-10-18 15:43:15 +02001139 return 0;
1140 }
1141
Jens Axboef9401282014-02-06 12:17:37 -07001142nothing:
Jens Axboebd6f78b2008-02-01 20:27:52 +01001143 dprint(FD_VERIFY, "get_next_verify: empty\n");
Jens Axboee29d1b72006-10-18 15:43:15 +02001144 return 1;
1145}
Jens Axboee8462bd2009-07-06 12:59:04 +02001146
Jens Axboedc5bfbb2013-04-10 22:23:40 +02001147void fio_verify_init(struct thread_data *td)
1148{
1149 if (td->o.verify == VERIFY_CRC32C_INTEL ||
1150 td->o.verify == VERIFY_CRC32C) {
1151 crc32c_intel_probe();
1152 }
1153}
1154
Jens Axboee8462bd2009-07-06 12:59:04 +02001155static void *verify_async_thread(void *data)
1156{
1157 struct thread_data *td = data;
1158 struct io_u *io_u;
1159 int ret = 0;
1160
1161 if (td->o.verify_cpumask_set &&
1162 fio_setaffinity(td->pid, td->o.verify_cpumask)) {
1163 log_err("fio: failed setting verify thread affinity\n");
1164 goto done;
1165 }
1166
1167 do {
Jens Axboee53ab272009-07-06 13:43:46 +02001168 FLIST_HEAD(list);
1169
Jens Axboee8462bd2009-07-06 12:59:04 +02001170 read_barrier();
1171 if (td->verify_thread_exit)
1172 break;
1173
1174 pthread_mutex_lock(&td->io_u_lock);
1175
1176 while (flist_empty(&td->verify_list) &&
1177 !td->verify_thread_exit) {
Jens Axboeb36e2982009-07-06 14:12:52 +02001178 ret = pthread_cond_wait(&td->verify_cond,
1179 &td->io_u_lock);
Jens Axboee8462bd2009-07-06 12:59:04 +02001180 if (ret) {
1181 pthread_mutex_unlock(&td->io_u_lock);
1182 break;
1183 }
1184 }
1185
Jens Axboee53ab272009-07-06 13:43:46 +02001186 flist_splice_init(&td->verify_list, &list);
Jens Axboee8462bd2009-07-06 12:59:04 +02001187 pthread_mutex_unlock(&td->io_u_lock);
1188
Jens Axboee53ab272009-07-06 13:43:46 +02001189 if (flist_empty(&list))
1190 continue;
1191
1192 while (!flist_empty(&list)) {
Jens Axboe12dbd062014-07-03 21:19:57 -06001193 io_u = flist_first_entry(&list, struct io_u, verify_list);
Jens Axboee69fdf72014-07-23 16:11:43 +02001194 flist_del_init(&io_u->verify_list);
Jens Axboee53ab272009-07-06 13:43:46 +02001195
Jens Axboee69fdf72014-07-23 16:11:43 +02001196 io_u->flags |= IO_U_F_NO_FILE_PUT;
1197 ret = verify_io_u(td, &io_u);
1198
Jens Axboee53ab272009-07-06 13:43:46 +02001199 put_io_u(td, io_u);
Jens Axboed561f2a2009-07-06 13:51:05 +02001200 if (!ret)
1201 continue;
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001202 if (td_non_fatal_error(td, ERROR_TYPE_VERIFY_BIT, ret)) {
Jens Axboed561f2a2009-07-06 13:51:05 +02001203 update_error_count(td, ret);
1204 td_clear_error(td);
1205 ret = 0;
1206 }
Jens Axboee53ab272009-07-06 13:43:46 +02001207 }
Jens Axboee8462bd2009-07-06 12:59:04 +02001208 } while (!ret);
1209
Jens Axboed561f2a2009-07-06 13:51:05 +02001210 if (ret) {
1211 td_verror(td, ret, "async_verify");
Jens Axboef3e6cb92010-06-18 14:48:43 +02001212 if (td->o.verify_fatal)
Jens Axboe3b44e8b2014-07-09 11:24:12 +02001213 fio_mark_td_terminate(td);
Jens Axboed561f2a2009-07-06 13:51:05 +02001214 }
1215
Jens Axboee8462bd2009-07-06 12:59:04 +02001216done:
1217 pthread_mutex_lock(&td->io_u_lock);
1218 td->nr_verify_threads--;
1219 pthread_mutex_unlock(&td->io_u_lock);
1220
1221 pthread_cond_signal(&td->free_cond);
1222 return NULL;
1223}
1224
1225int verify_async_init(struct thread_data *td)
1226{
1227 int i, ret;
bart Van Assche304a47c2010-08-01 21:31:26 +02001228 pthread_attr_t attr;
1229
1230 pthread_attr_init(&attr);
1231 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
Jens Axboee8462bd2009-07-06 12:59:04 +02001232
1233 td->verify_thread_exit = 0;
1234
1235 td->verify_threads = malloc(sizeof(pthread_t) * td->o.verify_async);
1236 for (i = 0; i < td->o.verify_async; i++) {
bart Van Assche304a47c2010-08-01 21:31:26 +02001237 ret = pthread_create(&td->verify_threads[i], &attr,
Jens Axboee8462bd2009-07-06 12:59:04 +02001238 verify_async_thread, td);
1239 if (ret) {
1240 log_err("fio: async verify creation failed: %s\n",
1241 strerror(ret));
1242 break;
1243 }
1244 ret = pthread_detach(td->verify_threads[i]);
1245 if (ret) {
1246 log_err("fio: async verify thread detach failed: %s\n",
1247 strerror(ret));
1248 break;
1249 }
1250 td->nr_verify_threads++;
1251 }
1252
bart Van Assche304a47c2010-08-01 21:31:26 +02001253 pthread_attr_destroy(&attr);
1254
Jens Axboee8462bd2009-07-06 12:59:04 +02001255 if (i != td->o.verify_async) {
Jens Axboee40823b2009-07-06 14:28:21 +02001256 log_err("fio: only %d verify threads started, exiting\n", i);
Jens Axboee8462bd2009-07-06 12:59:04 +02001257 td->verify_thread_exit = 1;
1258 write_barrier();
1259 pthread_cond_broadcast(&td->verify_cond);
1260 return 1;
1261 }
1262
1263 return 0;
1264}
1265
1266void verify_async_exit(struct thread_data *td)
1267{
1268 td->verify_thread_exit = 1;
1269 write_barrier();
1270 pthread_cond_broadcast(&td->verify_cond);
1271
1272 pthread_mutex_lock(&td->io_u_lock);
1273
1274 while (td->nr_verify_threads)
1275 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1276
1277 pthread_mutex_unlock(&td->io_u_lock);
1278 free(td->verify_threads);
1279 td->verify_threads = NULL;
1280}