mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-03 23:46:49 +02:00
{animencoder,enc_dec}_fuzzer: convert some abort()s to returns
with functions that can legitimately fail when under memory pressure the fuzzer should exit gracefully rather than abort(). + add some more error detail to output Bug: chromium:1140448 Change-Id: I1a8582a939e0a5b2b8631c95c0464658c99063e2
This commit is contained in:
parent
eb44119c3d
commit
83604bf3ac
@ -46,24 +46,32 @@ int AddFrame(WebPAnimEncoder** const enc,
|
|||||||
|
|
||||||
// Read the source picture.
|
// Read the source picture.
|
||||||
if (!ExtractSourcePicture(&pic, data, size, bit_pos)) {
|
if (!ExtractSourcePicture(&pic, data, size, bit_pos)) {
|
||||||
fprintf(stderr, "Can't read input image.\n");
|
const WebPEncodingError error_code = pic.error_code;
|
||||||
WebPPictureFree(&pic);
|
WebPPictureFree(&pic);
|
||||||
|
if (error_code == VP8_ENC_ERROR_OUT_OF_MEMORY) return 0;
|
||||||
|
fprintf(stderr, "Can't read input image. Error code: %d\n", error_code);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Crop and scale.
|
// Crop and scale.
|
||||||
if (*enc == nullptr) { // First frame will set canvas width and height.
|
if (*enc == nullptr) { // First frame will set canvas width and height.
|
||||||
if (!ExtractAndCropOrScale(&pic, data, size, bit_pos)) {
|
if (!ExtractAndCropOrScale(&pic, data, size, bit_pos)) {
|
||||||
fprintf(stderr, "ExtractAndCropOrScale failed.");
|
const WebPEncodingError error_code = pic.error_code;
|
||||||
WebPPictureFree(&pic);
|
WebPPictureFree(&pic);
|
||||||
|
if (error_code == VP8_ENC_ERROR_OUT_OF_MEMORY) return 0;
|
||||||
|
fprintf(stderr, "ExtractAndCropOrScale failed. Error code: %d\n",
|
||||||
|
error_code);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
} else { // Other frames will be resized to the first frame's dimensions.
|
} else { // Other frames will be resized to the first frame's dimensions.
|
||||||
if (!WebPPictureRescale(&pic, *width, *height)) {
|
if (!WebPPictureRescale(&pic, *width, *height)) {
|
||||||
fprintf(stderr, "WebPPictureRescale failed. Size: %d,%d\n", *width,
|
const WebPEncodingError error_code = pic.error_code;
|
||||||
*height);
|
|
||||||
WebPAnimEncoderDelete(*enc);
|
WebPAnimEncoderDelete(*enc);
|
||||||
WebPPictureFree(&pic);
|
WebPPictureFree(&pic);
|
||||||
|
if (error_code == VP8_ENC_ERROR_OUT_OF_MEMORY) return 0;
|
||||||
|
fprintf(stderr,
|
||||||
|
"WebPPictureRescale failed. Size: %d,%d. Error code: %d\n",
|
||||||
|
*width, *height, error_code);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -74,9 +82,8 @@ int AddFrame(WebPAnimEncoder** const enc,
|
|||||||
*height = pic.height;
|
*height = pic.height;
|
||||||
*enc = WebPAnimEncoderNew(*width, *height, &anim_config);
|
*enc = WebPAnimEncoderNew(*width, *height, &anim_config);
|
||||||
if (*enc == nullptr) {
|
if (*enc == nullptr) {
|
||||||
fprintf(stderr, "WebPAnimEncoderNew failed.\n");
|
|
||||||
WebPPictureFree(&pic);
|
WebPPictureFree(&pic);
|
||||||
abort();
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -98,9 +105,11 @@ int AddFrame(WebPAnimEncoder** const enc,
|
|||||||
|
|
||||||
// Encode.
|
// Encode.
|
||||||
if (!WebPAnimEncoderAdd(*enc, &pic, timestamp_ms, &config)) {
|
if (!WebPAnimEncoderAdd(*enc, &pic, timestamp_ms, &config)) {
|
||||||
fprintf(stderr, "WebPEncode failed. Error code: %d\n", pic.error_code);
|
const WebPEncodingError error_code = pic.error_code;
|
||||||
WebPAnimEncoderDelete(*enc);
|
WebPAnimEncoderDelete(*enc);
|
||||||
WebPPictureFree(&pic);
|
WebPPictureFree(&pic);
|
||||||
|
if (error_code == VP8_ENC_ERROR_OUT_OF_MEMORY) return 0;
|
||||||
|
fprintf(stderr, "WebPEncode failed. Error code: %d\n", error_code);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -147,14 +156,16 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* const data, size_t size) {
|
|||||||
|
|
||||||
// Assemble.
|
// Assemble.
|
||||||
if (!WebPAnimEncoderAdd(enc, nullptr, timestamp_ms, nullptr)) {
|
if (!WebPAnimEncoderAdd(enc, nullptr, timestamp_ms, nullptr)) {
|
||||||
fprintf(stderr, "Last WebPAnimEncoderAdd failed.");
|
fprintf(stderr, "Last WebPAnimEncoderAdd failed: %s.\n",
|
||||||
|
WebPAnimEncoderGetError(enc));
|
||||||
WebPAnimEncoderDelete(enc);
|
WebPAnimEncoderDelete(enc);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
WebPData webp_data;
|
WebPData webp_data;
|
||||||
WebPDataInit(&webp_data);
|
WebPDataInit(&webp_data);
|
||||||
if (!WebPAnimEncoderAssemble(enc, &webp_data)) {
|
if (!WebPAnimEncoderAssemble(enc, &webp_data)) {
|
||||||
fprintf(stderr, "WebPAnimEncoderAssemble failed.");
|
fprintf(stderr, "WebPAnimEncoderAssemble failed: %s.\n",
|
||||||
|
WebPAnimEncoderGetError(enc));
|
||||||
WebPAnimEncoderDelete(enc);
|
WebPAnimEncoderDelete(enc);
|
||||||
WebPDataClear(&webp_data);
|
WebPDataClear(&webp_data);
|
||||||
abort();
|
abort();
|
||||||
|
@ -42,15 +42,20 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* const data, size_t size) {
|
|||||||
|
|
||||||
// Read the source picture.
|
// Read the source picture.
|
||||||
if (!ExtractSourcePicture(&pic, data, size, &bit_pos)) {
|
if (!ExtractSourcePicture(&pic, data, size, &bit_pos)) {
|
||||||
fprintf(stderr, "Can't read input image.\n");
|
const WebPEncodingError error_code = pic.error_code;
|
||||||
WebPPictureFree(&pic);
|
WebPPictureFree(&pic);
|
||||||
|
if (error_code == VP8_ENC_ERROR_OUT_OF_MEMORY) return 0;
|
||||||
|
fprintf(stderr, "Can't read input image. Error code: %d\n", error_code);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Crop and scale.
|
// Crop and scale.
|
||||||
if (!ExtractAndCropOrScale(&pic, data, size, &bit_pos)) {
|
if (!ExtractAndCropOrScale(&pic, data, size, &bit_pos)) {
|
||||||
fprintf(stderr, "ExtractAndCropOrScale failed.");
|
const WebPEncodingError error_code = pic.error_code;
|
||||||
WebPPictureFree(&pic);
|
WebPPictureFree(&pic);
|
||||||
|
if (error_code == VP8_ENC_ERROR_OUT_OF_MEMORY) return 0;
|
||||||
|
fprintf(stderr, "ExtractAndCropOrScale failed. Error code: %d\n",
|
||||||
|
error_code);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,9 +88,11 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* const data, size_t size) {
|
|||||||
pic.writer = WebPMemoryWrite;
|
pic.writer = WebPMemoryWrite;
|
||||||
pic.custom_ptr = &memory_writer;
|
pic.custom_ptr = &memory_writer;
|
||||||
if (!WebPEncode(&config, &pic)) {
|
if (!WebPEncode(&config, &pic)) {
|
||||||
fprintf(stderr, "WebPEncode failed. Error code: %d\n", pic.error_code);
|
const WebPEncodingError error_code = pic.error_code;
|
||||||
WebPMemoryWriterClear(&memory_writer);
|
WebPMemoryWriterClear(&memory_writer);
|
||||||
WebPPictureFree(&pic);
|
WebPPictureFree(&pic);
|
||||||
|
if (error_code == VP8_ENC_ERROR_OUT_OF_MEMORY) return 0;
|
||||||
|
fprintf(stderr, "WebPEncode failed. Error code: %d\n", error_code);
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user