2018-02-08 19:31:24 +00:00
|
|
|
/*
|
2018-02-27 13:30:43 +00:00
|
|
|
* Copyright 2018 Google, LLC
|
2018-02-08 19:31:24 +00:00
|
|
|
*
|
|
|
|
* 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/SkFontMgrPriv.h"
|
|
|
|
#include "src/core/SkReadBuffer.h"
|
|
|
|
#include "src/core/SkTextBlobPriv.h"
|
|
|
|
#include "tools/fonts/TestFontMgr.h"
|
2018-02-08 19:31:24 +00:00
|
|
|
|
|
|
|
void FuzzTextBlobDeserialize(SkReadBuffer& buf) {
|
2018-07-17 12:59:34 +00:00
|
|
|
auto tb = SkTextBlobPriv::MakeFromBuffer(buf);
|
2018-02-08 19:31:24 +00:00
|
|
|
if (!buf.isValid()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto s = SkSurface::MakeRasterN32Premul(128, 128);
|
|
|
|
if (!s) {
|
|
|
|
// May return nullptr in memory-constrained fuzzing environments
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
s->getCanvas()->drawTextBlob(tb, 200, 200, SkPaint());
|
|
|
|
}
|
|
|
|
|
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-02-08 19:31:24 +00:00
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
2020-06-14 19:03:34 +00:00
|
|
|
if (size > 1024) {
|
|
|
|
return 0;
|
|
|
|
}
|
2019-03-20 16:12:10 +00:00
|
|
|
gSkFontMgr_DefaultFactory = &ToolUtils::MakePortableFontMgr;
|
2018-02-08 19:31:24 +00:00
|
|
|
SkReadBuffer buf(data, size);
|
|
|
|
FuzzTextBlobDeserialize(buf);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|