2018-02-12 13:26:39 +00:00
|
|
|
/*
|
2018-02-27 13:30:43 +00:00
|
|
|
* Copyright 2018 Google, LLC
|
2018-02-12 13:26:39 +00:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SkImage.h"
|
|
|
|
#include "SkPaint.h"
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkData.h"
|
|
|
|
#include "SkSurface.h"
|
|
|
|
|
2018-10-17 14:24:44 +00:00
|
|
|
bool FuzzImageDecode(sk_sp<SkData> bytes) {
|
2018-02-12 13:26:39 +00:00
|
|
|
auto img = SkImage::MakeFromEncoded(bytes);
|
|
|
|
if (nullptr == img.get()) {
|
2018-10-17 14:24:44 +00:00
|
|
|
return false;
|
2018-02-12 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
auto s = SkSurface::MakeRasterN32Premul(128, 128);
|
|
|
|
if (!s) {
|
|
|
|
// May return nullptr in memory-constrained fuzzing environments
|
2018-10-17 14:24:44 +00:00
|
|
|
return false;
|
2018-02-12 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SkPaint p;
|
|
|
|
s->getCanvas()->drawImage(img, 0, 0, &p);
|
2018-10-17 14:24:44 +00:00
|
|
|
return true;
|
2018-02-12 13:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(IS_FUZZING_WITH_LIBFUZZER)
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
|
|
auto bytes = SkData::MakeWithoutCopy(data, size);
|
2018-10-17 14:24:44 +00:00
|
|
|
FuzzImageDecode(bytes);
|
2018-02-12 13:26:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|