|
|
34b321 |
From 38d4fe12ad2e3bc18842201f437c480120eace2b Mon Sep 17 00:00:00 2001
|
|
|
34b321 |
From: Markus Armbruster <armbru@redhat.com>
|
|
|
34b321 |
Date: Wed, 27 Jul 2016 07:35:02 +0200
|
|
|
34b321 |
Subject: [PATCH 04/16] check-qjson: Add test for JSON nesting depth limit
|
|
|
34b321 |
|
|
|
34b321 |
RH-Author: Markus Armbruster <armbru@redhat.com>
|
|
|
34b321 |
Message-id: <1469604913-12442-6-git-send-email-armbru@redhat.com>
|
|
|
34b321 |
Patchwork-id: 71481
|
|
|
34b321 |
O-Subject: [RHEL-7.3 qemu-kvm PATCH v2 04/15] check-qjson: Add test for JSON nesting depth limit
|
|
|
34b321 |
Bugzilla: 1276036
|
|
|
34b321 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
34b321 |
RH-Acked-by: John Snow <jsnow@redhat.com>
|
|
|
34b321 |
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
34b321 |
|
|
|
34b321 |
This would have prevented the regression mentioned in the previous
|
|
|
34b321 |
commit.
|
|
|
34b321 |
|
|
|
34b321 |
Signed-off-by: Markus Armbruster <armbru@redhat.com>
|
|
|
34b321 |
Reviewed-by: Eric Blake <eblake@redhat.com>
|
|
|
34b321 |
Message-Id: <1448486613-17634-4-git-send-email-armbru@redhat.com>
|
|
|
34b321 |
(cherry picked from commit f0ae0304c7a41a42b7d4a6cde450da938d3c2cc7)
|
|
|
34b321 |
Signed-off-by: Markus Armbruster <armbru@redhat.com>
|
|
|
34b321 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
34b321 |
---
|
|
|
34b321 |
tests/check-qjson.c | 25 +++++++++++++++++++++++++
|
|
|
34b321 |
1 file changed, 25 insertions(+)
|
|
|
34b321 |
|
|
|
34b321 |
diff --git a/tests/check-qjson.c b/tests/check-qjson.c
|
|
|
34b321 |
index 4e74548..c5dd74d 100644
|
|
|
34b321 |
--- a/tests/check-qjson.c
|
|
|
34b321 |
+++ b/tests/check-qjson.c
|
|
|
34b321 |
@@ -1465,6 +1465,30 @@ static void unterminated_literal(void)
|
|
|
34b321 |
g_assert(obj == NULL);
|
|
|
34b321 |
}
|
|
|
34b321 |
|
|
|
34b321 |
+static char *make_nest(char *buf, size_t cnt)
|
|
|
34b321 |
+{
|
|
|
34b321 |
+ memset(buf, '[', cnt - 1);
|
|
|
34b321 |
+ buf[cnt - 1] = '{';
|
|
|
34b321 |
+ buf[cnt] = '}';
|
|
|
34b321 |
+ memset(buf + cnt + 1, ']', cnt - 1);
|
|
|
34b321 |
+ buf[2 * cnt] = 0;
|
|
|
34b321 |
+ return buf;
|
|
|
34b321 |
+}
|
|
|
34b321 |
+
|
|
|
34b321 |
+static void limits_nesting(void)
|
|
|
34b321 |
+{
|
|
|
34b321 |
+ enum { max_nesting = 1024 }; /* see qobject/json-streamer.c */
|
|
|
34b321 |
+ char buf[2 * (max_nesting + 1) + 1];
|
|
|
34b321 |
+ QObject *obj;
|
|
|
34b321 |
+
|
|
|
34b321 |
+ obj = qobject_from_json(make_nest(buf, max_nesting));
|
|
|
34b321 |
+ g_assert(obj != NULL);
|
|
|
34b321 |
+ qobject_decref(obj);
|
|
|
34b321 |
+
|
|
|
34b321 |
+ obj = qobject_from_json(make_nest(buf, max_nesting + 1));
|
|
|
34b321 |
+ g_assert(obj == NULL);
|
|
|
34b321 |
+}
|
|
|
34b321 |
+
|
|
|
34b321 |
int main(int argc, char **argv)
|
|
|
34b321 |
{
|
|
|
34b321 |
g_test_init(&argc, &argv, NULL);
|
|
|
34b321 |
@@ -1500,6 +1524,7 @@ int main(int argc, char **argv)
|
|
|
34b321 |
g_test_add_func("/errors/invalid_array_comma", invalid_array_comma);
|
|
|
34b321 |
g_test_add_func("/errors/invalid_dict_comma", invalid_dict_comma);
|
|
|
34b321 |
g_test_add_func("/errors/unterminated/literal", unterminated_literal);
|
|
|
34b321 |
+ g_test_add_func("/errors/limits/nesting", limits_nesting);
|
|
|
34b321 |
|
|
|
34b321 |
return g_test_run();
|
|
|
34b321 |
}
|
|
|
34b321 |
--
|
|
|
34b321 |
1.8.3.1
|
|
|
34b321 |
|