diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-09-05 21:48:07 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-09-05 21:48:07 +0000 |
commit | 1e7fe6e7ec744830807fc1136146c823b482b839 (patch) | |
tree | 83cd4b2c1b984487dc85f105171518018d2915d2 /Modules/mmapmodule.c | |
parent | 17c5fa915e34c342227bcea4a5e63b913aadd562 (diff) | |
download | cpython-1e7fe6e7ec744830807fc1136146c823b482b839.tar.gz |
SF bug # 585792, Invalid mmap crashes Python interpreter
Raise ValueError if user passes a size to mmap which is larger
than the file.
Diffstat (limited to 'Modules/mmapmodule.c')
-rw-r--r-- | Modules/mmapmodule.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Modules/mmapmodule.c b/Modules/mmapmodule.c index 2bb6edc808..cff3c146e6 100644 --- a/Modules/mmapmodule.c +++ b/Modules/mmapmodule.c @@ -850,6 +850,9 @@ _GetMapSize(PyObject *o) static PyObject * new_mmap_object(PyObject *self, PyObject *args, PyObject *kwdict) { +#ifdef HAVE_FSTAT + struct stat st; +#endif mmap_object *m_obj; PyObject *map_size_obj = NULL; int map_size; @@ -890,7 +893,14 @@ new_mmap_object(PyObject *self, PyObject *args, PyObject *kwdict) return PyErr_Format(PyExc_ValueError, "mmap invalid access parameter."); } - + +#ifdef HAVE_FSTAT + if (fstat(fd, &st) == 0 && (size_t)map_size > st.st_size) { + PyErr_SetString(PyExc_ValueError, + "mmap length is greater than file size"); + return NULL; + } +#endif m_obj = PyObject_New (mmap_object, &mmap_object_type); if (m_obj == NULL) {return NULL;} m_obj->size = (size_t) map_size; |