Coverage Report

Created: 2026-05-12 06:24

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/fuzz_crypto_ext.cpp
Line
Count
Source
1
// Copyright 2025 Google LLC
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
//      http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
//
15
////////////////////////////////////////////////////////////////////////////////
16
#include <stddef.h>
17
#include <stdint.h>
18
#include <string.h>
19
#include <vector>
20
#include <algorithm>
21
22
#include <fuzzer/FuzzedDataProvider.h>
23
24
#include "md5_ext.h"
25
#include "sha256_ext.h"
26
27
28
// Fuzzing target function pointer types for the enternal hash APIs
29
template <typename HashType> using InitOnceFn = void (*)(HashType*);
30
template <typename HashType> using UpdateFn   = void (*)(HashType*, size_t, const uint8_t*);
31
template <typename HashType> using FinishFn   = void (*)(HashType*, uint8_t*);
32
template <typename HashType> using DeinitFn   = void (*)(HashType*);
33
34
// Generic hashing flow that fuzz same hashing procedure for different algorithm
35
template <typename HashType>
36
static void fuzz_hash_ext_multi(FuzzedDataProvider &fdp,
37
                                size_t block_size,
38
                                InitOnceFn<HashType> init_once,
39
                                UpdateFn<HashType> update_fn,
40
                                FinishFn<HashType> finish_fn,
41
                                DeinitFn<HashType> deinit_fn,
42
2.53k
                                size_t digest_size) {
43
2.53k
  if (!fdp.remaining_bytes()) {
44
25
    return;
45
25
  }
46
47
  // Pull a random slice of data for fuzzing
48
2.51k
  size_t take_len = fdp.ConsumeIntegralInRange<size_t>(0, fdp.remaining_bytes());
49
2.51k
  std::vector<uint8_t> input_bytes = fdp.ConsumeBytes<uint8_t>(take_len);
50
51
  // Create 1 to 4 independent hashing contexts with it own digest buffer
52
2.51k
  const unsigned num_contexts = fdp.ConsumeIntegralInRange<unsigned>(1, 4);
53
2.51k
  std::vector<HashType> contexts(num_contexts);
54
2.51k
  std::vector<std::vector<uint8_t>> digests(num_contexts, std::vector<uint8_t>(digest_size));
55
7.70k
  for (unsigned i = 0; i < num_contexts; i++) {
56
5.19k
    init_once(&contexts[i]);
57
5.19k
  }
58
59
  // Intentionally misalign the data pointer to stress alignment sensitive paths
60
2.51k
  const size_t misalign_pad = fdp.ConsumeIntegralInRange<size_t>(0, 64);
61
2.51k
  std::vector<uint8_t> scratch_buf(misalign_pad + input_bytes.size());
62
2.51k
  if (!input_bytes.empty()) {
63
1.81k
    memcpy(scratch_buf.data() + misalign_pad, input_bytes.data(), input_bytes.size());
64
1.81k
  }
65
66
  // Define cursor and remaining bytes counter to keep track of the multiple hash update iterations
67
2.51k
  const uint8_t *cursor = scratch_buf.data() + misalign_pad;
68
2.51k
  size_t remaining = input_bytes.size();
69
70
  // Perform multiple hash update iterations on the raw data
71
2.51k
  unsigned num_iterations = fdp.ConsumeIntegralInRange<unsigned>(1, 4);
72
6.48k
  while (num_iterations-- && remaining > 0) {
73
    // Pick which context to feed this iteration
74
3.97k
    const unsigned ctx_index = (num_contexts == 1) ? 0 : fdp.ConsumeIntegralInRange<unsigned>(0, num_contexts - 1);
75
76
    // Choose a chunking pattern relative to block size.
77
3.97k
    enum Pattern { LESS1, EQ, PLUS1, SMALL, RANDOM, TAIL, HALT };
78
3.97k
    Pattern pattern = fdp.PickValueInArray<Pattern>({LESS1, EQ, PLUS1, SMALL, RANDOM, TAIL, HALT});
79
80
3.97k
    size_t chunk_len = 0;
81
3.97k
    switch (pattern) {
82
932
      case LESS1: {
83
        // Consume 1 byte less from block size from the raw data for this iteration
84
932
        if (block_size > 1) {
85
932
          chunk_len = std::min(remaining, block_size - 1);
86
932
        }
87
932
        break;
88
0
      }
89
245
      case EQ: {
90
        // Consume block size bytes from the raw data for this iteration
91
245
        chunk_len = std::min(remaining, block_size);
92
245
        break;
93
0
      }
94
268
      case PLUS1: {
95
        // Consume 1 byte more from block size from the raw data for this iteration
96
268
        chunk_len = std::min(remaining, block_size + 1);
97
268
        break;
98
0
      }
99
797
      case SMALL: {
100
        // Consume 1~32 bytes from the raw data for this iteration
101
797
        size_t small_len = (size_t)fdp.ConsumeIntegralInRange<int>(1, 32);
102
797
        chunk_len = std::min(remaining, small_len);
103
797
        break;
104
0
      }
105
635
      case RANDOM: {
106
        // Consume random bytes from the raw data for this iteration
107
635
        chunk_len = (remaining >= 1) ? (size_t)fdp.ConsumeIntegralInRange<size_t>(1, remaining) : 0;
108
635
        break;
109
0
      }
110
89
      case TAIL: {
111
        // Consume all remaining bytes from the raw data for this iteration
112
89
        chunk_len = remaining;
113
89
        break;
114
0
      }
115
1.00k
      case HALT: {
116
        // Consume small chunk and consider reinitialisation or early halt of the hash iteration
117
1.00k
        size_t step  = std::max<size_t>(1, fdp.ConsumeIntegralInRange<size_t>(1, block_size));
118
1.00k
        size_t loops = fdp.ConsumeIntegralInRange<size_t>(1, 4);
119
2.66k
        for (size_t j = 0; j < loops && remaining > 0; j++) {
120
1.65k
          size_t w = std::min(remaining, step);
121
1.65k
          update_fn(&contexts[ctx_index], w, cursor);
122
1.65k
          cursor += w;
123
1.65k
          remaining -= w;
124
1.65k
        }
125
126
        // Randomly reinitialise the hash stream
127
1.00k
        if (fdp.ConsumeBool()) {
128
403
          finish_fn(&contexts[ctx_index], digests[ctx_index].data());
129
403
        }
130
1.00k
        continue;
131
0
      }
132
3.97k
    }
133
134
2.96k
    if (chunk_len == 0 || chunk_len > remaining) {
135
0
      continue;
136
0
    }
137
138
    // Fuzz the update function
139
2.96k
    update_fn(&contexts[ctx_index], chunk_len, cursor);
140
2.96k
    cursor += chunk_len;
141
2.96k
    remaining -= chunk_len;
142
2.96k
  }
143
144
  // Finalize all active contexts (finish_reset).
145
7.70k
  for (unsigned i = 0; i < num_contexts; i++) {
146
5.19k
    finish_fn(&contexts[i], digests[i].data());
147
5.19k
  }
148
149
  // Additional fuzzing on special context chaining approach.
150
2.51k
  if (num_contexts >= 2 && digest_size && fdp.ConsumeBool()) {
151
699
    unsigned src_idx = fdp.ConsumeIntegralInRange<unsigned>(0, num_contexts - 1);
152
699
    unsigned dst_idx = fdp.ConsumeIntegralInRange<unsigned>(0, num_contexts - 1);
153
699
    if (src_idx != dst_idx) {
154
408
      size_t offset = fdp.ConsumeIntegralInRange<size_t>(0, digest_size - 1);
155
408
      size_t max_avail = digest_size - offset; // >= 1
156
408
      size_t feed_len = fdp.ConsumeIntegralInRange<size_t>(1, max_avail);
157
408
      update_fn(&contexts[dst_idx], feed_len, digests[src_idx].data() + offset);
158
408
      finish_fn(&contexts[dst_idx], digests[dst_idx].data());
159
408
    }
160
699
  }
161
162
  // Deinitialise all contexts after this iteration
163
7.70k
  for (unsigned i = 0; i < num_contexts; i++) {
164
5.19k
    deinit_fn(&contexts[i]);
165
5.19k
  }
166
2.51k
}
fuzz_crypto_ext.cpp:void fuzz_hash_ext_multi<mhd_Md5CtxExt>(FuzzedDataProvider&, unsigned long, void (*)(mhd_Md5CtxExt*), void (*)(mhd_Md5CtxExt*, unsigned long, unsigned char const*), void (*)(mhd_Md5CtxExt*, unsigned char*), void (*)(mhd_Md5CtxExt*), unsigned long)
Line
Count
Source
42
1.31k
                                size_t digest_size) {
43
1.31k
  if (!fdp.remaining_bytes()) {
44
7
    return;
45
7
  }
46
47
  // Pull a random slice of data for fuzzing
48
1.31k
  size_t take_len = fdp.ConsumeIntegralInRange<size_t>(0, fdp.remaining_bytes());
49
1.31k
  std::vector<uint8_t> input_bytes = fdp.ConsumeBytes<uint8_t>(take_len);
50
51
  // Create 1 to 4 independent hashing contexts with it own digest buffer
52
1.31k
  const unsigned num_contexts = fdp.ConsumeIntegralInRange<unsigned>(1, 4);
53
1.31k
  std::vector<HashType> contexts(num_contexts);
54
1.31k
  std::vector<std::vector<uint8_t>> digests(num_contexts, std::vector<uint8_t>(digest_size));
55
4.24k
  for (unsigned i = 0; i < num_contexts; i++) {
56
2.93k
    init_once(&contexts[i]);
57
2.93k
  }
58
59
  // Intentionally misalign the data pointer to stress alignment sensitive paths
60
1.31k
  const size_t misalign_pad = fdp.ConsumeIntegralInRange<size_t>(0, 64);
61
1.31k
  std::vector<uint8_t> scratch_buf(misalign_pad + input_bytes.size());
62
1.31k
  if (!input_bytes.empty()) {
63
991
    memcpy(scratch_buf.data() + misalign_pad, input_bytes.data(), input_bytes.size());
64
991
  }
65
66
  // Define cursor and remaining bytes counter to keep track of the multiple hash update iterations
67
1.31k
  const uint8_t *cursor = scratch_buf.data() + misalign_pad;
68
1.31k
  size_t remaining = input_bytes.size();
69
70
  // Perform multiple hash update iterations on the raw data
71
1.31k
  unsigned num_iterations = fdp.ConsumeIntegralInRange<unsigned>(1, 4);
72
3.55k
  while (num_iterations-- && remaining > 0) {
73
    // Pick which context to feed this iteration
74
2.24k
    const unsigned ctx_index = (num_contexts == 1) ? 0 : fdp.ConsumeIntegralInRange<unsigned>(0, num_contexts - 1);
75
76
    // Choose a chunking pattern relative to block size.
77
2.24k
    enum Pattern { LESS1, EQ, PLUS1, SMALL, RANDOM, TAIL, HALT };
78
2.24k
    Pattern pattern = fdp.PickValueInArray<Pattern>({LESS1, EQ, PLUS1, SMALL, RANDOM, TAIL, HALT});
79
80
2.24k
    size_t chunk_len = 0;
81
2.24k
    switch (pattern) {
82
534
      case LESS1: {
83
        // Consume 1 byte less from block size from the raw data for this iteration
84
534
        if (block_size > 1) {
85
534
          chunk_len = std::min(remaining, block_size - 1);
86
534
        }
87
534
        break;
88
0
      }
89
161
      case EQ: {
90
        // Consume block size bytes from the raw data for this iteration
91
161
        chunk_len = std::min(remaining, block_size);
92
161
        break;
93
0
      }
94
182
      case PLUS1: {
95
        // Consume 1 byte more from block size from the raw data for this iteration
96
182
        chunk_len = std::min(remaining, block_size + 1);
97
182
        break;
98
0
      }
99
464
      case SMALL: {
100
        // Consume 1~32 bytes from the raw data for this iteration
101
464
        size_t small_len = (size_t)fdp.ConsumeIntegralInRange<int>(1, 32);
102
464
        chunk_len = std::min(remaining, small_len);
103
464
        break;
104
0
      }
105
358
      case RANDOM: {
106
        // Consume random bytes from the raw data for this iteration
107
358
        chunk_len = (remaining >= 1) ? (size_t)fdp.ConsumeIntegralInRange<size_t>(1, remaining) : 0;
108
358
        break;
109
0
      }
110
46
      case TAIL: {
111
        // Consume all remaining bytes from the raw data for this iteration
112
46
        chunk_len = remaining;
113
46
        break;
114
0
      }
115
498
      case HALT: {
116
        // Consume small chunk and consider reinitialisation or early halt of the hash iteration
117
498
        size_t step  = std::max<size_t>(1, fdp.ConsumeIntegralInRange<size_t>(1, block_size));
118
498
        size_t loops = fdp.ConsumeIntegralInRange<size_t>(1, 4);
119
1.37k
        for (size_t j = 0; j < loops && remaining > 0; j++) {
120
881
          size_t w = std::min(remaining, step);
121
881
          update_fn(&contexts[ctx_index], w, cursor);
122
881
          cursor += w;
123
881
          remaining -= w;
124
881
        }
125
126
        // Randomly reinitialise the hash stream
127
498
        if (fdp.ConsumeBool()) {
128
194
          finish_fn(&contexts[ctx_index], digests[ctx_index].data());
129
194
        }
130
498
        continue;
131
0
      }
132
2.24k
    }
133
134
1.74k
    if (chunk_len == 0 || chunk_len > remaining) {
135
0
      continue;
136
0
    }
137
138
    // Fuzz the update function
139
1.74k
    update_fn(&contexts[ctx_index], chunk_len, cursor);
140
1.74k
    cursor += chunk_len;
141
1.74k
    remaining -= chunk_len;
142
1.74k
  }
143
144
  // Finalize all active contexts (finish_reset).
145
4.24k
  for (unsigned i = 0; i < num_contexts; i++) {
146
2.93k
    finish_fn(&contexts[i], digests[i].data());
147
2.93k
  }
148
149
  // Additional fuzzing on special context chaining approach.
150
1.31k
  if (num_contexts >= 2 && digest_size && fdp.ConsumeBool()) {
151
416
    unsigned src_idx = fdp.ConsumeIntegralInRange<unsigned>(0, num_contexts - 1);
152
416
    unsigned dst_idx = fdp.ConsumeIntegralInRange<unsigned>(0, num_contexts - 1);
153
416
    if (src_idx != dst_idx) {
154
221
      size_t offset = fdp.ConsumeIntegralInRange<size_t>(0, digest_size - 1);
155
221
      size_t max_avail = digest_size - offset; // >= 1
156
221
      size_t feed_len = fdp.ConsumeIntegralInRange<size_t>(1, max_avail);
157
221
      update_fn(&contexts[dst_idx], feed_len, digests[src_idx].data() + offset);
158
221
      finish_fn(&contexts[dst_idx], digests[dst_idx].data());
159
221
    }
160
416
  }
161
162
  // Deinitialise all contexts after this iteration
163
4.24k
  for (unsigned i = 0; i < num_contexts; i++) {
164
2.93k
    deinit_fn(&contexts[i]);
165
2.93k
  }
166
1.31k
}
fuzz_crypto_ext.cpp:void fuzz_hash_ext_multi<mhd_Sha256CtxExt>(FuzzedDataProvider&, unsigned long, void (*)(mhd_Sha256CtxExt*), void (*)(mhd_Sha256CtxExt*, unsigned long, unsigned char const*), void (*)(mhd_Sha256CtxExt*, unsigned char*), void (*)(mhd_Sha256CtxExt*), unsigned long)
Line
Count
Source
42
1.21k
                                size_t digest_size) {
43
1.21k
  if (!fdp.remaining_bytes()) {
44
18
    return;
45
18
  }
46
47
  // Pull a random slice of data for fuzzing
48
1.20k
  size_t take_len = fdp.ConsumeIntegralInRange<size_t>(0, fdp.remaining_bytes());
49
1.20k
  std::vector<uint8_t> input_bytes = fdp.ConsumeBytes<uint8_t>(take_len);
50
51
  // Create 1 to 4 independent hashing contexts with it own digest buffer
52
1.20k
  const unsigned num_contexts = fdp.ConsumeIntegralInRange<unsigned>(1, 4);
53
1.20k
  std::vector<HashType> contexts(num_contexts);
54
1.20k
  std::vector<std::vector<uint8_t>> digests(num_contexts, std::vector<uint8_t>(digest_size));
55
3.45k
  for (unsigned i = 0; i < num_contexts; i++) {
56
2.25k
    init_once(&contexts[i]);
57
2.25k
  }
58
59
  // Intentionally misalign the data pointer to stress alignment sensitive paths
60
1.20k
  const size_t misalign_pad = fdp.ConsumeIntegralInRange<size_t>(0, 64);
61
1.20k
  std::vector<uint8_t> scratch_buf(misalign_pad + input_bytes.size());
62
1.20k
  if (!input_bytes.empty()) {
63
823
    memcpy(scratch_buf.data() + misalign_pad, input_bytes.data(), input_bytes.size());
64
823
  }
65
66
  // Define cursor and remaining bytes counter to keep track of the multiple hash update iterations
67
1.20k
  const uint8_t *cursor = scratch_buf.data() + misalign_pad;
68
1.20k
  size_t remaining = input_bytes.size();
69
70
  // Perform multiple hash update iterations on the raw data
71
1.20k
  unsigned num_iterations = fdp.ConsumeIntegralInRange<unsigned>(1, 4);
72
2.93k
  while (num_iterations-- && remaining > 0) {
73
    // Pick which context to feed this iteration
74
1.72k
    const unsigned ctx_index = (num_contexts == 1) ? 0 : fdp.ConsumeIntegralInRange<unsigned>(0, num_contexts - 1);
75
76
    // Choose a chunking pattern relative to block size.
77
1.72k
    enum Pattern { LESS1, EQ, PLUS1, SMALL, RANDOM, TAIL, HALT };
78
1.72k
    Pattern pattern = fdp.PickValueInArray<Pattern>({LESS1, EQ, PLUS1, SMALL, RANDOM, TAIL, HALT});
79
80
1.72k
    size_t chunk_len = 0;
81
1.72k
    switch (pattern) {
82
398
      case LESS1: {
83
        // Consume 1 byte less from block size from the raw data for this iteration
84
398
        if (block_size > 1) {
85
398
          chunk_len = std::min(remaining, block_size - 1);
86
398
        }
87
398
        break;
88
0
      }
89
84
      case EQ: {
90
        // Consume block size bytes from the raw data for this iteration
91
84
        chunk_len = std::min(remaining, block_size);
92
84
        break;
93
0
      }
94
86
      case PLUS1: {
95
        // Consume 1 byte more from block size from the raw data for this iteration
96
86
        chunk_len = std::min(remaining, block_size + 1);
97
86
        break;
98
0
      }
99
333
      case SMALL: {
100
        // Consume 1~32 bytes from the raw data for this iteration
101
333
        size_t small_len = (size_t)fdp.ConsumeIntegralInRange<int>(1, 32);
102
333
        chunk_len = std::min(remaining, small_len);
103
333
        break;
104
0
      }
105
277
      case RANDOM: {
106
        // Consume random bytes from the raw data for this iteration
107
277
        chunk_len = (remaining >= 1) ? (size_t)fdp.ConsumeIntegralInRange<size_t>(1, remaining) : 0;
108
277
        break;
109
0
      }
110
43
      case TAIL: {
111
        // Consume all remaining bytes from the raw data for this iteration
112
43
        chunk_len = remaining;
113
43
        break;
114
0
      }
115
508
      case HALT: {
116
        // Consume small chunk and consider reinitialisation or early halt of the hash iteration
117
508
        size_t step  = std::max<size_t>(1, fdp.ConsumeIntegralInRange<size_t>(1, block_size));
118
508
        size_t loops = fdp.ConsumeIntegralInRange<size_t>(1, 4);
119
1.28k
        for (size_t j = 0; j < loops && remaining > 0; j++) {
120
777
          size_t w = std::min(remaining, step);
121
777
          update_fn(&contexts[ctx_index], w, cursor);
122
777
          cursor += w;
123
777
          remaining -= w;
124
777
        }
125
126
        // Randomly reinitialise the hash stream
127
508
        if (fdp.ConsumeBool()) {
128
209
          finish_fn(&contexts[ctx_index], digests[ctx_index].data());
129
209
        }
130
508
        continue;
131
0
      }
132
1.72k
    }
133
134
1.22k
    if (chunk_len == 0 || chunk_len > remaining) {
135
0
      continue;
136
0
    }
137
138
    // Fuzz the update function
139
1.22k
    update_fn(&contexts[ctx_index], chunk_len, cursor);
140
1.22k
    cursor += chunk_len;
141
1.22k
    remaining -= chunk_len;
142
1.22k
  }
143
144
  // Finalize all active contexts (finish_reset).
145
3.45k
  for (unsigned i = 0; i < num_contexts; i++) {
146
2.25k
    finish_fn(&contexts[i], digests[i].data());
147
2.25k
  }
148
149
  // Additional fuzzing on special context chaining approach.
150
1.20k
  if (num_contexts >= 2 && digest_size && fdp.ConsumeBool()) {
151
283
    unsigned src_idx = fdp.ConsumeIntegralInRange<unsigned>(0, num_contexts - 1);
152
283
    unsigned dst_idx = fdp.ConsumeIntegralInRange<unsigned>(0, num_contexts - 1);
153
283
    if (src_idx != dst_idx) {
154
187
      size_t offset = fdp.ConsumeIntegralInRange<size_t>(0, digest_size - 1);
155
187
      size_t max_avail = digest_size - offset; // >= 1
156
187
      size_t feed_len = fdp.ConsumeIntegralInRange<size_t>(1, max_avail);
157
187
      update_fn(&contexts[dst_idx], feed_len, digests[src_idx].data() + offset);
158
187
      finish_fn(&contexts[dst_idx], digests[dst_idx].data());
159
187
    }
160
283
  }
161
162
  // Deinitialise all contexts after this iteration
163
3.45k
  for (unsigned i = 0; i < num_contexts; i++) {
164
2.25k
    deinit_fn(&contexts[i]);
165
2.25k
  }
166
1.20k
}
167
168
1.37k
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
169
1.37k
  FuzzedDataProvider fdp(data, size);
170
171
3.91k
  for (unsigned i = 0; i < fdp.ConsumeIntegralInRange<unsigned>(1, 4); i++) {
172
2.53k
    if (fdp.ConsumeBool()) {
173
1.31k
      fuzz_hash_ext_multi<struct mhd_Md5CtxExt>(
174
1.31k
        fdp, 64,
175
1.31k
        mhd_MD5_init_one_time, mhd_MD5_update, mhd_MD5_finish_reset, mhd_MD5_deinit,
176
1.31k
        mhd_MD5_DIGEST_SIZE);
177
1.31k
    } else {
178
1.21k
      fuzz_hash_ext_multi<struct mhd_Sha256CtxExt>(
179
1.21k
        fdp, 64,
180
1.21k
        mhd_SHA256_init_one_time, mhd_SHA256_update, mhd_SHA256_finish_reset, mhd_SHA256_deinit,
181
1.21k
        mhd_SHA256_DIGEST_SIZE);
182
1.21k
    }
183
2.53k
  }
184
1.37k
  return 0;
185
1.37k
}