UDS: translate file dne to connection-error
For the case where there's clearly no socket file created/bound obviously the `trio.socket.connect()` call will raise `FileNotFoundError`, so just translate this to a builtin-`ConnectionError` at the transport layer so we can report the guilty `UDSAddress`.leslies_extra_appendix
parent
9f837161ea
commit
35acc5a3d5
|
@ -139,20 +139,28 @@ class MsgpackUDSStream(MsgpackTransport):
|
||||||
**kwargs
|
**kwargs
|
||||||
) -> MsgpackUDSStream:
|
) -> MsgpackUDSStream:
|
||||||
|
|
||||||
filepath: Path
|
|
||||||
pid: int
|
|
||||||
(
|
|
||||||
filepath,
|
|
||||||
pid,
|
|
||||||
) = addr.unwrap()
|
|
||||||
|
|
||||||
# XXX NOTE, we don't need to provide the `.pid` part from
|
sockpath: Path = addr.sockpath
|
||||||
# the addr since the OS does this implicitly! .. lel
|
#
|
||||||
# stream = await trio.open_unix_socket(
|
# ^XXX NOTE, we don't provide any out-of-band `.pid` info
|
||||||
stream = await open_unix_socket_w_passcred(
|
# (like, over the socket as extra msgs) since the (augmented)
|
||||||
str(filepath),
|
# `.setsockopt()` call tells the OS provide it; the client
|
||||||
**kwargs
|
# pid can then be read on server/listen() side via
|
||||||
)
|
# `get_peer_info()` above.
|
||||||
|
try:
|
||||||
|
stream = await open_unix_socket_w_passcred(
|
||||||
|
str(sockpath),
|
||||||
|
**kwargs
|
||||||
|
)
|
||||||
|
except (
|
||||||
|
FileNotFoundError,
|
||||||
|
) as fdne:
|
||||||
|
raise ConnectionError(
|
||||||
|
f'Bad UDS socket-filepath-as-address ??\n'
|
||||||
|
f'{addr}\n'
|
||||||
|
f' |_sockpath: {sockpath}\n'
|
||||||
|
) from fdne
|
||||||
|
|
||||||
stream = MsgpackUDSStream(
|
stream = MsgpackUDSStream(
|
||||||
stream,
|
stream,
|
||||||
prefix_size=prefix_size,
|
prefix_size=prefix_size,
|
||||||
|
|
Loading…
Reference in New Issue