]> Git Repo - qemu.git/commitdiff
qjson: Don't crash when input exceeds nesting limit
authorMarkus Armbruster <[email protected]>
Wed, 25 Nov 2015 21:23:23 +0000 (22:23 +0100)
committerMarkus Armbruster <[email protected]>
Thu, 26 Nov 2015 08:18:04 +0000 (09:18 +0100)
We limit nesting depth and input size to defend against input
triggering excessive heap or stack memory use (commit 29c75dd
json-streamer: limit the maximum recursion depth and maximum token
count).  However, when the nesting limit is exceeded,
parser_context_peek_token()'s assertion fails.

Broken in commit 65c0f1e "json-parser: don't replicate tokens at each
level of recursion".

To reproduce stuff 1025 open braces or brackets into QMP.

Fix by taking the error exit instead of the normal one.

Reported-by: Eric Blake <[email protected]>
Signed-off-by: Markus Armbruster <[email protected]>
Reviewed-by: Eric Blake <[email protected]>
Message-Id: <1448486613[email protected]>

qobject/json-streamer.c

index dced2c77a19b2a83b9c9c4b2b6cc0252b906c21c..2bd22a738e1ea760d0872cc80804d335044a0fec 100644 (file)
@@ -68,13 +68,14 @@ static void json_message_process_token(JSONLexer *lexer, QString *token, JSONTok
         /* Security consideration, we limit total memory allocated per object
          * and the maximum recursion depth that a message can force.
          */
-        goto out_emit;
+        goto out_emit_bad;
     }
 
     return;
 
 out_emit_bad:
-    /* clear out token list and tell the parser to emit and error
+    /*
+     * Clear out token list and tell the parser to emit an error
      * indication by passing it a NULL list
      */
     QDECREF(parser->tokens);
This page took 0.025957 seconds and 4 git commands to generate.