diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-10-21 22:55:52 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-23 19:29:59 +0100 |
commit | 48e4fb239a1466a8a89520abd7fb851963267c60 (patch) | |
tree | 7799b512e776366b29bbb808a3942630b36bf730 /Userland/Shell/Parser.h | |
parent | fc519d43baaa926aae2213d5df526abd60b493e2 (diff) | |
download | serenity-48e4fb239a1466a8a89520abd7fb851963267c60.zip |
Shell: Prevent exponential explosion around '$(('
When parse_expression looks at '$((', there are two ways it can end up
in parse_expression again, three consumed characters later. All these
ways fail, so what happened was that the parser tried all possible
combinations, hence taking potentially an exponential amount of time.
1. parse_evaluate swallows the '$(', a new invocation of
parse_expression swallows the other '(', and through
parse_list_expression we're at another parse_expression.
2. parse_evaluate swallows the '$(', but returns a SyntaxError.
parse_expression used to not recognize the error, and treated it as a
regular AST node, calling into read_concat, then a new invocation of
parse_expression swallows the other '(', and through
parse_list_expression we're at another parse_expression.
Fixes #10561.
Found by OSS Fuzz, long-standing issue
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=28113
Diffstat (limited to 'Userland/Shell/Parser.h')
-rw-r--r-- | Userland/Shell/Parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Shell/Parser.h b/Userland/Shell/Parser.h index 37aac4097f..003267f968 100644 --- a/Userland/Shell/Parser.h +++ b/Userland/Shell/Parser.h @@ -251,7 +251,7 @@ expression :: evaluate expression? | '(' list_expression ')' expression? evaluate :: '$' '(' pipe_sequence ')' - | '$' expression {eval / dynamic resolve} + | '$' [lookahead != '('] expression {eval / dynamic resolve} string_composite :: string string_composite? | variable string_composite? |