blob: a7344e32d3eca0f4ddf15405ddbaccb7b44b9c63 [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
39 io_u->rand_seed = fill_random_buf(p, len);
Jens Axboe90059d62007-07-30 09:33:12 +020040 break;
41 case 1:
Jens Axboeefda12b2011-01-14 15:32:30 +010042 /*
43 * See below write barrier comment
44 */
45#if 0
46 read_barrier();
Radha Ramachandran10e8a7b2010-07-14 17:39:05 -060047 if (io_u->buf_filled_len >= len) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020048 dprint(FD_VERIFY, "using already filled verify pattern b=0 len=%u\n", len);
49 return;
50 }
Jens Axboeefda12b2011-01-14 15:32:30 +010051#endif
Jens Axboebd6f78b2008-02-01 20:27:52 +010052 dprint(FD_VERIFY, "fill verify pattern b=0 len=%u\n", len);
Radha Ramachandran0e92f872009-10-27 20:14:27 +010053 memset(p, td->o.verify_pattern[0], len);
Jens Axboeefda12b2011-01-14 15:32:30 +010054 /*
55 * We need to ensure that the pattern stores are seen before
56 * the fill length store, or we could observe headers that
57 * aren't valid to the extent notified by the fill length
58 */
59 write_barrier();
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020060 io_u->buf_filled_len = len;
Jens Axboe90059d62007-07-30 09:33:12 +020061 break;
Radha Ramachandran0e92f872009-10-27 20:14:27 +010062 default: {
63 unsigned int i = 0, size = 0;
Jens Axboe90059d62007-07-30 09:33:12 +020064 unsigned char *b = p;
65
Jens Axboeefda12b2011-01-14 15:32:30 +010066#if 0
67 read_barrier();
Radha Ramachandran10e8a7b2010-07-14 17:39:05 -060068 if (io_u->buf_filled_len >= len) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020069 dprint(FD_VERIFY, "using already filled verify pattern b=%d len=%u\n",
70 td->o.verify_pattern_bytes, len);
71 return;
72 }
Jens Axboeefda12b2011-01-14 15:32:30 +010073#endif
Jens Axboebd6f78b2008-02-01 20:27:52 +010074 dprint(FD_VERIFY, "fill verify pattern b=%d len=%u\n",
75 td->o.verify_pattern_bytes, len);
76
Jens Axboe90059d62007-07-30 09:33:12 +020077 while (i < len) {
Radha Ramachandran0e92f872009-10-27 20:14:27 +010078 size = td->o.verify_pattern_bytes;
79 if (size > (len - i))
80 size = len - i;
81 memcpy(b+i, td->o.verify_pattern, size);
82 i += size;
Jens Axboe90059d62007-07-30 09:33:12 +020083 }
Jens Axboeefda12b2011-01-14 15:32:30 +010084 write_barrier();
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020085 io_u->buf_filled_len = len;
Jens Axboe90059d62007-07-30 09:33:12 +020086 break;
87 }
88 }
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;
96 if (td->o.verify_interval)
97 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
109 fill_pattern(td, p, io_u->buflen, io_u, seed, use_seed);
110
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/*
Jens Axboe87677832007-07-30 12:08:14 +0200142 * Prepare for seperation of verify_header and checksum header
143 */
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;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200176 case VERIFY_META:
177 len = sizeof(struct vhdr_meta);
178 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200179 case VERIFY_SHA1:
180 len = sizeof(struct vhdr_sha1);
181 break;
Jens Axboe546dfd92007-07-30 12:23:05 +0200182 default:
183 log_err("fio: unknown verify header!\n");
184 assert(0);
185 }
186
187 return len + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200188}
189
190static inline unsigned int hdr_size(struct verify_header *hdr)
191{
Jens Axboe546dfd92007-07-30 12:23:05 +0200192 return __hdr_size(hdr->verify_type);
193}
194
195static void *hdr_priv(struct verify_header *hdr)
196{
197 void *priv = hdr;
198
199 return priv + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200200}
201
202/*
Jens Axboe936216f2010-06-18 13:44:11 +0200203 * Verify container, pass info to verify handlers and allow them to
204 * pass info back in case of error
205 */
206struct vcont {
207 /*
208 * Input
209 */
210 struct io_u *io_u;
211 unsigned int hdr_num;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100212 struct thread_data *td;
Jens Axboe936216f2010-06-18 13:44:11 +0200213
214 /*
215 * Output, only valid in case of error
216 */
Jens Axboebfacf382010-06-18 14:29:52 +0200217 const char *name;
218 void *good_crc;
219 void *bad_crc;
Jens Axboe936216f2010-06-18 13:44:11 +0200220 unsigned int crc_len;
221};
222
Jens Axboec50ca7b2011-01-12 08:31:54 +0100223static void dump_buf(char *buf, unsigned int len, unsigned long long offset,
224 const char *type, struct fio_file *f)
Jens Axboe7d9fb452011-01-11 22:16:49 +0100225{
Jens Axboe6f260b32011-01-13 18:57:54 +0100226 char *ptr, fname[256];
Jens Axboe7d9fb452011-01-11 22:16:49 +0100227 int ret, fd;
228
Jens Axboe6f260b32011-01-13 18:57:54 +0100229 ptr = strdup(f->file_name);
230 strcpy(fname, basename(ptr));
Jens Axboec50ca7b2011-01-12 08:31:54 +0100231
232 sprintf(fname + strlen(fname), ".%llu.%s", offset, type);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100233
234 fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 0644);
235 if (fd < 0) {
236 perror("open verify buf file");
237 return;
238 }
239
240 while (len) {
241 ret = write(fd, buf, len);
242 if (!ret)
243 break;
244 else if (ret < 0) {
245 perror("write verify buf file");
246 break;
247 }
248 len -= ret;
249 buf += ret;
250 }
251
252 close(fd);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100253 log_err(" %s data dumped as %s\n", type, fname);
Jens Axboe6f260b32011-01-13 18:57:54 +0100254 free(ptr);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100255}
256
Jens Axboec50ca7b2011-01-12 08:31:54 +0100257/*
258 * Dump the contents of the read block and re-generate the correct data
259 * and dump that too.
260 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100261static void dump_verify_buffers(struct verify_header *hdr, struct vcont *vc)
262{
263 struct thread_data *td = vc->td;
264 struct io_u *io_u = vc->io_u;
265 unsigned long hdr_offset;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100266 struct io_u dummy;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100267 void *buf;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100268
Jens Axboec50ca7b2011-01-12 08:31:54 +0100269 /*
270 * Dump the contents we just read off disk
271 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100272 hdr_offset = vc->hdr_num * hdr->len;
273
Jens Axboec50ca7b2011-01-12 08:31:54 +0100274 dump_buf(io_u->buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
275 "received", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100276
Jens Axboec50ca7b2011-01-12 08:31:54 +0100277 /*
278 * Allocate a new buf and re-generate the original data
279 */
280 buf = malloc(io_u->buflen);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100281 dummy = *io_u;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100282 dummy.buf = buf;
Jens Axboe4aae38a2011-01-12 08:59:12 +0100283 dummy.rand_seed = hdr->rand_seed;
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100284 dummy.buf_filled_len = 0;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100285
Jens Axboec50ca7b2011-01-12 08:31:54 +0100286 fill_pattern_headers(td, &dummy, hdr->rand_seed, 1);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100287
Jens Axboec50ca7b2011-01-12 08:31:54 +0100288 dump_buf(buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
289 "expected", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100290 free(buf);
291}
292
Jens Axboebfacf382010-06-18 14:29:52 +0200293static void log_verify_failure(struct verify_header *hdr, struct vcont *vc)
294{
295 unsigned long long offset;
296
297 offset = vc->io_u->offset;
298 offset += vc->hdr_num * hdr->len;
Jens Axboe32c17ad2010-06-18 14:32:21 +0200299 log_err("%.8s: verify failed at file %s offset %llu, length %u\n",
300 vc->name, vc->io_u->file->file_name, offset, hdr->len);
Jens Axboebfacf382010-06-18 14:29:52 +0200301
302 if (vc->good_crc && vc->bad_crc) {
303 log_err(" Expected CRC: ");
304 hexdump(vc->good_crc, vc->crc_len);
305 log_err(" Received CRC: ");
306 hexdump(vc->bad_crc, vc->crc_len);
307 }
Jens Axboe7d9fb452011-01-11 22:16:49 +0100308
309 dump_verify_buffers(hdr, vc);
Jens Axboebfacf382010-06-18 14:29:52 +0200310}
311
Jens Axboe936216f2010-06-18 13:44:11 +0200312/*
Jens Axboed9f2caf2007-07-28 21:22:03 +0200313 * Return data area 'header_num'
314 */
Jens Axboe936216f2010-06-18 13:44:11 +0200315static inline void *io_u_verify_off(struct verify_header *hdr, struct vcont *vc)
Jens Axboed9f2caf2007-07-28 21:22:03 +0200316{
Jens Axboe936216f2010-06-18 13:44:11 +0200317 return vc->io_u->buf + vc->hdr_num * hdr->len + hdr_size(hdr);
Jens Axboed9f2caf2007-07-28 21:22:03 +0200318}
319
Shawn Lewis7437ee82007-08-02 21:05:58 +0200320static int verify_io_u_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe936216f2010-06-18 13:44:11 +0200321 struct vcont *vc)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200322{
323 struct vhdr_meta *vh = hdr_priv(hdr);
Jens Axboe936216f2010-06-18 13:44:11 +0200324 struct io_u *io_u = vc->io_u;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200325
Jens Axboebd6f78b2008-02-01 20:27:52 +0100326 dprint(FD_VERIFY, "meta verify io_u %p, len %u\n", io_u, hdr->len);
327
Jens Axboebfacf382010-06-18 14:29:52 +0200328 if (vh->offset == io_u->offset + vc->hdr_num * td->o.verify_interval)
329 return 0;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200330
Jens Axboebfacf382010-06-18 14:29:52 +0200331 vc->name = "meta";
332 log_verify_failure(hdr, vc);
333 return EILSEQ;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200334}
335
Jens Axboe936216f2010-06-18 13:44:11 +0200336static int verify_io_u_sha512(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200337{
Jens Axboe936216f2010-06-18 13:44:11 +0200338 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200339 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200340 uint8_t sha512[128];
341 struct sha512_ctx sha512_ctx = {
342 .buf = sha512,
343 };
344
Jens Axboe936216f2010-06-18 13:44:11 +0200345 dprint(FD_VERIFY, "sha512 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100346
Jens Axboecd14cc12007-07-30 10:59:33 +0200347 sha512_init(&sha512_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200348 sha512_update(&sha512_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200349
Jens Axboebfacf382010-06-18 14:29:52 +0200350 if (!memcmp(vh->sha512, sha512_ctx.buf, sizeof(sha512)))
351 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200352
Jens Axboebfacf382010-06-18 14:29:52 +0200353 vc->name = "sha512";
354 vc->good_crc = vh->sha512;
355 vc->bad_crc = sha512_ctx.buf;
356 vc->crc_len = sizeof(vh->sha512);
357 log_verify_failure(hdr, vc);
358 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200359}
360
Jens Axboe936216f2010-06-18 13:44:11 +0200361static int verify_io_u_sha256(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200362{
Jens Axboe936216f2010-06-18 13:44:11 +0200363 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200364 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboebc77f562010-02-23 10:36:21 +0100365 uint8_t sha256[64];
Jens Axboecd14cc12007-07-30 10:59:33 +0200366 struct sha256_ctx sha256_ctx = {
367 .buf = sha256,
368 };
369
Jens Axboe936216f2010-06-18 13:44:11 +0200370 dprint(FD_VERIFY, "sha256 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100371
Jens Axboecd14cc12007-07-30 10:59:33 +0200372 sha256_init(&sha256_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200373 sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200374
Jens Axboebfacf382010-06-18 14:29:52 +0200375 if (!memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256)))
376 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200377
Jens Axboebfacf382010-06-18 14:29:52 +0200378 vc->name = "sha256";
379 vc->good_crc = vh->sha256;
380 vc->bad_crc = sha256_ctx.buf;
381 vc->crc_len = sizeof(vh->sha256);
382 log_verify_failure(hdr, vc);
383 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200384}
385
Jens Axboe936216f2010-06-18 13:44:11 +0200386static int verify_io_u_sha1(struct verify_header *hdr, struct vcont *vc)
Jens Axboe7c353ce2009-08-09 22:40:33 +0200387{
Jens Axboe936216f2010-06-18 13:44:11 +0200388 void *p = io_u_verify_off(hdr, vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200389 struct vhdr_sha1 *vh = hdr_priv(hdr);
390 uint32_t sha1[5];
391 struct sha1_ctx sha1_ctx = {
392 .H = sha1,
393 };
394
Jens Axboe936216f2010-06-18 13:44:11 +0200395 dprint(FD_VERIFY, "sha1 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200396
397 sha1_init(&sha1_ctx);
398 sha1_update(&sha1_ctx, p, hdr->len - hdr_size(hdr));
399
Jens Axboebfacf382010-06-18 14:29:52 +0200400 if (!memcmp(vh->sha1, sha1_ctx.H, sizeof(sha1)))
401 return 0;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200402
Jens Axboebfacf382010-06-18 14:29:52 +0200403 vc->name = "sha1";
404 vc->good_crc = vh->sha1;
405 vc->bad_crc = sha1_ctx.H;
406 vc->crc_len = sizeof(vh->sha1);
407 log_verify_failure(hdr, vc);
408 return EILSEQ;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200409}
410
Jens Axboe936216f2010-06-18 13:44:11 +0200411static int verify_io_u_crc7(struct verify_header *hdr, struct vcont *vc)
Jens Axboe1e154bd2007-07-27 09:52:40 +0200412{
Jens Axboe936216f2010-06-18 13:44:11 +0200413 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200414 struct vhdr_crc7 *vh = hdr_priv(hdr);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200415 unsigned char c;
416
Jens Axboe936216f2010-06-18 13:44:11 +0200417 dprint(FD_VERIFY, "crc7 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100418
Jens Axboe87677832007-07-30 12:08:14 +0200419 c = crc7(p, hdr->len - hdr_size(hdr));
Jens Axboe1e154bd2007-07-27 09:52:40 +0200420
Jens Axboebfacf382010-06-18 14:29:52 +0200421 if (c == vh->crc7)
422 return 0;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200423
Jens Axboebfacf382010-06-18 14:29:52 +0200424 vc->name = "crc7";
425 vc->good_crc = &vh->crc7;
426 vc->bad_crc = &c;
427 vc->crc_len = 1;
428 log_verify_failure(hdr, vc);
429 return EILSEQ;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200430}
431
Jens Axboe936216f2010-06-18 13:44:11 +0200432static int verify_io_u_crc16(struct verify_header *hdr, struct vcont *vc)
Jens Axboe969f7ed2007-07-27 09:07:17 +0200433{
Jens Axboe936216f2010-06-18 13:44:11 +0200434 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200435 struct vhdr_crc16 *vh = hdr_priv(hdr);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200436 unsigned short c;
437
Jens Axboe936216f2010-06-18 13:44:11 +0200438 dprint(FD_VERIFY, "crc16 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100439
Jens Axboe87677832007-07-30 12:08:14 +0200440 c = crc16(p, hdr->len - hdr_size(hdr));
Jens Axboe969f7ed2007-07-27 09:07:17 +0200441
Jens Axboebfacf382010-06-18 14:29:52 +0200442 if (c == vh->crc16)
443 return 0;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200444
Jens Axboebfacf382010-06-18 14:29:52 +0200445 vc->name = "crc16";
446 vc->good_crc = &vh->crc16;
447 vc->bad_crc = &c;
448 vc->crc_len = 2;
449 log_verify_failure(hdr, vc);
450 return EILSEQ;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200451}
452
Jens Axboe936216f2010-06-18 13:44:11 +0200453static int verify_io_u_crc64(struct verify_header *hdr, struct vcont *vc)
Jens Axboed77a7af2007-07-27 15:35:06 +0200454{
Jens Axboe936216f2010-06-18 13:44:11 +0200455 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200456 struct vhdr_crc64 *vh = hdr_priv(hdr);
Jens Axboed77a7af2007-07-27 15:35:06 +0200457 unsigned long long c;
458
Jens Axboe936216f2010-06-18 13:44:11 +0200459 dprint(FD_VERIFY, "crc64 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100460
Jens Axboe87677832007-07-30 12:08:14 +0200461 c = crc64(p, hdr->len - hdr_size(hdr));
Jens Axboed77a7af2007-07-27 15:35:06 +0200462
Jens Axboebfacf382010-06-18 14:29:52 +0200463 if (c == vh->crc64)
464 return 0;
Jens Axboed77a7af2007-07-27 15:35:06 +0200465
Jens Axboebfacf382010-06-18 14:29:52 +0200466 vc->name = "crc64";
467 vc->good_crc = &vh->crc64;
468 vc->bad_crc = &c;
469 vc->crc_len = 8;
470 log_verify_failure(hdr, vc);
471 return EILSEQ;
Jens Axboed77a7af2007-07-27 15:35:06 +0200472}
473
Jens Axboe936216f2010-06-18 13:44:11 +0200474static int verify_io_u_crc32(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200475{
Jens Axboe936216f2010-06-18 13:44:11 +0200476 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200477 struct vhdr_crc32 *vh = hdr_priv(hdr);
478 uint32_t c;
Jens Axboee29d1b72006-10-18 15:43:15 +0200479
Jens Axboe936216f2010-06-18 13:44:11 +0200480 dprint(FD_VERIFY, "crc32 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100481
Jens Axboe87677832007-07-30 12:08:14 +0200482 c = crc32(p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200483
Jens Axboebfacf382010-06-18 14:29:52 +0200484 if (c == vh->crc32)
485 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200486
Jens Axboebfacf382010-06-18 14:29:52 +0200487 vc->name = "crc32";
488 vc->good_crc = &vh->crc32;
489 vc->bad_crc = &c;
490 vc->crc_len = 4;
491 log_verify_failure(hdr, vc);
492 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200493}
494
Jens Axboe936216f2010-06-18 13:44:11 +0200495static int verify_io_u_crc32c(struct verify_header *hdr, struct vcont *vc)
Jens Axboebac39e02008-06-11 20:46:19 +0200496{
Jens Axboe936216f2010-06-18 13:44:11 +0200497 void *p = io_u_verify_off(hdr, vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200498 struct vhdr_crc32 *vh = hdr_priv(hdr);
499 uint32_t c;
500
Jens Axboe936216f2010-06-18 13:44:11 +0200501 dprint(FD_VERIFY, "crc32c verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebac39e02008-06-11 20:46:19 +0200502
Jens Axboe38455912008-08-04 15:35:26 +0200503 if (hdr->verify_type == VERIFY_CRC32C_INTEL)
504 c = crc32c_intel(p, hdr->len - hdr_size(hdr));
505 else
506 c = crc32c(p, hdr->len - hdr_size(hdr));
Jens Axboebac39e02008-06-11 20:46:19 +0200507
Jens Axboebfacf382010-06-18 14:29:52 +0200508 if (c == vh->crc32)
509 return 0;
Jens Axboebac39e02008-06-11 20:46:19 +0200510
Jens Axboebfacf382010-06-18 14:29:52 +0200511 vc->name = "crc32c";
512 vc->good_crc = &vh->crc32;
513 vc->bad_crc = &c;
514 vc->crc_len = 4;
515 log_verify_failure(hdr, vc);
516 return EILSEQ;
Jens Axboebac39e02008-06-11 20:46:19 +0200517}
518
Jens Axboe936216f2010-06-18 13:44:11 +0200519static int verify_io_u_md5(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200520{
Jens Axboe936216f2010-06-18 13:44:11 +0200521 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200522 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200523 uint32_t hash[MD5_HASH_WORDS];
524 struct md5_ctx md5_ctx = {
525 .hash = hash,
526 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200527
Jens Axboe936216f2010-06-18 13:44:11 +0200528 dprint(FD_VERIFY, "md5 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100529
Jens Axboe61f821f2007-07-30 10:18:06 +0200530 md5_init(&md5_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200531 md5_update(&md5_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200532
Jens Axboebfacf382010-06-18 14:29:52 +0200533 if (!memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash)))
534 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200535
Jens Axboebfacf382010-06-18 14:29:52 +0200536 vc->name = "md5";
537 vc->good_crc = vh->md5_digest;
538 vc->bad_crc = md5_ctx.hash;
539 vc->crc_len = sizeof(hash);
540 log_verify_failure(hdr, vc);
541 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200542}
543
Jens Axboe3f199b02007-08-09 10:16:31 +0200544static unsigned int hweight8(unsigned int w)
545{
546 unsigned int res = w - ((w >> 1) & 0x55);
547
548 res = (res & 0x33) + ((res >> 2) & 0x33);
549 return (res + (res >> 4)) & 0x0F;
550}
551
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100552int verify_io_u_pattern(struct verify_header *hdr, struct vcont *vc)
Shawn Lewisa944e332007-08-02 22:18:29 +0200553{
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100554 struct thread_data *td = vc->td;
555 struct io_u *io_u = vc->io_u;
556 char *pattern = td->o.verify_pattern;
557 unsigned long pattern_size = td->o.verify_pattern_bytes;
558 unsigned int hdr_size = __hdr_size(td->o.verify);
559 char *buf = (void *) hdr + hdr_size;
560 unsigned int hdr_inc = get_hdr_inc(td, io_u);
561 unsigned int len = hdr_inc - hdr_size;
562 unsigned int mod = hdr_size % pattern_size;
Shawn Lewisa944e332007-08-02 22:18:29 +0200563 unsigned int i;
Shawn Lewisa944e332007-08-02 22:18:29 +0200564
565 for (i = 0; i < len; i++) {
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100566 if (buf[i] != pattern[mod]) {
Jens Axboe3f199b02007-08-09 10:16:31 +0200567 unsigned int bits;
568
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100569 bits = hweight8(buf[i] ^ pattern[mod]);
Jens Axboe3f199b02007-08-09 10:16:31 +0200570 log_err("fio: got pattern %x, wanted %x. Bad bits %d\n",
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100571 buf[i], pattern[mod], bits);
Jens Axboe3f199b02007-08-09 10:16:31 +0200572 log_err("fio: bad pattern block offset %u\n", i);
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100573 dump_verify_buffers(hdr, vc);
Jens Axboe9fd18962009-05-19 10:35:38 +0200574 return EILSEQ;
Jens Axboe3f199b02007-08-09 10:16:31 +0200575 }
Shawn Lewisa944e332007-08-02 22:18:29 +0200576 mod++;
577 if (mod == pattern_size)
578 mod = 0;
579 }
580
581 return 0;
582}
583
Jens Axboee8462bd2009-07-06 12:59:04 +0200584/*
585 * Push IO verification to a separate thread
586 */
587int verify_io_u_async(struct thread_data *td, struct io_u *io_u)
588{
589 if (io_u->file)
590 put_file_log(td, io_u->file);
591
592 io_u->file = NULL;
593
594 pthread_mutex_lock(&td->io_u_lock);
Radha Ramachandran0c412142009-11-03 21:45:31 +0100595
596 if (io_u->flags & IO_U_F_IN_CUR_DEPTH) {
597 td->cur_depth--;
598 io_u->flags &= ~IO_U_F_IN_CUR_DEPTH;
599 }
Jens Axboee8462bd2009-07-06 12:59:04 +0200600 flist_del(&io_u->list);
601 flist_add_tail(&io_u->list, &td->verify_list);
Jens Axboe2ecc1b52009-11-04 20:58:09 +0100602 io_u->flags |= IO_U_F_FREE_DEF;
Jens Axboee8462bd2009-07-06 12:59:04 +0200603 pthread_mutex_unlock(&td->io_u_lock);
604
605 pthread_cond_signal(&td->verify_cond);
Jens Axboee8462bd2009-07-06 12:59:04 +0200606 return 0;
607}
608
Jens Axboe0d29de82010-09-01 13:54:15 +0200609static int verify_trimmed_io_u(struct thread_data *td, struct io_u *io_u)
610{
611 static char zero_buf[1024];
612 unsigned int this_len, len;
613 int ret = 0;
614 void *p;
615
616 if (!td->o.trim_zero)
617 return 0;
618
619 len = io_u->buflen;
620 p = io_u->buf;
621 do {
622 this_len = sizeof(zero_buf);
623 if (this_len > len)
624 this_len = len;
625 if (memcmp(p, zero_buf, this_len)) {
626 ret = EILSEQ;
627 break;
628 }
629 len -= this_len;
630 p += this_len;
631 } while (len);
632
633 if (!ret)
634 return 0;
635
Jens Axboea917a8b2010-09-02 13:23:20 +0200636 log_err("trim: verify failed at file %s offset %llu, length %lu"
637 ", block offset %lu\n",
638 io_u->file->file_name, io_u->offset, io_u->buflen,
Jens Axboe2f681242010-10-21 08:15:59 +0200639 (unsigned long) (p - io_u->buf));
Jens Axboe0d29de82010-09-01 13:54:15 +0200640 return ret;
641}
642
Jens Axboe36690c92007-03-26 10:23:34 +0200643int verify_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboee29d1b72006-10-18 15:43:15 +0200644{
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200645 struct verify_header *hdr;
Shawn Lewisa944e332007-08-02 22:18:29 +0200646 unsigned int hdr_size, hdr_inc, hdr_num = 0;
Jens Axboe95646102007-07-28 21:17:50 +0200647 void *p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200648 int ret;
649
Shawn Lewis1dcc0492007-07-27 08:02:45 +0200650 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
Jens Axboe36690c92007-03-26 10:23:34 +0200651 return 0;
Jens Axboe0d29de82010-09-01 13:54:15 +0200652 if (io_u->flags & IO_U_F_TRIMMED) {
653 ret = verify_trimmed_io_u(td, io_u);
654 goto done;
655 }
Jens Axboe36690c92007-03-26 10:23:34 +0200656
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100657 hdr_inc = get_hdr_inc(td, io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200658
Jens Axboea12a3b42007-08-09 10:20:54 +0200659 ret = 0;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100660 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
661 p += hdr_inc, hdr_num++) {
Jens Axboebfacf382010-06-18 14:29:52 +0200662 struct vcont vc = {
663 .io_u = io_u,
664 .hdr_num = hdr_num,
Jens Axboe7d9fb452011-01-11 22:16:49 +0100665 .td = td,
Jens Axboebfacf382010-06-18 14:29:52 +0200666 };
Jens Axboe936216f2010-06-18 13:44:11 +0200667
Jens Axboef3e6cb92010-06-18 14:48:43 +0200668 if (ret && td->o.verify_fatal)
Jens Axboea12a3b42007-08-09 10:20:54 +0200669 break;
Jens Axboef3e6cb92010-06-18 14:48:43 +0200670
Shawn Lewisa944e332007-08-02 22:18:29 +0200671 hdr_size = __hdr_size(td->o.verify);
Jens Axboea59e1702007-07-30 08:53:27 +0200672 if (td->o.verify_offset)
Shawn Lewisa944e332007-08-02 22:18:29 +0200673 memswp(p, p + td->o.verify_offset, hdr_size);
Jens Axboe95646102007-07-28 21:17:50 +0200674 hdr = p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200675
Jens Axboe3f199b02007-08-09 10:16:31 +0200676 if (hdr->fio_magic != FIO_HDR_MAGIC) {
Jens Axboec9b44032010-06-18 14:46:06 +0200677 log_err("verify: bad magic header %x, wanted %x at file %s offset %llu, length %u\n",
678 hdr->fio_magic, FIO_HDR_MAGIC,
679 io_u->file->file_name,
680 io_u->offset + hdr_num * hdr->len, hdr->len);
Jens Axboe9fd18962009-05-19 10:35:38 +0200681 return EILSEQ;
Jens Axboe3f199b02007-08-09 10:16:31 +0200682 }
683
Shawn Lewise28218f2008-01-16 11:01:33 +0100684 if (td->o.verify_pattern_bytes) {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100685 dprint(FD_VERIFY, "pattern verify io_u %p, len %u\n",
686 io_u, hdr->len);
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100687 ret = verify_io_u_pattern(hdr, &vc);
Jens Axboec9b44032010-06-18 14:46:06 +0200688 if (ret) {
689 log_err("pattern: verify failed at file %s offset %llu, length %u\n",
690 io_u->file->file_name,
691 io_u->offset + hdr_num * hdr->len,
692 hdr->len);
693 }
694
Radha Ramachandrane92d3d72009-07-27 12:27:55 +0200695 /*
696 * Also verify the meta data, if applicable
697 */
698 if (hdr->verify_type == VERIFY_META)
Jens Axboe936216f2010-06-18 13:44:11 +0200699 ret |= verify_io_u_meta(hdr, td, &vc);
Shawn Lewise28218f2008-01-16 11:01:33 +0100700 continue;
701 }
702
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200703 switch (hdr->verify_type) {
704 case VERIFY_MD5:
Jens Axboe936216f2010-06-18 13:44:11 +0200705 ret = verify_io_u_md5(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200706 break;
707 case VERIFY_CRC64:
Jens Axboe936216f2010-06-18 13:44:11 +0200708 ret = verify_io_u_crc64(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200709 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200710 case VERIFY_CRC32C:
Jens Axboe38455912008-08-04 15:35:26 +0200711 case VERIFY_CRC32C_INTEL:
Jens Axboe936216f2010-06-18 13:44:11 +0200712 ret = verify_io_u_crc32c(hdr, &vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200713 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200714 case VERIFY_CRC32:
Jens Axboe936216f2010-06-18 13:44:11 +0200715 ret = verify_io_u_crc32(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200716 break;
717 case VERIFY_CRC16:
Jens Axboe936216f2010-06-18 13:44:11 +0200718 ret = verify_io_u_crc16(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200719 break;
720 case VERIFY_CRC7:
Jens Axboe936216f2010-06-18 13:44:11 +0200721 ret = verify_io_u_crc7(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200722 break;
Jens Axboecd14cc12007-07-30 10:59:33 +0200723 case VERIFY_SHA256:
Jens Axboe936216f2010-06-18 13:44:11 +0200724 ret = verify_io_u_sha256(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200725 break;
726 case VERIFY_SHA512:
Jens Axboe936216f2010-06-18 13:44:11 +0200727 ret = verify_io_u_sha512(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200728 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200729 case VERIFY_META:
Jens Axboe936216f2010-06-18 13:44:11 +0200730 ret = verify_io_u_meta(hdr, td, &vc);
Shawn Lewis7437ee82007-08-02 21:05:58 +0200731 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200732 case VERIFY_SHA1:
Jens Axboe936216f2010-06-18 13:44:11 +0200733 ret = verify_io_u_sha1(hdr, &vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200734 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200735 default:
736 log_err("Bad verify type %u\n", hdr->verify_type);
Jens Axboed16d4e02007-09-06 16:16:44 +0200737 ret = EINVAL;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200738 }
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200739 }
Jens Axboea7dfe862007-03-12 10:05:08 +0100740
Jens Axboe0d29de82010-09-01 13:54:15 +0200741done:
Jens Axboef3e6cb92010-06-18 14:48:43 +0200742 if (ret && td->o.verify_fatal)
743 td->terminate = 1;
744
Jens Axboea12a3b42007-08-09 10:20:54 +0200745 return ret;
Jens Axboee29d1b72006-10-18 15:43:15 +0200746}
747
Shawn Lewis7437ee82007-08-02 21:05:58 +0200748static void fill_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100749 struct io_u *io_u, unsigned int header_num)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200750{
751 struct vhdr_meta *vh = hdr_priv(hdr);
752
753 vh->thread = td->thread_number;
754
755 vh->time_sec = io_u->start_time.tv_sec;
756 vh->time_usec = io_u->start_time.tv_usec;
757
758 vh->numberio = td->io_issues[DDIR_WRITE];
759
760 vh->offset = io_u->offset + header_num * td->o.verify_interval;
761}
762
Jens Axboecd14cc12007-07-30 10:59:33 +0200763static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
764{
Jens Axboe546dfd92007-07-30 12:23:05 +0200765 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200766 struct sha512_ctx sha512_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200767 .buf = vh->sha512,
Jens Axboecd14cc12007-07-30 10:59:33 +0200768 };
769
770 sha512_init(&sha512_ctx);
771 sha512_update(&sha512_ctx, p, len);
772}
773
774static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
775{
Jens Axboe546dfd92007-07-30 12:23:05 +0200776 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200777 struct sha256_ctx sha256_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200778 .buf = vh->sha256,
Jens Axboecd14cc12007-07-30 10:59:33 +0200779 };
780
781 sha256_init(&sha256_ctx);
782 sha256_update(&sha256_ctx, p, len);
783}
784
Jens Axboe7c353ce2009-08-09 22:40:33 +0200785static void fill_sha1(struct verify_header *hdr, void *p, unsigned int len)
786{
787 struct vhdr_sha1 *vh = hdr_priv(hdr);
788 struct sha1_ctx sha1_ctx = {
789 .H = vh->sha1,
790 };
791
792 sha1_init(&sha1_ctx);
793 sha1_update(&sha1_ctx, p, len);
794}
795
Jens Axboe1e154bd2007-07-27 09:52:40 +0200796static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
797{
Jens Axboe546dfd92007-07-30 12:23:05 +0200798 struct vhdr_crc7 *vh = hdr_priv(hdr);
799
800 vh->crc7 = crc7(p, len);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200801}
802
Jens Axboe969f7ed2007-07-27 09:07:17 +0200803static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
804{
Jens Axboe546dfd92007-07-30 12:23:05 +0200805 struct vhdr_crc16 *vh = hdr_priv(hdr);
806
807 vh->crc16 = crc16(p, len);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200808}
809
Jens Axboee29d1b72006-10-18 15:43:15 +0200810static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
811{
Jens Axboe546dfd92007-07-30 12:23:05 +0200812 struct vhdr_crc32 *vh = hdr_priv(hdr);
813
814 vh->crc32 = crc32(p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200815}
816
Jens Axboebac39e02008-06-11 20:46:19 +0200817static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
818{
819 struct vhdr_crc32 *vh = hdr_priv(hdr);
820
Jens Axboe38455912008-08-04 15:35:26 +0200821 if (hdr->verify_type == VERIFY_CRC32C_INTEL)
822 vh->crc32 = crc32c_intel(p, len);
823 else
824 vh->crc32 = crc32c(p, len);
Jens Axboebac39e02008-06-11 20:46:19 +0200825}
826
Jens Axboed77a7af2007-07-27 15:35:06 +0200827static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
828{
Jens Axboe546dfd92007-07-30 12:23:05 +0200829 struct vhdr_crc64 *vh = hdr_priv(hdr);
830
831 vh->crc64 = crc64(p, len);
Jens Axboed77a7af2007-07-27 15:35:06 +0200832}
833
Jens Axboee29d1b72006-10-18 15:43:15 +0200834static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
835{
Jens Axboe546dfd92007-07-30 12:23:05 +0200836 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200837 struct md5_ctx md5_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200838 .hash = (uint32_t *) vh->md5_digest,
Jens Axboe8c432322007-07-27 13:16:24 +0200839 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200840
Jens Axboe61f821f2007-07-30 10:18:06 +0200841 md5_init(&md5_ctx);
Jens Axboee29d1b72006-10-18 15:43:15 +0200842 md5_update(&md5_ctx, p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200843}
844
Jens Axboe7d9fb452011-01-11 22:16:49 +0100845static void populate_hdr(struct thread_data *td, struct io_u *io_u,
846 struct verify_header *hdr, unsigned int header_num,
847 unsigned int header_len)
848{
849 unsigned int data_len;
850 void *data, *p;
851
852 p = (void *) hdr;
853
854 hdr->fio_magic = FIO_HDR_MAGIC;
855 hdr->len = header_len;
856 hdr->verify_type = td->o.verify;
857 hdr->rand_seed = io_u->rand_seed;
858 data_len = header_len - hdr_size(hdr);
859
860 data = p + hdr_size(hdr);
861 switch (td->o.verify) {
862 case VERIFY_MD5:
863 dprint(FD_VERIFY, "fill md5 io_u %p, len %u\n",
864 io_u, hdr->len);
865 fill_md5(hdr, data, data_len);
866 break;
867 case VERIFY_CRC64:
868 dprint(FD_VERIFY, "fill crc64 io_u %p, len %u\n",
869 io_u, hdr->len);
870 fill_crc64(hdr, data, data_len);
871 break;
872 case VERIFY_CRC32C:
873 case VERIFY_CRC32C_INTEL:
874 dprint(FD_VERIFY, "fill crc32c io_u %p, len %u\n",
875 io_u, hdr->len);
876 fill_crc32c(hdr, data, data_len);
877 break;
878 case VERIFY_CRC32:
879 dprint(FD_VERIFY, "fill crc32 io_u %p, len %u\n",
880 io_u, hdr->len);
881 fill_crc32(hdr, data, data_len);
882 break;
883 case VERIFY_CRC16:
884 dprint(FD_VERIFY, "fill crc16 io_u %p, len %u\n",
885 io_u, hdr->len);
886 fill_crc16(hdr, data, data_len);
887 break;
888 case VERIFY_CRC7:
889 dprint(FD_VERIFY, "fill crc7 io_u %p, len %u\n",
890 io_u, hdr->len);
891 fill_crc7(hdr, data, data_len);
892 break;
893 case VERIFY_SHA256:
894 dprint(FD_VERIFY, "fill sha256 io_u %p, len %u\n",
895 io_u, hdr->len);
896 fill_sha256(hdr, data, data_len);
897 break;
898 case VERIFY_SHA512:
899 dprint(FD_VERIFY, "fill sha512 io_u %p, len %u\n",
900 io_u, hdr->len);
901 fill_sha512(hdr, data, data_len);
902 break;
903 case VERIFY_META:
904 dprint(FD_VERIFY, "fill meta io_u %p, len %u\n",
905 io_u, hdr->len);
906 fill_meta(hdr, td, io_u, header_num);
907 break;
908 case VERIFY_SHA1:
909 dprint(FD_VERIFY, "fill sha1 io_u %p, len %u\n",
910 io_u, hdr->len);
911 fill_sha1(hdr, data, data_len);
912 break;
913 default:
914 log_err("fio: bad verify type: %d\n", td->o.verify);
915 assert(0);
916 }
917 if (td->o.verify_offset)
918 memswp(p, p + td->o.verify_offset, hdr_size(hdr));
919}
920
Jens Axboee29d1b72006-10-18 15:43:15 +0200921/*
922 * fill body of io_u->buf with random data and add a header with the
Jens Axboec50ca7b2011-01-12 08:31:54 +0100923 * checksum of choice
Jens Axboee29d1b72006-10-18 15:43:15 +0200924 */
925void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
926{
Jens Axboe9cc3d152007-03-26 10:32:30 +0200927 if (td->o.verify == VERIFY_NULL)
928 return;
929
Jens Axboec50ca7b2011-01-12 08:31:54 +0100930 fill_pattern_headers(td, io_u, 0, 0);
Jens Axboee29d1b72006-10-18 15:43:15 +0200931}
932
933int get_next_verify(struct thread_data *td, struct io_u *io_u)
934{
Jens Axboe8de8f042007-03-27 10:36:12 +0200935 struct io_piece *ipo = NULL;
Jens Axboee29d1b72006-10-18 15:43:15 +0200936
Jens Axboed2d7fa52007-02-19 13:21:35 +0100937 /*
938 * this io_u is from a requeue, we already filled the offsets
939 */
940 if (io_u->file)
941 return 0;
942
Jens Axboe8de8f042007-03-27 10:36:12 +0200943 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
944 struct rb_node *n = rb_first(&td->io_hist_tree);
945
Jens Axboe4b878982007-03-26 09:32:22 +0200946 ipo = rb_entry(n, struct io_piece, rb_node);
Jens Axboe4b878982007-03-26 09:32:22 +0200947 rb_erase(n, &td->io_hist_tree);
Jens Axboea917a8b2010-09-02 13:23:20 +0200948 assert(ipo->flags & IP_F_ONRB);
949 ipo->flags &= ~IP_F_ONRB;
Jens Axboe01743ee2008-06-02 12:19:19 +0200950 } else if (!flist_empty(&td->io_hist_list)) {
951 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
952 flist_del(&ipo->list);
Jens Axboea917a8b2010-09-02 13:23:20 +0200953 assert(ipo->flags & IP_F_ONLIST);
954 ipo->flags &= ~IP_F_ONLIST;
Jens Axboe8de8f042007-03-27 10:36:12 +0200955 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200956
Jens Axboe8de8f042007-03-27 10:36:12 +0200957 if (ipo) {
Jens Axboe0d29de82010-09-01 13:54:15 +0200958 td->io_hist_len--;
959
Jens Axboee29d1b72006-10-18 15:43:15 +0200960 io_u->offset = ipo->offset;
961 io_u->buflen = ipo->len;
Jens Axboe36167d82007-02-18 05:41:31 +0100962 io_u->file = ipo->file;
Jens Axboe97af62c2007-05-22 11:12:13 +0200963
Jens Axboe0d29de82010-09-01 13:54:15 +0200964 if (ipo->flags & IP_F_TRIMMED)
965 io_u->flags |= IO_U_F_TRIMMED;
966
Jens Axboed6aed792009-06-03 08:41:15 +0200967 if (!fio_file_open(io_u->file)) {
Jens Axboe97af62c2007-05-22 11:12:13 +0200968 int r = td_io_open_file(td, io_u->file);
969
Jens Axboebd6f78b2008-02-01 20:27:52 +0100970 if (r) {
971 dprint(FD_VERIFY, "failed file %s open\n",
972 io_u->file->file_name);
Jens Axboe97af62c2007-05-22 11:12:13 +0200973 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100974 }
Jens Axboe97af62c2007-05-22 11:12:13 +0200975 }
976
977 get_file(ipo->file);
Jens Axboed6aed792009-06-03 08:41:15 +0200978 assert(fio_file_open(io_u->file));
Jens Axboee29d1b72006-10-18 15:43:15 +0200979 io_u->ddir = DDIR_READ;
Jens Axboe36167d82007-02-18 05:41:31 +0100980 io_u->xfer_buf = io_u->buf;
981 io_u->xfer_buflen = io_u->buflen;
Jens Axboe0d29de82010-09-01 13:54:15 +0200982
983 remove_trim_entry(td, ipo);
Jens Axboee29d1b72006-10-18 15:43:15 +0200984 free(ipo);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100985 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200986 return 0;
987 }
988
Jens Axboebd6f78b2008-02-01 20:27:52 +0100989 dprint(FD_VERIFY, "get_next_verify: empty\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200990 return 1;
991}
Jens Axboee8462bd2009-07-06 12:59:04 +0200992
993static void *verify_async_thread(void *data)
994{
995 struct thread_data *td = data;
996 struct io_u *io_u;
997 int ret = 0;
998
999 if (td->o.verify_cpumask_set &&
1000 fio_setaffinity(td->pid, td->o.verify_cpumask)) {
1001 log_err("fio: failed setting verify thread affinity\n");
1002 goto done;
1003 }
1004
1005 do {
Jens Axboee53ab272009-07-06 13:43:46 +02001006 FLIST_HEAD(list);
1007
Jens Axboee8462bd2009-07-06 12:59:04 +02001008 read_barrier();
1009 if (td->verify_thread_exit)
1010 break;
1011
1012 pthread_mutex_lock(&td->io_u_lock);
1013
1014 while (flist_empty(&td->verify_list) &&
1015 !td->verify_thread_exit) {
Jens Axboeb36e2982009-07-06 14:12:52 +02001016 ret = pthread_cond_wait(&td->verify_cond,
1017 &td->io_u_lock);
Jens Axboee8462bd2009-07-06 12:59:04 +02001018 if (ret) {
1019 pthread_mutex_unlock(&td->io_u_lock);
1020 break;
1021 }
1022 }
1023
Jens Axboee53ab272009-07-06 13:43:46 +02001024 flist_splice_init(&td->verify_list, &list);
Jens Axboee8462bd2009-07-06 12:59:04 +02001025 pthread_mutex_unlock(&td->io_u_lock);
1026
Jens Axboee53ab272009-07-06 13:43:46 +02001027 if (flist_empty(&list))
1028 continue;
1029
1030 while (!flist_empty(&list)) {
1031 io_u = flist_entry(list.next, struct io_u, list);
1032 flist_del_init(&io_u->list);
1033
Jens Axboed561f2a2009-07-06 13:51:05 +02001034 ret = verify_io_u(td, io_u);
Jens Axboee53ab272009-07-06 13:43:46 +02001035 put_io_u(td, io_u);
Jens Axboed561f2a2009-07-06 13:51:05 +02001036 if (!ret)
1037 continue;
1038 if (td->o.continue_on_error &&
1039 td_non_fatal_error(ret)) {
1040 update_error_count(td, ret);
1041 td_clear_error(td);
1042 ret = 0;
1043 }
Jens Axboee53ab272009-07-06 13:43:46 +02001044 }
Jens Axboee8462bd2009-07-06 12:59:04 +02001045 } while (!ret);
1046
Jens Axboed561f2a2009-07-06 13:51:05 +02001047 if (ret) {
1048 td_verror(td, ret, "async_verify");
Jens Axboef3e6cb92010-06-18 14:48:43 +02001049 if (td->o.verify_fatal)
1050 td->terminate = 1;
Jens Axboed561f2a2009-07-06 13:51:05 +02001051 }
1052
Jens Axboee8462bd2009-07-06 12:59:04 +02001053done:
1054 pthread_mutex_lock(&td->io_u_lock);
1055 td->nr_verify_threads--;
1056 pthread_mutex_unlock(&td->io_u_lock);
1057
1058 pthread_cond_signal(&td->free_cond);
1059 return NULL;
1060}
1061
1062int verify_async_init(struct thread_data *td)
1063{
1064 int i, ret;
bart Van Assche304a47c2010-08-01 21:31:26 +02001065 pthread_attr_t attr;
1066
1067 pthread_attr_init(&attr);
1068 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
Jens Axboee8462bd2009-07-06 12:59:04 +02001069
1070 td->verify_thread_exit = 0;
1071
1072 td->verify_threads = malloc(sizeof(pthread_t) * td->o.verify_async);
1073 for (i = 0; i < td->o.verify_async; i++) {
bart Van Assche304a47c2010-08-01 21:31:26 +02001074 ret = pthread_create(&td->verify_threads[i], &attr,
Jens Axboee8462bd2009-07-06 12:59:04 +02001075 verify_async_thread, td);
1076 if (ret) {
1077 log_err("fio: async verify creation failed: %s\n",
1078 strerror(ret));
1079 break;
1080 }
1081 ret = pthread_detach(td->verify_threads[i]);
1082 if (ret) {
1083 log_err("fio: async verify thread detach failed: %s\n",
1084 strerror(ret));
1085 break;
1086 }
1087 td->nr_verify_threads++;
1088 }
1089
bart Van Assche304a47c2010-08-01 21:31:26 +02001090 pthread_attr_destroy(&attr);
1091
Jens Axboee8462bd2009-07-06 12:59:04 +02001092 if (i != td->o.verify_async) {
Jens Axboee40823b2009-07-06 14:28:21 +02001093 log_err("fio: only %d verify threads started, exiting\n", i);
Jens Axboee8462bd2009-07-06 12:59:04 +02001094 td->verify_thread_exit = 1;
1095 write_barrier();
1096 pthread_cond_broadcast(&td->verify_cond);
1097 return 1;
1098 }
1099
1100 return 0;
1101}
1102
1103void verify_async_exit(struct thread_data *td)
1104{
1105 td->verify_thread_exit = 1;
1106 write_barrier();
1107 pthread_cond_broadcast(&td->verify_cond);
1108
1109 pthread_mutex_lock(&td->io_u_lock);
1110
1111 while (td->nr_verify_threads)
1112 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1113
1114 pthread_mutex_unlock(&td->io_u_lock);
1115 free(td->verify_threads);
1116 td->verify_threads = NULL;
1117}