From: Kyle Russell Date: Fri, 9 Sep 2016 02:34:43 +0000 (-0400) Subject: service: Continue shutdown on socket activated unit on termination (#4108) X-Git-Tag: v232~230 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f2dbd059a6b325f058c1eff65f2441a0f9f90eb1;p=thirdparty%2Fsystemd.git service: Continue shutdown on socket activated unit on termination (#4108) ENOTCONN may be a legitimate return code if the endpoint disappeared, but the service should still attempt to shutdown cleanly. --- diff --git a/src/core/service.c b/src/core/service.c index 969c62bd836..57f8d90ee5b 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -1256,10 +1256,17 @@ static int service_spawn( socklen_t salen = sizeof(sa); r = getpeername(s->socket_fd, &sa.sa, &salen); - if (r < 0) - return -errno; + if (r < 0) { + r = -errno; + + /* ENOTCONN is legitimate if the endpoint disappeared on shutdown. + * This connection is over, but the socket unit lives on. */ + if (r != -ENOTCONN || + (c != s->exec_command[SERVICE_EXEC_STOP] && c != s->exec_command[SERVICE_EXEC_STOP_POST])) + return r; + } - if (IN_SET(sa.sa.sa_family, AF_INET, AF_INET6)) { + if (r == 0 && IN_SET(sa.sa.sa_family, AF_INET, AF_INET6)) { _cleanup_free_ char *addr = NULL; char *t; int port;