Skip to content

Commit 2ea204e

Browse files
committed
[lib/Fuzzer] make assertions more informative and update comments for the user-supplied mutator
llvm-svn: 238658
1 parent 1ba2d78 commit 2ea204e

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

llvm/lib/Fuzzer/FuzzerInterface.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ class UserSuppliedFuzzer {
6969
/// Executes the target function on 'Size' bytes of 'Data'.
7070
virtual void TargetFunction(const uint8_t *Data, size_t Size) = 0;
7171
/// Mutates 'Size' bytes of data in 'Data' inplace into up to 'MaxSize' bytes,
72-
/// returns the new size of the data.
72+
/// returns the new size of the data, which should be positive.
7373
virtual size_t Mutate(uint8_t *Data, size_t Size, size_t MaxSize) {
7474
return BasicMutate(Data, Size, MaxSize);
7575
}
7676
/// Crosses 'Data1' and 'Data2', writes up to 'MaxOutSize' bytes into Out,
77-
/// returns the number of bytes written.
77+
/// returns the number of bytes written, which should be positive.
7878
virtual size_t CrossOver(const uint8_t *Data1, size_t Size1,
7979
const uint8_t *Data2, size_t Size2,
8080
uint8_t *Out, size_t MaxOutSize) {

llvm/lib/Fuzzer/FuzzerLoop.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,9 @@ void Fuzzer::MutateAndTestOne(Unit *U) {
289289
size_t Size = U->size();
290290
U->resize(Options.MaxLen);
291291
size_t NewSize = USF.Mutate(U->data(), Size, U->size());
292-
assert(NewSize > 0 && NewSize <= (size_t)Options.MaxLen);
292+
assert(NewSize > 0 && "Mutator returned empty unit");
293+
assert(NewSize <= (size_t)Options.MaxLen &&
294+
"Mutator return overisized unit");
293295
U->resize(NewSize);
294296
RunOneAndUpdateCorpus(*U);
295297
size_t NumTraceBasedMutations = StopTraceRecording();
@@ -317,7 +319,9 @@ void Fuzzer::Loop(size_t NumIterations) {
317319
size_t NewSize = USF.CrossOver(
318320
Corpus[J1].data(), Corpus[J1].size(), Corpus[J2].data(),
319321
Corpus[J2].size(), CurrentUnit.data(), CurrentUnit.size());
320-
assert(NewSize > 0 && NewSize <= (size_t)Options.MaxLen);
322+
assert(NewSize > 0 && "CrossOver returned empty unit");
323+
assert(NewSize <= (size_t)Options.MaxLen &&
324+
"CrossOver return overisized unit");
321325
CurrentUnit.resize(NewSize);
322326
MutateAndTestOne(&CurrentUnit);
323327
}

0 commit comments

Comments
 (0)