diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-04 16:03:17 -0600 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-04 16:03:17 -0600 |
commit | 7daca0b76bcd0b1bfc411416db3e91c3a10e90d9 (patch) | |
tree | 85b73ce4fca2d47444b757d3cebc910cedf2a7dc /Python/fileutils.c | |
parent | 68ef6e8e37a1d6d56f2e33ddff4d39fa11263143 (diff) | |
download | cpython-7daca0b76bcd0b1bfc411416db3e91c3a10e90d9.tar.gz |
add some overflow checks before multiplying (closes #23165)
Diffstat (limited to 'Python/fileutils.c')
-rw-r--r-- | Python/fileutils.c | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/Python/fileutils.c b/Python/fileutils.c index 53e8a470e9..7d08e0726a 100644 --- a/Python/fileutils.c +++ b/Python/fileutils.c @@ -169,8 +169,11 @@ decode_ascii_surrogateescape(const char *arg, size_t *size) wchar_t *res; unsigned char *in; wchar_t *out; + size_t argsize = strlen(arg) + 1; - res = PyMem_Malloc((strlen(arg)+1)*sizeof(wchar_t)); + if (argsize > PY_SSIZE_T_MAX/sizeof(wchar_t)) + return NULL; + res = PyMem_Malloc(argsize*sizeof(wchar_t)); if (!res) return NULL; @@ -250,10 +253,15 @@ _Py_char2wchar(const char* arg, size_t *size) argsize = mbstowcs(NULL, arg, 0); #endif if (argsize != (size_t)-1) { - res = (wchar_t *)PyMem_Malloc((argsize+1)*sizeof(wchar_t)); + if (argsize == PY_SSIZE_T_MAX) + goto oom; + argsize += 1; + if (argsize > PY_SSIZE_T_MAX/sizeof(wchar_t)) + goto oom; + res = (wchar_t *)PyMem_Malloc(argsize*sizeof(wchar_t)); if (!res) goto oom; - count = mbstowcs(res, arg, argsize+1); + count = mbstowcs(res, arg, argsize); if (count != (size_t)-1) { wchar_t *tmp; /* Only use the result if it contains no @@ -276,6 +284,8 @@ _Py_char2wchar(const char* arg, size_t *size) /* Overallocate; as multi-byte characters are in the argument, the actual output could use less memory. */ argsize = strlen(arg) + 1; + if (argsize > PY_SSIZE_T_MAX/sizeof(wchar_t)) + goto oom; res = (wchar_t*)PyMem_Malloc(argsize*sizeof(wchar_t)); if (!res) goto oom; |