2009-11-11 17:42:41 +01:00
|
|
|
/*
|
|
|
|
* QObject JSON integration
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2009
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
|
|
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-01-29 18:50:01 +01:00
|
|
|
#include "qemu/osdep.h"
|
2017-02-28 22:26:54 +01:00
|
|
|
#include "qapi/error.h"
|
2018-08-23 18:40:20 +02:00
|
|
|
#include "qapi/qmp/json-parser.h"
|
2020-12-11 18:11:47 +01:00
|
|
|
#include "qapi/qmp/json-writer.h"
|
2012-12-17 18:19:43 +01:00
|
|
|
#include "qapi/qmp/qjson.h"
|
2018-02-01 12:18:35 +01:00
|
|
|
#include "qapi/qmp/qbool.h"
|
2018-02-01 12:18:39 +01:00
|
|
|
#include "qapi/qmp/qdict.h"
|
2018-02-01 12:18:38 +01:00
|
|
|
#include "qapi/qmp/qlist.h"
|
2018-02-01 12:18:36 +01:00
|
|
|
#include "qapi/qmp/qnum.h"
|
2018-02-01 12:18:40 +01:00
|
|
|
#include "qapi/qmp/qstring.h"
|
2009-11-11 17:42:41 +01:00
|
|
|
|
2020-12-28 08:11:26 +01:00
|
|
|
typedef struct JSONParsingState {
|
2009-11-11 17:42:41 +01:00
|
|
|
JSONMessageParser parser;
|
|
|
|
QObject *result;
|
2017-02-28 22:26:54 +01:00
|
|
|
Error *err;
|
2009-11-11 17:42:41 +01:00
|
|
|
} JSONParsingState;
|
|
|
|
|
2018-08-23 18:40:01 +02:00
|
|
|
static void consume_json(void *opaque, QObject *json, Error *err)
|
2009-11-11 17:42:41 +01:00
|
|
|
{
|
2018-08-23 18:40:01 +02:00
|
|
|
JSONParsingState *s = opaque;
|
2017-02-28 22:26:54 +01:00
|
|
|
|
qjson: Fix qobject_from_json() & friends for multiple values
qobject_from_json() & friends use the consume_json() callback to
receive either a value or an error from the parser.
When they are fed a string that contains more than either one JSON
value or one JSON syntax error, consume_json() gets called multiple
times.
When the last call receives a value, qobject_from_json() returns that
value. Any other values are leaked.
When any call receives an error, qobject_from_json() sets the first
error received. Any other errors are thrown away.
When values follow errors, qobject_from_json() returns both a value
and sets an error. That's bad. Impact:
* block.c's parse_json_protocol() ignores and leaks the value. It's
used to to parse pseudo-filenames starting with "json:". The
pseudo-filenames can come from the user or from image meta-data such
as a QCOW2 image's backing file name.
* vl.c's parse_display_qapi() ignores and leaks the error. It's used
to parse the argument of command line option -display.
* vl.c's main() case QEMU_OPTION_blockdev ignores the error and leaves
it in @err. main() will then pass a pointer to a non-null Error *
to net_init_clients(), which is forbidden. It can lead to assertion
failure or other misbehavior.
* check-qjson.c's multiple_values() demonstrates the badness.
* The other callers are not affected since they only pass strings with
exactly one JSON value or, in the case of negative tests, one
error.
The impact on the _nofail() functions is relatively harmless. They
abort when any call receives an error. Else they return the last
value, and leak the others, if any.
Fix consume_json() as follows. On the first call, save value and
error as before. On subsequent calls, if any, don't save them. If
the first call saved a value, the next call, if any, replaces the
value by an "Expecting at most one JSON value" error. Take care not
to leak values or errors that aren't saved.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20180823164025.12553-44-armbru@redhat.com>
2018-08-23 18:40:10 +02:00
|
|
|
assert(!json != !err);
|
|
|
|
assert(!s->result || !s->err);
|
|
|
|
|
|
|
|
if (s->result) {
|
|
|
|
qobject_unref(s->result);
|
|
|
|
s->result = NULL;
|
|
|
|
error_setg(&s->err, "Expecting at most one JSON value");
|
|
|
|
}
|
|
|
|
if (s->err) {
|
|
|
|
qobject_unref(json);
|
|
|
|
error_free(err);
|
|
|
|
return;
|
|
|
|
}
|
2018-08-23 18:40:01 +02:00
|
|
|
s->result = json;
|
qjson: Fix qobject_from_json() & friends for multiple values
qobject_from_json() & friends use the consume_json() callback to
receive either a value or an error from the parser.
When they are fed a string that contains more than either one JSON
value or one JSON syntax error, consume_json() gets called multiple
times.
When the last call receives a value, qobject_from_json() returns that
value. Any other values are leaked.
When any call receives an error, qobject_from_json() sets the first
error received. Any other errors are thrown away.
When values follow errors, qobject_from_json() returns both a value
and sets an error. That's bad. Impact:
* block.c's parse_json_protocol() ignores and leaks the value. It's
used to to parse pseudo-filenames starting with "json:". The
pseudo-filenames can come from the user or from image meta-data such
as a QCOW2 image's backing file name.
* vl.c's parse_display_qapi() ignores and leaks the error. It's used
to parse the argument of command line option -display.
* vl.c's main() case QEMU_OPTION_blockdev ignores the error and leaves
it in @err. main() will then pass a pointer to a non-null Error *
to net_init_clients(), which is forbidden. It can lead to assertion
failure or other misbehavior.
* check-qjson.c's multiple_values() demonstrates the badness.
* The other callers are not affected since they only pass strings with
exactly one JSON value or, in the case of negative tests, one
error.
The impact on the _nofail() functions is relatively harmless. They
abort when any call receives an error. Else they return the last
value, and leak the others, if any.
Fix consume_json() as follows. On the first call, save value and
error as before. On subsequent calls, if any, don't save them. If
the first call saved a value, the next call, if any, replaces the
value by an "Expecting at most one JSON value" error. Take care not
to leak values or errors that aren't saved.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20180823164025.12553-44-armbru@redhat.com>
2018-08-23 18:40:10 +02:00
|
|
|
s->err = err;
|
2009-11-11 17:42:41 +01:00
|
|
|
}
|
|
|
|
|
2018-08-06 08:53:31 +02:00
|
|
|
/*
|
|
|
|
* Parse @string as JSON value.
|
|
|
|
* If @ap is non-null, interpolate %-escapes.
|
|
|
|
* Takes ownership of %p arguments.
|
|
|
|
* On success, return the JSON value.
|
|
|
|
* On failure, store an error through @errp and return NULL.
|
|
|
|
* Ownership of %p arguments becomes indeterminate then. To avoid
|
|
|
|
* leaks, callers passing %p must terminate on error, e.g. by passing
|
|
|
|
* &error_abort.
|
|
|
|
*/
|
|
|
|
static QObject *qobject_from_jsonv(const char *string, va_list *ap,
|
|
|
|
Error **errp)
|
2009-11-11 17:42:41 +01:00
|
|
|
{
|
|
|
|
JSONParsingState state = {};
|
|
|
|
|
2018-08-23 18:40:01 +02:00
|
|
|
json_message_parser_init(&state.parser, consume_json, &state, ap);
|
2009-11-11 17:42:41 +01:00
|
|
|
json_message_parser_feed(&state.parser, string, strlen(string));
|
|
|
|
json_message_parser_flush(&state.parser);
|
|
|
|
json_message_parser_destroy(&state.parser);
|
|
|
|
|
2018-08-23 18:40:14 +02:00
|
|
|
if (!state.result && !state.err) {
|
|
|
|
error_setg(&state.err, "Expecting a JSON value");
|
|
|
|
}
|
|
|
|
|
2017-02-28 22:26:54 +01:00
|
|
|
error_propagate(errp, state.err);
|
2009-11-11 17:42:41 +01:00
|
|
|
return state.result;
|
|
|
|
}
|
|
|
|
|
2017-02-28 22:26:58 +01:00
|
|
|
QObject *qobject_from_json(const char *string, Error **errp)
|
2009-11-19 02:05:24 +01:00
|
|
|
{
|
2017-02-28 22:26:58 +01:00
|
|
|
return qobject_from_jsonv(string, NULL, errp);
|
2009-11-19 02:05:24 +01:00
|
|
|
}
|
|
|
|
|
2018-08-06 08:53:28 +02:00
|
|
|
/*
|
|
|
|
* Parse @string as JSON value with %-escapes interpolated.
|
|
|
|
* Abort on error. Do not use with untrusted @string.
|
|
|
|
* Return the resulting QObject. It is never null.
|
|
|
|
*/
|
|
|
|
QObject *qobject_from_vjsonf_nofail(const char *string, va_list ap)
|
|
|
|
{
|
|
|
|
va_list ap_copy;
|
|
|
|
QObject *obj;
|
|
|
|
|
|
|
|
/* va_copy() is needed when va_list is an array type */
|
|
|
|
va_copy(ap_copy, ap);
|
|
|
|
obj = qobject_from_jsonv(string, &ap_copy, &error_abort);
|
|
|
|
va_end(ap_copy);
|
|
|
|
|
|
|
|
assert(obj);
|
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2018-08-06 08:53:27 +02:00
|
|
|
/*
|
|
|
|
* Parse @string as JSON value with %-escapes interpolated.
|
|
|
|
* Abort on error. Do not use with untrusted @string.
|
|
|
|
* Return the resulting QObject. It is never null.
|
|
|
|
*/
|
|
|
|
QObject *qobject_from_jsonf_nofail(const char *string, ...)
|
2009-11-11 17:42:41 +01:00
|
|
|
{
|
2009-11-19 02:05:24 +01:00
|
|
|
QObject *obj;
|
2009-11-11 17:42:41 +01:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, string);
|
2018-08-06 08:53:28 +02:00
|
|
|
obj = qobject_from_vjsonf_nofail(string, ap);
|
2009-11-11 17:42:41 +01:00
|
|
|
va_end(ap);
|
|
|
|
|
2009-11-19 02:05:24 +01:00
|
|
|
return obj;
|
2009-11-11 17:42:41 +01:00
|
|
|
}
|
2009-11-11 19:01:22 +01:00
|
|
|
|
2018-08-06 08:53:28 +02:00
|
|
|
/*
|
|
|
|
* Parse @string as JSON object with %-escapes interpolated.
|
|
|
|
* Abort on error. Do not use with untrusted @string.
|
|
|
|
* Return the resulting QDict. It is never null.
|
|
|
|
*/
|
|
|
|
QDict *qdict_from_vjsonf_nofail(const char *string, va_list ap)
|
|
|
|
{
|
|
|
|
QDict *qdict;
|
|
|
|
|
|
|
|
qdict = qobject_to(QDict, qobject_from_vjsonf_nofail(string, ap));
|
|
|
|
assert(qdict);
|
|
|
|
return qdict;
|
|
|
|
}
|
|
|
|
|
2018-07-03 10:53:47 +02:00
|
|
|
/*
|
|
|
|
* Parse @string as JSON object with %-escapes interpolated.
|
|
|
|
* Abort on error. Do not use with untrusted @string.
|
|
|
|
* Return the resulting QDict. It is never null.
|
|
|
|
*/
|
|
|
|
QDict *qdict_from_jsonf_nofail(const char *string, ...)
|
|
|
|
{
|
2018-08-06 08:53:28 +02:00
|
|
|
QDict *qdict;
|
2018-07-03 10:53:47 +02:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, string);
|
2018-08-06 08:53:28 +02:00
|
|
|
qdict = qdict_from_vjsonf_nofail(string, ap);
|
2018-07-03 10:53:47 +02:00
|
|
|
va_end(ap);
|
2018-08-06 08:53:28 +02:00
|
|
|
return qdict;
|
2018-07-03 10:53:47 +02:00
|
|
|
}
|
|
|
|
|
2020-12-11 18:11:47 +01:00
|
|
|
static void to_json(JSONWriter *writer, const char *name,
|
|
|
|
const QObject *obj)
|
2020-04-15 10:30:45 +02:00
|
|
|
{
|
2020-12-11 18:11:47 +01:00
|
|
|
switch (qobject_type(obj)) {
|
|
|
|
case QTYPE_QNULL:
|
|
|
|
json_writer_null(writer, name);
|
|
|
|
break;
|
|
|
|
case QTYPE_QNUM: {
|
|
|
|
QNum *val = qobject_to(QNum, obj);
|
2020-12-11 18:11:46 +01:00
|
|
|
|
2020-12-11 18:11:47 +01:00
|
|
|
switch (val->kind) {
|
|
|
|
case QNUM_I64:
|
|
|
|
json_writer_int64(writer, name, val->u.i64);
|
2020-12-11 18:11:46 +01:00
|
|
|
break;
|
2020-12-11 18:11:47 +01:00
|
|
|
case QNUM_U64:
|
|
|
|
json_writer_uint64(writer, name, val->u.u64);
|
2020-12-11 18:11:46 +01:00
|
|
|
break;
|
2020-12-11 18:11:47 +01:00
|
|
|
case QNUM_DOUBLE:
|
|
|
|
json_writer_double(writer, name, val->u.dbl);
|
2020-12-11 18:11:46 +01:00
|
|
|
break;
|
|
|
|
default:
|
2020-12-11 18:11:47 +01:00
|
|
|
abort();
|
2020-12-11 18:11:46 +01:00
|
|
|
}
|
2009-11-11 19:01:22 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case QTYPE_QSTRING: {
|
2020-12-11 18:11:47 +01:00
|
|
|
QString *val = qobject_to(QString, obj);
|
|
|
|
|
|
|
|
json_writer_str(writer, name, qstring_get_str(val));
|
2009-11-11 19:01:22 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case QTYPE_QDICT: {
|
2018-02-24 16:40:29 +01:00
|
|
|
QDict *val = qobject_to(QDict, obj);
|
2020-04-15 10:30:47 +02:00
|
|
|
const QDictEntry *entry;
|
2009-11-11 19:01:22 +01:00
|
|
|
|
2020-12-11 18:11:47 +01:00
|
|
|
json_writer_start_object(writer, name);
|
2020-04-15 10:30:47 +02:00
|
|
|
|
|
|
|
for (entry = qdict_first(val);
|
|
|
|
entry;
|
|
|
|
entry = qdict_next(val, entry)) {
|
2020-12-11 18:11:47 +01:00
|
|
|
to_json(writer, qdict_entry_key(entry), qdict_entry_value(entry));
|
2020-04-15 10:30:47 +02:00
|
|
|
}
|
|
|
|
|
2020-12-11 18:11:47 +01:00
|
|
|
json_writer_end_object(writer);
|
2009-11-11 19:01:22 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case QTYPE_QLIST: {
|
2018-02-24 16:40:29 +01:00
|
|
|
QList *val = qobject_to(QList, obj);
|
2020-04-15 10:30:46 +02:00
|
|
|
QListEntry *entry;
|
2009-11-11 19:01:22 +01:00
|
|
|
|
2020-12-11 18:11:47 +01:00
|
|
|
json_writer_start_array(writer, name);
|
2020-04-15 10:30:46 +02:00
|
|
|
|
|
|
|
QLIST_FOREACH_ENTRY(val, entry) {
|
2020-12-11 18:11:47 +01:00
|
|
|
to_json(writer, NULL, qlist_entry_obj(entry));
|
2020-04-15 10:30:46 +02:00
|
|
|
}
|
|
|
|
|
2020-12-11 18:11:47 +01:00
|
|
|
json_writer_end_array(writer);
|
2009-11-11 19:01:22 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case QTYPE_QBOOL: {
|
2018-02-24 16:40:29 +01:00
|
|
|
QBool *val = qobject_to(QBool, obj);
|
2009-11-11 19:01:22 +01:00
|
|
|
|
2020-12-11 18:11:47 +01:00
|
|
|
json_writer_bool(writer, name, qbool_get_bool(val));
|
2009-11-11 19:01:22 +01:00
|
|
|
break;
|
|
|
|
}
|
2015-04-29 23:35:04 +02:00
|
|
|
default:
|
2013-07-08 16:14:21 +02:00
|
|
|
abort();
|
2009-11-11 19:01:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-11 18:11:37 +01:00
|
|
|
GString *qobject_to_json_pretty(const QObject *obj, bool pretty)
|
2009-11-11 19:01:22 +01:00
|
|
|
{
|
2020-12-11 18:11:47 +01:00
|
|
|
JSONWriter *writer = json_writer_new(pretty);
|
Add support for JSON pretty printing
The monitor does not pretty-print JSON output, so that everything
will be on a single line reply. When JSON docs get large this is
quite unpleasant to read. For the future command line capabilities
query ability, huge JSON docs will be available. This needs the
ability to pretty-print.
This introduces a new API qobject_to_json_pretty() that does
a minimal indentation of list and dict members. As an example,
this makes
{"QMP": {"version": {"micro": 50, "minor": 12, "package": "", "major": 0}, "capabilities": []}}
Output as
{
"QMP": {
"version": {
"micro": 50,
"minor": 12,
"package": "",
"major": 0
},
"capabilities": [
]
}
}
NB: this is not turned on for the QMP monitor.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
2010-06-07 16:42:14 +02:00
|
|
|
|
2020-12-11 18:11:47 +01:00
|
|
|
to_json(writer, NULL, obj);
|
|
|
|
return json_writer_get_and_free(writer);
|
Add support for JSON pretty printing
The monitor does not pretty-print JSON output, so that everything
will be on a single line reply. When JSON docs get large this is
quite unpleasant to read. For the future command line capabilities
query ability, huge JSON docs will be available. This needs the
ability to pretty-print.
This introduces a new API qobject_to_json_pretty() that does
a minimal indentation of list and dict members. As an example,
this makes
{"QMP": {"version": {"micro": 50, "minor": 12, "package": "", "major": 0}, "capabilities": []}}
Output as
{
"QMP": {
"version": {
"micro": 50,
"minor": 12,
"package": "",
"major": 0
},
"capabilities": [
]
}
}
NB: this is not turned on for the QMP monitor.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
2010-06-07 16:42:14 +02:00
|
|
|
}
|
|
|
|
|
2020-12-11 18:11:37 +01:00
|
|
|
GString *qobject_to_json(const QObject *obj)
|
Add support for JSON pretty printing
The monitor does not pretty-print JSON output, so that everything
will be on a single line reply. When JSON docs get large this is
quite unpleasant to read. For the future command line capabilities
query ability, huge JSON docs will be available. This needs the
ability to pretty-print.
This introduces a new API qobject_to_json_pretty() that does
a minimal indentation of list and dict members. As an example,
this makes
{"QMP": {"version": {"micro": 50, "minor": 12, "package": "", "major": 0}, "capabilities": []}}
Output as
{
"QMP": {
"version": {
"micro": 50,
"minor": 12,
"package": "",
"major": 0
},
"capabilities": [
]
}
}
NB: this is not turned on for the QMP monitor.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
2010-06-07 16:42:14 +02:00
|
|
|
{
|
2020-12-11 18:11:35 +01:00
|
|
|
return qobject_to_json_pretty(obj, false);
|
2009-11-11 19:01:22 +01:00
|
|
|
}
|