summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-07-29 17:00:38 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-07-29 17:00:38 (GMT)
commite12c0b1767309ec1fe727e91f8d4c0cfae4a88a8 (patch)
treed9d106ff50730f60120133eb3a43158129228245
parent516c51c14c06913ac832b0f50989e83c6f3bb730 (diff)
parentdef35435ee4001f8aedac01b559bb0dc2d0aab00 (diff)
downloadcpython-e12c0b1767309ec1fe727e91f8d4c0cfae4a88a8.zip
cpython-e12c0b1767309ec1fe727e91f8d4c0cfae4a88a8.tar.gz
cpython-e12c0b1767309ec1fe727e91f8d4c0cfae4a88a8.tar.bz2
Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow symlinks:
fix it. Patch by Petri Lehtinen.
-rw-r--r--Lib/tempfile.py3
-rw-r--r--Lib/test/test_tempfile.py21
-rw-r--r--Misc/NEWS3
3 files changed, 26 insertions, 1 deletions
diff --git a/Lib/tempfile.py b/Lib/tempfile.py
index b7439a2..a450003 100644
--- a/Lib/tempfile.py
+++ b/Lib/tempfile.py
@@ -661,6 +661,7 @@ class TemporaryDirectory(object):
_listdir = staticmethod(_os.listdir)
_path_join = staticmethod(_os.path.join)
_isdir = staticmethod(_os.path.isdir)
+ _islink = staticmethod(_os.path.islink)
_remove = staticmethod(_os.remove)
_rmdir = staticmethod(_os.rmdir)
_os_error = _os.error
@@ -672,7 +673,7 @@ class TemporaryDirectory(object):
for name in self._listdir(path):
fullname = self._path_join(path, name)
try:
- isdir = self._isdir(fullname)
+ isdir = self._isdir(fullname) and not self._islink(fullname)
except self._os_error:
isdir = False
if isdir:
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py
index 2d29885..f7f5bda 100644
--- a/Lib/test/test_tempfile.py
+++ b/Lib/test/test_tempfile.py
@@ -964,6 +964,27 @@ class test_TemporaryDirectory(TC):
finally:
os.rmdir(dir)
+ @support.skip_unless_symlink
+ def test_cleanup_with_symlink_to_a_directory(self):
+ # cleanup() should not follow symlinks to directories (issue #12464)
+ d1 = self.do_create()
+ d2 = self.do_create()
+
+ # Symlink d1/foo -> d2
+ os.symlink(d2.name, os.path.join(d1.name, "foo"))
+
+ # This call to cleanup() should not follow the "foo" symlink
+ d1.cleanup()
+
+ self.assertFalse(os.path.exists(d1.name),
+ "TemporaryDirectory %s exists after cleanup" % d1.name)
+ self.assertTrue(os.path.exists(d2.name),
+ "Directory pointed to by a symlink was deleted")
+ self.assertEqual(os.listdir(d2.name), ['test.txt'],
+ "Contents of the directory pointed to by a symlink "
+ "were deleted")
+ d2.cleanup()
+
@support.cpython_only
def test_del_on_collection(self):
# A TemporaryDirectory is deleted when garbage collected
diff --git a/Misc/NEWS b/Misc/NEWS
index 34ceb2a..5cdcb79 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -244,6 +244,9 @@ Core and Builtins
Library
-------
+- Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow
+ symlinks: fix it. Patch by Petri Lehtinen.
+
- Issue #8887: "pydoc somebuiltin.somemethod" (or help('somebuiltin.somemethod')
in Python code) now finds the doc of the method.