diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-06-28 13:30:47 (GMT) |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-06-28 13:30:47 (GMT) |
commit | 9f558ccefd649ab52b76cf51e0c7d19237b238f1 (patch) | |
tree | 330483cc290857396d65b7662417a6bfc15b73b6 /Lib/shutil.py | |
parent | dde8cb0899a0feb5a71918cc11bbc4f7f19830d4 (diff) | |
download | cpython-9f558ccefd649ab52b76cf51e0c7d19237b238f1.zip cpython-9f558ccefd649ab52b76cf51e0c7d19237b238f1.tar.gz cpython-9f558ccefd649ab52b76cf51e0c7d19237b238f1.tar.bz2 |
#4489: Use dir_fd in rmdir in _rmtree_safe_fd()
Now that rmdir supports dir_fd, we also use it. Attackers can't even delete
empty directories anymore.
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r-- | Lib/shutil.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py index da5a98e..99e4017 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -393,6 +393,10 @@ def _rmtree_safe_fd(topfd, path, onerror): try: if os.path.samestat(orig_st, os.fstat(dirfd)): _rmtree_safe_fd(dirfd, fullname, onerror) + try: + os.rmdir(name, dir_fd=topfd) + except os.error: + onerror(os.rmdir, fullname, sys.exc_info()) finally: os.close(dirfd) else: @@ -400,10 +404,6 @@ def _rmtree_safe_fd(topfd, path, onerror): os.unlink(name, dir_fd=topfd) except os.error: onerror(os.unlink, fullname, sys.exc_info()) - try: - os.rmdir(path) - except os.error: - onerror(os.rmdir, path, sys.exc_info()) _use_fd_functions = (os.unlink in os.supports_dir_fd and os.open in os.supports_dir_fd) @@ -445,6 +445,10 @@ def rmtree(path, ignore_errors=False, onerror=None): if (stat.S_ISDIR(orig_st.st_mode) and os.path.samestat(orig_st, os.fstat(fd))): _rmtree_safe_fd(fd, path, onerror) + try: + os.rmdir(path) + except os.error: + onerror(os.rmdir, path, sys.exc_info()) else: raise NotADirectoryError(20, "Not a directory: '{}'".format(path)) |