2018-01-11 15:27:14 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkSurface.h"
|
|
|
|
#include "src/core/SkRegionPriv.h"
|
2018-01-11 15:27:14 +00:00
|
|
|
|
|
|
|
bool FuzzRegionDeserialize(sk_sp<SkData> bytes) {
|
|
|
|
SkRegion region;
|
|
|
|
if (!region.readFromMemory(bytes->data(), bytes->size())) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
region.computeRegionComplexity();
|
|
|
|
region.isComplex();
|
|
|
|
SkRegion r2;
|
|
|
|
if (region == r2) {
|
|
|
|
region.contains(0,0);
|
|
|
|
} else {
|
|
|
|
region.contains(1,1);
|
|
|
|
}
|
2018-02-01 14:45:11 +00:00
|
|
|
auto s = SkSurface::MakeRasterN32Premul(128, 128);
|
|
|
|
if (!s) {
|
|
|
|
// May return nullptr in memory-constrained fuzzing environments
|
|
|
|
return false;
|
|
|
|
}
|
2018-01-11 15:27:14 +00:00
|
|
|
s->getCanvas()->drawRegion(region, SkPaint());
|
2018-07-28 14:14:27 +00:00
|
|
|
SkDEBUGCODE(SkRegionPriv::Validate(region));
|
2018-01-11 15:27:14 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-09-14 17:31:25 +00:00
|
|
|
// TODO(kjlubick): remove IS_FUZZING... after https://crrev.com/c/2410304 lands
|
|
|
|
#if defined(SK_BUILD_FOR_LIBFUZZER) || defined(IS_FUZZING_WITH_LIBFUZZER)
|
2018-01-11 15:27:14 +00:00
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
2020-06-14 19:03:34 +00:00
|
|
|
if (size > 512) {
|
|
|
|
return 0;
|
|
|
|
}
|
2018-01-11 15:27:14 +00:00
|
|
|
auto bytes = SkData::MakeWithoutCopy(data, size);
|
|
|
|
FuzzRegionDeserialize(bytes);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|