Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 1 | /* |
| 2 | * JSON Parser |
| 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 Maydell | f2ad72b | 2016-01-29 17:50:01 +0000 | [diff] [blame] | 14 | #include "qemu/osdep.h" |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 15 | |
| 16 | #include "qemu-common.h" |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 17 | #include "qapi/qmp/qstring.h" |
| 18 | #include "qapi/qmp/qint.h" |
| 19 | #include "qapi/qmp/qdict.h" |
| 20 | #include "qapi/qmp/qlist.h" |
| 21 | #include "qapi/qmp/qfloat.h" |
| 22 | #include "qapi/qmp/qbool.h" |
| 23 | #include "qapi/qmp/json-parser.h" |
| 24 | #include "qapi/qmp/json-lexer.h" |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 25 | #include "qapi/qmp/json-streamer.h" |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 26 | |
| 27 | typedef struct JSONParserContext |
| 28 | { |
Anthony Liguori | ef749d0 | 2011-06-01 12:14:50 -0500 | [diff] [blame] | 29 | Error *err; |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 30 | JSONToken *current; |
Paolo Bonzini | 95385fe | 2015-11-25 22:23:31 +0100 | [diff] [blame] | 31 | GQueue *buf; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 32 | } JSONParserContext; |
| 33 | |
| 34 | #define BUG_ON(cond) assert(!(cond)) |
| 35 | |
| 36 | /** |
| 37 | * TODO |
| 38 | * |
| 39 | * 0) make errors meaningful again |
| 40 | * 1) add geometry information to tokens |
| 41 | * 3) should we return a parsed size? |
| 42 | * 4) deal with premature EOI |
| 43 | */ |
| 44 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 45 | static QObject *parse_value(JSONParserContext *ctxt, va_list *ap); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 46 | |
| 47 | /** |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 48 | * Error handler |
| 49 | */ |
Stefan Weil | 8b7968f | 2010-09-23 21:28:05 +0200 | [diff] [blame] | 50 | static void GCC_FMT_ATTR(3, 4) parse_error(JSONParserContext *ctxt, |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 51 | JSONToken *token, const char *msg, ...) |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 52 | { |
Amos Kong | c96c84a | 2010-03-24 23:12:05 +0800 | [diff] [blame] | 53 | va_list ap; |
Anthony Liguori | ef749d0 | 2011-06-01 12:14:50 -0500 | [diff] [blame] | 54 | char message[1024]; |
Amos Kong | c96c84a | 2010-03-24 23:12:05 +0800 | [diff] [blame] | 55 | va_start(ap, msg); |
Anthony Liguori | ef749d0 | 2011-06-01 12:14:50 -0500 | [diff] [blame] | 56 | vsnprintf(message, sizeof(message), msg, ap); |
Amos Kong | c96c84a | 2010-03-24 23:12:05 +0800 | [diff] [blame] | 57 | va_end(ap); |
Anthony Liguori | ef749d0 | 2011-06-01 12:14:50 -0500 | [diff] [blame] | 58 | if (ctxt->err) { |
| 59 | error_free(ctxt->err); |
| 60 | ctxt->err = NULL; |
| 61 | } |
Cole Robinson | f231b88 | 2014-03-21 19:42:26 -0400 | [diff] [blame] | 62 | error_setg(&ctxt->err, "JSON parse error, %s", message); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | /** |
| 66 | * String helpers |
| 67 | * |
| 68 | * These helpers are used to unescape strings. |
| 69 | */ |
| 70 | static void wchar_to_utf8(uint16_t wchar, char *buffer, size_t buffer_length) |
| 71 | { |
| 72 | if (wchar <= 0x007F) { |
| 73 | BUG_ON(buffer_length < 2); |
| 74 | |
| 75 | buffer[0] = wchar & 0x7F; |
| 76 | buffer[1] = 0; |
| 77 | } else if (wchar <= 0x07FF) { |
| 78 | BUG_ON(buffer_length < 3); |
| 79 | |
| 80 | buffer[0] = 0xC0 | ((wchar >> 6) & 0x1F); |
| 81 | buffer[1] = 0x80 | (wchar & 0x3F); |
| 82 | buffer[2] = 0; |
| 83 | } else { |
| 84 | BUG_ON(buffer_length < 4); |
| 85 | |
| 86 | buffer[0] = 0xE0 | ((wchar >> 12) & 0x0F); |
| 87 | buffer[1] = 0x80 | ((wchar >> 6) & 0x3F); |
| 88 | buffer[2] = 0x80 | (wchar & 0x3F); |
| 89 | buffer[3] = 0; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | static int hex2decimal(char ch) |
| 94 | { |
| 95 | if (ch >= '0' && ch <= '9') { |
| 96 | return (ch - '0'); |
| 97 | } else if (ch >= 'a' && ch <= 'f') { |
| 98 | return 10 + (ch - 'a'); |
| 99 | } else if (ch >= 'A' && ch <= 'F') { |
| 100 | return 10 + (ch - 'A'); |
| 101 | } |
| 102 | |
| 103 | return -1; |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * parse_string(): Parse a json string and return a QObject |
| 108 | * |
| 109 | * string |
| 110 | * "" |
| 111 | * " chars " |
| 112 | * chars |
| 113 | * char |
| 114 | * char chars |
| 115 | * char |
| 116 | * any-Unicode-character- |
| 117 | * except-"-or-\-or- |
| 118 | * control-character |
| 119 | * \" |
| 120 | * \\ |
| 121 | * \/ |
| 122 | * \b |
| 123 | * \f |
| 124 | * \n |
| 125 | * \r |
| 126 | * \t |
| 127 | * \u four-hex-digits |
| 128 | */ |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 129 | static QString *qstring_from_escaped_str(JSONParserContext *ctxt, |
| 130 | JSONToken *token) |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 131 | { |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 132 | const char *ptr = token->str; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 133 | QString *str; |
| 134 | int double_quote = 1; |
| 135 | |
| 136 | if (*ptr == '"') { |
| 137 | double_quote = 1; |
| 138 | } else { |
| 139 | double_quote = 0; |
| 140 | } |
| 141 | ptr++; |
| 142 | |
| 143 | str = qstring_new(); |
| 144 | while (*ptr && |
| 145 | ((double_quote && *ptr != '"') || (!double_quote && *ptr != '\''))) { |
| 146 | if (*ptr == '\\') { |
| 147 | ptr++; |
| 148 | |
| 149 | switch (*ptr) { |
| 150 | case '"': |
| 151 | qstring_append(str, "\""); |
| 152 | ptr++; |
| 153 | break; |
| 154 | case '\'': |
| 155 | qstring_append(str, "'"); |
| 156 | ptr++; |
| 157 | break; |
| 158 | case '\\': |
| 159 | qstring_append(str, "\\"); |
| 160 | ptr++; |
| 161 | break; |
| 162 | case '/': |
| 163 | qstring_append(str, "/"); |
| 164 | ptr++; |
| 165 | break; |
| 166 | case 'b': |
| 167 | qstring_append(str, "\b"); |
| 168 | ptr++; |
| 169 | break; |
Luiz Capitulino | bd03269 | 2010-05-19 17:06:15 -0300 | [diff] [blame] | 170 | case 'f': |
| 171 | qstring_append(str, "\f"); |
| 172 | ptr++; |
| 173 | break; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 174 | case 'n': |
| 175 | qstring_append(str, "\n"); |
| 176 | ptr++; |
| 177 | break; |
| 178 | case 'r': |
| 179 | qstring_append(str, "\r"); |
| 180 | ptr++; |
| 181 | break; |
| 182 | case 't': |
| 183 | qstring_append(str, "\t"); |
| 184 | ptr++; |
| 185 | break; |
| 186 | case 'u': { |
| 187 | uint16_t unicode_char = 0; |
| 188 | char utf8_char[4]; |
| 189 | int i = 0; |
| 190 | |
| 191 | ptr++; |
| 192 | |
| 193 | for (i = 0; i < 4; i++) { |
| 194 | if (qemu_isxdigit(*ptr)) { |
| 195 | unicode_char |= hex2decimal(*ptr) << ((3 - i) * 4); |
| 196 | } else { |
| 197 | parse_error(ctxt, token, |
| 198 | "invalid hex escape sequence in string"); |
| 199 | goto out; |
| 200 | } |
| 201 | ptr++; |
| 202 | } |
| 203 | |
| 204 | wchar_to_utf8(unicode_char, utf8_char, sizeof(utf8_char)); |
| 205 | qstring_append(str, utf8_char); |
| 206 | } break; |
| 207 | default: |
| 208 | parse_error(ctxt, token, "invalid escape sequence in string"); |
| 209 | goto out; |
| 210 | } |
| 211 | } else { |
| 212 | char dummy[2]; |
| 213 | |
| 214 | dummy[0] = *ptr++; |
| 215 | dummy[1] = 0; |
| 216 | |
| 217 | qstring_append(str, dummy); |
| 218 | } |
| 219 | } |
| 220 | |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 221 | return str; |
| 222 | |
| 223 | out: |
| 224 | QDECREF(str); |
| 225 | return NULL; |
| 226 | } |
| 227 | |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 228 | /* Note: the token object returned by parser_context_peek_token or |
| 229 | * parser_context_pop_token is deleted as soon as parser_context_pop_token |
| 230 | * is called again. |
Paolo Bonzini | 95385fe | 2015-11-25 22:23:31 +0100 | [diff] [blame] | 231 | */ |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 232 | static JSONToken *parser_context_pop_token(JSONParserContext *ctxt) |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 233 | { |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 234 | g_free(ctxt->current); |
Paolo Bonzini | 95385fe | 2015-11-25 22:23:31 +0100 | [diff] [blame] | 235 | assert(!g_queue_is_empty(ctxt->buf)); |
| 236 | ctxt->current = g_queue_pop_head(ctxt->buf); |
| 237 | return ctxt->current; |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 238 | } |
| 239 | |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 240 | static JSONToken *parser_context_peek_token(JSONParserContext *ctxt) |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 241 | { |
Paolo Bonzini | 95385fe | 2015-11-25 22:23:31 +0100 | [diff] [blame] | 242 | assert(!g_queue_is_empty(ctxt->buf)); |
| 243 | return g_queue_peek_head(ctxt->buf); |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 244 | } |
| 245 | |
Paolo Bonzini | 95385fe | 2015-11-25 22:23:31 +0100 | [diff] [blame] | 246 | static JSONParserContext *parser_context_new(GQueue *tokens) |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 247 | { |
| 248 | JSONParserContext *ctxt; |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 249 | |
| 250 | if (!tokens) { |
| 251 | return NULL; |
| 252 | } |
| 253 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 254 | ctxt = g_malloc0(sizeof(JSONParserContext)); |
Paolo Bonzini | 95385fe | 2015-11-25 22:23:31 +0100 | [diff] [blame] | 255 | ctxt->buf = tokens; |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 256 | |
| 257 | return ctxt; |
| 258 | } |
| 259 | |
| 260 | /* to support error propagation, ctxt->err must be freed separately */ |
| 261 | static void parser_context_free(JSONParserContext *ctxt) |
| 262 | { |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 263 | if (ctxt) { |
Paolo Bonzini | 95385fe | 2015-11-25 22:23:31 +0100 | [diff] [blame] | 264 | while (!g_queue_is_empty(ctxt->buf)) { |
| 265 | parser_context_pop_token(ctxt); |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 266 | } |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 267 | g_free(ctxt->current); |
Paolo Bonzini | 95385fe | 2015-11-25 22:23:31 +0100 | [diff] [blame] | 268 | g_queue_free(ctxt->buf); |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 269 | g_free(ctxt); |
| 270 | } |
| 271 | } |
| 272 | |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 273 | /** |
| 274 | * Parsing rules |
| 275 | */ |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 276 | static int parse_pair(JSONParserContext *ctxt, QDict *dict, va_list *ap) |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 277 | { |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 278 | QObject *key = NULL, *value; |
| 279 | JSONToken *peek, *token; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 280 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 281 | peek = parser_context_peek_token(ctxt); |
Anthony Liguori | 11e8a46 | 2011-06-01 12:14:55 -0500 | [diff] [blame] | 282 | if (peek == NULL) { |
| 283 | parse_error(ctxt, NULL, "premature EOI"); |
| 284 | goto out; |
| 285 | } |
| 286 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 287 | key = parse_value(ctxt, ap); |
Kevin Wolf | d758d90 | 2010-02-24 16:17:58 +0100 | [diff] [blame] | 288 | if (!key || qobject_type(key) != QTYPE_QSTRING) { |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 289 | parse_error(ctxt, peek, "key is not a string in object"); |
| 290 | goto out; |
| 291 | } |
| 292 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 293 | token = parser_context_pop_token(ctxt); |
Anthony Liguori | 11e8a46 | 2011-06-01 12:14:55 -0500 | [diff] [blame] | 294 | if (token == NULL) { |
| 295 | parse_error(ctxt, NULL, "premature EOI"); |
| 296 | goto out; |
| 297 | } |
| 298 | |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 299 | if (token->type != JSON_COLON) { |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 300 | parse_error(ctxt, token, "missing : in object pair"); |
| 301 | goto out; |
| 302 | } |
| 303 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 304 | value = parse_value(ctxt, ap); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 305 | if (value == NULL) { |
| 306 | parse_error(ctxt, token, "Missing value in dict"); |
| 307 | goto out; |
| 308 | } |
| 309 | |
| 310 | qdict_put_obj(dict, qstring_get_str(qobject_to_qstring(key)), value); |
| 311 | |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 312 | qobject_decref(key); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 313 | |
| 314 | return 0; |
| 315 | |
| 316 | out: |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 317 | qobject_decref(key); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 318 | |
| 319 | return -1; |
| 320 | } |
| 321 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 322 | static QObject *parse_object(JSONParserContext *ctxt, va_list *ap) |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 323 | { |
| 324 | QDict *dict = NULL; |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 325 | JSONToken *token, *peek; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 326 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 327 | token = parser_context_pop_token(ctxt); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 328 | assert(token && token->type == JSON_LCURLY); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 329 | |
| 330 | dict = qdict_new(); |
| 331 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 332 | peek = parser_context_peek_token(ctxt); |
Anthony Liguori | 11e8a46 | 2011-06-01 12:14:55 -0500 | [diff] [blame] | 333 | if (peek == NULL) { |
| 334 | parse_error(ctxt, NULL, "premature EOI"); |
| 335 | goto out; |
| 336 | } |
| 337 | |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 338 | if (peek->type != JSON_RCURLY) { |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 339 | if (parse_pair(ctxt, dict, ap) == -1) { |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 340 | goto out; |
| 341 | } |
| 342 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 343 | token = parser_context_pop_token(ctxt); |
Anthony Liguori | 11e8a46 | 2011-06-01 12:14:55 -0500 | [diff] [blame] | 344 | if (token == NULL) { |
| 345 | parse_error(ctxt, NULL, "premature EOI"); |
| 346 | goto out; |
| 347 | } |
| 348 | |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 349 | while (token->type != JSON_RCURLY) { |
| 350 | if (token->type != JSON_COMMA) { |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 351 | parse_error(ctxt, token, "expected separator in dict"); |
| 352 | goto out; |
| 353 | } |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 354 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 355 | if (parse_pair(ctxt, dict, ap) == -1) { |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 356 | goto out; |
| 357 | } |
| 358 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 359 | token = parser_context_pop_token(ctxt); |
Anthony Liguori | 11e8a46 | 2011-06-01 12:14:55 -0500 | [diff] [blame] | 360 | if (token == NULL) { |
| 361 | parse_error(ctxt, NULL, "premature EOI"); |
| 362 | goto out; |
| 363 | } |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 364 | } |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 365 | } else { |
Gonglei | a491af4 | 2014-06-10 17:20:24 +0800 | [diff] [blame] | 366 | (void)parser_context_pop_token(ctxt); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 367 | } |
| 368 | |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 369 | return QOBJECT(dict); |
| 370 | |
| 371 | out: |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 372 | QDECREF(dict); |
| 373 | return NULL; |
| 374 | } |
| 375 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 376 | static QObject *parse_array(JSONParserContext *ctxt, va_list *ap) |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 377 | { |
| 378 | QList *list = NULL; |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 379 | JSONToken *token, *peek; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 380 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 381 | token = parser_context_pop_token(ctxt); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 382 | assert(token && token->type == JSON_LSQUARE); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 383 | |
| 384 | list = qlist_new(); |
| 385 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 386 | peek = parser_context_peek_token(ctxt); |
Anthony Liguori | 11e8a46 | 2011-06-01 12:14:55 -0500 | [diff] [blame] | 387 | if (peek == NULL) { |
| 388 | parse_error(ctxt, NULL, "premature EOI"); |
| 389 | goto out; |
| 390 | } |
| 391 | |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 392 | if (peek->type != JSON_RSQUARE) { |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 393 | QObject *obj; |
| 394 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 395 | obj = parse_value(ctxt, ap); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 396 | if (obj == NULL) { |
| 397 | parse_error(ctxt, token, "expecting value"); |
| 398 | goto out; |
| 399 | } |
| 400 | |
| 401 | qlist_append_obj(list, obj); |
| 402 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 403 | token = parser_context_pop_token(ctxt); |
Anthony Liguori | 11e8a46 | 2011-06-01 12:14:55 -0500 | [diff] [blame] | 404 | if (token == NULL) { |
| 405 | parse_error(ctxt, NULL, "premature EOI"); |
| 406 | goto out; |
| 407 | } |
| 408 | |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 409 | while (token->type != JSON_RSQUARE) { |
| 410 | if (token->type != JSON_COMMA) { |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 411 | parse_error(ctxt, token, "expected separator in list"); |
| 412 | goto out; |
| 413 | } |
| 414 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 415 | obj = parse_value(ctxt, ap); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 416 | if (obj == NULL) { |
| 417 | parse_error(ctxt, token, "expecting value"); |
| 418 | goto out; |
| 419 | } |
| 420 | |
| 421 | qlist_append_obj(list, obj); |
| 422 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 423 | token = parser_context_pop_token(ctxt); |
Anthony Liguori | 11e8a46 | 2011-06-01 12:14:55 -0500 | [diff] [blame] | 424 | if (token == NULL) { |
| 425 | parse_error(ctxt, NULL, "premature EOI"); |
| 426 | goto out; |
| 427 | } |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 428 | } |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 429 | } else { |
Gonglei | a491af4 | 2014-06-10 17:20:24 +0800 | [diff] [blame] | 430 | (void)parser_context_pop_token(ctxt); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 431 | } |
| 432 | |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 433 | return QOBJECT(list); |
| 434 | |
| 435 | out: |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 436 | QDECREF(list); |
| 437 | return NULL; |
| 438 | } |
| 439 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 440 | static QObject *parse_keyword(JSONParserContext *ctxt) |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 441 | { |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 442 | JSONToken *token; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 443 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 444 | token = parser_context_pop_token(ctxt); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 445 | assert(token && token->type == JSON_KEYWORD); |
Markus Armbruster | 50e2a46 | 2015-11-25 22:23:27 +0100 | [diff] [blame] | 446 | |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 447 | if (!strcmp(token->str, "true")) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 448 | return QOBJECT(qbool_from_bool(true)); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 449 | } else if (!strcmp(token->str, "false")) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 450 | return QOBJECT(qbool_from_bool(false)); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 451 | } else if (!strcmp(token->str, "null")) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 452 | return qnull(); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 453 | } |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 454 | parse_error(ctxt, token, "invalid keyword '%s'", token->str); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 455 | return NULL; |
| 456 | } |
| 457 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 458 | static QObject *parse_escape(JSONParserContext *ctxt, va_list *ap) |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 459 | { |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 460 | JSONToken *token; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 461 | |
| 462 | if (ap == NULL) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 463 | return NULL; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 464 | } |
| 465 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 466 | token = parser_context_pop_token(ctxt); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 467 | assert(token && token->type == JSON_ESCAPE); |
Markus Armbruster | 6b9606f | 2015-11-25 22:23:28 +0100 | [diff] [blame] | 468 | |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 469 | if (!strcmp(token->str, "%p")) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 470 | return va_arg(*ap, QObject *); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 471 | } else if (!strcmp(token->str, "%i")) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 472 | return QOBJECT(qbool_from_bool(va_arg(*ap, int))); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 473 | } else if (!strcmp(token->str, "%d")) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 474 | return QOBJECT(qint_from_int(va_arg(*ap, int))); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 475 | } else if (!strcmp(token->str, "%ld")) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 476 | return QOBJECT(qint_from_int(va_arg(*ap, long))); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 477 | } else if (!strcmp(token->str, "%lld") || |
| 478 | !strcmp(token->str, "%I64d")) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 479 | return QOBJECT(qint_from_int(va_arg(*ap, long long))); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 480 | } else if (!strcmp(token->str, "%s")) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 481 | return QOBJECT(qstring_from_str(va_arg(*ap, const char *))); |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 482 | } else if (!strcmp(token->str, "%f")) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 483 | return QOBJECT(qfloat_from_double(va_arg(*ap, double))); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 484 | } |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 485 | return NULL; |
| 486 | } |
| 487 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 488 | static QObject *parse_literal(JSONParserContext *ctxt) |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 489 | { |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 490 | JSONToken *token; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 491 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 492 | token = parser_context_pop_token(ctxt); |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 493 | assert(token); |
Anthony Liguori | 11e8a46 | 2011-06-01 12:14:55 -0500 | [diff] [blame] | 494 | |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 495 | switch (token->type) { |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 496 | case JSON_STRING: |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 497 | return QOBJECT(qstring_from_escaped_str(ctxt, token)); |
Michael Roth | 3d5b3ec | 2013-05-10 17:46:05 -0500 | [diff] [blame] | 498 | case JSON_INTEGER: { |
| 499 | /* A possibility exists that this is a whole-valued float where the |
| 500 | * fractional part was left out due to being 0 (.0). It's not a big |
| 501 | * deal to treat these as ints in the parser, so long as users of the |
| 502 | * resulting QObject know to expect a QInt in place of a QFloat in |
| 503 | * cases like these. |
| 504 | * |
| 505 | * However, in some cases these values will overflow/underflow a |
| 506 | * QInt/int64 container, thus we should assume these are to be handled |
| 507 | * as QFloats/doubles rather than silently changing their values. |
| 508 | * |
| 509 | * strtoll() indicates these instances by setting errno to ERANGE |
| 510 | */ |
| 511 | int64_t value; |
| 512 | |
| 513 | errno = 0; /* strtoll doesn't set errno on success */ |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 514 | value = strtoll(token->str, NULL, 10); |
Michael Roth | 3d5b3ec | 2013-05-10 17:46:05 -0500 | [diff] [blame] | 515 | if (errno != ERANGE) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 516 | return QOBJECT(qint_from_int(value)); |
Michael Roth | 3d5b3ec | 2013-05-10 17:46:05 -0500 | [diff] [blame] | 517 | } |
| 518 | /* fall through to JSON_FLOAT */ |
| 519 | } |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 520 | case JSON_FLOAT: |
| 521 | /* FIXME dependent on locale */ |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 522 | return QOBJECT(qfloat_from_double(strtod(token->str, NULL))); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 523 | default: |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 524 | abort(); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 525 | } |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 526 | } |
| 527 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 528 | static QObject *parse_value(JSONParserContext *ctxt, va_list *ap) |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 529 | { |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 530 | JSONToken *token; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 531 | |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 532 | token = parser_context_peek_token(ctxt); |
| 533 | if (token == NULL) { |
| 534 | parse_error(ctxt, NULL, "premature EOI"); |
| 535 | return NULL; |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 536 | } |
| 537 | |
Paolo Bonzini | 9bada89 | 2015-11-25 22:23:32 +0100 | [diff] [blame] | 538 | switch (token->type) { |
Markus Armbruster | d538b25 | 2015-11-25 22:23:30 +0100 | [diff] [blame] | 539 | case JSON_LCURLY: |
| 540 | return parse_object(ctxt, ap); |
| 541 | case JSON_LSQUARE: |
| 542 | return parse_array(ctxt, ap); |
| 543 | case JSON_ESCAPE: |
| 544 | return parse_escape(ctxt, ap); |
| 545 | case JSON_INTEGER: |
| 546 | case JSON_FLOAT: |
| 547 | case JSON_STRING: |
| 548 | return parse_literal(ctxt); |
| 549 | case JSON_KEYWORD: |
| 550 | return parse_keyword(ctxt); |
| 551 | default: |
| 552 | parse_error(ctxt, token, "expecting value"); |
| 553 | return NULL; |
| 554 | } |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 555 | } |
| 556 | |
Paolo Bonzini | 95385fe | 2015-11-25 22:23:31 +0100 | [diff] [blame] | 557 | QObject *json_parser_parse(GQueue *tokens, va_list *ap) |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 558 | { |
Anthony Liguori | ef749d0 | 2011-06-01 12:14:50 -0500 | [diff] [blame] | 559 | return json_parser_parse_err(tokens, ap, NULL); |
| 560 | } |
| 561 | |
Paolo Bonzini | 95385fe | 2015-11-25 22:23:31 +0100 | [diff] [blame] | 562 | QObject *json_parser_parse_err(GQueue *tokens, va_list *ap, Error **errp) |
Anthony Liguori | ef749d0 | 2011-06-01 12:14:50 -0500 | [diff] [blame] | 563 | { |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 564 | JSONParserContext *ctxt = parser_context_new(tokens); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 565 | QObject *result; |
| 566 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 567 | if (!ctxt) { |
Michael Roth | c1990eb | 2011-06-01 12:15:00 -0500 | [diff] [blame] | 568 | return NULL; |
| 569 | } |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 570 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 571 | result = parse_value(ctxt, ap); |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 572 | |
Michael Roth | 65c0f1e | 2012-08-15 13:45:43 -0500 | [diff] [blame] | 573 | error_propagate(errp, ctxt->err); |
| 574 | |
| 575 | parser_context_free(ctxt); |
Anthony Liguori | ef749d0 | 2011-06-01 12:14:50 -0500 | [diff] [blame] | 576 | |
Anthony Liguori | 4a5fcab | 2009-11-11 10:39:23 -0600 | [diff] [blame] | 577 | return result; |
| 578 | } |