Skip to content

Commit 752f7c1

Browse files
committed
Fix for unexpected socket closures and data leakage under heavy load
1 parent 7bb12a1 commit 752f7c1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

uvloop/loop.pyx

+4-3
Original file line numberDiff line numberDiff line change
@@ -1877,6 +1877,7 @@ cdef class Loop:
18771877
AddrInfo ai_local = None
18781878
AddrInfo ai_remote
18791879
TCPTransport tr
1880+
int sockfd
18801881

18811882
system.addrinfo *rai = NULL
18821883
system.addrinfo *lai = NULL
@@ -2060,8 +2061,10 @@ cdef class Loop:
20602061
waiter = self._new_future()
20612062
tr = TCPTransport.new(self, protocol, None, waiter, context)
20622063
try:
2064+
# Take ownership of the file descriptor
2065+
sockfd = sock.detach()
20632066
# libuv will make socket non-blocking
2064-
tr._open(sock.fileno())
2067+
tr._open(sockfd)
20652068
tr._init_protocol()
20662069
await waiter
20672070
except (KeyboardInterrupt, SystemExit):
@@ -2075,8 +2078,6 @@ cdef class Loop:
20752078
tr._close()
20762079
raise
20772080

2078-
tr._attach_fileobj(sock)
2079-
20802081
if ssl:
20812082
app_transport = protocol._get_app_transport(context)
20822083
try:

0 commit comments

Comments
 (0)