aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_pages.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2015-02-22 00:22:32 +0100
committerJay Berkenbilt <ejb@ql.org>2015-02-22 01:47:11 +0100
commita11549a566ceed28bc9f6ba100b0d3f6ae59a1f4 (patch)
tree4868bd8264af045ea8796f3a7cd74ccc5f462bb9 /libqpdf/QPDF_pages.cc
parent28a9df5119af12d6d97edf4fa97f88ce23865096 (diff)
downloadqpdf-a11549a566ceed28bc9f6ba100b0d3f6ae59a1f4.tar.zst
Detect loops in /Pages structure
Pushing inherited objects to pages and getting all pages were both prone to stack overflow infinite loops if there were loops in the Pages dictionary. There is a general weakness in the code in that any part of the code that traverses the Pages structure would be prone to this and would have to implement its own loop detection. A more robust fix may provide some general method for handling the Pages structure, but it's probably not worth doing. Note: addition of *Internal2 private functions was done rather than changing signatures of existing methods to avoid breaking compatibility.
Diffstat (limited to 'libqpdf/QPDF_pages.cc')
-rw-r--r--libqpdf/QPDF_pages.cc21
1 files changed, 20 insertions, 1 deletions
diff --git a/libqpdf/QPDF_pages.cc b/libqpdf/QPDF_pages.cc
index 44db064c..f9b421c6 100644
--- a/libqpdf/QPDF_pages.cc
+++ b/libqpdf/QPDF_pages.cc
@@ -56,6 +56,24 @@ void
QPDF::getAllPagesInternal(QPDFObjectHandle cur_pages,
std::vector<QPDFObjectHandle>& result)
{
+ std::set<QPDFObjGen> visited;
+ getAllPagesInternal2(cur_pages, result, visited);
+}
+
+void
+QPDF::getAllPagesInternal2(QPDFObjectHandle cur_pages,
+ std::vector<QPDFObjectHandle>& result,
+ std::set<QPDFObjGen>& visited)
+{
+ QPDFObjGen this_og = cur_pages.getObjGen();
+ if (visited.count(this_og) > 0)
+ {
+ throw QPDFExc(
+ qpdf_e_pages, this->file->getName(),
+ this->last_object_description, 0,
+ "Loop detected in /Pages structure (getAllPages)");
+ }
+ visited.insert(this_og);
std::string type;
QPDFObjectHandle type_key = cur_pages.getKey("/Type");
if (type_key.isName())
@@ -76,7 +94,7 @@ QPDF::getAllPagesInternal(QPDFObjectHandle cur_pages,
int n = kids.getArrayNItems();
for (int i = 0; i < n; ++i)
{
- getAllPagesInternal(kids.getArrayItem(i), result);
+ getAllPagesInternal2(kids.getArrayItem(i), result, visited);
}
}
else if (type == "/Page")
@@ -90,6 +108,7 @@ QPDF::getAllPagesInternal(QPDFObjectHandle cur_pages,
this->file->getLastOffset(),
"invalid Type " + type + " in page tree");
}
+ visited.erase(this_og);
}
void