Treat ETIMEDOUT as indicating a non-recoverable connection failure.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 30 Sep 2021 18:16:08 +0000 (14:16 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 30 Sep 2021 18:16:08 +0000 (14:16 -0400)
commitb484ddf4d2eb81736512efa35ed3e5d2a72993d8
tree1481fbc764c05bc0c2c5baff6d6650e094b897f5
parentd03bca4d70c29cca4f09e3a0e78a56cf97e237f3
Treat ETIMEDOUT as indicating a non-recoverable connection failure.

Add ETIMEDOUT to ALL_CONNECTION_FAILURE_ERRNOS' list of "errnos that
identify hard failure of a previously-established network connection".
While one could imagine that this is sometimes recoverable, the same
could be said of other entries such as ENETDOWN.

In support of this, handle ETIMEDOUT on par with other socket errors
in relevant infrastructure, such as TranslateSocketError().
(I made a couple of cosmetic adjustments in TranslateSocketError(),
too.)  The code now assumes that ETIMEDOUT is defined everywhere,
which it should be given that POSIX has required it since SUSv2.

Perhaps this should be back-patched, but I'm hesitant to do so given
the lack of previous complaints, and the hazard that there's a small
ABI break on Windows from redefining the symbol.  Even if we decide
to do that, it'd be prudent to let this bake awhile in HEAD first.

Jelte Fennema

Discussion: https://postgr.es/m/AM5PR83MB01782BFF2978505F6D6C559AF7AA9@AM5PR83MB0178.EURPRD83.prod.outlook.com
src/backend/port/win32/socket.c
src/include/port.h
src/include/port/win32_port.h
src/port/strerror.c