json-streamer: make sure to reset token_size after emitting a token list
[qemu.git] / json-streamer.c
bloba6cb28f66579c6d8525b7300768280e94cabb5cd
1 /*
2 * JSON streaming support
4 * Copyright IBM, Corp. 2009
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
14 #include "qlist.h"
15 #include "qint.h"
16 #include "qdict.h"
17 #include "qemu-common.h"
18 #include "json-lexer.h"
19 #include "json-streamer.h"
21 #define MAX_TOKEN_SIZE (64ULL << 20)
22 #define MAX_NESTING (1ULL << 10)
24 static void json_message_process_token(JSONLexer *lexer, QString *token, JSONTokenType type, int x, int y)
26 JSONMessageParser *parser = container_of(lexer, JSONMessageParser, lexer);
27 QDict *dict;
29 if (type == JSON_OPERATOR) {
30 switch (qstring_get_str(token)[0]) {
31 case '{':
32 parser->brace_count++;
33 break;
34 case '}':
35 parser->brace_count--;
36 break;
37 case '[':
38 parser->bracket_count++;
39 break;
40 case ']':
41 parser->bracket_count--;
42 break;
43 default:
44 break;
48 dict = qdict_new();
49 qdict_put(dict, "type", qint_from_int(type));
50 QINCREF(token);
51 qdict_put(dict, "token", token);
52 qdict_put(dict, "x", qint_from_int(x));
53 qdict_put(dict, "y", qint_from_int(y));
55 parser->token_size += token->length;
57 qlist_append(parser->tokens, dict);
59 if (parser->brace_count < 0 ||
60 parser->bracket_count < 0 ||
61 (parser->brace_count == 0 &&
62 parser->bracket_count == 0)) {
63 parser->brace_count = 0;
64 parser->bracket_count = 0;
65 parser->emit(parser, parser->tokens);
66 QDECREF(parser->tokens);
67 parser->tokens = qlist_new();
68 parser->token_size = 0;
69 } else if (parser->token_size > MAX_TOKEN_SIZE ||
70 parser->bracket_count > MAX_NESTING ||
71 parser->brace_count > MAX_NESTING) {
72 /* Security consideration, we limit total memory allocated per object
73 * and the maximum recursion depth that a message can force.
75 parser->brace_count = 0;
76 parser->bracket_count = 0;
77 parser->emit(parser, parser->tokens);
78 QDECREF(parser->tokens);
79 parser->tokens = qlist_new();
80 parser->token_size = 0;
84 void json_message_parser_init(JSONMessageParser *parser,
85 void (*func)(JSONMessageParser *, QList *))
87 parser->emit = func;
88 parser->brace_count = 0;
89 parser->bracket_count = 0;
90 parser->tokens = qlist_new();
91 parser->token_size = 0;
93 json_lexer_init(&parser->lexer, json_message_process_token);
96 int json_message_parser_feed(JSONMessageParser *parser,
97 const char *buffer, size_t size)
99 return json_lexer_feed(&parser->lexer, buffer, size);
102 int json_message_parser_flush(JSONMessageParser *parser)
104 return json_lexer_flush(&parser->lexer);
107 void json_message_parser_destroy(JSONMessageParser *parser)
109 json_lexer_destroy(&parser->lexer);
110 QDECREF(parser->tokens);