4 * Copyright IBM, Corp. 2009
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 "qemu/osdep.h"
15 #include "qemu/ctype.h"
16 #include "qemu/cutils.h"
17 #include "qemu/unicode.h"
18 #include "qapi/error.h"
19 #include "qapi/qmp/qbool.h"
20 #include "qapi/qmp/qdict.h"
21 #include "qapi/qmp/qlist.h"
22 #include "qapi/qmp/qnull.h"
23 #include "qapi/qmp/qnum.h"
24 #include "qapi/qmp/qstring.h"
25 #include "json-parser-int.h"
34 typedef struct JSONParserContext
42 #define BUG_ON(cond) assert(!(cond))
47 * 0) make errors meaningful again
48 * 1) add geometry information to tokens
49 * 3) should we return a parsed size?
50 * 4) deal with premature EOI
53 static QObject
*parse_value(JSONParserContext
*ctxt
);
58 static void GCC_FMT_ATTR(3, 4) parse_error(JSONParserContext
*ctxt
,
59 JSONToken
*token
, const char *msg
, ...)
68 vsnprintf(message
, sizeof(message
), msg
, ap
);
70 error_setg(&ctxt
->err
, "JSON parse error, %s", message
);
73 static int cvt4hex(const char *s
)
78 for (i
= 0; i
< 4; i
++) {
79 if (!qemu_isxdigit(s
[i
])) {
83 if (s
[i
] >= '0' && s
[i
] <= '9') {
85 } else if (s
[i
] >= 'a' && s
[i
] <= 'f') {
86 cp
|= 10 + s
[i
] - 'a';
87 } else if (s
[i
] >= 'A' && s
[i
] <= 'F') {
88 cp
|= 10 + s
[i
] - 'A';
97 * parse_string(): Parse a JSON string
99 * From RFC 8259 "The JavaScript Object Notation (JSON) Data
100 * Interchange Format":
104 * %x22 / ; " quotation mark U+0022
105 * %x5C / ; \ reverse solidus U+005C
106 * %x2F / ; / solidus U+002F
107 * %x62 / ; b backspace U+0008
108 * %x66 / ; f form feed U+000C
109 * %x6E / ; n line feed U+000A
110 * %x72 / ; r carriage return U+000D
111 * %x74 / ; t tab U+0009
112 * %x75 4HEXDIG ) ; uXXXX U+XXXX
114 * quotation-mark = %x22 ; "
115 * unescaped = %x20-21 / %x23-5B / %x5D-10FFFF
117 * Extensions over RFC 8259:
118 * - Extra escape sequence in strings:
119 * 0x27 (apostrophe) is recognized after escape, too
120 * - Single-quoted strings:
121 * Like double-quoted strings, except they're delimited by %x27
122 * (apostrophe) instead of %x22 (quotation mark), and can't contain
123 * unescaped apostrophe, but can contain unescaped quotation mark.
126 * - Encoding is modified UTF-8.
127 * - Invalid Unicode characters are rejected.
128 * - Control characters \x00..\x1F are rejected by the lexer.
130 static QString
*parse_string(JSONParserContext
*ctxt
, JSONToken
*token
)
132 const char *ptr
= token
->str
;
141 assert(*ptr
== '"' || *ptr
== '\'');
145 while (*ptr
!= quote
) {
152 qstring_append_chr(str
, '"');
155 qstring_append_chr(str
, '\'');
158 qstring_append_chr(str
, '\\');
161 qstring_append_chr(str
, '/');
164 qstring_append_chr(str
, '\b');
167 qstring_append_chr(str
, '\f');
170 qstring_append_chr(str
, '\n');
173 qstring_append_chr(str
, '\r');
176 qstring_append_chr(str
, '\t');
182 /* handle surrogate pairs */
183 if (cp
>= 0xD800 && cp
<= 0xDBFF
184 && ptr
[0] == '\\' && ptr
[1] == 'u') {
185 /* leading surrogate followed by \u */
186 cp
= 0x10000 + ((cp
& 0x3FF) << 10);
187 trailing
= cvt4hex(ptr
+ 2);
188 if (trailing
>= 0xDC00 && trailing
<= 0xDFFF) {
189 /* followed by trailing surrogate */
190 cp
|= trailing
& 0x3FF;
193 cp
= -1; /* invalid */
197 if (mod_utf8_encode(utf8_buf
, sizeof(utf8_buf
), cp
) < 0) {
198 parse_error(ctxt
, token
,
199 "%.*s is not a valid Unicode character",
200 (int)(ptr
- beg
), beg
);
203 qstring_append(str
, utf8_buf
);
206 parse_error(ctxt
, token
, "invalid escape sequence in string");
213 parse_error(ctxt
, token
, "can't interpolate into string");
220 cp
= mod_utf8_codepoint(ptr
, 6, &end
);
222 parse_error(ctxt
, token
, "invalid UTF-8 sequence in string");
226 len
= mod_utf8_encode(utf8_buf
, sizeof(utf8_buf
), cp
);
228 qstring_append(str
, utf8_buf
);
239 /* Note: the token object returned by parser_context_peek_token or
240 * parser_context_pop_token is deleted as soon as parser_context_pop_token
243 static JSONToken
*parser_context_pop_token(JSONParserContext
*ctxt
)
245 g_free(ctxt
->current
);
246 ctxt
->current
= g_queue_pop_head(ctxt
->buf
);
247 return ctxt
->current
;
250 static JSONToken
*parser_context_peek_token(JSONParserContext
*ctxt
)
252 return g_queue_peek_head(ctxt
->buf
);
258 static int parse_pair(JSONParserContext
*ctxt
, QDict
*dict
)
262 JSONToken
*peek
, *token
;
264 peek
= parser_context_peek_token(ctxt
);
266 parse_error(ctxt
, NULL
, "premature EOI");
270 key
= qobject_to(QString
, parse_value(ctxt
));
272 parse_error(ctxt
, peek
, "key is not a string in object");
276 token
= parser_context_pop_token(ctxt
);
278 parse_error(ctxt
, NULL
, "premature EOI");
282 if (token
->type
!= JSON_COLON
) {
283 parse_error(ctxt
, token
, "missing : in object pair");
287 value
= parse_value(ctxt
);
289 parse_error(ctxt
, token
, "Missing value in dict");
293 if (qdict_haskey(dict
, qstring_get_str(key
))) {
294 parse_error(ctxt
, token
, "duplicate key");
298 qdict_put_obj(dict
, qstring_get_str(key
), value
);
310 static QObject
*parse_object(JSONParserContext
*ctxt
)
313 JSONToken
*token
, *peek
;
315 token
= parser_context_pop_token(ctxt
);
316 assert(token
&& token
->type
== JSON_LCURLY
);
320 peek
= parser_context_peek_token(ctxt
);
322 parse_error(ctxt
, NULL
, "premature EOI");
326 if (peek
->type
!= JSON_RCURLY
) {
327 if (parse_pair(ctxt
, dict
) == -1) {
331 token
= parser_context_pop_token(ctxt
);
333 parse_error(ctxt
, NULL
, "premature EOI");
337 while (token
->type
!= JSON_RCURLY
) {
338 if (token
->type
!= JSON_COMMA
) {
339 parse_error(ctxt
, token
, "expected separator in dict");
343 if (parse_pair(ctxt
, dict
) == -1) {
347 token
= parser_context_pop_token(ctxt
);
349 parse_error(ctxt
, NULL
, "premature EOI");
354 (void)parser_context_pop_token(ctxt
);
357 return QOBJECT(dict
);
364 static QObject
*parse_array(JSONParserContext
*ctxt
)
367 JSONToken
*token
, *peek
;
369 token
= parser_context_pop_token(ctxt
);
370 assert(token
&& token
->type
== JSON_LSQUARE
);
374 peek
= parser_context_peek_token(ctxt
);
376 parse_error(ctxt
, NULL
, "premature EOI");
380 if (peek
->type
!= JSON_RSQUARE
) {
383 obj
= parse_value(ctxt
);
385 parse_error(ctxt
, token
, "expecting value");
389 qlist_append_obj(list
, obj
);
391 token
= parser_context_pop_token(ctxt
);
393 parse_error(ctxt
, NULL
, "premature EOI");
397 while (token
->type
!= JSON_RSQUARE
) {
398 if (token
->type
!= JSON_COMMA
) {
399 parse_error(ctxt
, token
, "expected separator in list");
403 obj
= parse_value(ctxt
);
405 parse_error(ctxt
, token
, "expecting value");
409 qlist_append_obj(list
, obj
);
411 token
= parser_context_pop_token(ctxt
);
413 parse_error(ctxt
, NULL
, "premature EOI");
418 (void)parser_context_pop_token(ctxt
);
421 return QOBJECT(list
);
428 static QObject
*parse_keyword(JSONParserContext
*ctxt
)
432 token
= parser_context_pop_token(ctxt
);
433 assert(token
&& token
->type
== JSON_KEYWORD
);
435 if (!strcmp(token
->str
, "true")) {
436 return QOBJECT(qbool_from_bool(true));
437 } else if (!strcmp(token
->str
, "false")) {
438 return QOBJECT(qbool_from_bool(false));
439 } else if (!strcmp(token
->str
, "null")) {
440 return QOBJECT(qnull());
442 parse_error(ctxt
, token
, "invalid keyword '%s'", token
->str
);
446 static QObject
*parse_interpolation(JSONParserContext
*ctxt
)
450 token
= parser_context_pop_token(ctxt
);
451 assert(token
&& token
->type
== JSON_INTERP
);
453 if (!strcmp(token
->str
, "%p")) {
454 return va_arg(*ctxt
->ap
, QObject
*);
455 } else if (!strcmp(token
->str
, "%i")) {
456 return QOBJECT(qbool_from_bool(va_arg(*ctxt
->ap
, int)));
457 } else if (!strcmp(token
->str
, "%d")) {
458 return QOBJECT(qnum_from_int(va_arg(*ctxt
->ap
, int)));
459 } else if (!strcmp(token
->str
, "%ld")) {
460 return QOBJECT(qnum_from_int(va_arg(*ctxt
->ap
, long)));
461 } else if (!strcmp(token
->str
, "%lld")) {
462 return QOBJECT(qnum_from_int(va_arg(*ctxt
->ap
, long long)));
463 } else if (!strcmp(token
->str
, "%" PRId64
)) {
464 return QOBJECT(qnum_from_int(va_arg(*ctxt
->ap
, int64_t)));
465 } else if (!strcmp(token
->str
, "%u")) {
466 return QOBJECT(qnum_from_uint(va_arg(*ctxt
->ap
, unsigned int)));
467 } else if (!strcmp(token
->str
, "%lu")) {
468 return QOBJECT(qnum_from_uint(va_arg(*ctxt
->ap
, unsigned long)));
469 } else if (!strcmp(token
->str
, "%llu")) {
470 return QOBJECT(qnum_from_uint(va_arg(*ctxt
->ap
, unsigned long long)));
471 } else if (!strcmp(token
->str
, "%" PRIu64
)) {
472 return QOBJECT(qnum_from_uint(va_arg(*ctxt
->ap
, uint64_t)));
473 } else if (!strcmp(token
->str
, "%s")) {
474 return QOBJECT(qstring_from_str(va_arg(*ctxt
->ap
, const char *)));
475 } else if (!strcmp(token
->str
, "%f")) {
476 return QOBJECT(qnum_from_double(va_arg(*ctxt
->ap
, double)));
478 parse_error(ctxt
, token
, "invalid interpolation '%s'", token
->str
);
482 static QObject
*parse_literal(JSONParserContext
*ctxt
)
486 token
= parser_context_pop_token(ctxt
);
489 switch (token
->type
) {
491 return QOBJECT(parse_string(ctxt
, token
));
494 * Represent JSON_INTEGER as QNUM_I64 if possible, else as
495 * QNUM_U64, else as QNUM_DOUBLE. Note that qemu_strtoi64()
496 * and qemu_strtou64() fail with ERANGE when it's not
499 * qnum_get_int() will then work for any signed 64-bit
500 * JSON_INTEGER, qnum_get_uint() for any unsigned 64-bit
501 * integer, and qnum_get_double() both for any JSON_INTEGER
502 * and any JSON_FLOAT (with precision loss for integers beyond
509 ret
= qemu_strtoi64(token
->str
, NULL
, 10, &value
);
511 return QOBJECT(qnum_from_int(value
));
513 assert(ret
== -ERANGE
);
515 if (token
->str
[0] != '-') {
516 ret
= qemu_strtou64(token
->str
, NULL
, 10, &uvalue
);
518 return QOBJECT(qnum_from_uint(uvalue
));
520 assert(ret
== -ERANGE
);
523 /* fall through to JSON_FLOAT */
525 /* FIXME dependent on locale; a pervasive issue in QEMU */
526 /* FIXME our lexer matches RFC 8259 in forbidding Inf or NaN,
527 * but those might be useful extensions beyond JSON */
528 return QOBJECT(qnum_from_double(strtod(token
->str
, NULL
)));
534 static QObject
*parse_value(JSONParserContext
*ctxt
)
538 token
= parser_context_peek_token(ctxt
);
540 parse_error(ctxt
, NULL
, "premature EOI");
544 switch (token
->type
) {
546 return parse_object(ctxt
);
548 return parse_array(ctxt
);
550 return parse_interpolation(ctxt
);
554 return parse_literal(ctxt
);
556 return parse_keyword(ctxt
);
558 parse_error(ctxt
, token
, "expecting value");
563 JSONToken
*json_token(JSONTokenType type
, int x
, int y
, GString
*tokstr
)
565 JSONToken
*token
= g_malloc(sizeof(JSONToken
) + tokstr
->len
+ 1);
568 memcpy(token
->str
, tokstr
->str
, tokstr
->len
);
569 token
->str
[tokstr
->len
] = 0;
575 QObject
*json_parser_parse(GQueue
*tokens
, va_list *ap
, Error
**errp
)
577 JSONParserContext ctxt
= { .buf
= tokens
, .ap
= ap
};
580 result
= parse_value(&ctxt
);
581 assert(ctxt
.err
|| g_queue_is_empty(ctxt
.buf
));
583 error_propagate(errp
, ctxt
.err
);
585 while (!g_queue_is_empty(ctxt
.buf
)) {
586 parser_context_pop_token(&ctxt
);
588 g_free(ctxt
.current
);