summaryrefslogtreecommitdiffstats
path: root/sys/kern/uipc_socket.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2010-05-27 15:27:31 +0000
committerrwatson <rwatson@FreeBSD.org>2010-05-27 15:27:31 +0000
commitc7e8976175130d7fea391747df8b3bbd9ce02285 (patch)
tree87d2083f6c517412208c46706ab19af9ed191e4e /sys/kern/uipc_socket.c
parent0cece284a43a082da3e78408279f2b246fbc27da (diff)
downloadFreeBSD-src-c7e8976175130d7fea391747df8b3bbd9ce02285.zip
FreeBSD-src-c7e8976175130d7fea391747df8b3bbd9ce02285.tar.gz
When close() is called on a connected socket pair, SO_ISCONNECTED might be
set but be cleared before the call to sodisconnect(). In this case, ENOTCONN is returned: suppress this error rather than returning it to userspace so that close() doesn't report an error improperly. PR: kern/144061 Reported by: Matt Reimer <mreimer at vpop.net>, Nikolay Denev <ndenev at gmail.com>, Mikolaj Golub <to.my.trociny at gmail.com> MFC after: 3 days
Diffstat (limited to 'sys/kern/uipc_socket.c')
-rw-r--r--sys/kern/uipc_socket.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/uipc_socket.c b/sys/kern/uipc_socket.c
index 569aed0..1734960 100644
--- a/sys/kern/uipc_socket.c
+++ b/sys/kern/uipc_socket.c
@@ -665,8 +665,11 @@ soclose(struct socket *so)
if (so->so_state & SS_ISCONNECTED) {
if ((so->so_state & SS_ISDISCONNECTING) == 0) {
error = sodisconnect(so);
- if (error)
+ if (error) {
+ if (error == ENOTCONN)
+ error = 0;
goto drop;
+ }
}
if (so->so_options & SO_LINGER) {
if ((so->so_state & SS_ISDISCONNECTING) &&
OpenPOWER on IntegriCloud