diff options
author | Richard Oudkerk <shibturn@gmail.com> | 2013-02-13 12:32:32 (GMT) |
---|---|---|
committer | Richard Oudkerk <shibturn@gmail.com> | 2013-02-13 12:32:32 (GMT) |
commit | 6d40134eba5633e93a4c45d0d2868b9f1a02439a (patch) | |
tree | d48c110c66c86a3f72daab5bcf1d2e21debce187 | |
parent | 40f42d95f552affb5d22a9c1976ebedd782c2a76 (diff) | |
parent | 0d09ba8e0bc57b50984d1968aab3c29de3e1320d (diff) | |
download | cpython-6d40134eba5633e93a4c45d0d2868b9f1a02439a.zip cpython-6d40134eba5633e93a4c45d0d2868b9f1a02439a.tar.gz cpython-6d40134eba5633e93a4c45d0d2868b9f1a02439a.tar.bz2 |
Merge
-rw-r--r-- | Lib/test/test_mmap.py | 7 | ||||
-rw-r--r-- | Modules/mmapmodule.c | 22 |
2 files changed, 18 insertions, 11 deletions
diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index a3de398..d066368 100644 --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -721,6 +721,13 @@ class LargeMmapTests(unittest.TestCase): def test_large_filesize(self): with self._make_test_file(0x17FFFFFFF, b" ") as f: + if sys.maxsize < 0x180000000: + # On 32 bit platforms the file is larger than sys.maxsize so + # mapping the whole file should fail -- Issue #16743 + with self.assertRaises(OverflowError): + mmap.mmap(f.fileno(), 0x180000000, access=mmap.ACCESS_READ) + with self.assertRaises(ValueError): + mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ) with mmap.mmap(f.fileno(), 0x10000, access=mmap.ACCESS_READ) as m: self.assertEqual(m.size(), 0x180000000) diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index d650eae..1107eb8 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -1162,7 +1162,6 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict) # endif if (fd != -1 && fstat(fd, &st) == 0 && S_ISREG(st.st_mode)) { if (map_size == 0) { - off_t calc_size; if (st.st_size == 0) { PyErr_SetString(PyExc_ValueError, "cannot mmap an empty file"); @@ -1173,13 +1172,12 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict) "mmap offset is greater than file size"); return NULL; } - calc_size = st.st_size - offset; - map_size = calc_size; - if (map_size != calc_size) { + if (st.st_size - offset > PY_SSIZE_T_MAX) { PyErr_SetString(PyExc_ValueError, "mmap length is too large"); - return NULL; - } + return NULL; + } + map_size = (Py_ssize_t) (st.st_size - offset); } else if (offset + (size_t)map_size > st.st_size) { PyErr_SetString(PyExc_ValueError, "mmap length is greater than file size"); @@ -1376,11 +1374,13 @@ new_mmap_object(PyTypeObject *type, PyObject *args, PyObject *kwdict) Py_DECREF(m_obj); return NULL; } - if (offset - size > PY_SSIZE_T_MAX) - /* Map area too large to fit in memory */ - m_obj->size = (Py_ssize_t) -1; - else - m_obj->size = (Py_ssize_t) (size - offset); + if (size - offset > PY_SSIZE_T_MAX) { + PyErr_SetString(PyExc_ValueError, + "mmap length is too large"); + Py_DECREF(m_obj); + return NULL; + } + m_obj->size = (Py_ssize_t) (size - offset); } else { m_obj->size = map_size; size = offset + map_size; |