summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Misc/NEWS2
-rw-r--r--Modules/_json.c12
2 files changed, 11 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1f5241b..4b3e189 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,8 @@ Core and Builtins
Library
-------
+- Issue #24522: Fix possible integer overflow in json accelerator module.
+
- Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar().
- Issue #24408: Fixed AttributeError in measure() and metrics() methods of
diff --git a/Modules/_json.c b/Modules/_json.c
index e4478ef..8000f91 100644
--- a/Modules/_json.c
+++ b/Modules/_json.c
@@ -249,17 +249,23 @@ escape_unicode(PyObject *pystr)
/* Compute the output size */
for (i = 0, output_size = 2; i < input_chars; i++) {
Py_UCS4 c = PyUnicode_READ(kind, input, i);
+ Py_ssize_t d;
switch (c) {
case '\\': case '"': case '\b': case '\f':
case '\n': case '\r': case '\t':
- output_size += 2;
+ d = 2;
break;
default:
if (c <= 0x1f)
- output_size += 6;
+ d = 6;
else
- output_size++;
+ d = 1;
+ }
+ if (output_size > PY_SSIZE_T_MAX - d) {
+ PyErr_SetString(PyExc_OverflowError, "string is too long to escape");
+ return NULL;
}
+ output_size += d;
}
rval = PyUnicode_New(output_size, maxchar);