From: Antoine Pitrou Date: Wed, 23 May 2012 21:16:14 +0000 (+0200) Subject: Issue #14888: Fix misbehaviour of the _md5 module when called on data larger than... X-Git-Tag: v2.7.4rc1~794 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cd8799f077d236a06a86a9cf707de2a246fb800d;p=thirdparty%2FPython%2Fcpython.git Issue #14888: Fix misbehaviour of the _md5 module when called on data larger than 2**32 bytes. --- diff --git a/Misc/NEWS b/Misc/NEWS index de0ec5defabd..e091706aec2a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -64,6 +64,9 @@ Core and Builtins Library ------- +- Issue #14888: Fix misbehaviour of the _md5 module when called on data + larger than 2**32 bytes. + - Issue #14875: Use float('inf') instead of float('1e66666') in the json module. - Issue #14572: Prevent build failures with pre-3.5.0 versions of diff --git a/Modules/md5module.c b/Modules/md5module.c index 0683ef50ba59..3461623086c0 100644 --- a/Modules/md5module.c +++ b/Modules/md5module.c @@ -262,6 +262,8 @@ MD5_new(PyObject *self, PyObject *args) { md5object *md5p; Py_buffer view = { 0 }; + Py_ssize_t n; + unsigned char *buf; if (!PyArg_ParseTuple(args, "|s*:new", &view)) return NULL; @@ -271,9 +273,18 @@ MD5_new(PyObject *self, PyObject *args) return NULL; } - if (view.len > 0) { - md5_append(&md5p->md5, (unsigned char*)view.buf, - Py_SAFE_DOWNCAST(view.len, Py_ssize_t, unsigned int)); + n = view.len; + buf = (unsigned char *) view.buf; + while (n > 0) { + Py_ssize_t nbytes; + if (n > INT_MAX) + nbytes = INT_MAX; + else + nbytes = n; + md5_append(&md5p->md5, buf, + Py_SAFE_DOWNCAST(nbytes, Py_ssize_t, unsigned int)); + buf += nbytes; + n -= nbytes; } PyBuffer_Release(&view);