Coverage Report

Created: 2026-08-31 06:45

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/xpdf-4.06/build/fuzz_pdfload.cc
Line
Count
Source
1
/*  Copyright 2020 Google Inc.
2
3
Licensed under the Apache License, Version 2.0 (the "License");
4
you may not use this file except in compliance with the License.
5
You may obtain a copy of the License at
6
7
      http://www.apache.org/licenses/LICENSE-2.0
8
9
Unless required by applicable law or agreed to in writing, software
10
distributed under the License is distributed on an "AS IS" BASIS,
11
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
See the License for the specific language governing permissions and
13
limitations under the License.
14
*/
15
#include <fuzzer/FuzzedDataProvider.h>
16
17
#include <vector>
18
#include <aconf.h>
19
#include <stdio.h>
20
#include <stdint.h>
21
#include <stdlib.h>
22
#include <stddef.h>
23
#include <string.h>
24
#include <png.h>
25
26
#include "gmem.h"
27
#include "gmempp.h"
28
#include "parseargs.h"
29
#include "GString.h"
30
#include "gfile.h"
31
#include "GlobalParams.h"
32
#include "Object.h"
33
#include "PDFDoc.h"
34
#include "SplashBitmap.h"
35
#include "Splash.h"
36
#include "SplashOutputDev.h"
37
#include "Stream.h"
38
#include "config.h"
39
#include "JBIG2Stream.h"
40
41
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
42
19.9k
{
43
19.9k
    FuzzedDataProvider fdp (data, size);
44
19.9k
    double hdpi = fdp.ConsumeFloatingPoint<double>();
45
19.9k
    double vdpi = fdp.ConsumeFloatingPoint<double>();
46
19.9k
    int rotate = fdp.ConsumeIntegral<int>();
47
19.9k
    bool useMediaBox = fdp.ConsumeBool();
48
19.9k
    bool crop = fdp.ConsumeBool();
49
19.9k
    bool printing = fdp.ConsumeBool();
50
19.9k
    std::vector<char> payload = fdp.ConsumeRemainingBytes<char>();
51
52
19.9k
    Object xpdf_obj;
53
19.9k
    xpdf_obj.initNull();
54
19.9k
    BaseStream *stream = new MemStream(payload.data(), 0, payload.size(), &xpdf_obj);
55
56
19.9k
    Object info, xfa;
57
19.9k
    Object *acroForm;
58
19.9k
    globalParams = new GlobalParams(NULL);
59
19.9k
    globalParams->setErrQuiet(1);
60
19.9k
    globalParams->setupBaseFonts(NULL);
61
19.9k
    char yes[] = "yes";
62
19.9k
    globalParams->setEnableFreeType(yes);  // Yes, it's a string and not a bool.
63
19.9k
    globalParams->setErrQuiet(1);
64
65
19.9k
    PDFDoc *doc = NULL;
66
19.9k
    try {
67
19.9k
      PDFDoc doc(stream);
68
19.9k
        if (doc.isOk() == gTrue)
69
16.6k
        {
70
16.6k
            doc.getNumPages();
71
16.6k
            doc.getOutline();
72
16.6k
            doc.getStructTreeRoot();
73
16.6k
            doc.getXRef();
74
16.6k
            doc.okToPrint(gTrue);
75
16.6k
            doc.okToCopy(gTrue);
76
16.6k
            doc.okToChange(gTrue);
77
16.6k
            doc.okToAddNotes(gTrue);
78
16.6k
            doc.isLinearized();
79
16.6k
            doc.getPDFVersion();
80
81
16.6k
            GString *metadata;
82
16.6k
            if ((metadata = doc.readMetadata())) {
83
940
              (void)metadata->getCString();
84
940
            }
85
16.6k
            delete metadata;
86
87
16.6k
            Object info;
88
16.6k
            doc.getDocInfo(&info);
89
16.6k
            if (info.isDict()) {
90
3.04k
              info.getDict();
91
3.04k
            }
92
16.6k
            info.free();
93
94
16.6k
            if ((acroForm = doc.getCatalog()->getAcroForm())->isDict()) {
95
1.26k
                acroForm->dictLookup("XFA", &xfa);
96
1.26k
                xfa.free();
97
1.26k
            }
98
99
247k
            for (size_t i = 1; i <= doc.getNumPages(); i++) {
100
230k
              doc.getLinks(i);
101
230k
              auto page = doc.getCatalog()->getPage(i);
102
230k
              if (!page->isOk()) {
103
0
                continue;
104
0
              }
105
230k
              page->getResourceDict();
106
230k
              page->getMetadata();
107
230k
              page->getResourceDict();
108
230k
            }
109
110
16.6k
            SplashColor paperColor = {0xff, 0xff, 0xff};
111
16.6k
            SplashOutputDev *splashOut = new SplashOutputDev(splashModeRGB8, 1, gFalse, paperColor);
112
16.6k
            splashOut->setNoComposite(gTrue);
113
16.6k
            splashOut->startDoc(doc.getXRef());
114
247k
            for (size_t i = 1; i <= doc.getNumPages(); ++i) {
115
230k
              doc.displayPage(splashOut, NULL, i, hdpi, vdpi, rotate, useMediaBox, crop, printing);
116
230k
            }
117
16.6k
            (void)splashOut->getBitmap();
118
119
16.6k
            delete splashOut;
120
16.6k
        }
121
19.9k
    } catch (...) {
122
123
76
    }
124
125
19.9k
    delete globalParams;
126
127
19.9k
    return 0;
128
19.9k
}
129