blob: 6dd7f6a0285df0613d15d6590f9a604e90cd6b49 [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 Axboee8462bd2009-07-06 12:59:04 +020013#include "smalloc.h"
Jens Axboe0d29de82010-09-01 13:54:15 +020014#include "trim.h"
Jens Axboe637ef8d2010-06-21 20:39:38 +020015#include "lib/rand.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 Axboecd14cc12007-07-30 10:59:33 +020026
Jens Axboe7d9fb452011-01-11 22:16:49 +010027static 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)
Jens Axboe90059d62007-07-30 09:33:12 +020032{
33 switch (td->o.verify_pattern_bytes) {
34 case 0:
Jens Axboebd6f78b2008-02-01 20:27:52 +010035 dprint(FD_VERIFY, "fill random bytes len=%u\n", len);
Jens Axboe7d9fb452011-01-11 22:16:49 +010036 if (use_seed)
37 __fill_random_buf(p, len, seed);
38 else
Jens Axboe3545a102011-08-31 15:20:15 -060039 io_u->rand_seed = fill_random_buf(&td->buf_state, p, len);
Jens Axboe90059d62007-07-30 09:33:12 +020040 break;
41 case 1:
Radha Ramachandran10e8a7b2010-07-14 17:39:05 -060042 if (io_u->buf_filled_len >= len) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020043 dprint(FD_VERIFY, "using already filled verify pattern b=0 len=%u\n", len);
44 return;
45 }
Jens Axboebd6f78b2008-02-01 20:27:52 +010046 dprint(FD_VERIFY, "fill verify pattern b=0 len=%u\n", len);
Radha Ramachandran0e92f872009-10-27 20:14:27 +010047 memset(p, td->o.verify_pattern[0], len);
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020048 io_u->buf_filled_len = len;
Jens Axboe90059d62007-07-30 09:33:12 +020049 break;
Radha Ramachandran0e92f872009-10-27 20:14:27 +010050 default: {
51 unsigned int i = 0, size = 0;
Jens Axboe90059d62007-07-30 09:33:12 +020052 unsigned char *b = p;
53
Radha Ramachandran10e8a7b2010-07-14 17:39:05 -060054 if (io_u->buf_filled_len >= len) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020055 dprint(FD_VERIFY, "using already filled verify pattern b=%d len=%u\n",
56 td->o.verify_pattern_bytes, len);
57 return;
58 }
Jens Axboe81f03662012-02-02 09:20:09 +010059
Jens Axboebd6f78b2008-02-01 20:27:52 +010060 dprint(FD_VERIFY, "fill verify pattern b=%d len=%u\n",
61 td->o.verify_pattern_bytes, len);
62
Jens Axboe90059d62007-07-30 09:33:12 +020063 while (i < len) {
Radha Ramachandran0e92f872009-10-27 20:14:27 +010064 size = td->o.verify_pattern_bytes;
65 if (size > (len - i))
66 size = len - i;
67 memcpy(b+i, td->o.verify_pattern, size);
68 i += size;
Jens Axboe90059d62007-07-30 09:33:12 +020069 }
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020070 io_u->buf_filled_len = len;
Jens Axboe90059d62007-07-30 09:33:12 +020071 break;
72 }
73 }
74}
75
Jens Axboecfbcd0d2011-01-14 14:49:20 +010076static unsigned int get_hdr_inc(struct thread_data *td, struct io_u *io_u)
77{
78 unsigned int hdr_inc;
79
80 hdr_inc = io_u->buflen;
Jens Axboe8a99fdf2012-03-06 19:24:49 +010081 if (td->o.verify_interval && td->o.verify_interval <= io_u->buflen)
Jens Axboecfbcd0d2011-01-14 14:49:20 +010082 hdr_inc = td->o.verify_interval;
83
84 return hdr_inc;
85}
86
Jens Axboec50ca7b2011-01-12 08:31:54 +010087static void fill_pattern_headers(struct thread_data *td, struct io_u *io_u,
88 unsigned long seed, int use_seed)
89{
90 unsigned int hdr_inc, header_num;
91 struct verify_header *hdr;
92 void *p = io_u->buf;
93
94 fill_pattern(td, p, io_u->buflen, io_u, seed, use_seed);
95
Jens Axboecfbcd0d2011-01-14 14:49:20 +010096 hdr_inc = get_hdr_inc(td, io_u);
Jens Axboec50ca7b2011-01-12 08:31:54 +010097 header_num = 0;
98 for (; p < io_u->buf + io_u->buflen; p += hdr_inc) {
99 hdr = p;
100 populate_hdr(td, io_u, hdr, header_num, hdr_inc);
101 header_num++;
102 }
103}
104
Jens Axboe4764aec2007-08-23 09:03:38 +0200105static void memswp(void *buf1, void *buf2, unsigned int len)
Shawn Lewis546a9142007-07-28 21:11:37 +0200106{
Shawn Lewisdee6de72007-08-02 22:17:52 +0200107 char swap[200];
108
109 assert(len <= sizeof(swap));
Jens Axboe90059d62007-07-30 09:33:12 +0200110
Shawn Lewis546a9142007-07-28 21:11:37 +0200111 memcpy(&swap, buf1, len);
112 memcpy(buf1, buf2, len);
113 memcpy(buf2, &swap, len);
114}
115
Jens Axboee29d1b72006-10-18 15:43:15 +0200116static void hexdump(void *buffer, int len)
117{
118 unsigned char *p = buffer;
119 int i;
120
121 for (i = 0; i < len; i++)
Jens Axboebfacf382010-06-18 14:29:52 +0200122 log_err("%02x", p[i]);
123 log_err("\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200124}
125
Jens Axboed9f2caf2007-07-28 21:22:03 +0200126/*
Jens Axboe87677832007-07-30 12:08:14 +0200127 * Prepare for seperation of verify_header and checksum header
128 */
Jens Axboe546dfd92007-07-30 12:23:05 +0200129static inline unsigned int __hdr_size(int verify_type)
Jens Axboe87677832007-07-30 12:08:14 +0200130{
Bruce Cran03e20d62011-01-02 20:14:54 +0100131 unsigned int len = 0;
Jens Axboe87677832007-07-30 12:08:14 +0200132
Jens Axboe546dfd92007-07-30 12:23:05 +0200133 switch (verify_type) {
134 case VERIFY_NONE:
135 case VERIFY_NULL:
136 len = 0;
137 break;
138 case VERIFY_MD5:
139 len = sizeof(struct vhdr_md5);
140 break;
141 case VERIFY_CRC64:
142 len = sizeof(struct vhdr_crc64);
143 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200144 case VERIFY_CRC32C:
Jens Axboe546dfd92007-07-30 12:23:05 +0200145 case VERIFY_CRC32:
Jens Axboe38455912008-08-04 15:35:26 +0200146 case VERIFY_CRC32C_INTEL:
Jens Axboe546dfd92007-07-30 12:23:05 +0200147 len = sizeof(struct vhdr_crc32);
148 break;
149 case VERIFY_CRC16:
150 len = sizeof(struct vhdr_crc16);
151 break;
152 case VERIFY_CRC7:
153 len = sizeof(struct vhdr_crc7);
154 break;
155 case VERIFY_SHA256:
156 len = sizeof(struct vhdr_sha256);
157 break;
158 case VERIFY_SHA512:
159 len = sizeof(struct vhdr_sha512);
160 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200161 case VERIFY_META:
162 len = sizeof(struct vhdr_meta);
163 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200164 case VERIFY_SHA1:
165 len = sizeof(struct vhdr_sha1);
166 break;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100167 case VERIFY_PATTERN:
168 len = 0;
169 break;
Jens Axboe546dfd92007-07-30 12:23:05 +0200170 default:
171 log_err("fio: unknown verify header!\n");
172 assert(0);
173 }
174
175 return len + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200176}
177
178static inline unsigned int hdr_size(struct verify_header *hdr)
179{
Jens Axboe546dfd92007-07-30 12:23:05 +0200180 return __hdr_size(hdr->verify_type);
181}
182
183static void *hdr_priv(struct verify_header *hdr)
184{
185 void *priv = hdr;
186
187 return priv + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200188}
189
190/*
Jens Axboe936216f2010-06-18 13:44:11 +0200191 * Verify container, pass info to verify handlers and allow them to
192 * pass info back in case of error
193 */
194struct vcont {
195 /*
196 * Input
197 */
198 struct io_u *io_u;
199 unsigned int hdr_num;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100200 struct thread_data *td;
Jens Axboe936216f2010-06-18 13:44:11 +0200201
202 /*
203 * Output, only valid in case of error
204 */
Jens Axboebfacf382010-06-18 14:29:52 +0200205 const char *name;
206 void *good_crc;
207 void *bad_crc;
Jens Axboe936216f2010-06-18 13:44:11 +0200208 unsigned int crc_len;
209};
210
Jens Axboec50ca7b2011-01-12 08:31:54 +0100211static void dump_buf(char *buf, unsigned int len, unsigned long long offset,
212 const char *type, struct fio_file *f)
Jens Axboe7d9fb452011-01-11 22:16:49 +0100213{
Jens Axboe6f260b32011-01-13 18:57:54 +0100214 char *ptr, fname[256];
Jens Axboe7d9fb452011-01-11 22:16:49 +0100215 int ret, fd;
216
Jens Axboe6f260b32011-01-13 18:57:54 +0100217 ptr = strdup(f->file_name);
218 strcpy(fname, basename(ptr));
Jens Axboec50ca7b2011-01-12 08:31:54 +0100219
220 sprintf(fname + strlen(fname), ".%llu.%s", offset, type);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100221
222 fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 0644);
223 if (fd < 0) {
224 perror("open verify buf file");
225 return;
226 }
227
228 while (len) {
229 ret = write(fd, buf, len);
230 if (!ret)
231 break;
232 else if (ret < 0) {
233 perror("write verify buf file");
234 break;
235 }
236 len -= ret;
237 buf += ret;
238 }
239
240 close(fd);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100241 log_err(" %s data dumped as %s\n", type, fname);
Jens Axboe6f260b32011-01-13 18:57:54 +0100242 free(ptr);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100243}
244
Jens Axboec50ca7b2011-01-12 08:31:54 +0100245/*
246 * Dump the contents of the read block and re-generate the correct data
247 * and dump that too.
248 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100249static void dump_verify_buffers(struct verify_header *hdr, struct vcont *vc)
250{
251 struct thread_data *td = vc->td;
252 struct io_u *io_u = vc->io_u;
253 unsigned long hdr_offset;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100254 struct io_u dummy;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100255 void *buf;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100256
Steven Lang0dce9bc2011-10-25 22:41:05 +0200257 if (!td->o.verify_dump)
258 return;
259
Jens Axboec50ca7b2011-01-12 08:31:54 +0100260 /*
261 * Dump the contents we just read off disk
262 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100263 hdr_offset = vc->hdr_num * hdr->len;
264
Jens Axboec50ca7b2011-01-12 08:31:54 +0100265 dump_buf(io_u->buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
266 "received", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100267
Jens Axboec50ca7b2011-01-12 08:31:54 +0100268 /*
269 * Allocate a new buf and re-generate the original data
270 */
271 buf = malloc(io_u->buflen);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100272 dummy = *io_u;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100273 dummy.buf = buf;
Jens Axboe4aae38a2011-01-12 08:59:12 +0100274 dummy.rand_seed = hdr->rand_seed;
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100275 dummy.buf_filled_len = 0;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100276
Jens Axboec50ca7b2011-01-12 08:31:54 +0100277 fill_pattern_headers(td, &dummy, hdr->rand_seed, 1);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100278
Jens Axboec50ca7b2011-01-12 08:31:54 +0100279 dump_buf(buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
280 "expected", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100281 free(buf);
282}
283
Jens Axboebfacf382010-06-18 14:29:52 +0200284static void log_verify_failure(struct verify_header *hdr, struct vcont *vc)
285{
286 unsigned long long offset;
287
288 offset = vc->io_u->offset;
289 offset += vc->hdr_num * hdr->len;
Jens Axboe32c17ad2010-06-18 14:32:21 +0200290 log_err("%.8s: verify failed at file %s offset %llu, length %u\n",
291 vc->name, vc->io_u->file->file_name, offset, hdr->len);
Jens Axboebfacf382010-06-18 14:29:52 +0200292
293 if (vc->good_crc && vc->bad_crc) {
294 log_err(" Expected CRC: ");
295 hexdump(vc->good_crc, vc->crc_len);
296 log_err(" Received CRC: ");
297 hexdump(vc->bad_crc, vc->crc_len);
298 }
Jens Axboe7d9fb452011-01-11 22:16:49 +0100299
300 dump_verify_buffers(hdr, vc);
Jens Axboebfacf382010-06-18 14:29:52 +0200301}
302
Jens Axboe936216f2010-06-18 13:44:11 +0200303/*
Jens Axboed9f2caf2007-07-28 21:22:03 +0200304 * Return data area 'header_num'
305 */
Jens Axboe936216f2010-06-18 13:44:11 +0200306static inline void *io_u_verify_off(struct verify_header *hdr, struct vcont *vc)
Jens Axboed9f2caf2007-07-28 21:22:03 +0200307{
Jens Axboe936216f2010-06-18 13:44:11 +0200308 return vc->io_u->buf + vc->hdr_num * hdr->len + hdr_size(hdr);
Jens Axboed9f2caf2007-07-28 21:22:03 +0200309}
310
Jens Axboe92bf48d2011-01-14 21:20:42 +0100311static unsigned int hweight8(unsigned int w)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200312{
Jens Axboe92bf48d2011-01-14 21:20:42 +0100313 unsigned int res = w - ((w >> 1) & 0x55);
314
315 res = (res & 0x33) + ((res >> 2) & 0x33);
316 return (res + (res >> 4)) & 0x0F;
317}
318
319static int verify_io_u_pattern(struct verify_header *hdr, struct vcont *vc)
320{
321 struct thread_data *td = vc->td;
322 struct io_u *io_u = vc->io_u;
323 char *buf, *pattern;
Jens Axboe2b13e712011-01-19 14:04:16 -0700324 unsigned int header_size = __hdr_size(td->o.verify);
Steven Lang9a2a86d2012-02-07 09:42:59 +0100325 unsigned int len, mod, i, size, pattern_size;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100326
327 pattern = td->o.verify_pattern;
Steven Lang9a2a86d2012-02-07 09:42:59 +0100328 pattern_size = td->o.verify_pattern_bytes;
329 if (pattern_size <= 1)
330 pattern_size = MAX_PATTERN_SIZE;
Jens Axboe2b13e712011-01-19 14:04:16 -0700331 buf = (void *) hdr + header_size;
332 len = get_hdr_inc(td, io_u) - header_size;
Steven Lang9a2a86d2012-02-07 09:42:59 +0100333 mod = header_size % pattern_size;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100334
Steven Lang9a2a86d2012-02-07 09:42:59 +0100335 for (i = 0; i < len; i += size) {
336 size = pattern_size - mod;
337 if (size > (len - i))
338 size = len - i;
339 if (memcmp(buf + i, pattern + mod, size))
Jens Axboee4ad68b2012-02-23 08:35:04 +0100340 /* Let the slow compare find the first mismatch byte. */
Steven Lang9a2a86d2012-02-07 09:42:59 +0100341 break;
342 mod = 0;
343 }
344
345 for (; i < len; i++) {
Jens Axboe92bf48d2011-01-14 21:20:42 +0100346 if (buf[i] != pattern[mod]) {
347 unsigned int bits;
348
349 bits = hweight8(buf[i] ^ pattern[mod]);
350 log_err("fio: got pattern %x, wanted %x. Bad bits %d\n",
351 buf[i], pattern[mod], bits);
352 log_err("fio: bad pattern block offset %u\n", i);
353 dump_verify_buffers(hdr, vc);
354 return EILSEQ;
355 }
356 mod++;
357 if (mod == td->o.verify_pattern_bytes)
358 mod = 0;
359 }
360
361 return 0;
362}
363
364static int verify_io_u_meta(struct verify_header *hdr, struct vcont *vc)
365{
366 struct thread_data *td = vc->td;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200367 struct vhdr_meta *vh = hdr_priv(hdr);
Jens Axboe936216f2010-06-18 13:44:11 +0200368 struct io_u *io_u = vc->io_u;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100369 int ret = EILSEQ;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200370
Jens Axboebd6f78b2008-02-01 20:27:52 +0100371 dprint(FD_VERIFY, "meta verify io_u %p, len %u\n", io_u, hdr->len);
372
Jens Axboebfacf382010-06-18 14:29:52 +0200373 if (vh->offset == io_u->offset + vc->hdr_num * td->o.verify_interval)
Jens Axboe92bf48d2011-01-14 21:20:42 +0100374 ret = 0;
375
376 if (td->o.verify_pattern_bytes)
377 ret |= verify_io_u_pattern(hdr, vc);
378
379 if (!ret)
Jens Axboebfacf382010-06-18 14:29:52 +0200380 return 0;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200381
Jens Axboebfacf382010-06-18 14:29:52 +0200382 vc->name = "meta";
383 log_verify_failure(hdr, vc);
Jens Axboe92bf48d2011-01-14 21:20:42 +0100384 return ret;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200385}
386
Jens Axboe936216f2010-06-18 13:44:11 +0200387static int verify_io_u_sha512(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200388{
Jens Axboe936216f2010-06-18 13:44:11 +0200389 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200390 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200391 uint8_t sha512[128];
Jens Axboe25dfa842012-02-29 10:01:34 +0100392 struct fio_sha512_ctx sha512_ctx = {
Jens Axboecd14cc12007-07-30 10:59:33 +0200393 .buf = sha512,
394 };
395
Jens Axboe936216f2010-06-18 13:44:11 +0200396 dprint(FD_VERIFY, "sha512 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100397
Jens Axboe25dfa842012-02-29 10:01:34 +0100398 fio_sha512_init(&sha512_ctx);
399 fio_sha512_update(&sha512_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200400
Jens Axboebfacf382010-06-18 14:29:52 +0200401 if (!memcmp(vh->sha512, sha512_ctx.buf, sizeof(sha512)))
402 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200403
Jens Axboebfacf382010-06-18 14:29:52 +0200404 vc->name = "sha512";
405 vc->good_crc = vh->sha512;
406 vc->bad_crc = sha512_ctx.buf;
407 vc->crc_len = sizeof(vh->sha512);
408 log_verify_failure(hdr, vc);
409 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200410}
411
Jens Axboe936216f2010-06-18 13:44:11 +0200412static int verify_io_u_sha256(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200413{
Jens Axboe936216f2010-06-18 13:44:11 +0200414 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200415 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboebc77f562010-02-23 10:36:21 +0100416 uint8_t sha256[64];
Jens Axboe25dfa842012-02-29 10:01:34 +0100417 struct fio_sha256_ctx sha256_ctx = {
Jens Axboecd14cc12007-07-30 10:59:33 +0200418 .buf = sha256,
419 };
420
Jens Axboe936216f2010-06-18 13:44:11 +0200421 dprint(FD_VERIFY, "sha256 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100422
Jens Axboe25dfa842012-02-29 10:01:34 +0100423 fio_sha256_init(&sha256_ctx);
424 fio_sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200425
Jens Axboebfacf382010-06-18 14:29:52 +0200426 if (!memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256)))
427 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200428
Jens Axboebfacf382010-06-18 14:29:52 +0200429 vc->name = "sha256";
430 vc->good_crc = vh->sha256;
431 vc->bad_crc = sha256_ctx.buf;
432 vc->crc_len = sizeof(vh->sha256);
433 log_verify_failure(hdr, vc);
434 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200435}
436
Jens Axboe936216f2010-06-18 13:44:11 +0200437static int verify_io_u_sha1(struct verify_header *hdr, struct vcont *vc)
Jens Axboe7c353ce2009-08-09 22:40:33 +0200438{
Jens Axboe936216f2010-06-18 13:44:11 +0200439 void *p = io_u_verify_off(hdr, vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200440 struct vhdr_sha1 *vh = hdr_priv(hdr);
441 uint32_t sha1[5];
Jens Axboe25dfa842012-02-29 10:01:34 +0100442 struct fio_sha1_ctx sha1_ctx = {
Jens Axboe7c353ce2009-08-09 22:40:33 +0200443 .H = sha1,
444 };
445
Jens Axboe936216f2010-06-18 13:44:11 +0200446 dprint(FD_VERIFY, "sha1 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200447
Jens Axboe25dfa842012-02-29 10:01:34 +0100448 fio_sha1_init(&sha1_ctx);
449 fio_sha1_update(&sha1_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboe7c353ce2009-08-09 22:40:33 +0200450
Jens Axboebfacf382010-06-18 14:29:52 +0200451 if (!memcmp(vh->sha1, sha1_ctx.H, sizeof(sha1)))
452 return 0;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200453
Jens Axboebfacf382010-06-18 14:29:52 +0200454 vc->name = "sha1";
455 vc->good_crc = vh->sha1;
456 vc->bad_crc = sha1_ctx.H;
457 vc->crc_len = sizeof(vh->sha1);
458 log_verify_failure(hdr, vc);
459 return EILSEQ;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200460}
461
Jens Axboe936216f2010-06-18 13:44:11 +0200462static int verify_io_u_crc7(struct verify_header *hdr, struct vcont *vc)
Jens Axboe1e154bd2007-07-27 09:52:40 +0200463{
Jens Axboe936216f2010-06-18 13:44:11 +0200464 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200465 struct vhdr_crc7 *vh = hdr_priv(hdr);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200466 unsigned char c;
467
Jens Axboe936216f2010-06-18 13:44:11 +0200468 dprint(FD_VERIFY, "crc7 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100469
Jens Axboe25dfa842012-02-29 10:01:34 +0100470 c = fio_crc7(p, hdr->len - hdr_size(hdr));
Jens Axboe1e154bd2007-07-27 09:52:40 +0200471
Jens Axboebfacf382010-06-18 14:29:52 +0200472 if (c == vh->crc7)
473 return 0;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200474
Jens Axboebfacf382010-06-18 14:29:52 +0200475 vc->name = "crc7";
476 vc->good_crc = &vh->crc7;
477 vc->bad_crc = &c;
478 vc->crc_len = 1;
479 log_verify_failure(hdr, vc);
480 return EILSEQ;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200481}
482
Jens Axboe936216f2010-06-18 13:44:11 +0200483static int verify_io_u_crc16(struct verify_header *hdr, struct vcont *vc)
Jens Axboe969f7ed2007-07-27 09:07:17 +0200484{
Jens Axboe936216f2010-06-18 13:44:11 +0200485 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200486 struct vhdr_crc16 *vh = hdr_priv(hdr);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200487 unsigned short c;
488
Jens Axboe936216f2010-06-18 13:44:11 +0200489 dprint(FD_VERIFY, "crc16 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100490
Jens Axboe25dfa842012-02-29 10:01:34 +0100491 c = fio_crc16(p, hdr->len - hdr_size(hdr));
Jens Axboe969f7ed2007-07-27 09:07:17 +0200492
Jens Axboebfacf382010-06-18 14:29:52 +0200493 if (c == vh->crc16)
494 return 0;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200495
Jens Axboebfacf382010-06-18 14:29:52 +0200496 vc->name = "crc16";
497 vc->good_crc = &vh->crc16;
498 vc->bad_crc = &c;
499 vc->crc_len = 2;
500 log_verify_failure(hdr, vc);
501 return EILSEQ;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200502}
503
Jens Axboe936216f2010-06-18 13:44:11 +0200504static int verify_io_u_crc64(struct verify_header *hdr, struct vcont *vc)
Jens Axboed77a7af2007-07-27 15:35:06 +0200505{
Jens Axboe936216f2010-06-18 13:44:11 +0200506 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200507 struct vhdr_crc64 *vh = hdr_priv(hdr);
Jens Axboed77a7af2007-07-27 15:35:06 +0200508 unsigned long long c;
509
Jens Axboe936216f2010-06-18 13:44:11 +0200510 dprint(FD_VERIFY, "crc64 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100511
Jens Axboe25dfa842012-02-29 10:01:34 +0100512 c = fio_crc64(p, hdr->len - hdr_size(hdr));
Jens Axboed77a7af2007-07-27 15:35:06 +0200513
Jens Axboebfacf382010-06-18 14:29:52 +0200514 if (c == vh->crc64)
515 return 0;
Jens Axboed77a7af2007-07-27 15:35:06 +0200516
Jens Axboebfacf382010-06-18 14:29:52 +0200517 vc->name = "crc64";
518 vc->good_crc = &vh->crc64;
519 vc->bad_crc = &c;
520 vc->crc_len = 8;
521 log_verify_failure(hdr, vc);
522 return EILSEQ;
Jens Axboed77a7af2007-07-27 15:35:06 +0200523}
524
Jens Axboe936216f2010-06-18 13:44:11 +0200525static int verify_io_u_crc32(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200526{
Jens Axboe936216f2010-06-18 13:44:11 +0200527 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200528 struct vhdr_crc32 *vh = hdr_priv(hdr);
529 uint32_t c;
Jens Axboee29d1b72006-10-18 15:43:15 +0200530
Jens Axboe936216f2010-06-18 13:44:11 +0200531 dprint(FD_VERIFY, "crc32 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100532
Jens Axboe25dfa842012-02-29 10:01:34 +0100533 c = fio_crc32(p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200534
Jens Axboebfacf382010-06-18 14:29:52 +0200535 if (c == vh->crc32)
536 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200537
Jens Axboebfacf382010-06-18 14:29:52 +0200538 vc->name = "crc32";
539 vc->good_crc = &vh->crc32;
540 vc->bad_crc = &c;
541 vc->crc_len = 4;
542 log_verify_failure(hdr, vc);
543 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200544}
545
Jens Axboe936216f2010-06-18 13:44:11 +0200546static int verify_io_u_crc32c(struct verify_header *hdr, struct vcont *vc)
Jens Axboebac39e02008-06-11 20:46:19 +0200547{
Jens Axboe936216f2010-06-18 13:44:11 +0200548 void *p = io_u_verify_off(hdr, vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200549 struct vhdr_crc32 *vh = hdr_priv(hdr);
550 uint32_t c;
551
Jens Axboe936216f2010-06-18 13:44:11 +0200552 dprint(FD_VERIFY, "crc32c verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebac39e02008-06-11 20:46:19 +0200553
Jens Axboe25dfa842012-02-29 10:01:34 +0100554 c = fio_crc32c(p, hdr->len - hdr_size(hdr));
Jens Axboebac39e02008-06-11 20:46:19 +0200555
Jens Axboebfacf382010-06-18 14:29:52 +0200556 if (c == vh->crc32)
557 return 0;
Jens Axboebac39e02008-06-11 20:46:19 +0200558
Jens Axboebfacf382010-06-18 14:29:52 +0200559 vc->name = "crc32c";
560 vc->good_crc = &vh->crc32;
561 vc->bad_crc = &c;
562 vc->crc_len = 4;
563 log_verify_failure(hdr, vc);
564 return EILSEQ;
Jens Axboebac39e02008-06-11 20:46:19 +0200565}
566
Jens Axboe936216f2010-06-18 13:44:11 +0200567static int verify_io_u_md5(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200568{
Jens Axboe936216f2010-06-18 13:44:11 +0200569 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200570 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200571 uint32_t hash[MD5_HASH_WORDS];
Jens Axboe25dfa842012-02-29 10:01:34 +0100572 struct fio_md5_ctx md5_ctx = {
Jens Axboe8c432322007-07-27 13:16:24 +0200573 .hash = hash,
574 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200575
Jens Axboe936216f2010-06-18 13:44:11 +0200576 dprint(FD_VERIFY, "md5 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100577
Jens Axboe25dfa842012-02-29 10:01:34 +0100578 fio_md5_init(&md5_ctx);
579 fio_md5_update(&md5_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200580
Jens Axboebfacf382010-06-18 14:29:52 +0200581 if (!memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash)))
582 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200583
Jens Axboebfacf382010-06-18 14:29:52 +0200584 vc->name = "md5";
585 vc->good_crc = vh->md5_digest;
586 vc->bad_crc = md5_ctx.hash;
587 vc->crc_len = sizeof(hash);
588 log_verify_failure(hdr, vc);
589 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200590}
591
Jens Axboee8462bd2009-07-06 12:59:04 +0200592/*
593 * Push IO verification to a separate thread
594 */
595int verify_io_u_async(struct thread_data *td, struct io_u *io_u)
596{
597 if (io_u->file)
598 put_file_log(td, io_u->file);
599
Jens Axboee8462bd2009-07-06 12:59:04 +0200600 pthread_mutex_lock(&td->io_u_lock);
Steven Langd7ee2a72011-10-26 09:46:50 +0200601
Radha Ramachandran0c412142009-11-03 21:45:31 +0100602 if (io_u->flags & IO_U_F_IN_CUR_DEPTH) {
603 td->cur_depth--;
604 io_u->flags &= ~IO_U_F_IN_CUR_DEPTH;
605 }
Jens Axboee8462bd2009-07-06 12:59:04 +0200606 flist_del(&io_u->list);
607 flist_add_tail(&io_u->list, &td->verify_list);
Jens Axboe2ecc1b52009-11-04 20:58:09 +0100608 io_u->flags |= IO_U_F_FREE_DEF;
Jens Axboee8462bd2009-07-06 12:59:04 +0200609 pthread_mutex_unlock(&td->io_u_lock);
610
611 pthread_cond_signal(&td->verify_cond);
Jens Axboee8462bd2009-07-06 12:59:04 +0200612 return 0;
613}
614
Jens Axboe0d29de82010-09-01 13:54:15 +0200615static int verify_trimmed_io_u(struct thread_data *td, struct io_u *io_u)
616{
617 static char zero_buf[1024];
618 unsigned int this_len, len;
619 int ret = 0;
620 void *p;
621
622 if (!td->o.trim_zero)
623 return 0;
624
625 len = io_u->buflen;
626 p = io_u->buf;
627 do {
628 this_len = sizeof(zero_buf);
629 if (this_len > len)
630 this_len = len;
631 if (memcmp(p, zero_buf, this_len)) {
632 ret = EILSEQ;
633 break;
634 }
635 len -= this_len;
636 p += this_len;
637 } while (len);
638
639 if (!ret)
640 return 0;
641
Jens Axboea917a8b2010-09-02 13:23:20 +0200642 log_err("trim: verify failed at file %s offset %llu, length %lu"
643 ", block offset %lu\n",
644 io_u->file->file_name, io_u->offset, io_u->buflen,
Jens Axboe2f681242010-10-21 08:15:59 +0200645 (unsigned long) (p - io_u->buf));
Jens Axboe0d29de82010-09-01 13:54:15 +0200646 return ret;
647}
648
Jens Axboe0ae2c6e2012-03-06 17:46:44 +0100649static int verify_header(struct io_u *io_u, struct verify_header *hdr)
Jens Axboef65d1c22012-02-22 20:11:57 +0100650{
651 void *p = hdr;
652 uint32_t crc;
653
Jens Axboeae38c0d2012-02-23 10:31:07 +0100654 if (hdr->magic != FIO_HDR_MAGIC)
655 return 0;
Jens Axboe0ae2c6e2012-03-06 17:46:44 +0100656 if (hdr->len > io_u->buflen) {
657 log_err("fio: verify header exceeds buffer length (%u > %lu)\n", hdr->len, io_u->buflen);
658 return 0;
659 }
Jens Axboeae38c0d2012-02-23 10:31:07 +0100660
Jens Axboe25dfa842012-02-29 10:01:34 +0100661 crc = fio_crc32c(p, offsetof(struct verify_header, crc32));
Jens Axboef65d1c22012-02-22 20:11:57 +0100662 if (crc == hdr->crc32)
663 return 1;
664
665 log_err("fio: verify header crc %x, calculated %x\n", hdr->crc32, crc);
666 return 0;
667}
668
Jens Axboe36690c92007-03-26 10:23:34 +0200669int verify_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboee29d1b72006-10-18 15:43:15 +0200670{
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200671 struct verify_header *hdr;
Jens Axboe2b13e712011-01-19 14:04:16 -0700672 unsigned int header_size, hdr_inc, hdr_num = 0;
Jens Axboe95646102007-07-28 21:17:50 +0200673 void *p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200674 int ret;
675
Shawn Lewis1dcc0492007-07-27 08:02:45 +0200676 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
Jens Axboe36690c92007-03-26 10:23:34 +0200677 return 0;
Jens Axboe0d29de82010-09-01 13:54:15 +0200678 if (io_u->flags & IO_U_F_TRIMMED) {
679 ret = verify_trimmed_io_u(td, io_u);
680 goto done;
681 }
Jens Axboe36690c92007-03-26 10:23:34 +0200682
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100683 hdr_inc = get_hdr_inc(td, io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200684
Jens Axboea12a3b42007-08-09 10:20:54 +0200685 ret = 0;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100686 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
687 p += hdr_inc, hdr_num++) {
Jens Axboebfacf382010-06-18 14:29:52 +0200688 struct vcont vc = {
689 .io_u = io_u,
690 .hdr_num = hdr_num,
Jens Axboe7d9fb452011-01-11 22:16:49 +0100691 .td = td,
Jens Axboebfacf382010-06-18 14:29:52 +0200692 };
Jens Axboe936216f2010-06-18 13:44:11 +0200693
Jens Axboef3e6cb92010-06-18 14:48:43 +0200694 if (ret && td->o.verify_fatal)
Jens Axboea12a3b42007-08-09 10:20:54 +0200695 break;
Jens Axboef3e6cb92010-06-18 14:48:43 +0200696
Jens Axboe2b13e712011-01-19 14:04:16 -0700697 header_size = __hdr_size(td->o.verify);
Jens Axboea59e1702007-07-30 08:53:27 +0200698 if (td->o.verify_offset)
Jens Axboe2b13e712011-01-19 14:04:16 -0700699 memswp(p, p + td->o.verify_offset, header_size);
Jens Axboe95646102007-07-28 21:17:50 +0200700 hdr = p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200701
Jens Axboe0ae2c6e2012-03-06 17:46:44 +0100702 if (!verify_header(io_u, hdr)) {
Jens Axboeae38c0d2012-02-23 10:31:07 +0100703 log_err("verify: bad magic header %x, wanted %x at "
704 "file %s offset %llu, length %u\n",
Jens Axboed3a173a2012-02-23 08:23:18 +0100705 hdr->magic, FIO_HDR_MAGIC,
Jens Axboec9b44032010-06-18 14:46:06 +0200706 io_u->file->file_name,
707 io_u->offset + hdr_num * hdr->len, hdr->len);
Jens Axboe9fd18962009-05-19 10:35:38 +0200708 return EILSEQ;
Jens Axboe3f199b02007-08-09 10:16:31 +0200709 }
710
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200711 switch (hdr->verify_type) {
712 case VERIFY_MD5:
Jens Axboe936216f2010-06-18 13:44:11 +0200713 ret = verify_io_u_md5(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200714 break;
715 case VERIFY_CRC64:
Jens Axboe936216f2010-06-18 13:44:11 +0200716 ret = verify_io_u_crc64(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200717 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200718 case VERIFY_CRC32C:
Jens Axboe38455912008-08-04 15:35:26 +0200719 case VERIFY_CRC32C_INTEL:
Jens Axboe936216f2010-06-18 13:44:11 +0200720 ret = verify_io_u_crc32c(hdr, &vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200721 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200722 case VERIFY_CRC32:
Jens Axboe936216f2010-06-18 13:44:11 +0200723 ret = verify_io_u_crc32(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200724 break;
725 case VERIFY_CRC16:
Jens Axboe936216f2010-06-18 13:44:11 +0200726 ret = verify_io_u_crc16(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200727 break;
728 case VERIFY_CRC7:
Jens Axboe936216f2010-06-18 13:44:11 +0200729 ret = verify_io_u_crc7(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200730 break;
Jens Axboecd14cc12007-07-30 10:59:33 +0200731 case VERIFY_SHA256:
Jens Axboe936216f2010-06-18 13:44:11 +0200732 ret = verify_io_u_sha256(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200733 break;
734 case VERIFY_SHA512:
Jens Axboe936216f2010-06-18 13:44:11 +0200735 ret = verify_io_u_sha512(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200736 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200737 case VERIFY_META:
Jens Axboe92bf48d2011-01-14 21:20:42 +0100738 ret = verify_io_u_meta(hdr, &vc);
Shawn Lewis7437ee82007-08-02 21:05:58 +0200739 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200740 case VERIFY_SHA1:
Jens Axboe936216f2010-06-18 13:44:11 +0200741 ret = verify_io_u_sha1(hdr, &vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200742 break;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100743 case VERIFY_PATTERN:
744 ret = verify_io_u_pattern(hdr, &vc);
745 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200746 default:
747 log_err("Bad verify type %u\n", hdr->verify_type);
Jens Axboed16d4e02007-09-06 16:16:44 +0200748 ret = EINVAL;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200749 }
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200750 }
Jens Axboea7dfe862007-03-12 10:05:08 +0100751
Jens Axboe0d29de82010-09-01 13:54:15 +0200752done:
Jens Axboef3e6cb92010-06-18 14:48:43 +0200753 if (ret && td->o.verify_fatal)
754 td->terminate = 1;
755
Jens Axboea12a3b42007-08-09 10:20:54 +0200756 return ret;
Jens Axboee29d1b72006-10-18 15:43:15 +0200757}
758
Shawn Lewis7437ee82007-08-02 21:05:58 +0200759static void fill_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100760 struct io_u *io_u, unsigned int header_num)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200761{
762 struct vhdr_meta *vh = hdr_priv(hdr);
763
764 vh->thread = td->thread_number;
765
766 vh->time_sec = io_u->start_time.tv_sec;
767 vh->time_usec = io_u->start_time.tv_usec;
768
769 vh->numberio = td->io_issues[DDIR_WRITE];
770
771 vh->offset = io_u->offset + header_num * td->o.verify_interval;
772}
773
Jens Axboecd14cc12007-07-30 10:59:33 +0200774static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
775{
Jens Axboe546dfd92007-07-30 12:23:05 +0200776 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100777 struct fio_sha512_ctx sha512_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200778 .buf = vh->sha512,
Jens Axboecd14cc12007-07-30 10:59:33 +0200779 };
780
Jens Axboe25dfa842012-02-29 10:01:34 +0100781 fio_sha512_init(&sha512_ctx);
782 fio_sha512_update(&sha512_ctx, p, len);
Jens Axboecd14cc12007-07-30 10:59:33 +0200783}
784
785static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
786{
Jens Axboe546dfd92007-07-30 12:23:05 +0200787 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100788 struct fio_sha256_ctx sha256_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200789 .buf = vh->sha256,
Jens Axboecd14cc12007-07-30 10:59:33 +0200790 };
791
Jens Axboe25dfa842012-02-29 10:01:34 +0100792 fio_sha256_init(&sha256_ctx);
793 fio_sha256_update(&sha256_ctx, p, len);
Jens Axboecd14cc12007-07-30 10:59:33 +0200794}
795
Jens Axboe7c353ce2009-08-09 22:40:33 +0200796static void fill_sha1(struct verify_header *hdr, void *p, unsigned int len)
797{
798 struct vhdr_sha1 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100799 struct fio_sha1_ctx sha1_ctx = {
Jens Axboe7c353ce2009-08-09 22:40:33 +0200800 .H = vh->sha1,
801 };
802
Jens Axboe25dfa842012-02-29 10:01:34 +0100803 fio_sha1_init(&sha1_ctx);
804 fio_sha1_update(&sha1_ctx, p, len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200805}
806
Jens Axboe1e154bd2007-07-27 09:52:40 +0200807static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
808{
Jens Axboe546dfd92007-07-30 12:23:05 +0200809 struct vhdr_crc7 *vh = hdr_priv(hdr);
810
Jens Axboe25dfa842012-02-29 10:01:34 +0100811 vh->crc7 = fio_crc7(p, len);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200812}
813
Jens Axboe969f7ed2007-07-27 09:07:17 +0200814static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
815{
Jens Axboe546dfd92007-07-30 12:23:05 +0200816 struct vhdr_crc16 *vh = hdr_priv(hdr);
817
Jens Axboe25dfa842012-02-29 10:01:34 +0100818 vh->crc16 = fio_crc16(p, len);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200819}
820
Jens Axboee29d1b72006-10-18 15:43:15 +0200821static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
822{
Jens Axboe546dfd92007-07-30 12:23:05 +0200823 struct vhdr_crc32 *vh = hdr_priv(hdr);
824
Jens Axboe25dfa842012-02-29 10:01:34 +0100825 vh->crc32 = fio_crc32(p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200826}
827
Jens Axboebac39e02008-06-11 20:46:19 +0200828static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
829{
830 struct vhdr_crc32 *vh = hdr_priv(hdr);
831
Jens Axboe25dfa842012-02-29 10:01:34 +0100832 vh->crc32 = fio_crc32c(p, len);
Jens Axboebac39e02008-06-11 20:46:19 +0200833}
834
Jens Axboed77a7af2007-07-27 15:35:06 +0200835static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
836{
Jens Axboe546dfd92007-07-30 12:23:05 +0200837 struct vhdr_crc64 *vh = hdr_priv(hdr);
838
Jens Axboe25dfa842012-02-29 10:01:34 +0100839 vh->crc64 = fio_crc64(p, len);
Jens Axboed77a7af2007-07-27 15:35:06 +0200840}
841
Jens Axboee29d1b72006-10-18 15:43:15 +0200842static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
843{
Jens Axboe546dfd92007-07-30 12:23:05 +0200844 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100845 struct fio_md5_ctx md5_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200846 .hash = (uint32_t *) vh->md5_digest,
Jens Axboe8c432322007-07-27 13:16:24 +0200847 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200848
Jens Axboe25dfa842012-02-29 10:01:34 +0100849 fio_md5_init(&md5_ctx);
850 fio_md5_update(&md5_ctx, p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200851}
852
Jens Axboe7d9fb452011-01-11 22:16:49 +0100853static void populate_hdr(struct thread_data *td, struct io_u *io_u,
854 struct verify_header *hdr, unsigned int header_num,
855 unsigned int header_len)
856{
857 unsigned int data_len;
858 void *data, *p;
859
860 p = (void *) hdr;
861
Jens Axboed3a173a2012-02-23 08:23:18 +0100862 hdr->magic = FIO_HDR_MAGIC;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100863 hdr->verify_type = td->o.verify;
Jens Axboed3a173a2012-02-23 08:23:18 +0100864 hdr->len = header_len;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100865 hdr->rand_seed = io_u->rand_seed;
Jens Axboe25dfa842012-02-29 10:01:34 +0100866 hdr->crc32 = fio_crc32c(p, offsetof(struct verify_header, crc32));
Jens Axboef65d1c22012-02-22 20:11:57 +0100867
Jens Axboe7d9fb452011-01-11 22:16:49 +0100868 data_len = header_len - hdr_size(hdr);
869
870 data = p + hdr_size(hdr);
871 switch (td->o.verify) {
872 case VERIFY_MD5:
873 dprint(FD_VERIFY, "fill md5 io_u %p, len %u\n",
874 io_u, hdr->len);
875 fill_md5(hdr, data, data_len);
876 break;
877 case VERIFY_CRC64:
878 dprint(FD_VERIFY, "fill crc64 io_u %p, len %u\n",
879 io_u, hdr->len);
880 fill_crc64(hdr, data, data_len);
881 break;
882 case VERIFY_CRC32C:
883 case VERIFY_CRC32C_INTEL:
884 dprint(FD_VERIFY, "fill crc32c io_u %p, len %u\n",
885 io_u, hdr->len);
886 fill_crc32c(hdr, data, data_len);
887 break;
888 case VERIFY_CRC32:
889 dprint(FD_VERIFY, "fill crc32 io_u %p, len %u\n",
890 io_u, hdr->len);
891 fill_crc32(hdr, data, data_len);
892 break;
893 case VERIFY_CRC16:
894 dprint(FD_VERIFY, "fill crc16 io_u %p, len %u\n",
895 io_u, hdr->len);
896 fill_crc16(hdr, data, data_len);
897 break;
898 case VERIFY_CRC7:
899 dprint(FD_VERIFY, "fill crc7 io_u %p, len %u\n",
900 io_u, hdr->len);
901 fill_crc7(hdr, data, data_len);
902 break;
903 case VERIFY_SHA256:
904 dprint(FD_VERIFY, "fill sha256 io_u %p, len %u\n",
905 io_u, hdr->len);
906 fill_sha256(hdr, data, data_len);
907 break;
908 case VERIFY_SHA512:
909 dprint(FD_VERIFY, "fill sha512 io_u %p, len %u\n",
910 io_u, hdr->len);
911 fill_sha512(hdr, data, data_len);
912 break;
913 case VERIFY_META:
914 dprint(FD_VERIFY, "fill meta io_u %p, len %u\n",
915 io_u, hdr->len);
916 fill_meta(hdr, td, io_u, header_num);
917 break;
918 case VERIFY_SHA1:
919 dprint(FD_VERIFY, "fill sha1 io_u %p, len %u\n",
920 io_u, hdr->len);
921 fill_sha1(hdr, data, data_len);
922 break;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100923 case VERIFY_PATTERN:
924 /* nothing to do here */
925 break;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100926 default:
927 log_err("fio: bad verify type: %d\n", td->o.verify);
928 assert(0);
929 }
930 if (td->o.verify_offset)
931 memswp(p, p + td->o.verify_offset, hdr_size(hdr));
932}
933
Jens Axboee29d1b72006-10-18 15:43:15 +0200934/*
935 * fill body of io_u->buf with random data and add a header with the
Jens Axboec50ca7b2011-01-12 08:31:54 +0100936 * checksum of choice
Jens Axboee29d1b72006-10-18 15:43:15 +0200937 */
938void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
939{
Jens Axboe9cc3d152007-03-26 10:32:30 +0200940 if (td->o.verify == VERIFY_NULL)
941 return;
942
Jens Axboec50ca7b2011-01-12 08:31:54 +0100943 fill_pattern_headers(td, io_u, 0, 0);
Jens Axboee29d1b72006-10-18 15:43:15 +0200944}
945
946int get_next_verify(struct thread_data *td, struct io_u *io_u)
947{
Jens Axboe8de8f042007-03-27 10:36:12 +0200948 struct io_piece *ipo = NULL;
Jens Axboee29d1b72006-10-18 15:43:15 +0200949
Jens Axboed2d7fa52007-02-19 13:21:35 +0100950 /*
951 * this io_u is from a requeue, we already filled the offsets
952 */
953 if (io_u->file)
954 return 0;
955
Jens Axboe8de8f042007-03-27 10:36:12 +0200956 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
957 struct rb_node *n = rb_first(&td->io_hist_tree);
958
Jens Axboe4b878982007-03-26 09:32:22 +0200959 ipo = rb_entry(n, struct io_piece, rb_node);
Jens Axboe4b878982007-03-26 09:32:22 +0200960 rb_erase(n, &td->io_hist_tree);
Jens Axboea917a8b2010-09-02 13:23:20 +0200961 assert(ipo->flags & IP_F_ONRB);
962 ipo->flags &= ~IP_F_ONRB;
Jens Axboe01743ee2008-06-02 12:19:19 +0200963 } else if (!flist_empty(&td->io_hist_list)) {
964 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
965 flist_del(&ipo->list);
Jens Axboea917a8b2010-09-02 13:23:20 +0200966 assert(ipo->flags & IP_F_ONLIST);
967 ipo->flags &= ~IP_F_ONLIST;
Jens Axboe8de8f042007-03-27 10:36:12 +0200968 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200969
Jens Axboe8de8f042007-03-27 10:36:12 +0200970 if (ipo) {
Jens Axboe0d29de82010-09-01 13:54:15 +0200971 td->io_hist_len--;
972
Jens Axboee29d1b72006-10-18 15:43:15 +0200973 io_u->offset = ipo->offset;
974 io_u->buflen = ipo->len;
Jens Axboe36167d82007-02-18 05:41:31 +0100975 io_u->file = ipo->file;
Jens Axboe97af62c2007-05-22 11:12:13 +0200976
Jens Axboe0d29de82010-09-01 13:54:15 +0200977 if (ipo->flags & IP_F_TRIMMED)
978 io_u->flags |= IO_U_F_TRIMMED;
979
Jens Axboed6aed792009-06-03 08:41:15 +0200980 if (!fio_file_open(io_u->file)) {
Jens Axboe97af62c2007-05-22 11:12:13 +0200981 int r = td_io_open_file(td, io_u->file);
982
Jens Axboebd6f78b2008-02-01 20:27:52 +0100983 if (r) {
984 dprint(FD_VERIFY, "failed file %s open\n",
985 io_u->file->file_name);
Jens Axboe97af62c2007-05-22 11:12:13 +0200986 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100987 }
Jens Axboe97af62c2007-05-22 11:12:13 +0200988 }
989
990 get_file(ipo->file);
Jens Axboed6aed792009-06-03 08:41:15 +0200991 assert(fio_file_open(io_u->file));
Jens Axboee29d1b72006-10-18 15:43:15 +0200992 io_u->ddir = DDIR_READ;
Jens Axboe36167d82007-02-18 05:41:31 +0100993 io_u->xfer_buf = io_u->buf;
994 io_u->xfer_buflen = io_u->buflen;
Jens Axboe0d29de82010-09-01 13:54:15 +0200995
996 remove_trim_entry(td, ipo);
Jens Axboee29d1b72006-10-18 15:43:15 +0200997 free(ipo);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100998 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200999 return 0;
1000 }
1001
Jens Axboebd6f78b2008-02-01 20:27:52 +01001002 dprint(FD_VERIFY, "get_next_verify: empty\n");
Jens Axboee29d1b72006-10-18 15:43:15 +02001003 return 1;
1004}
Jens Axboee8462bd2009-07-06 12:59:04 +02001005
1006static void *verify_async_thread(void *data)
1007{
1008 struct thread_data *td = data;
1009 struct io_u *io_u;
1010 int ret = 0;
1011
1012 if (td->o.verify_cpumask_set &&
1013 fio_setaffinity(td->pid, td->o.verify_cpumask)) {
1014 log_err("fio: failed setting verify thread affinity\n");
1015 goto done;
1016 }
1017
1018 do {
Jens Axboee53ab272009-07-06 13:43:46 +02001019 FLIST_HEAD(list);
1020
Jens Axboee8462bd2009-07-06 12:59:04 +02001021 read_barrier();
1022 if (td->verify_thread_exit)
1023 break;
1024
1025 pthread_mutex_lock(&td->io_u_lock);
1026
1027 while (flist_empty(&td->verify_list) &&
1028 !td->verify_thread_exit) {
Jens Axboeb36e2982009-07-06 14:12:52 +02001029 ret = pthread_cond_wait(&td->verify_cond,
1030 &td->io_u_lock);
Jens Axboee8462bd2009-07-06 12:59:04 +02001031 if (ret) {
1032 pthread_mutex_unlock(&td->io_u_lock);
1033 break;
1034 }
1035 }
1036
Jens Axboee53ab272009-07-06 13:43:46 +02001037 flist_splice_init(&td->verify_list, &list);
Jens Axboee8462bd2009-07-06 12:59:04 +02001038 pthread_mutex_unlock(&td->io_u_lock);
1039
Jens Axboee53ab272009-07-06 13:43:46 +02001040 if (flist_empty(&list))
1041 continue;
1042
1043 while (!flist_empty(&list)) {
1044 io_u = flist_entry(list.next, struct io_u, list);
1045 flist_del_init(&io_u->list);
1046
Jens Axboed561f2a2009-07-06 13:51:05 +02001047 ret = verify_io_u(td, io_u);
Jens Axboee53ab272009-07-06 13:43:46 +02001048 put_io_u(td, io_u);
Jens Axboed561f2a2009-07-06 13:51:05 +02001049 if (!ret)
1050 continue;
Steven Lang06842022011-11-17 09:45:17 +01001051 if (td->o.continue_on_error & ERROR_TYPE_VERIFY &&
Jens Axboed561f2a2009-07-06 13:51:05 +02001052 td_non_fatal_error(ret)) {
1053 update_error_count(td, ret);
1054 td_clear_error(td);
1055 ret = 0;
1056 }
Jens Axboee53ab272009-07-06 13:43:46 +02001057 }
Jens Axboee8462bd2009-07-06 12:59:04 +02001058 } while (!ret);
1059
Jens Axboed561f2a2009-07-06 13:51:05 +02001060 if (ret) {
1061 td_verror(td, ret, "async_verify");
Jens Axboef3e6cb92010-06-18 14:48:43 +02001062 if (td->o.verify_fatal)
1063 td->terminate = 1;
Jens Axboed561f2a2009-07-06 13:51:05 +02001064 }
1065
Jens Axboee8462bd2009-07-06 12:59:04 +02001066done:
1067 pthread_mutex_lock(&td->io_u_lock);
1068 td->nr_verify_threads--;
1069 pthread_mutex_unlock(&td->io_u_lock);
1070
1071 pthread_cond_signal(&td->free_cond);
1072 return NULL;
1073}
1074
1075int verify_async_init(struct thread_data *td)
1076{
1077 int i, ret;
bart Van Assche304a47c2010-08-01 21:31:26 +02001078 pthread_attr_t attr;
1079
1080 pthread_attr_init(&attr);
1081 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
Jens Axboee8462bd2009-07-06 12:59:04 +02001082
1083 td->verify_thread_exit = 0;
1084
1085 td->verify_threads = malloc(sizeof(pthread_t) * td->o.verify_async);
1086 for (i = 0; i < td->o.verify_async; i++) {
bart Van Assche304a47c2010-08-01 21:31:26 +02001087 ret = pthread_create(&td->verify_threads[i], &attr,
Jens Axboee8462bd2009-07-06 12:59:04 +02001088 verify_async_thread, td);
1089 if (ret) {
1090 log_err("fio: async verify creation failed: %s\n",
1091 strerror(ret));
1092 break;
1093 }
1094 ret = pthread_detach(td->verify_threads[i]);
1095 if (ret) {
1096 log_err("fio: async verify thread detach failed: %s\n",
1097 strerror(ret));
1098 break;
1099 }
1100 td->nr_verify_threads++;
1101 }
1102
bart Van Assche304a47c2010-08-01 21:31:26 +02001103 pthread_attr_destroy(&attr);
1104
Jens Axboee8462bd2009-07-06 12:59:04 +02001105 if (i != td->o.verify_async) {
Jens Axboee40823b2009-07-06 14:28:21 +02001106 log_err("fio: only %d verify threads started, exiting\n", i);
Jens Axboee8462bd2009-07-06 12:59:04 +02001107 td->verify_thread_exit = 1;
1108 write_barrier();
1109 pthread_cond_broadcast(&td->verify_cond);
1110 return 1;
1111 }
1112
1113 return 0;
1114}
1115
1116void verify_async_exit(struct thread_data *td)
1117{
1118 td->verify_thread_exit = 1;
1119 write_barrier();
1120 pthread_cond_broadcast(&td->verify_cond);
1121
1122 pthread_mutex_lock(&td->io_u_lock);
1123
1124 while (td->nr_verify_threads)
1125 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1126
1127 pthread_mutex_unlock(&td->io_u_lock);
1128 free(td->verify_threads);
1129 td->verify_threads = NULL;
1130}