-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-39318: Catch a failure in NamedTemporaryFile to prevent leaking a descriptor #17985
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -543,12 +543,18 @@ def NamedTemporaryFile(mode='w+b', buffering=-1, encoding=None, | |
file = _io.open(fd, mode, buffering=buffering, | ||
newline=newline, encoding=encoding, errors=errors) | ||
|
||
return _TemporaryFileWrapper(file, name, delete) | ||
except BaseException: | ||
_os.unlink(name) | ||
_os.close(fd) | ||
raise | ||
|
||
try: | ||
return _TemporaryFileWrapper(file, name, delete) | ||
except BaseException: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also here, better |
||
_os.unlink(name) | ||
file.close() | ||
raise | ||
|
||
if _os.name != 'posix' or _sys.platform == 'cygwin': | ||
# On non-POSIX and Cygwin systems, assume that we cannot unlink a file | ||
# while it is open. | ||
|
1 change: 1 addition & 0 deletions
1
Misc/NEWS.d/next/Library/2020-01-13-13-36-05.bpo-39318.236VwO.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix a file descriptor leak in NamedTemporaryFile under unusual circumstances. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would recommend to not use
BaseException
, but simplyException
here. Otherwise there is still a small race condition, e.g. if there is someKeyboardInterrupt
after_io.open
already created thefile
instance. Then you would run exactly in the same problem as before, thatos.close
is called twice.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand the bad scenario you are describing. If there is a KeyboardInterrupt, then BaseException will catch it, and either the first or the second except clause will handle it (depending on exactly when the Ctrl-C happens), and the objects will be freed.
If we change to Exception, then KeyboardInterrupts won't be caught at all, and none of the clean up will happen.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The bytecode will look sth like:
It means that the
file
object already exists, and once the GC cleans it up, thatfile
object will close the fd. However, now our exception handler runs, and also callsos.close(fd)
again.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yikes, it seems like there's no way to prevent a leak in all cases with
open(fd, closefd=True)
, because you can't atomically transfer ownership of the fd to the new file object.I can't think of a good solution to this off the top of my head. However, leaking an fd in a rare KeyboardInterrupt situation is preferable to having a potential double-close; the latter causes a latent error that could explode unexpectedly, while the former is just an unlikely waste of resources.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, I think if you just catch
Exception
, you are really safe here (I mean, ignore things likePyThreadState_SetAsyncExc
...). Ifopen
returns successfully without a normalException
, then thefile
object is created, and it will just immediately exit theexcept
block, without possibly raising any other normalException
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On https://bugs.python.org/issue39318, Serhiy says, "This issue is more complex. I am working on it."