mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-04 16:06:49 +02:00
advanced_api_fuzzer: add extreme config value coverage
this enables cases that might trigger overflows, but increases the risk of OOM and timeouts Bug: chromium:1196850 Change-Id: I317b5109525646731e762faa3c34ed28a27595dc
This commit is contained in:
parent
72fe52f623
commit
b60d460318
@ -14,10 +14,13 @@
|
|||||||
//
|
//
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#include "./fuzz_utils.h"
|
#include "./fuzz_utils.h"
|
||||||
#include "webp/decode.h"
|
#include "webp/decode.h"
|
||||||
|
|
||||||
int LLVMFuzzerTestOneInput(const uint8_t* const data, size_t size) {
|
int LLVMFuzzerTestOneInput(const uint8_t* const data, size_t size) {
|
||||||
|
int i;
|
||||||
WebPDecoderConfig config;
|
WebPDecoderConfig config;
|
||||||
if (!WebPInitDecoderConfig(&config)) return 0;
|
if (!WebPInitDecoderConfig(&config)) return 0;
|
||||||
if (WebPGetFeatures(data, size, &config.input) != VP8_STATUS_OK) return 0;
|
if (WebPGetFeatures(data, size, &config.input) != VP8_STATUS_OK) return 0;
|
||||||
@ -59,6 +62,19 @@ int LLVMFuzzerTestOneInput(const uint8_t* const data, size_t size) {
|
|||||||
config.output.colorspace = (WEBP_CSP_MODE)(value % MODE_LAST);
|
config.output.colorspace = (WEBP_CSP_MODE)(value % MODE_LAST);
|
||||||
#endif // WEBP_REDUCE_CSP
|
#endif // WEBP_REDUCE_CSP
|
||||||
|
|
||||||
|
for (i = 0; i < 2; ++i) {
|
||||||
|
if (i == 1) {
|
||||||
|
// Use the bitstream data to generate extreme ranges for the options. An
|
||||||
|
// alternative approach would be to use a custom corpus containing webp
|
||||||
|
// files prepended with sizeof(config.options) zeroes to allow the fuzzer
|
||||||
|
// to modify these independently.
|
||||||
|
const int data_offset = 50;
|
||||||
|
if (size > data_offset + sizeof(config.options)) {
|
||||||
|
memcpy(&config.options, data + data_offset, sizeof(config.options));
|
||||||
|
} else {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (size % 3) {
|
if (size % 3) {
|
||||||
// Decodes incrementally in chunks of increasing size.
|
// Decodes incrementally in chunks of increasing size.
|
||||||
WebPIDecoder* idec = WebPIDecode(NULL, 0, &config);
|
WebPIDecoder* idec = WebPIDecode(NULL, 0, &config);
|
||||||
@ -93,5 +109,6 @@ int LLVMFuzzerTestOneInput(const uint8_t* const data, size_t size) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
WebPFreeDecBuffer(&config.output);
|
WebPFreeDecBuffer(&config.output);
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user