summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-04 20:53:29 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-04 20:53:29 (GMT)
commit0049249d63a067aaffbbf3172a6e8cd8c956b643 (patch)
treedcfee8a6bd6e16db18121380d565bdf8278d9ee6
parent7d6e076f6d8dd48cfd748b02dad17dbeb0b346a3 (diff)
downloadcpython-0049249d63a067aaffbbf3172a6e8cd8c956b643.zip
cpython-0049249d63a067aaffbbf3172a6e8cd8c956b643.tar.gz
cpython-0049249d63a067aaffbbf3172a6e8cd8c956b643.tar.bz2
Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file
descriptor is provided. Patch by Pascal Chambon.
-rw-r--r--Lib/test/test_fileio.py3
-rw-r--r--Misc/NEWS3
-rwxr-xr-xPC/msvcrtmodule.c3
3 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_fileio.py b/Lib/test/test_fileio.py
index 63bc1d9..4b48d41 100644
--- a/Lib/test/test_fileio.py
+++ b/Lib/test/test_fileio.py
@@ -309,6 +309,9 @@ class OtherFileTests(unittest.TestCase):
def testInvalidFd(self):
self.assertRaises(ValueError, _FileIO, -10)
self.assertRaises(OSError, _FileIO, make_bad_fd())
+ if sys.platform == 'win32':
+ import msvcrt
+ self.assertRaises(IOError, msvcrt.get_osfhandle, make_bad_fd())
def testBadModeArgument(self):
# verify that we get a sensible error message for bad mode argument
diff --git a/Misc/NEWS b/Misc/NEWS
index f413da2..5d36560 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -100,6 +100,9 @@ Core and Builtins
Extensions
----------
+- Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file
+ descriptor is provided. Patch by Pascal Chambon.
+
- Issue #7736: Release the GIL around calls to opendir() and closedir()
in the posix module. Patch by Marcin Bachry.
diff --git a/PC/msvcrtmodule.c b/PC/msvcrtmodule.c
index e173fea..166df03 100755
--- a/PC/msvcrtmodule.c
+++ b/PC/msvcrtmodule.c
@@ -143,6 +143,9 @@ msvcrt_get_osfhandle(PyObject *self, PyObject *args)
if (!PyArg_ParseTuple(args,"i:get_osfhandle", &fd))
return NULL;
+ if (!_PyVerify_fd(fd))
+ return PyErr_SetFromErrno(PyExc_IOError);
+
handle = _get_osfhandle(fd);
if (handle == -1)
return PyErr_SetFromErrno(PyExc_IOError);