Kevin Lubick | f034d11 | 2018-02-08 14:31:24 -0500 | [diff] [blame] | 1 | /* |
Kevin Lubick | db1e5c6 | 2018-02-27 08:30:43 -0500 | [diff] [blame] | 2 | * Copyright 2018 Google, LLC |
Kevin Lubick | f034d11 | 2018-02-08 14:31:24 -0500 | [diff] [blame] | 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 8 | #include "include/core/SkCanvas.h" |
| 9 | #include "include/core/SkPaint.h" |
| 10 | #include "include/core/SkSurface.h" |
| 11 | #include "src/core/SkFontMgrPriv.h" |
| 12 | #include "src/core/SkReadBuffer.h" |
| 13 | #include "src/core/SkTextBlobPriv.h" |
| 14 | #include "tools/fonts/TestFontMgr.h" |
Kevin Lubick | f034d11 | 2018-02-08 14:31:24 -0500 | [diff] [blame] | 15 | |
| 16 | void FuzzTextBlobDeserialize(SkReadBuffer& buf) { |
Cary Clark | 53c8769 | 2018-07-17 08:59:34 -0400 | [diff] [blame] | 17 | auto tb = SkTextBlobPriv::MakeFromBuffer(buf); |
Kevin Lubick | f034d11 | 2018-02-08 14:31:24 -0500 | [diff] [blame] | 18 | if (!buf.isValid()) { |
| 19 | return; |
| 20 | } |
| 21 | |
| 22 | auto s = SkSurface::MakeRasterN32Premul(128, 128); |
| 23 | if (!s) { |
| 24 | // May return nullptr in memory-constrained fuzzing environments |
| 25 | return; |
| 26 | } |
| 27 | s->getCanvas()->drawTextBlob(tb, 200, 200, SkPaint()); |
| 28 | } |
| 29 | |
| 30 | #if defined(IS_FUZZING_WITH_LIBFUZZER) |
| 31 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { |
Mike Klein | ea3f014 | 2019-03-20 11:12:10 -0500 | [diff] [blame] | 32 | gSkFontMgr_DefaultFactory = &ToolUtils::MakePortableFontMgr; |
Kevin Lubick | f034d11 | 2018-02-08 14:31:24 -0500 | [diff] [blame] | 33 | SkReadBuffer buf(data, size); |
| 34 | FuzzTextBlobDeserialize(buf); |
| 35 | return 0; |
| 36 | } |
| 37 | #endif |