2019-06-14 16:34:23 +00:00
|
|
|
#include <qpdf/Buffer.hh>
|
|
|
|
#include <qpdf/BufferInputSource.hh>
|
|
|
|
#include <qpdf/Pl_Discard.hh>
|
|
|
|
#include <qpdf/QPDF.hh>
|
|
|
|
#include <qpdf/QPDFAcroFormDocumentHelper.hh>
|
|
|
|
#include <qpdf/QPDFOutlineDocumentHelper.hh>
|
|
|
|
#include <qpdf/QPDFPageDocumentHelper.hh>
|
|
|
|
#include <qpdf/QPDFPageLabelDocumentHelper.hh>
|
|
|
|
#include <qpdf/QPDFPageObjectHelper.hh>
|
|
|
|
#include <qpdf/QPDFWriter.hh>
|
|
|
|
#include <qpdf/QUtil.hh>
|
2020-10-22 10:27:25 +00:00
|
|
|
#include <cstdlib>
|
2019-06-14 16:34:23 +00:00
|
|
|
|
|
|
|
class DiscardContents: public QPDFObjectHandle::ParserCallbacks
|
|
|
|
{
|
|
|
|
public:
|
2023-05-20 13:25:46 +00:00
|
|
|
~DiscardContents() override = default;
|
|
|
|
void
|
|
|
|
handleObject(QPDFObjectHandle) override
|
2019-06-14 16:34:23 +00:00
|
|
|
{
|
|
|
|
}
|
2023-05-20 13:25:46 +00:00
|
|
|
void
|
|
|
|
handleEOF() override
|
2019-06-14 16:34:23 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class FuzzHelper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FuzzHelper(unsigned char const* data, size_t size);
|
|
|
|
void run();
|
|
|
|
|
|
|
|
private:
|
2022-04-09 18:49:10 +00:00
|
|
|
std::shared_ptr<QPDF> getQpdf();
|
|
|
|
std::shared_ptr<QPDFWriter> getWriter(std::shared_ptr<QPDF>);
|
|
|
|
void doWrite(std::shared_ptr<QPDFWriter> w);
|
2019-06-14 16:34:23 +00:00
|
|
|
void testWrite();
|
|
|
|
void testPages();
|
|
|
|
void testOutlines();
|
|
|
|
void doChecks();
|
|
|
|
|
|
|
|
Buffer input_buffer;
|
|
|
|
Pl_Discard discard;
|
|
|
|
};
|
|
|
|
|
|
|
|
FuzzHelper::FuzzHelper(unsigned char const* data, size_t size) :
|
|
|
|
// We do not modify data, so it is safe to remove the const for Buffer
|
|
|
|
input_buffer(const_cast<unsigned char*>(data), size)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-04-09 18:49:10 +00:00
|
|
|
std::shared_ptr<QPDF>
|
2019-06-14 16:34:23 +00:00
|
|
|
FuzzHelper::getQpdf()
|
|
|
|
{
|
2022-04-09 18:49:10 +00:00
|
|
|
auto is =
|
2022-02-06 16:40:24 +00:00
|
|
|
std::shared_ptr<InputSource>(new BufferInputSource("fuzz input", &this->input_buffer));
|
2022-09-02 12:53:27 +00:00
|
|
|
auto qpdf = QPDF::create();
|
2019-06-14 16:34:23 +00:00
|
|
|
qpdf->processInputSource(is);
|
|
|
|
return qpdf;
|
|
|
|
}
|
|
|
|
|
2022-04-09 18:49:10 +00:00
|
|
|
std::shared_ptr<QPDFWriter>
|
|
|
|
FuzzHelper::getWriter(std::shared_ptr<QPDF> qpdf)
|
2019-06-14 16:34:23 +00:00
|
|
|
{
|
2022-04-09 18:49:10 +00:00
|
|
|
auto w = std::make_shared<QPDFWriter>(*qpdf);
|
2019-06-14 16:34:23 +00:00
|
|
|
w->setOutputPipeline(&this->discard);
|
|
|
|
w->setDecodeLevel(qpdf_dl_all);
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-04-09 18:49:10 +00:00
|
|
|
FuzzHelper::doWrite(std::shared_ptr<QPDFWriter> w)
|
2019-06-14 16:34:23 +00:00
|
|
|
{
|
|
|
|
try {
|
|
|
|
w->write();
|
|
|
|
} catch (QPDFExc const& e) {
|
|
|
|
std::cerr << e.what() << std::endl;
|
2019-06-21 21:39:19 +00:00
|
|
|
} catch (std::runtime_error const& e) {
|
|
|
|
std::cerr << e.what() << std::endl;
|
|
|
|
}
|
2019-06-14 16:34:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FuzzHelper::testWrite()
|
|
|
|
{
|
|
|
|
// Write in various ways to exercise QPDFWriter
|
|
|
|
|
2022-04-09 18:49:10 +00:00
|
|
|
std::shared_ptr<QPDF> q;
|
|
|
|
std::shared_ptr<QPDFWriter> w;
|
2019-06-14 16:34:23 +00:00
|
|
|
|
|
|
|
q = getQpdf();
|
|
|
|
w = getWriter(q);
|
2019-06-21 21:39:19 +00:00
|
|
|
w->setDeterministicID(true);
|
|
|
|
w->setQDFMode(true);
|
2019-06-14 16:34:23 +00:00
|
|
|
doWrite(w);
|
|
|
|
|
|
|
|
q = getQpdf();
|
|
|
|
w = getWriter(q);
|
2019-06-21 21:39:19 +00:00
|
|
|
w->setStaticID(true);
|
2019-06-14 16:34:23 +00:00
|
|
|
w->setLinearization(true);
|
2019-06-21 21:39:19 +00:00
|
|
|
w->setR6EncryptionParameters("u", "o", true, true, true, true, true, true, qpdf_r3p_full, true);
|
2019-06-14 16:34:23 +00:00
|
|
|
doWrite(w);
|
|
|
|
|
|
|
|
q = getQpdf();
|
|
|
|
w = getWriter(q);
|
2019-06-21 21:39:19 +00:00
|
|
|
w->setStaticID(true);
|
2019-06-14 16:34:23 +00:00
|
|
|
w->setObjectStreamMode(qpdf_o_disable);
|
2022-04-30 20:05:28 +00:00
|
|
|
w->setR3EncryptionParametersInsecure(
|
2022-02-08 14:18:08 +00:00
|
|
|
"u", "o", true, true, true, true, true, true, qpdf_r3p_full);
|
2019-06-14 16:34:23 +00:00
|
|
|
doWrite(w);
|
|
|
|
|
|
|
|
q = getQpdf();
|
|
|
|
w = getWriter(q);
|
2019-06-21 21:39:19 +00:00
|
|
|
w->setDeterministicID(true);
|
2019-06-14 16:34:23 +00:00
|
|
|
w->setObjectStreamMode(qpdf_o_generate);
|
2019-06-21 21:39:19 +00:00
|
|
|
w->setLinearization(true);
|
2019-06-14 16:34:23 +00:00
|
|
|
doWrite(w);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FuzzHelper::testPages()
|
|
|
|
{
|
|
|
|
// Parse all content streams, and exercise some helpers that
|
|
|
|
// operate on pages.
|
2022-04-09 18:49:10 +00:00
|
|
|
std::shared_ptr<QPDF> q = getQpdf();
|
2019-06-14 16:34:23 +00:00
|
|
|
QPDFPageDocumentHelper pdh(*q);
|
|
|
|
QPDFPageLabelDocumentHelper pldh(*q);
|
|
|
|
QPDFOutlineDocumentHelper odh(*q);
|
|
|
|
QPDFAcroFormDocumentHelper afdh(*q);
|
2019-06-21 21:39:19 +00:00
|
|
|
afdh.generateAppearancesIfNeeded();
|
|
|
|
pdh.flattenAnnotations();
|
2019-06-14 16:34:23 +00:00
|
|
|
DiscardContents discard_contents;
|
|
|
|
int pageno = 0;
|
2022-05-21 14:18:15 +00:00
|
|
|
for (auto& page: pdh.getAllPages()) {
|
2019-06-14 16:34:23 +00:00
|
|
|
++pageno;
|
|
|
|
try {
|
2019-06-21 21:39:19 +00:00
|
|
|
page.coalesceContentStreams();
|
2021-01-02 19:05:17 +00:00
|
|
|
page.parseContents(&discard_contents);
|
2020-12-31 18:23:49 +00:00
|
|
|
page.getImages();
|
2019-06-14 16:34:23 +00:00
|
|
|
pldh.getLabelForPage(pageno);
|
2019-06-21 21:39:19 +00:00
|
|
|
QPDFObjectHandle page_obj(page.getObjectHandle());
|
2022-05-07 11:53:45 +00:00
|
|
|
page_obj.getJSON(JSON::LATEST, true).unparse();
|
2019-06-21 21:39:19 +00:00
|
|
|
odh.getOutlinesForPage(page_obj.getObjGen());
|
2019-06-14 16:34:23 +00:00
|
|
|
|
2022-05-21 14:18:15 +00:00
|
|
|
for (auto& aoh: afdh.getWidgetAnnotationsForPage(page)) {
|
2019-06-14 16:34:23 +00:00
|
|
|
afdh.getFieldForAnnotation(aoh);
|
|
|
|
}
|
|
|
|
} catch (QPDFExc& e) {
|
|
|
|
std::cerr << "page " << pageno << ": " << e.what() << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FuzzHelper::testOutlines()
|
|
|
|
{
|
2022-04-09 18:49:10 +00:00
|
|
|
std::shared_ptr<QPDF> q = getQpdf();
|
2019-07-03 17:34:02 +00:00
|
|
|
std::list<std::vector<QPDFOutlineObjectHelper>> queue;
|
2019-06-14 16:34:23 +00:00
|
|
|
QPDFOutlineDocumentHelper odh(*q);
|
|
|
|
queue.push_back(odh.getTopLevelOutlines());
|
|
|
|
while (!queue.empty()) {
|
2022-05-21 14:18:15 +00:00
|
|
|
for (auto& ol: *(queue.begin())) {
|
2019-06-14 16:34:23 +00:00
|
|
|
ol.getDestPage();
|
|
|
|
queue.push_back(ol.getKids());
|
|
|
|
}
|
|
|
|
queue.pop_front();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FuzzHelper::doChecks()
|
|
|
|
{
|
|
|
|
// Get as much coverage as possible in parts of the library that
|
|
|
|
// might benefit from fuzzing.
|
|
|
|
testWrite();
|
|
|
|
testPages();
|
|
|
|
testOutlines();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
FuzzHelper::run()
|
|
|
|
{
|
|
|
|
// The goal here is that you should be able to throw anything at
|
|
|
|
// libqpdf and it will respond without any memory errors and never
|
|
|
|
// do anything worse than throwing a QPDFExc or
|
|
|
|
// std::runtime_error. Throwing any other kind of exception,
|
|
|
|
// segfaulting, or having a memory error (when built with
|
|
|
|
// appropriate sanitizers) will all cause abnormal exit.
|
|
|
|
try {
|
|
|
|
doChecks();
|
|
|
|
} catch (QPDFExc const& e) {
|
|
|
|
std::cerr << "QPDFExc: " << e.what() << std::endl;
|
|
|
|
} catch (std::runtime_error const& e) {
|
|
|
|
std::cerr << "runtime_error: " << e.what() << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int
|
|
|
|
LLVMFuzzerTestOneInput(unsigned char const* data, size_t size)
|
|
|
|
{
|
2020-10-22 10:27:25 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
// Used by jpeg library to work around false positives in memory
|
|
|
|
// sanitizer.
|
|
|
|
setenv("JSIMD_FORCENONE", "1", 1);
|
|
|
|
#endif
|
2019-06-14 16:34:23 +00:00
|
|
|
FuzzHelper f(data, size);
|
|
|
|
f.run();
|
|
|
|
return 0;
|
|
|
|
}
|