Skip to content
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

Merged
merged 9 commits into from
Jan 29, 2018

Conversation

pablogsal
Copy link
Member

@pablogsal pablogsal commented Jan 29, 2018

@pablogsal
Copy link
Member Author

CC: @vadmium @gpshead

}
if(!posix_spawn_file_actions_addclose(file_actionsp, close_fd)){
goto exit;
PyErr_SetString(PyExc_OSError,"An error ocurred when initializing a close fileaction");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Put goto last?

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");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spelling: occurred


if(!posix_spawn_file_actions_destroy(file_actionsp)){
PyErr_SetString(PyExc_OSError,"An error ocurred when cleaning the file actions object");
goto exit;
Copy link
Member

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;
Copy link
Member

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?

Copy link
Member Author

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.

PyErr_SetString(PyExc_OSError,"An error ocurred when cleaning the file actions object");
goto exit;
}


free_string_array(envlist, envc);
Copy link
Member

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

@pablogsal pablogsal force-pushed the bpo20104 branch 2 times, most recently from 2512695 to cb74d14 Compare January 29, 2018 10:14
@pablogsal
Copy link
Member Author

pablogsal commented Jan 29, 2018

@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.

if(err_code) {
PyErr_SetString(PyExc_OSError,"posix_spawn call exited");
}
result = PyLong_FromPid(pid);
Copy link
Member

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.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 47cec89

Copy link
Member Author

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.

@pablogsal
Copy link
Member Author

pablogsal commented Jan 29, 2018

@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)

Copy link
Member

@gpshead gpshead left a 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!

_Py_END_SUPPRESS_IPH
if(err_code) {
PyErr_SetString(PyExc_OSError,"posix_spawn call exited");
Copy link
Member

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)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 1b75f89


fail:
if(file_actionsp && posix_spawn_file_actions_destroy(file_actionsp)) {
PyErr_SetString(PyExc_OSError,"Error cleaning file actions object");
Copy link
Member

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.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 1b75f89

@bedevere-bot
Copy link

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 I have made the requested changes; please review again. I will then notify any core developers who have left a review that you're ready for them to take another look at this pull request.

And if you don't make the requested changes, you will be poked with soft cushions!

@gpshead gpshead added skip news type-bug An unexpected behavior, bug, or error labels Jan 29, 2018
@pablogsal
Copy link
Member Author

I have made the requested changes; please review again

@bedevere-bot
Copy link

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
Copy link
Member

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?

Copy link
Member Author

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.

@gpshead gpshead merged commit 0cd6bca into python:master Jan 29, 2018
@pablogsal pablogsal deleted the bpo20104 branch January 29, 2018 21:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip news type-bug An unexpected behavior, bug, or error
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants