mirror of
https://github.com/python/cpython.git
synced 2025-09-18 22:50:26 +00:00
Issue #22435: Fix a file descriptor leak when SocketServer bind fails.
This commit is contained in:
commit
acbf5235b8
3 changed files with 18 additions and 2 deletions
|
@ -439,8 +439,12 @@ class TCPServer(BaseServer):
|
|||
self.socket = socket.socket(self.address_family,
|
||||
self.socket_type)
|
||||
if bind_and_activate:
|
||||
try:
|
||||
self.server_bind()
|
||||
self.server_activate()
|
||||
except:
|
||||
self.server_close()
|
||||
raise
|
||||
|
||||
def server_bind(self):
|
||||
"""Called by constructor to bind the socket.
|
||||
|
|
|
@ -270,6 +270,16 @@ class SocketServerTest(unittest.TestCase):
|
|||
t.join()
|
||||
s.server_close()
|
||||
|
||||
def test_tcpserver_bind_leak(self):
|
||||
# Issue #22435: the server socket wouldn't be closed if bind()/listen()
|
||||
# failed.
|
||||
# Create many servers for which bind() will fail, to see if this result
|
||||
# in FD exhaustion.
|
||||
for i in range(1024):
|
||||
with self.assertRaises(OverflowError):
|
||||
socketserver.TCPServer((HOST, -1),
|
||||
socketserver.StreamRequestHandler)
|
||||
|
||||
|
||||
def test_main():
|
||||
if imp.lock_held():
|
||||
|
|
|
@ -174,6 +174,8 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Issue #22435: Fix a file descriptor leak when SocketServer bind fails.
|
||||
|
||||
- Issue #13096: Fixed segfault in CTypes POINTER handling of large
|
||||
values.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue