From 4dca80da49f9dcdd375e2eac100b17fbe9d2bb79 Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Wed, 11 Feb 2015 09:44:02 -0600 Subject: [PATCH] limit stackDepth --- src/lib_json/json_reader.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/lib_json/json_reader.cpp b/src/lib_json/json_reader.cpp index 95eb4b2..6cf23e3 100644 --- a/src/lib_json/json_reader.cpp +++ b/src/lib_json/json_reader.cpp @@ -1034,7 +1034,9 @@ private: Location lastValueEnd_; Value* lastValue_; std::string commentsBefore_; - OurFeatures features_; + int stackDepth_; + + OurFeatures const features_; bool collectComments_; }; // OurReader @@ -1065,6 +1067,7 @@ bool OurReader::parse(const char* beginDoc, nodes_.pop(); nodes_.push(&root); + stackDepth_ = 0; bool successful = readValue(); Token token; skipCommentTokens(token); @@ -1087,6 +1090,8 @@ bool OurReader::parse(const char* beginDoc, } bool OurReader::readValue() { + if (stackDepth_ >= features_.stackLimit_) throw std::runtime_error("Exceeded stackLimit in readValue()."); + ++stackDepth_; Token token; skipCommentTokens(token); bool successful = true; @@ -1158,6 +1163,7 @@ bool OurReader::readValue() { lastValue_ = ¤tValue(); } + --stackDepth_; return successful; }