blob: 02516853a13d50a1287af5e48d7774f80e945d19 [file] [log] [blame]
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -06001/*
2 * JSON streaming support
3 *
4 * Copyright IBM, Corp. 2009
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
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.
11 *
12 */
13
Peter Maydellf2ad72b2016-01-29 17:50:01 +000014#include "qemu/osdep.h"
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -060015#include "qemu-common.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010016#include "qapi/qmp/json-lexer.h"
17#include "qapi/qmp/json-streamer.h"
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -060018
Anthony Liguori29c75dd2011-06-01 12:14:53 -050019#define MAX_TOKEN_SIZE (64ULL << 20)
Markus Armbrusterdf649832015-11-25 22:23:33 +010020#define MAX_TOKEN_COUNT (2ULL << 20)
Anthony Liguori29c75dd2011-06-01 12:14:53 -050021#define MAX_NESTING (1ULL << 10)
22
Paolo Bonzini95385fe2015-11-25 22:23:31 +010023static void json_message_free_tokens(JSONMessageParser *parser)
24{
25 if (parser->tokens) {
26 g_queue_free(parser->tokens);
27 parser->tokens = NULL;
28 }
29}
30
Paolo Bonzinid2ca7c02015-11-25 22:23:29 +010031static void json_message_process_token(JSONLexer *lexer, GString *input,
32 JSONTokenType type, int x, int y)
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -060033{
34 JSONMessageParser *parser = container_of(lexer, JSONMessageParser, lexer);
Paolo Bonzini9bada892015-11-25 22:23:32 +010035 JSONToken *token;
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -060036
Markus Armbrusterc5461662015-11-25 22:23:26 +010037 switch (type) {
38 case JSON_LCURLY:
39 parser->brace_count++;
40 break;
41 case JSON_RCURLY:
42 parser->brace_count--;
43 break;
44 case JSON_LSQUARE:
45 parser->bracket_count++;
46 break;
47 case JSON_RSQUARE:
48 parser->bracket_count--;
49 break;
50 default:
51 break;
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -060052 }
53
Paolo Bonzini9bada892015-11-25 22:23:32 +010054 token = g_malloc(sizeof(JSONToken) + input->len + 1);
55 token->type = type;
56 memcpy(token->str, input->str, input->len);
57 token->str[input->len] = 0;
58 token->x = x;
59 token->y = y;
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -060060
Paolo Bonzinid2ca7c02015-11-25 22:23:29 +010061 parser->token_size += input->len;
Anthony Liguori29c75dd2011-06-01 12:14:53 -050062
Paolo Bonzini9bada892015-11-25 22:23:32 +010063 g_queue_push_tail(parser->tokens, token);
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -060064
Michael Roth5e2dafe2011-06-01 12:14:59 -050065 if (type == JSON_ERROR) {
66 goto out_emit_bad;
67 } else if (parser->brace_count < 0 ||
Anthony Liguori55f83012011-06-01 12:14:51 -050068 parser->bracket_count < 0 ||
69 (parser->brace_count == 0 &&
70 parser->bracket_count == 0)) {
Michael Roth5e2dafe2011-06-01 12:14:59 -050071 goto out_emit;
Anthony Liguori29c75dd2011-06-01 12:14:53 -050072 } else if (parser->token_size > MAX_TOKEN_SIZE ||
Markus Armbrusterdf649832015-11-25 22:23:33 +010073 g_queue_get_length(parser->tokens) > MAX_TOKEN_COUNT ||
Markus Armbruster4f2d31f2015-11-25 22:23:22 +010074 parser->bracket_count + parser->brace_count > MAX_NESTING) {
Anthony Liguori29c75dd2011-06-01 12:14:53 -050075 /* Security consideration, we limit total memory allocated per object
76 * and the maximum recursion depth that a message can force.
77 */
Markus Armbruster07531132015-11-25 22:23:23 +010078 goto out_emit_bad;
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -060079 }
Michael Roth5e2dafe2011-06-01 12:14:59 -050080
81 return;
82
83out_emit_bad:
Markus Armbruster07531132015-11-25 22:23:23 +010084 /*
85 * Clear out token list and tell the parser to emit an error
Michael Roth5e2dafe2011-06-01 12:14:59 -050086 * indication by passing it a NULL list
87 */
Paolo Bonzini95385fe2015-11-25 22:23:31 +010088 json_message_free_tokens(parser);
Michael Roth5e2dafe2011-06-01 12:14:59 -050089out_emit:
90 /* send current list of tokens to parser and reset tokenizer */
91 parser->brace_count = 0;
92 parser->bracket_count = 0;
Paolo Bonzini95385fe2015-11-25 22:23:31 +010093 /* parser->emit takes ownership of parser->tokens. */
Michael Roth5e2dafe2011-06-01 12:14:59 -050094 parser->emit(parser, parser->tokens);
Paolo Bonzini95385fe2015-11-25 22:23:31 +010095 parser->tokens = g_queue_new();
Michael Roth5e2dafe2011-06-01 12:14:59 -050096 parser->token_size = 0;
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -060097}
98
99void json_message_parser_init(JSONMessageParser *parser,
Paolo Bonzini95385fe2015-11-25 22:23:31 +0100100 void (*func)(JSONMessageParser *, GQueue *))
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -0600101{
102 parser->emit = func;
103 parser->brace_count = 0;
104 parser->bracket_count = 0;
Paolo Bonzini95385fe2015-11-25 22:23:31 +0100105 parser->tokens = g_queue_new();
Anthony Liguori29c75dd2011-06-01 12:14:53 -0500106 parser->token_size = 0;
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -0600107
108 json_lexer_init(&parser->lexer, json_message_process_token);
109}
110
111int json_message_parser_feed(JSONMessageParser *parser,
112 const char *buffer, size_t size)
113{
114 return json_lexer_feed(&parser->lexer, buffer, size);
115}
116
117int json_message_parser_flush(JSONMessageParser *parser)
118{
119 return json_lexer_flush(&parser->lexer);
120}
121
122void json_message_parser_destroy(JSONMessageParser *parser)
123{
124 json_lexer_destroy(&parser->lexer);
Paolo Bonzini95385fe2015-11-25 22:23:31 +0100125 json_message_free_tokens(parser);
Anthony Liguorid7ff3ac2009-11-11 10:38:59 -0600126}