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

[asyncio] bpo-29743: ssl socket leak during handshake #480

Merged
merged 3 commits into from
Jun 9, 2017
Merged

[asyncio] bpo-29743: ssl socket leak during handshake #480

merged 3 commits into from
Jun 9, 2017

Conversation

fafhrd91
Copy link
Contributor

@fafhrd91 fafhrd91 commented Mar 5, 2017

@mention-bot
Copy link

@fafhrd91, thanks for your PR! By analyzing the history of the files in this pull request, we identified @Haypo, @1st1, @serhiy-storchaka and @vadmium to be potential reviewers.

@fafhrd91
Copy link
Contributor Author

fafhrd91 commented Mar 5, 2017

@1st1

exc = waiter.exception()

if exc is not None:
self._on_handshake_complete(exc)
Copy link
Member

Choose a reason for hiding this comment

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

Can the waiter here be in a resolved state without an exception set? I.e. is else clause possible here?

Choose a reason for hiding this comment

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

2020 and I'm still seeing this issue when the site returns an invalid certificate. The handshake is aborted and the socket isn't released. I'm on Pyhton 3.6.8 with the latest asyncio and aiohttp.

@fafhrd91
Copy link
Contributor Author

fafhrd91 commented Mar 6, 2017

I modified PR. I think aborting transport is better approach. i.e socket with uncompleted handshake is broken and we can not do anything, just drop.

@1st1
Copy link
Member

1st1 commented Mar 6, 2017

This is a much better version, I like it.

@Mariatta
Copy link
Member

Mariatta commented Mar 9, 2017

Is this for bpo-29743? If so, please prefix the pull request description with it. Thanks :)

@fafhrd91 fafhrd91 changed the title ssl socket leak during handshake bpo-29743: ssl socket leak during handshake Mar 9, 2017
@vstinner vstinner changed the title bpo-29743: ssl socket leak during handshake [asyncio] bpo-29743: ssl socket leak during handshake Mar 9, 2017
vxgmichel added a commit to vxgmichel/cpython that referenced this pull request Jun 11, 2018
This fixes asyncio issue python#480.
The _SelectorDatagramTransport.sendto method has to be modified
so _sock.send is used only if _sock is connected.

It also protects socket.getsockname against OSError in
_SelectorTransport. This might happen on Windows if the socket
is not connected (e.g. for UDP broadcasting).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants