oss-fuzz/projects/jackson-core/WriterBasedJsonGeneratorFuz...

85 lines
2.7 KiB
Java

// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
import com.code_intelligence.jazzer.api.FuzzedDataProvider;
import com.fasterxml.jackson.core.json.*;
import com.fasterxml.jackson.core.io.ContentReference;
import com.fasterxml.jackson.core.io.IOContext;
import com.fasterxml.jackson.core.util.BufferRecycler;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonFactory;
import java.io.IOException;
import java.io.*;
import com.fasterxml.jackson.core.io.SerializedString;
import com.fasterxml.jackson.core.SerializableString;
public class WriterBasedJsonGeneratorFuzzer {
private IOContext getIOContext() {
return new IOContext(new BufferRecycler(), ContentReference.unknown(), false);
}
public static void fuzzerTestOneInput(FuzzedDataProvider data) {
JsonFactory jf = new JsonFactory();
StringWriter w;
JsonGenerator jg;
try {
w = new StringWriter();
jg = jf.createGenerator(w);
} catch (IOException e) {
return;
}
try {
int numberOfOps = data.consumeInt();
for (int i=0;i<numberOfOps%20;i++) {
int opType = data.consumeInt();
switch (opType%5) {
case 0:
jg.writeStartObject();
jg.writeFieldName(data.consumeString(100000));
jg.writeString(data.consumeString(100000));
jg.writeEndObject();
case 1:
jg.writeStartObject();
jg.writeStringField(data.consumeString(100000), data.consumeString(100000));
jg.writeEndObject();
case 2:
jg.writeStartObject();
SerializableString NAME = new SerializedString(data.consumeString(100000));
jg.writeFieldName(NAME);
jg.writeString(data.consumeString(100000));
jg.writeEndObject();
case 3:
jg.writeStartArray();
jg.writeRaw(data.consumeString(100000));
jg.writeEndArray();
case 4:
jg.writeStartArray();
jg.writeRawValue(data.consumeString(100000));
jg.writeEndArray();
}
}
} catch (IOException e) { }
try {
jg.close();
} catch (IOException e) { }
}
}