Skip to content

Commit

Permalink
socket: handle npipe close. Fixes #3045
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Santos <nick.santos@docker.com>
  • Loading branch information
nicks committed Oct 21, 2022
1 parent bc0a5fb commit 8cd2eaa
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docker/utils/socket.py
Expand Up @@ -17,6 +17,9 @@
class SocketError(Exception):
pass

# NpipeSockets have their own error types
# pywintypes.error: (109, 'ReadFile', 'The pipe has been ended.')
NPIPE_ENDED = 109

def read(socket, n=4096):
"""
Expand All @@ -37,6 +40,12 @@ def read(socket, n=4096):
except OSError as e:
if e.errno not in recoverable_errors:
raise
except Exception as e:
if isinstance(socket, NpipeSocket) and len(e.args) > 0 and e.args[0] == NPIPE_ENDED:
# npipes don't support duplex sockets, so we interpret
# a PIPE_ENDED error as a close operation (0-length read).
return 0
raise


def read_exactly(socket, n):
Expand Down

0 comments on commit 8cd2eaa

Please sign in to comment.