Coverage Report

Created: 2025-07-01 07:02

/src/checksum_fuzzer.c
Line
Count
Source (jump to first uncovered line)
1
#include <stdio.h>
2
#include <stddef.h>
3
#include <stdint.h>
4
#include <string.h>
5
#include <assert.h>
6
#include <stdlib.h>
7
#include <inttypes.h>
8
#include "zlib.h"
9
10
574
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t dataLen) {
11
574
  uint32_t crc0 = crc32(0L, NULL, 0);
12
574
  uint32_t crc1 = crc0;
13
574
  uint32_t crc2 = crc0;
14
574
  uint32_t adler0 = adler32(0L, NULL, 0);
15
574
  uint32_t adler1 = adler0;
16
574
  uint32_t adler2 = adler0;
17
  /* Checksum with a buffer of size equal to the first byte in the input. */
18
574
  uint32_t buffSize = data[0];
19
574
  uint32_t offset = 0;
20
574
  uint32_t op;
21
22
  /* Discard inputs larger than 1Mb. */
23
574
  static size_t kMaxSize = 1024 * 1024;
24
574
  if (dataLen < 1 || dataLen > kMaxSize)
25
0
    return 0;
26
27
  /* Make sure the buffer has at least a byte. */
28
574
  if (buffSize == 0)
29
90
    ++buffSize;
30
31
  /* CRC32 */
32
574
  op = crc32_combine_gen(buffSize);
33
5.02M
  for (offset = 0; offset + buffSize <= dataLen; offset += buffSize) {
34
5.01M
    uint32_t crc3 = crc32_z(crc0, data + offset, buffSize);
35
5.01M
    uint32_t crc4 = crc32_combine_op(crc1, crc3, op);
36
5.01M
    crc1 = crc32_z(crc1, data + offset, buffSize);
37
5.01M
    assert(crc1 == crc4);
38
5.01M
  }
39
574
  crc1 = crc32_z(crc1, data + offset, dataLen % buffSize);
40
41
574
  crc2 = crc32(crc2, data, (uint32_t) dataLen);
42
43
574
  assert(crc1 == crc2);
44
574
  assert(crc32_combine(crc1, crc2, dataLen) ==
45
574
         crc32_combine(crc1, crc1, dataLen));
46
47
  /* Fast CRC32 combine. */
48
574
  op = crc32_combine_gen(dataLen);
49
574
  assert(crc32_combine_op(crc1, crc2, op) ==
50
574
         crc32_combine_op(crc2, crc1, op));
51
574
  assert(crc32_combine(crc1, crc2, dataLen) ==
52
574
         crc32_combine_op(crc2, crc1, op));
53
54
  /* Adler32 */
55
5.02M
  for (offset = 0; offset + buffSize <= dataLen; offset += buffSize)
56
5.01M
    adler1 = adler32_z(adler1, data + offset, buffSize);
57
574
  adler1 = adler32_z(adler1, data + offset, dataLen % buffSize);
58
59
574
  adler2 = adler32(adler2, data, (uint32_t) dataLen);
60
61
574
  assert(adler1 == adler2);
62
574
  assert(adler32_combine(adler1, adler2, dataLen) ==
63
574
         adler32_combine(adler1, adler1, dataLen));
64
65
  /* This function must return 0. */
66
574
  return 0;
67
574
}