-
-
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-20104: Fix memory leaks and error handling in posix spawn #5418
Conversation
Modules/posixmodule.c
Outdated
} | ||
if(!posix_spawn_file_actions_addclose(file_actionsp, close_fd)){ | ||
goto exit; | ||
PyErr_SetString(PyExc_OSError,"An error ocurred when initializing a close fileaction"); |
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.
Put goto last?
Modules/posixmodule.c
Outdated
goto exit; | ||
} | ||
if(!posix_spawn_file_actions_addopen(file_actionsp, open_fd, open_path, open_oflag, open_mode)){ | ||
PyErr_SetString(PyExc_OSError,"An error ocurred when initializing an open fileaction"); |
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.
Spelling: occurred
Modules/posixmodule.c
Outdated
|
||
if(!posix_spawn_file_actions_destroy(file_actionsp)){ | ||
PyErr_SetString(PyExc_OSError,"An error ocurred when cleaning the file actions object"); | ||
goto exit; |
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.
If this ever fails, you have an infinite loop.
file_actionsp is only initialized halfway down. In C99 I understand the goto statements above it are allowed to bypass the initialization, but they leave the pointer uninitialized.
Also, I haven’t seen any explicit mention of destroy accepting a null pointer. Did you test this? Even if it works on one platform, it seems risky to rely on it on all Posix platforms.
|
||
if (argvlist) { | ||
free_string_array(argvlist, argc); | ||
} | ||
return NULL; | ||
|
||
return result; |
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.
It looks to me like result will be uninitialized in the failure cases. But surely this would be obvious by testing. Am I missing something?
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.
@vadmium Sorry, there was a commit missing here for some reason, I will amend with the latest changes.
Modules/posixmodule.c
Outdated
PyErr_SetString(PyExc_OSError,"An error ocurred when cleaning the file actions object"); | ||
goto exit; | ||
} | ||
|
||
|
||
free_string_array(envlist, envc); |
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.
envlist could be uninitialized if there is an early failure
2512695
to
cb74d14
Compare
@vadmium There was a missing commit due to a failed push. I have amended the last commit to including all the fixes. In cb74d14 you will find the correct initial implementation. Sorry for the confusion. |
Modules/posixmodule.c
Outdated
if(err_code) { | ||
PyErr_SetString(PyExc_OSError,"posix_spawn call exited"); | ||
} | ||
result = PyLong_FromPid(pid); |
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.
Pid uninitialized again (in error case). Maybe add another goto exit.
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.
Done in 47cec89
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.
Also, now there is always cleanup for the result of PySequence_Fast.
@vstinner Can you take a general look at this PR (if you have the time) to check that we are not missing something else? (The Docs are not included in this PR) |
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.
thanks for the cleanup!
Modules/posixmodule.c
Outdated
_Py_END_SUPPRESS_IPH | ||
if(err_code) { | ||
PyErr_SetString(PyExc_OSError,"posix_spawn call exited"); |
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.
"posix_spawn call failed" (it always exits)
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.
Done in 1b75f89
Modules/posixmodule.c
Outdated
|
||
fail: | ||
if(file_actionsp && posix_spawn_file_actions_destroy(file_actionsp)) { | ||
PyErr_SetString(PyExc_OSError,"Error cleaning file actions object"); |
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 only possible error from posix_spawn_file_actions_destroy() is EINVAL if the supplied file_actionsp was invalid. That will only happen here during the "goto exit" path after a failure from posix_spawn_file_actions_init(), meaning this exception could clobber that one. I'd just leave the_destroy() call unchecked, there isn't anything we can do if it fails anyways.
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.
Done in 1b75f89
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase And if you don't make the requested changes, you will be poked with soft cushions! |
I have made the requested changes; please review again |
Thanks for making the requested changes! @gpshead: please review the changes made to this pull request. |
* https://android-review.googlesource.com/c/platform/bionic/+/504842 | ||
**/ | ||
#ifndef __ANDROID__ | ||
#define HAVE_POSIX_SPAWN 1 |
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.
just for my own info, why do you remove this condition? you won't support all the versions of Android... is it right?
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 check is done now in the configuration phase and it will be automatically detected if the system has this function.
https://bugs.python.org/issue20104