#12051: Fix segfault in json.dumps() while encoding highly-nested objects using the C accelerations.
This commit is contained in:
parent
ee18b6f2fd
commit
136726537f
|
@ -16,6 +16,11 @@ class RecursiveJSONEncoder(json.JSONEncoder):
|
||||||
return 'JSONTestObject'
|
return 'JSONTestObject'
|
||||||
return json.JSONEncoder.default(o)
|
return json.JSONEncoder.default(o)
|
||||||
|
|
||||||
|
class EndlessJSONEncoder(json.JSONEncoder):
|
||||||
|
def default(self, o):
|
||||||
|
"""If check_circular is False, this will keep adding another list."""
|
||||||
|
return [o]
|
||||||
|
|
||||||
|
|
||||||
class TestRecursion(TestCase):
|
class TestRecursion(TestCase):
|
||||||
def test_listrecursion(self):
|
def test_listrecursion(self):
|
||||||
|
@ -67,7 +72,7 @@ class TestRecursion(TestCase):
|
||||||
self.fail("didn't raise ValueError on default recursion")
|
self.fail("didn't raise ValueError on default recursion")
|
||||||
|
|
||||||
|
|
||||||
def test_highly_nested_objects(self):
|
def test_highly_nested_objects_decoding(self):
|
||||||
# test that loading highly-nested objects doesn't segfault when C
|
# test that loading highly-nested objects doesn't segfault when C
|
||||||
# accelerations are used. See #12017
|
# accelerations are used. See #12017
|
||||||
with self.assertRaises(RuntimeError):
|
with self.assertRaises(RuntimeError):
|
||||||
|
@ -77,3 +82,17 @@ class TestRecursion(TestCase):
|
||||||
with self.assertRaises(RuntimeError):
|
with self.assertRaises(RuntimeError):
|
||||||
json.loads('[' * 100000 + '1' + ']' * 100000)
|
json.loads('[' * 100000 + '1' + ']' * 100000)
|
||||||
|
|
||||||
|
def test_highly_nested_objects_encoding(self):
|
||||||
|
# See #12051
|
||||||
|
l, d = [], {}
|
||||||
|
for x in range(100000):
|
||||||
|
l, d = [l], {'k':d}
|
||||||
|
with self.assertRaises(RuntimeError):
|
||||||
|
json.dumps(l)
|
||||||
|
with self.assertRaises(RuntimeError):
|
||||||
|
json.dumps(d)
|
||||||
|
|
||||||
|
def test_endless_recursion(self):
|
||||||
|
# See #12051
|
||||||
|
with self.assertRaises(RuntimeError):
|
||||||
|
EndlessJSONEncoder(check_circular=False).encode(5j)
|
||||||
|
|
|
@ -326,6 +326,9 @@ Library
|
||||||
Extension Modules
|
Extension Modules
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #12051: Fix segfault in json.dumps() while encoding highly-nested
|
||||||
|
objects using the C accelerations.
|
||||||
|
|
||||||
- Issue #12017: Fix segfault in json.loads() while decoding highly-nested
|
- Issue #12017: Fix segfault in json.loads() while decoding highly-nested
|
||||||
objects using the C accelerations.
|
objects using the C accelerations.
|
||||||
|
|
||||||
|
|
|
@ -1301,10 +1301,18 @@ encoder_listencode_obj(PyEncoderObject *s, PyObject *rval, PyObject *obj, Py_ssi
|
||||||
return _steal_list_append(rval, encoded);
|
return _steal_list_append(rval, encoded);
|
||||||
}
|
}
|
||||||
else if (PyList_Check(obj) || PyTuple_Check(obj)) {
|
else if (PyList_Check(obj) || PyTuple_Check(obj)) {
|
||||||
return encoder_listencode_list(s, rval, obj, indent_level);
|
if (Py_EnterRecursiveCall(" while encoding a JSON object"))
|
||||||
|
return -1;
|
||||||
|
rv = encoder_listencode_list(s, rval, obj, indent_level);
|
||||||
|
Py_LeaveRecursiveCall();
|
||||||
|
return rv;
|
||||||
}
|
}
|
||||||
else if (PyDict_Check(obj)) {
|
else if (PyDict_Check(obj)) {
|
||||||
return encoder_listencode_dict(s, rval, obj, indent_level);
|
if (Py_EnterRecursiveCall(" while encoding a JSON object"))
|
||||||
|
return -1;
|
||||||
|
rv = encoder_listencode_dict(s, rval, obj, indent_level);
|
||||||
|
Py_LeaveRecursiveCall();
|
||||||
|
return rv;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
PyObject *ident = NULL;
|
PyObject *ident = NULL;
|
||||||
|
@ -1330,7 +1338,12 @@ encoder_listencode_obj(PyEncoderObject *s, PyObject *rval, PyObject *obj, Py_ssi
|
||||||
Py_XDECREF(ident);
|
Py_XDECREF(ident);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Py_EnterRecursiveCall(" while encoding a JSON object"))
|
||||||
|
return -1;
|
||||||
rv = encoder_listencode_obj(s, rval, newobj, indent_level);
|
rv = encoder_listencode_obj(s, rval, newobj, indent_level);
|
||||||
|
Py_LeaveRecursiveCall();
|
||||||
|
|
||||||
Py_DECREF(newobj);
|
Py_DECREF(newobj);
|
||||||
if (rv) {
|
if (rv) {
|
||||||
Py_XDECREF(ident);
|
Py_XDECREF(ident);
|
||||||
|
|
Loading…
Reference in New Issue