Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
95d1552b
Unverified
Commit
95d1552b
authored
Feb 15, 2019
by
Paul Yang
Committed by
GitHub
Feb 15, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5733 from protocolbuffers/revert-5661-nesting
Revert "Add stack overflow protection for text format"
parents
e7283254
f66c9810
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
23 deletions
+1
-23
text_format.cc
src/google/protobuf/text_format.cc
+0
-8
text_format_unittest.cc
src/google/protobuf/text_format_unittest.cc
+0
-14
googletest
third_party/googletest
+1
-1
No files found.
src/google/protobuf/text_format.cc
View file @
95d1552b
...
...
@@ -262,7 +262,6 @@ class TextFormat::Parser::ParserImpl {
allow_unknown_enum_
(
allow_unknown_enum
),
allow_field_number_
(
allow_field_number
),
allow_partial_
(
allow_partial
),
recursion_budget_
(
io
::
CodedInputStream
::
GetDefaultRecursionLimit
()),
had_errors_
(
false
)
{
// For backwards-compatibility with proto1, we need to allow the 'f' suffix
// for floats.
...
...
@@ -632,10 +631,6 @@ label_skip_parsing:
bool
ConsumeFieldMessage
(
Message
*
message
,
const
Reflection
*
reflection
,
const
FieldDescriptor
*
field
)
{
if
(
--
recursion_budget_
<
0
)
{
ReportError
(
"Message is too deep"
);
return
false
;
}
// If the parse information tree is not NULL, create a nested one
// for the nested message.
...
...
@@ -653,8 +648,6 @@ label_skip_parsing:
delimiter
));
}
++
recursion_budget_
;
// Reset the parse information tree.
parse_info_tree_
=
parent
;
return
true
;
...
...
@@ -1186,7 +1179,6 @@ label_skip_parsing:
const
bool
allow_unknown_enum_
;
const
bool
allow_field_number_
;
const
bool
allow_partial_
;
int
recursion_budget_
;
bool
had_errors_
;
};
...
...
src/google/protobuf/text_format_unittest.cc
View file @
95d1552b
...
...
@@ -1810,20 +1810,6 @@ TEST_F(TextFormatParserTest, ParseDeprecatedField) {
"
\"
deprecated_int32
\"
"
,
1
,
21
,
&
message
,
true
);
}
TEST_F
(
TextFormatParserTest
,
DeepRecursion
)
{
const
char
*
format
=
"child: { $0 }"
;
std
::
string
input
;
for
(
int
i
=
0
;
i
<
100
;
++
i
)
input
=
strings
::
Substitute
(
format
,
input
);
unittest
::
NestedTestAllTypes
message
;
ExpectSuccessAndTree
(
input
,
&
message
,
nullptr
);
input
=
strings
::
Substitute
(
format
,
input
);
ExpectMessage
(
input
,
"Message is too deep"
,
1
,
908
,
&
message
,
false
);
}
class
TextFormatMessageSetTest
:
public
testing
::
Test
{
protected
:
static
const
char
proto_debug_string_
[];
...
...
googletest
@
5ec7f0c4
Subproject commit
c3bb0ee2a63279a803aaad956b9b26d74bf9e6e2
Subproject commit
5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment