Add crc16 verify type
[fio.git] / verify.c
index 794244a9b495240974f26f1e4f972f38ec1cc8c2..cca070c8279f609456cb24e2c33a41dcfb292785 100644 (file)
--- a/verify.c
+++ b/verify.c
@@ -42,9 +42,26 @@ static void hexdump(void *buffer, int len)
        log_info("\n");
 }
 
+static int verify_io_u_crc16(struct verify_header *hdr, struct io_u *io_u)
+{
+       unsigned char *p = io_u->buf;
+       unsigned short c;
+
+       p += sizeof(*hdr);
+       c = crc16(p, hdr->len - sizeof(*hdr));
+
+       if (c != hdr->crc16) {
+               log_err("crc16: verify failed at %llu/%lu\n", io_u->offset, io_u->buflen);
+               log_err("crc16: wanted %lx, got %x\n", hdr->crc32, c);
+               return 1;
+       }
+
+       return 0;
+}
+
 static int verify_io_u_crc32(struct verify_header *hdr, struct io_u *io_u)
 {
-       unsigned char *p = (unsigned char *) io_u->buf;
+       unsigned char *p = io_u->buf;
        unsigned long c;
 
        p += sizeof(*hdr);
@@ -61,7 +78,7 @@ static int verify_io_u_crc32(struct verify_header *hdr, struct io_u *io_u)
 
 static int verify_io_u_md5(struct verify_header *hdr, struct io_u *io_u)
 {
-       unsigned char *p = (unsigned char *) io_u->buf;
+       unsigned char *p = io_u->buf;
        struct md5_ctx md5_ctx;
 
        memset(&md5_ctx, 0, sizeof(md5_ctx));
@@ -83,7 +100,7 @@ int verify_io_u(struct thread_data *td, struct io_u *io_u)
        struct verify_header *hdr = (struct verify_header *) io_u->buf;
        int ret;
 
-       if (td->o.verify == VERIFY_NULL)
+       if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
                return 0;
 
        if (hdr->fio_magic != FIO_HDR_MAGIC) {
@@ -95,6 +112,8 @@ int verify_io_u(struct thread_data *td, struct io_u *io_u)
                ret = verify_io_u_md5(hdr, io_u);
        else if (hdr->verify_type == VERIFY_CRC32)
                ret = verify_io_u_crc32(hdr, io_u);
+       else if (hdr->verify_type == VERIFY_CRC16)
+               ret = verify_io_u_crc16(hdr, io_u);
        else {
                log_err("Bad verify type %u\n", hdr->verify_type);
                ret = 1;
@@ -106,6 +125,11 @@ int verify_io_u(struct thread_data *td, struct io_u *io_u)
        return 0;
 }
 
+static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
+{
+       hdr->crc16 = crc16(p, len);
+}
+
 static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
 {
        hdr->crc32 = crc32(p, len);
@@ -143,6 +167,9 @@ void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
        } else if (td->o.verify == VERIFY_CRC32) {
                fill_crc32(&hdr, p, io_u->buflen - sizeof(hdr));
                hdr.verify_type = VERIFY_CRC32;
+       } else if (td->o.verify == VERIFY_CRC16) {
+               fill_crc16(&hdr, p, io_u->buflen - sizeof(hdr));
+               hdr.verify_type = VERIFY_CRC16;
        }
 
        memcpy(io_u->buf, &hdr, sizeof(hdr));