blob: afb4cb7d4afbda3a896c34ab4da805c52238a26e [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 Axboee29d1b72006-10-18 15:43:15 +02008
9#include "fio.h"
Jens Axboee29d1b72006-10-18 15:43:15 +020010
Jens Axboeeef6eea2007-07-30 12:27:58 +020011#include "crc/md5.h"
12#include "crc/crc64.h"
13#include "crc/crc32.h"
Jens Axboebac39e02008-06-11 20:46:19 +020014#include "crc/crc32c.h"
Jens Axboeeef6eea2007-07-30 12:27:58 +020015#include "crc/crc16.h"
16#include "crc/crc7.h"
17#include "crc/sha256.h"
18#include "crc/sha512.h"
Jens Axboecd14cc12007-07-30 10:59:33 +020019
Jens Axboe90059d62007-07-30 09:33:12 +020020static void fill_random_bytes(struct thread_data *td, void *p, unsigned int len)
Jens Axboee29d1b72006-10-18 15:43:15 +020021{
22 unsigned int todo;
Jens Axboe4c5946c2007-07-26 11:55:10 +020023 int r;
Jens Axboee29d1b72006-10-18 15:43:15 +020024
25 while (len) {
Jens Axboe4c5946c2007-07-26 11:55:10 +020026 r = os_random_long(&td->verify_state);
Jens Axboee29d1b72006-10-18 15:43:15 +020027
28 /*
29 * lrand48_r seems to be broken and only fill the bottom
30 * 32-bits, even on 64-bit archs with 64-bit longs
31 */
32 todo = sizeof(r);
33 if (todo > len)
34 todo = len;
35
36 memcpy(p, &r, todo);
37
38 len -= todo;
39 p += todo;
40 }
41}
42
Jens Axboe90059d62007-07-30 09:33:12 +020043static void fill_pattern(struct thread_data *td, void *p, unsigned int len)
44{
45 switch (td->o.verify_pattern_bytes) {
46 case 0:
Jens Axboebd6f78b2008-02-01 20:27:52 +010047 dprint(FD_VERIFY, "fill random bytes len=%u\n", len);
Jens Axboe90059d62007-07-30 09:33:12 +020048 fill_random_bytes(td, p, len);
49 break;
50 case 1:
Jens Axboebd6f78b2008-02-01 20:27:52 +010051 dprint(FD_VERIFY, "fill verify pattern b=0 len=%u\n", len);
Jens Axboe90059d62007-07-30 09:33:12 +020052 memset(p, td->o.verify_pattern, len);
53 break;
54 case 2:
55 case 3:
56 case 4: {
57 unsigned int pattern = td->o.verify_pattern;
58 unsigned int i = 0;
59 unsigned char c1, c2, c3, c4;
60 unsigned char *b = p;
61
Jens Axboebd6f78b2008-02-01 20:27:52 +010062 dprint(FD_VERIFY, "fill verify pattern b=%d len=%u\n",
63 td->o.verify_pattern_bytes, len);
64
Jens Axboe90059d62007-07-30 09:33:12 +020065 c1 = pattern & 0xff;
66 pattern >>= 8;
67 c2 = pattern & 0xff;
68 pattern >>= 8;
69 c3 = pattern & 0xff;
70 pattern >>= 8;
71 c4 = pattern & 0xff;
72
73 while (i < len) {
74 b[i++] = c1;
75 if (i == len)
76 break;
77 b[i++] = c2;
78 if (td->o.verify_pattern_bytes == 2 || i == len)
79 continue;
80 b[i++] = c3;
81 if (td->o.verify_pattern_bytes == 3 || i == len)
82 continue;
83 b[i++] = c4;
84 }
85 break;
86 }
87 }
88}
89
Jens Axboe4764aec2007-08-23 09:03:38 +020090static void memswp(void *buf1, void *buf2, unsigned int len)
Shawn Lewis546a9142007-07-28 21:11:37 +020091{
Shawn Lewisdee6de72007-08-02 22:17:52 +020092 char swap[200];
93
94 assert(len <= sizeof(swap));
Jens Axboe90059d62007-07-30 09:33:12 +020095
Shawn Lewis546a9142007-07-28 21:11:37 +020096 memcpy(&swap, buf1, len);
97 memcpy(buf1, buf2, len);
98 memcpy(buf2, &swap, len);
99}
100
Jens Axboee29d1b72006-10-18 15:43:15 +0200101static void hexdump(void *buffer, int len)
102{
103 unsigned char *p = buffer;
104 int i;
105
106 for (i = 0; i < len; i++)
Jens Axboe6d861442007-03-15 09:22:23 +0100107 log_info("%02x", p[i]);
108 log_info("\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200109}
110
Jens Axboed9f2caf2007-07-28 21:22:03 +0200111/*
Jens Axboe87677832007-07-30 12:08:14 +0200112 * Prepare for seperation of verify_header and checksum header
113 */
Jens Axboe546dfd92007-07-30 12:23:05 +0200114static inline unsigned int __hdr_size(int verify_type)
Jens Axboe87677832007-07-30 12:08:14 +0200115{
Jens Axboe5921e802008-05-30 15:02:38 +0200116 unsigned int len = len;
Jens Axboe87677832007-07-30 12:08:14 +0200117
Jens Axboe546dfd92007-07-30 12:23:05 +0200118 switch (verify_type) {
119 case VERIFY_NONE:
120 case VERIFY_NULL:
121 len = 0;
122 break;
123 case VERIFY_MD5:
124 len = sizeof(struct vhdr_md5);
125 break;
126 case VERIFY_CRC64:
127 len = sizeof(struct vhdr_crc64);
128 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200129 case VERIFY_CRC32C:
Jens Axboe546dfd92007-07-30 12:23:05 +0200130 case VERIFY_CRC32:
131 len = sizeof(struct vhdr_crc32);
132 break;
133 case VERIFY_CRC16:
134 len = sizeof(struct vhdr_crc16);
135 break;
136 case VERIFY_CRC7:
137 len = sizeof(struct vhdr_crc7);
138 break;
139 case VERIFY_SHA256:
140 len = sizeof(struct vhdr_sha256);
141 break;
142 case VERIFY_SHA512:
143 len = sizeof(struct vhdr_sha512);
144 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200145 case VERIFY_META:
146 len = sizeof(struct vhdr_meta);
147 break;
Jens Axboe546dfd92007-07-30 12:23:05 +0200148 default:
149 log_err("fio: unknown verify header!\n");
150 assert(0);
151 }
152
153 return len + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200154}
155
156static inline unsigned int hdr_size(struct verify_header *hdr)
157{
Jens Axboe546dfd92007-07-30 12:23:05 +0200158 return __hdr_size(hdr->verify_type);
159}
160
161static void *hdr_priv(struct verify_header *hdr)
162{
163 void *priv = hdr;
164
165 return priv + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200166}
167
168/*
Jens Axboed9f2caf2007-07-28 21:22:03 +0200169 * Return data area 'header_num'
170 */
171static inline void *io_u_verify_off(struct verify_header *hdr,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100172 struct io_u *io_u, unsigned char header_num)
Jens Axboed9f2caf2007-07-28 21:22:03 +0200173{
Jens Axboe87677832007-07-30 12:08:14 +0200174 return io_u->buf + header_num * hdr->len + hdr_size(hdr);
Jens Axboed9f2caf2007-07-28 21:22:03 +0200175}
176
Shawn Lewis7437ee82007-08-02 21:05:58 +0200177static int verify_io_u_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100178 struct io_u *io_u, unsigned int header_num)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200179{
180 struct vhdr_meta *vh = hdr_priv(hdr);
181
Jens Axboebd6f78b2008-02-01 20:27:52 +0100182 dprint(FD_VERIFY, "meta verify io_u %p, len %u\n", io_u, hdr->len);
183
Shawn Lewis7437ee82007-08-02 21:05:58 +0200184 if (vh->offset != io_u->offset + header_num * td->o.verify_interval) {
185 log_err("meta: verify failed at %llu/%u\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100186 io_u->offset + header_num * hdr->len, hdr->len);
Jens Axboed16d4e02007-09-06 16:16:44 +0200187 return EIO;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200188 }
189
190 return 0;
191}
192
Jens Axboecd14cc12007-07-30 10:59:33 +0200193static int verify_io_u_sha512(struct verify_header *hdr, struct io_u *io_u,
194 unsigned int header_num)
195{
196 void *p = io_u_verify_off(hdr, io_u, header_num);
Jens Axboe546dfd92007-07-30 12:23:05 +0200197 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200198 uint8_t sha512[128];
199 struct sha512_ctx sha512_ctx = {
200 .buf = sha512,
201 };
202
Jens Axboebd6f78b2008-02-01 20:27:52 +0100203 dprint(FD_VERIFY, "sha512 verify io_u %p, len %u\n", io_u, hdr->len);
204
Jens Axboecd14cc12007-07-30 10:59:33 +0200205 sha512_init(&sha512_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200206 sha512_update(&sha512_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200207
Jens Axboe546dfd92007-07-30 12:23:05 +0200208 if (memcmp(vh->sha512, sha512_ctx.buf, sizeof(sha512))) {
Jens Axboecd14cc12007-07-30 10:59:33 +0200209 log_err("sha512: verify failed at %llu/%u\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100210 io_u->offset + header_num * hdr->len, hdr->len);
Jens Axboe546dfd92007-07-30 12:23:05 +0200211 hexdump(vh->sha512, sizeof(vh->sha512));
Jens Axboecd14cc12007-07-30 10:59:33 +0200212 hexdump(sha512_ctx.buf, sizeof(sha512));
Jens Axboed16d4e02007-09-06 16:16:44 +0200213 return EIO;
Jens Axboecd14cc12007-07-30 10:59:33 +0200214 }
215
216 return 0;
217}
218
219static int verify_io_u_sha256(struct verify_header *hdr, struct io_u *io_u,
220 unsigned int header_num)
221{
222 void *p = io_u_verify_off(hdr, io_u, header_num);
Jens Axboe546dfd92007-07-30 12:23:05 +0200223 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200224 uint8_t sha256[128];
225 struct sha256_ctx sha256_ctx = {
226 .buf = sha256,
227 };
228
Jens Axboebd6f78b2008-02-01 20:27:52 +0100229 dprint(FD_VERIFY, "sha256 verify io_u %p, len %u\n", io_u, hdr->len);
230
Jens Axboecd14cc12007-07-30 10:59:33 +0200231 sha256_init(&sha256_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200232 sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200233
Jens Axboe546dfd92007-07-30 12:23:05 +0200234 if (memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256))) {
Jens Axboecd14cc12007-07-30 10:59:33 +0200235 log_err("sha256: verify failed at %llu/%u\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100236 io_u->offset + header_num * hdr->len, hdr->len);
Jens Axboe546dfd92007-07-30 12:23:05 +0200237 hexdump(vh->sha256, sizeof(vh->sha256));
Jens Axboecd14cc12007-07-30 10:59:33 +0200238 hexdump(sha256_ctx.buf, sizeof(sha256));
Jens Axboed16d4e02007-09-06 16:16:44 +0200239 return EIO;
Jens Axboecd14cc12007-07-30 10:59:33 +0200240 }
241
242 return 0;
243}
244
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200245static int verify_io_u_crc7(struct verify_header *hdr, struct io_u *io_u,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100246 unsigned char header_num)
Jens Axboe1e154bd2007-07-27 09:52:40 +0200247{
Jens Axboed9f2caf2007-07-28 21:22:03 +0200248 void *p = io_u_verify_off(hdr, io_u, header_num);
Jens Axboe546dfd92007-07-30 12:23:05 +0200249 struct vhdr_crc7 *vh = hdr_priv(hdr);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200250 unsigned char c;
251
Jens Axboebd6f78b2008-02-01 20:27:52 +0100252 dprint(FD_VERIFY, "crc7 verify io_u %p, len %u\n", io_u, hdr->len);
253
Jens Axboe87677832007-07-30 12:08:14 +0200254 c = crc7(p, hdr->len - hdr_size(hdr));
Jens Axboe1e154bd2007-07-27 09:52:40 +0200255
Jens Axboe546dfd92007-07-30 12:23:05 +0200256 if (c != vh->crc7) {
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200257 log_err("crc7: verify failed at %llu/%u\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100258 io_u->offset + header_num * hdr->len, hdr->len);
Jens Axboe546dfd92007-07-30 12:23:05 +0200259 log_err("crc7: wanted %x, got %x\n", vh->crc7, c);
Jens Axboed16d4e02007-09-06 16:16:44 +0200260 return EIO;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200261 }
262
263 return 0;
264}
265
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200266static int verify_io_u_crc16(struct verify_header *hdr, struct io_u *io_u,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100267 unsigned int header_num)
Jens Axboe969f7ed2007-07-27 09:07:17 +0200268{
Jens Axboed9f2caf2007-07-28 21:22:03 +0200269 void *p = io_u_verify_off(hdr, io_u, header_num);
Jens Axboe546dfd92007-07-30 12:23:05 +0200270 struct vhdr_crc16 *vh = hdr_priv(hdr);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200271 unsigned short c;
272
Jens Axboebd6f78b2008-02-01 20:27:52 +0100273 dprint(FD_VERIFY, "crc16 verify io_u %p, len %u\n", io_u, hdr->len);
274
Jens Axboe87677832007-07-30 12:08:14 +0200275 c = crc16(p, hdr->len - hdr_size(hdr));
Jens Axboe969f7ed2007-07-27 09:07:17 +0200276
Jens Axboe546dfd92007-07-30 12:23:05 +0200277 if (c != vh->crc16) {
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200278 log_err("crc16: verify failed at %llu/%u\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100279 io_u->offset + header_num * hdr->len, hdr->len);
Jens Axboe546dfd92007-07-30 12:23:05 +0200280 log_err("crc16: wanted %x, got %x\n", vh->crc16, c);
Jens Axboed16d4e02007-09-06 16:16:44 +0200281 return EIO;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200282 }
283
284 return 0;
285}
286
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200287static int verify_io_u_crc64(struct verify_header *hdr, struct io_u *io_u,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100288 unsigned int header_num)
Jens Axboed77a7af2007-07-27 15:35:06 +0200289{
Jens Axboed9f2caf2007-07-28 21:22:03 +0200290 void *p = io_u_verify_off(hdr, io_u, header_num);
Jens Axboe546dfd92007-07-30 12:23:05 +0200291 struct vhdr_crc64 *vh = hdr_priv(hdr);
Jens Axboed77a7af2007-07-27 15:35:06 +0200292 unsigned long long c;
293
Jens Axboebd6f78b2008-02-01 20:27:52 +0100294 dprint(FD_VERIFY, "crc64 verify io_u %p, len %u\n", io_u, hdr->len);
295
Jens Axboe87677832007-07-30 12:08:14 +0200296 c = crc64(p, hdr->len - hdr_size(hdr));
Jens Axboed77a7af2007-07-27 15:35:06 +0200297
Jens Axboe546dfd92007-07-30 12:23:05 +0200298 if (c != vh->crc64) {
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200299 log_err("crc64: verify failed at %llu/%u\n",
300 io_u->offset + header_num * hdr->len,
301 hdr->len);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100302 log_err("crc64: wanted %llx, got %llx\n",
303 (unsigned long long) vh->crc64, c);
Jens Axboed16d4e02007-09-06 16:16:44 +0200304 return EIO;
Jens Axboed77a7af2007-07-27 15:35:06 +0200305 }
306
307 return 0;
308}
309
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200310static int verify_io_u_crc32(struct verify_header *hdr, struct io_u *io_u,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100311 unsigned int header_num)
Jens Axboee29d1b72006-10-18 15:43:15 +0200312{
Jens Axboed9f2caf2007-07-28 21:22:03 +0200313 void *p = io_u_verify_off(hdr, io_u, header_num);
Jens Axboe546dfd92007-07-30 12:23:05 +0200314 struct vhdr_crc32 *vh = hdr_priv(hdr);
315 uint32_t c;
Jens Axboee29d1b72006-10-18 15:43:15 +0200316
Jens Axboebd6f78b2008-02-01 20:27:52 +0100317 dprint(FD_VERIFY, "crc32 verify io_u %p, len %u\n", io_u, hdr->len);
318
Jens Axboe87677832007-07-30 12:08:14 +0200319 c = crc32(p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200320
Jens Axboe546dfd92007-07-30 12:23:05 +0200321 if (c != vh->crc32) {
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200322 log_err("crc32: verify failed at %llu/%u\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100323 io_u->offset + header_num * hdr->len, hdr->len);
Jens Axboe546dfd92007-07-30 12:23:05 +0200324 log_err("crc32: wanted %x, got %x\n", vh->crc32, c);
Jens Axboed16d4e02007-09-06 16:16:44 +0200325 return EIO;
Jens Axboee29d1b72006-10-18 15:43:15 +0200326 }
327
328 return 0;
329}
330
Jens Axboebac39e02008-06-11 20:46:19 +0200331static int verify_io_u_crc32c(struct verify_header *hdr, struct io_u *io_u,
332 unsigned int header_num)
333{
334 void *p = io_u_verify_off(hdr, io_u, header_num);
335 struct vhdr_crc32 *vh = hdr_priv(hdr);
336 uint32_t c;
337
338 dprint(FD_VERIFY, "crc32c verify io_u %p, len %u\n", io_u, hdr->len);
339
340 c = crc32c(p, hdr->len - hdr_size(hdr));
341
342 if (c != vh->crc32) {
343 log_err("crc32c: verify failed at %llu/%u\n",
344 io_u->offset + header_num * hdr->len, hdr->len);
345 log_err("crc32c: wanted %x, got %x\n", vh->crc32, c);
346 return EIO;
347 }
348
349 return 0;
350}
351
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200352static int verify_io_u_md5(struct verify_header *hdr, struct io_u *io_u,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100353 unsigned int header_num)
Jens Axboee29d1b72006-10-18 15:43:15 +0200354{
Jens Axboed9f2caf2007-07-28 21:22:03 +0200355 void *p = io_u_verify_off(hdr, io_u, header_num);
Jens Axboe546dfd92007-07-30 12:23:05 +0200356 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200357 uint32_t hash[MD5_HASH_WORDS];
358 struct md5_ctx md5_ctx = {
359 .hash = hash,
360 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200361
Jens Axboebd6f78b2008-02-01 20:27:52 +0100362 dprint(FD_VERIFY, "md5 verify io_u %p, len %u\n", io_u, hdr->len);
363
Jens Axboe61f821f2007-07-30 10:18:06 +0200364 md5_init(&md5_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200365 md5_update(&md5_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200366
Jens Axboe546dfd92007-07-30 12:23:05 +0200367 if (memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash))) {
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200368 log_err("md5: verify failed at %llu/%u\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100369 io_u->offset + header_num * hdr->len, hdr->len);
Jens Axboe546dfd92007-07-30 12:23:05 +0200370 hexdump(vh->md5_digest, sizeof(vh->md5_digest));
Jens Axboe8c432322007-07-27 13:16:24 +0200371 hexdump(md5_ctx.hash, sizeof(hash));
Jens Axboed16d4e02007-09-06 16:16:44 +0200372 return EIO;
Jens Axboee29d1b72006-10-18 15:43:15 +0200373 }
374
375 return 0;
376}
377
Jens Axboe3f199b02007-08-09 10:16:31 +0200378static unsigned int hweight8(unsigned int w)
379{
380 unsigned int res = w - ((w >> 1) & 0x55);
381
382 res = (res & 0x33) + ((res >> 2) & 0x33);
383 return (res + (res >> 4)) & 0x0F;
384}
385
Shawn Lewisa944e332007-08-02 22:18:29 +0200386int verify_io_u_pattern(unsigned long pattern, unsigned long pattern_size,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100387 char *buf, unsigned int len, unsigned int mod)
Shawn Lewisa944e332007-08-02 22:18:29 +0200388{
389 unsigned int i;
390 char split_pattern[4];
391
392 for (i = 0; i < 4; i++) {
393 split_pattern[i] = pattern & 0xff;
394 pattern >>= 8;
395 }
396
397 for (i = 0; i < len; i++) {
Jens Axboe3f199b02007-08-09 10:16:31 +0200398 if (buf[i] != split_pattern[mod]) {
399 unsigned int bits;
400
401 bits = hweight8(buf[i] ^ split_pattern[mod]);
402 log_err("fio: got pattern %x, wanted %x. Bad bits %d\n",
403 buf[i], split_pattern[mod], bits);
404 log_err("fio: bad pattern block offset %u\n", i);
Jens Axboed16d4e02007-09-06 16:16:44 +0200405 return EIO;
Jens Axboe3f199b02007-08-09 10:16:31 +0200406 }
Shawn Lewisa944e332007-08-02 22:18:29 +0200407 mod++;
408 if (mod == pattern_size)
409 mod = 0;
410 }
411
412 return 0;
413}
414
Jens Axboe36690c92007-03-26 10:23:34 +0200415int verify_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboee29d1b72006-10-18 15:43:15 +0200416{
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200417 struct verify_header *hdr;
Shawn Lewisa944e332007-08-02 22:18:29 +0200418 unsigned int hdr_size, hdr_inc, hdr_num = 0;
Jens Axboe95646102007-07-28 21:17:50 +0200419 void *p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200420 int ret;
421
Shawn Lewis1dcc0492007-07-27 08:02:45 +0200422 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
Jens Axboe36690c92007-03-26 10:23:34 +0200423 return 0;
424
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200425 hdr_inc = io_u->buflen;
Jens Axboea59e1702007-07-30 08:53:27 +0200426 if (td->o.verify_interval)
427 hdr_inc = td->o.verify_interval;
Jens Axboee29d1b72006-10-18 15:43:15 +0200428
Jens Axboea12a3b42007-08-09 10:20:54 +0200429 ret = 0;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100430 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
431 p += hdr_inc, hdr_num++) {
Jens Axboea12a3b42007-08-09 10:20:54 +0200432 if (ret && td->o.verify_fatal) {
433 td->terminate = 1;
434 break;
435 }
Shawn Lewisa944e332007-08-02 22:18:29 +0200436 hdr_size = __hdr_size(td->o.verify);
Jens Axboea59e1702007-07-30 08:53:27 +0200437 if (td->o.verify_offset)
Shawn Lewisa944e332007-08-02 22:18:29 +0200438 memswp(p, p + td->o.verify_offset, hdr_size);
Jens Axboe95646102007-07-28 21:17:50 +0200439 hdr = p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200440
Jens Axboe3f199b02007-08-09 10:16:31 +0200441 if (hdr->fio_magic != FIO_HDR_MAGIC) {
442 log_err("Bad verify header %x\n", hdr->fio_magic);
443 return EIO;
444 }
445
Shawn Lewise28218f2008-01-16 11:01:33 +0100446 if (td->o.verify_pattern_bytes) {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100447 dprint(FD_VERIFY, "pattern verify io_u %p, len %u\n",
448 io_u, hdr->len);
Shawn Lewise28218f2008-01-16 11:01:33 +0100449 ret = verify_io_u_pattern(td->o.verify_pattern,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100450 td->o.verify_pattern_bytes,
451 p + hdr_size,
452 hdr_inc - hdr_size,
453 hdr_size % 4);
Shawn Lewise28218f2008-01-16 11:01:33 +0100454 if (ret)
455 log_err("fio: verify failed at %llu/%u\n",
456 io_u->offset + hdr_num * hdr->len,
457 hdr->len);
458 continue;
459 }
460
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200461 switch (hdr->verify_type) {
462 case VERIFY_MD5:
463 ret = verify_io_u_md5(hdr, io_u, hdr_num);
464 break;
465 case VERIFY_CRC64:
466 ret = verify_io_u_crc64(hdr, io_u, hdr_num);
467 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200468 case VERIFY_CRC32C:
469 ret = verify_io_u_crc32c(hdr, io_u, hdr_num);
470 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200471 case VERIFY_CRC32:
472 ret = verify_io_u_crc32(hdr, io_u, hdr_num);
473 break;
474 case VERIFY_CRC16:
475 ret = verify_io_u_crc16(hdr, io_u, hdr_num);
476 break;
477 case VERIFY_CRC7:
478 ret = verify_io_u_crc7(hdr, io_u, hdr_num);
479 break;
Jens Axboecd14cc12007-07-30 10:59:33 +0200480 case VERIFY_SHA256:
481 ret = verify_io_u_sha256(hdr, io_u, hdr_num);
482 break;
483 case VERIFY_SHA512:
484 ret = verify_io_u_sha512(hdr, io_u, hdr_num);
485 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200486 case VERIFY_META:
487 ret = verify_io_u_meta(hdr, td, io_u, hdr_num);
488 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200489 default:
490 log_err("Bad verify type %u\n", hdr->verify_type);
Jens Axboed16d4e02007-09-06 16:16:44 +0200491 ret = EINVAL;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200492 }
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200493 }
Jens Axboea7dfe862007-03-12 10:05:08 +0100494
Jens Axboea12a3b42007-08-09 10:20:54 +0200495 return ret;
Jens Axboee29d1b72006-10-18 15:43:15 +0200496}
497
Shawn Lewis7437ee82007-08-02 21:05:58 +0200498static void fill_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100499 struct io_u *io_u, unsigned int header_num)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200500{
501 struct vhdr_meta *vh = hdr_priv(hdr);
502
503 vh->thread = td->thread_number;
504
505 vh->time_sec = io_u->start_time.tv_sec;
506 vh->time_usec = io_u->start_time.tv_usec;
507
508 vh->numberio = td->io_issues[DDIR_WRITE];
509
510 vh->offset = io_u->offset + header_num * td->o.verify_interval;
511}
512
Jens Axboecd14cc12007-07-30 10:59:33 +0200513static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
514{
Jens Axboe546dfd92007-07-30 12:23:05 +0200515 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200516 struct sha512_ctx sha512_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200517 .buf = vh->sha512,
Jens Axboecd14cc12007-07-30 10:59:33 +0200518 };
519
520 sha512_init(&sha512_ctx);
521 sha512_update(&sha512_ctx, p, len);
522}
523
524static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
525{
Jens Axboe546dfd92007-07-30 12:23:05 +0200526 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200527 struct sha256_ctx sha256_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200528 .buf = vh->sha256,
Jens Axboecd14cc12007-07-30 10:59:33 +0200529 };
530
531 sha256_init(&sha256_ctx);
532 sha256_update(&sha256_ctx, p, len);
533}
534
Jens Axboe1e154bd2007-07-27 09:52:40 +0200535static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
536{
Jens Axboe546dfd92007-07-30 12:23:05 +0200537 struct vhdr_crc7 *vh = hdr_priv(hdr);
538
539 vh->crc7 = crc7(p, len);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200540}
541
Jens Axboe969f7ed2007-07-27 09:07:17 +0200542static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
543{
Jens Axboe546dfd92007-07-30 12:23:05 +0200544 struct vhdr_crc16 *vh = hdr_priv(hdr);
545
546 vh->crc16 = crc16(p, len);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200547}
548
Jens Axboee29d1b72006-10-18 15:43:15 +0200549static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
550{
Jens Axboe546dfd92007-07-30 12:23:05 +0200551 struct vhdr_crc32 *vh = hdr_priv(hdr);
552
553 vh->crc32 = crc32(p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200554}
555
Jens Axboebac39e02008-06-11 20:46:19 +0200556static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
557{
558 struct vhdr_crc32 *vh = hdr_priv(hdr);
559
560 vh->crc32 = crc32c(p, len);
561}
562
Jens Axboed77a7af2007-07-27 15:35:06 +0200563static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
564{
Jens Axboe546dfd92007-07-30 12:23:05 +0200565 struct vhdr_crc64 *vh = hdr_priv(hdr);
566
567 vh->crc64 = crc64(p, len);
Jens Axboed77a7af2007-07-27 15:35:06 +0200568}
569
Jens Axboee29d1b72006-10-18 15:43:15 +0200570static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
571{
Jens Axboe546dfd92007-07-30 12:23:05 +0200572 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200573 struct md5_ctx md5_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200574 .hash = (uint32_t *) vh->md5_digest,
Jens Axboe8c432322007-07-27 13:16:24 +0200575 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200576
Jens Axboe61f821f2007-07-30 10:18:06 +0200577 md5_init(&md5_ctx);
Jens Axboee29d1b72006-10-18 15:43:15 +0200578 md5_update(&md5_ctx, p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200579}
580
581/*
582 * fill body of io_u->buf with random data and add a header with the
583 * crc32 or md5 sum of that data.
584 */
585void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
586{
Jens Axboebaefa9b2007-07-27 12:57:25 +0200587 struct verify_header *hdr;
Jens Axboe95646102007-07-28 21:17:50 +0200588 void *p = io_u->buf, *data;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200589 unsigned int hdr_inc, data_len, header_num = 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200590
Jens Axboe9cc3d152007-03-26 10:32:30 +0200591 if (td->o.verify == VERIFY_NULL)
592 return;
593
Jens Axboe90059d62007-07-30 09:33:12 +0200594 fill_pattern(td, p, io_u->buflen);
Jens Axboebaefa9b2007-07-27 12:57:25 +0200595
Shawn Lewis546a9142007-07-28 21:11:37 +0200596 hdr_inc = io_u->buflen;
Jens Axboea59e1702007-07-30 08:53:27 +0200597 if (td->o.verify_interval)
598 hdr_inc = td->o.verify_interval;
Shawn Lewis546a9142007-07-28 21:11:37 +0200599
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100600 for (; p < io_u->buf + io_u->buflen; p += hdr_inc) {
Jens Axboe95646102007-07-28 21:17:50 +0200601 hdr = p;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200602
603 hdr->fio_magic = FIO_HDR_MAGIC;
604 hdr->verify_type = td->o.verify;
Shawn Lewis546a9142007-07-28 21:11:37 +0200605 hdr->len = hdr_inc;
Jens Axboe87677832007-07-30 12:08:14 +0200606 data_len = hdr_inc - hdr_size(hdr);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200607
Jens Axboe87677832007-07-30 12:08:14 +0200608 data = p + hdr_size(hdr);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200609 switch (td->o.verify) {
610 case VERIFY_MD5:
Jens Axboebd6f78b2008-02-01 20:27:52 +0100611 dprint(FD_VERIFY, "fill md5 io_u %p, len %u\n",
612 io_u, hdr->len);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200613 fill_md5(hdr, data, data_len);
614 break;
615 case VERIFY_CRC64:
Jens Axboebd6f78b2008-02-01 20:27:52 +0100616 dprint(FD_VERIFY, "fill crc64 io_u %p, len %u\n",
617 io_u, hdr->len);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200618 fill_crc64(hdr, data, data_len);
619 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200620 case VERIFY_CRC32C:
621 dprint(FD_VERIFY, "fill crc32c io_u %p, len %u\n",
622 io_u, hdr->len);
623 fill_crc32c(hdr, data, data_len);
624 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200625 case VERIFY_CRC32:
Jens Axboebd6f78b2008-02-01 20:27:52 +0100626 dprint(FD_VERIFY, "fill crc32 io_u %p, len %u\n",
627 io_u, hdr->len);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200628 fill_crc32(hdr, data, data_len);
629 break;
630 case VERIFY_CRC16:
Jens Axboebd6f78b2008-02-01 20:27:52 +0100631 dprint(FD_VERIFY, "fill crc16 io_u %p, len %u\n",
632 io_u, hdr->len);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200633 fill_crc16(hdr, data, data_len);
634 break;
635 case VERIFY_CRC7:
Jens Axboebd6f78b2008-02-01 20:27:52 +0100636 dprint(FD_VERIFY, "fill crc7 io_u %p, len %u\n",
637 io_u, hdr->len);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200638 fill_crc7(hdr, data, data_len);
639 break;
Jens Axboecd14cc12007-07-30 10:59:33 +0200640 case VERIFY_SHA256:
Jens Axboebd6f78b2008-02-01 20:27:52 +0100641 dprint(FD_VERIFY, "fill sha256 io_u %p, len %u\n",
642 io_u, hdr->len);
Jens Axboecd14cc12007-07-30 10:59:33 +0200643 fill_sha256(hdr, data, data_len);
644 break;
645 case VERIFY_SHA512:
Jens Axboebd6f78b2008-02-01 20:27:52 +0100646 dprint(FD_VERIFY, "fill sha512 io_u %p, len %u\n",
647 io_u, hdr->len);
Jens Axboecd14cc12007-07-30 10:59:33 +0200648 fill_sha512(hdr, data, data_len);
649 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200650 case VERIFY_META:
Jens Axboebd6f78b2008-02-01 20:27:52 +0100651 dprint(FD_VERIFY, "fill meta io_u %p, len %u\n",
652 io_u, hdr->len);
Shawn Lewis7437ee82007-08-02 21:05:58 +0200653 fill_meta(hdr, td, io_u, header_num);
654 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200655 default:
656 log_err("fio: bad verify type: %d\n", td->o.verify);
657 assert(0);
658 }
Jens Axboea59e1702007-07-30 08:53:27 +0200659 if (td->o.verify_offset)
Jens Axboe87677832007-07-30 12:08:14 +0200660 memswp(p, p + td->o.verify_offset, hdr_size(hdr));
Shawn Lewis7437ee82007-08-02 21:05:58 +0200661 header_num++;
Jens Axboee29d1b72006-10-18 15:43:15 +0200662 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200663}
664
665int get_next_verify(struct thread_data *td, struct io_u *io_u)
666{
Jens Axboe8de8f042007-03-27 10:36:12 +0200667 struct io_piece *ipo = NULL;
Jens Axboee29d1b72006-10-18 15:43:15 +0200668
Jens Axboed2d7fa52007-02-19 13:21:35 +0100669 /*
670 * this io_u is from a requeue, we already filled the offsets
671 */
672 if (io_u->file)
673 return 0;
674
Jens Axboe8de8f042007-03-27 10:36:12 +0200675 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
676 struct rb_node *n = rb_first(&td->io_hist_tree);
677
Jens Axboe4b878982007-03-26 09:32:22 +0200678 ipo = rb_entry(n, struct io_piece, rb_node);
Jens Axboe4b878982007-03-26 09:32:22 +0200679 rb_erase(n, &td->io_hist_tree);
Jens Axboe01743ee2008-06-02 12:19:19 +0200680 } else if (!flist_empty(&td->io_hist_list)) {
681 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
682 flist_del(&ipo->list);
Jens Axboe8de8f042007-03-27 10:36:12 +0200683 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200684
Jens Axboe8de8f042007-03-27 10:36:12 +0200685 if (ipo) {
Jens Axboee29d1b72006-10-18 15:43:15 +0200686 io_u->offset = ipo->offset;
687 io_u->buflen = ipo->len;
Jens Axboe36167d82007-02-18 05:41:31 +0100688 io_u->file = ipo->file;
Jens Axboe97af62c2007-05-22 11:12:13 +0200689
690 if ((io_u->file->flags & FIO_FILE_OPEN) == 0) {
691 int r = td_io_open_file(td, io_u->file);
692
Jens Axboebd6f78b2008-02-01 20:27:52 +0100693 if (r) {
694 dprint(FD_VERIFY, "failed file %s open\n",
695 io_u->file->file_name);
Jens Axboe97af62c2007-05-22 11:12:13 +0200696 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100697 }
Jens Axboe97af62c2007-05-22 11:12:13 +0200698 }
699
700 get_file(ipo->file);
701 assert(io_u->file->flags & FIO_FILE_OPEN);
Jens Axboee29d1b72006-10-18 15:43:15 +0200702 io_u->ddir = DDIR_READ;
Jens Axboe36167d82007-02-18 05:41:31 +0100703 io_u->xfer_buf = io_u->buf;
704 io_u->xfer_buflen = io_u->buflen;
Jens Axboee29d1b72006-10-18 15:43:15 +0200705 free(ipo);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100706 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200707 return 0;
708 }
709
Jens Axboebd6f78b2008-02-01 20:27:52 +0100710 dprint(FD_VERIFY, "get_next_verify: empty\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200711 return 1;
712}