Bug 159179 - [libc] close(2) emitting ECONNRESET is not POSIX compliant
Summary: [libc] close(2) emitting ECONNRESET is not POSIX compliant
Status: Open
Alias: None
Product: Base System
Classification: Unclassified
Component: kern (show other bugs)
Version: 8.2-RELEASE
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-07-25 11:10 UTC by Michael Gmelin
Modified: 2018-01-03 05:16 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Gmelin 2011-07-25 11:10:07 UTC
With the advent of FreeBSD 6.3 the close(2) call was changed to return
errno ECONNRESET under certain circumstances. The man page was changed
accordingly, but in my understanding errno = ECONNRESET is not covered
by POSIX.1-2008 (see
http://pubs.opengroup.org/onlinepubs/9699919799/functions/close.html).
Also all other implementations of close I've seen in the past do not
behave like this, which leads to actual problems in reality.

In practice this means that all projects ported to FreeBSD would need
to get reviewed if they can handle these situations gracefully, which
usually doesn't happen. Examples I'm aware of are:

Ruby:
http://redmine.ruby-lang.org/issues/3515

Ice:
http://www.zeroc.com/forums/patches/5435-patch-network-cpp-freebsd-econnreset-close-2-problem.html

The problematic change was done quite a while ago:

r164516 | sam | 2006-11-22 17:16:54 +0000 (Wed, 22 Nov 2006) | 19 lines

----
Change error codes returned by protocol operations when an inpcb is
marked INP_DROPPED or INP_TIMEWAIT:
o return ECONNRESET instead of EINVAL for close, disconnect, shutdown,
  rcvd, rcvoob, and send operations
o return ECONNABORTED instead of EINVAL for accept

These changes should reduce confusion in applications since EINVAL is
normally interpreted to mean an invalid file descriptor.  This change
does not conflict with POSIX or other standards I checked. The return
of EINVAL has always been possible but rare; it's become more common
with recent changes to the socket/inpcb handling and with finer-grained
locking and preemption.

Note: there are other instances of EINVAL for this state that were
      left unchanged; they should be reviewed.

Reviewed by:    rwatson, andre, ru
MFC after:      1 month

---

There are other open PRs out there (e.g.
http://www.freebsd.org/cgi/query-pr.cgi?pr=146845) but these don't
focus on the POSIX impact of this behavior. Also note that other calls
might be affected by this as well (as suggested by the commit message).

Fix: 

Make sure, that the close call conforms to POSIX.1-2008 (by returning
EINVAL instead of ECONNRESET again).

Please note that this probably won't fix the underlying problem - we
started seeing these ECONNRESET issues on machines with eight and more
cores quite frequently (using ice). So just replacing ECONNRESET with
EINVAL, but not fixing why this is happening will probably lead to more
confusion and break the workarounds that are out there right now.
Comment 1 Michael Gmelin 2011-07-25 19:29:00 UTC
Thinking about this, even the previous behavior (returning EINVAL) was
not POSIX.1 compliant (at least as far as I understand the standard).
The author of the patch clearly states that he thinks it is compliant,
so it would be interesting to see what his perception is based on. It
would also be good to get a better understanding of why this error is
emitted in the first place (I got a rough understanding of how the pcb's
come into play here) and why this seems to happen more frequently now
(finer grained locking, multithreading etc.). FInally it would be
interesting to know if this is connected to the rewrites that have taken
place between 7 and 8. Ultimately I think whatever is going on behind
the scenes, the high level API calls should be POSIX compliant -
alternatively the documentation/man pages should clearly state, where
they're not.
Comment 2 Jilles Tjoelker freebsd_committer freebsd_triage 2014-04-13 22:14:27 UTC
In FreeBSD PR kern/159179, you wrote:
> With the advent of FreeBSD 6.3 the close(2) call was changed to return
> errno ECONNRESET under certain circumstances. The man page was changed
> accordingly, but in my understanding errno = ECONNRESET is not covered
> by POSIX.1-2008 (see
> http://pubs.opengroup.org/onlinepubs/9699919799/functions/close.html).
> Also all other implementations of close I've seen in the past do not
> behave like this, which leads to actual problems in reality.

> In practice this means that all projects ported to FreeBSD would need
> to get reviewed if they can handle these situations gracefully, which
> usually doesn't happen.

POSIX permits additional errors. XSH 2.3 Error Numbers says:
] Implementations may generate error numbers listed here under
] circumstances other than those described, if and only if all those
] error conditions can always be treated identically to the error
] conditions as described in this volume of POSIX.1-2008.
] Implementations shall not generate a different error number from one
] required by this volume of POSIX.1-2008 for an error condition
] described in this volume of POSIX.1-2008, but may generate additional
] errors unless explicitly disallowed for a particular function.

The page for close() does not exclude [ECONNRESET] or any other error.

One problem with close() errors is that there may be confusion about
whether the file descriptor is still valid. In FreeBSD (and also Linux),
close() on a valid file descriptor always deallocates it, even if there
is an error while closing.

The problem reported in kern/146845 may cause [ECONNRESET] errors even
when no data was lost. This may have been fixed.

-- 
Jilles Tjoelker
Comment 3 Eitan Adler freebsd_committer freebsd_triage 2017-12-31 07:58:31 UTC
For bugs matching the following criteria:

Status: In Progress Changed: (is less than) 2014-06-01

Reset to default assignee and clear in-progress tags.

Mail being skipped