Coverage Report

Created: 2024-05-20 07:14

/src/skia/fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2018 Google, LLC
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
8
#include "include/core/SkCanvas.h"
9
#include "include/core/SkPaint.h"
10
#include "include/core/SkSurface.h"
11
#include "src/core/SkReadBuffer.h"
12
#include "src/core/SkTextBlobPriv.h"
13
#include "tools/fonts/FontToolUtils.h"
14
15
1.65k
void FuzzTextBlobDeserialize(const uint8_t *data, size_t size) {
16
1.65k
    SkReadBuffer buf(data, size);
17
1.65k
    auto tb = SkTextBlobPriv::MakeFromBuffer(buf);
18
1.65k
    if (!buf.isValid()) {
19
612
        return;
20
612
    }
21
22
1.04k
    auto s = SkSurfaces::Raster(SkImageInfo::MakeN32Premul(128, 128));
23
1.04k
    if (!s) {
24
        // May return nullptr in memory-constrained fuzzing environments
25
0
        return;
26
0
    }
27
1.04k
    s->getCanvas()->drawTextBlob(tb, 200, 200, SkPaint());
28
1.04k
}
29
30
#if defined(SK_BUILD_FOR_LIBFUZZER)
31
190k
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
32
190k
    if (size > 1024) {
33
220
        return 0;
34
220
    }
35
190k
    ToolUtils::UsePortableFontMgr();
36
190k
    FuzzTextBlobDeserialize(data, size);
37
190k
    return 0;
38
190k
}
39
#endif