From: Zbigniew Jędrzejewski-Szmek Date: Fri, 17 Oct 2014 00:15:38 +0000 (-0500) Subject: systemd: try harder to bind to notify socket X-Git-Tag: v217~199 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e7bc519620cb7bcdbe2166fc2a446453769d827e;p=platform%2Fupstream%2Fsystemd.git systemd: try harder to bind to notify socket Without the socket open we are going to crash and burn. If for whatever reason we fail during deserialization we will fail when trying to open the socket. In this case it is better to unlink the old socket and maybe lose some messages, than to continue without the notification socket. Of course this situation should not happen, but we should handle it as gracefully as possible anyway. https://bugzilla.redhat.com/show_bug.cgi?id=1099299 --- diff --git a/src/core/manager.c b/src/core/manager.c index 1bf75e2..726977f 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -565,7 +565,21 @@ static int manager_setup_notify(Manager *m) { r = bind(fd, &sa.sa, offsetof(struct sockaddr_un, sun_path) + strlen(sa.un.sun_path)); if (r < 0) { log_error("bind(%s) failed: %m", sa.un.sun_path); - return -errno; + if (errno == EADDRINUSE) { + log_notice("Removing %s socket and trying again.", m->notify_socket); + r = unlink(m->notify_socket); + if (r < 0) { + log_error("Failed to remove %s: %m", m->notify_socket); + return -EADDRINUSE; + } + + r = bind(fd, &sa.sa, offsetof(struct sockaddr_un, sun_path) + strlen(sa.un.sun_path)); + if (r < 0) { + log_error("bind(%s) failed: %m", sa.un.sun_path); + return -errno; + } + } else + return -errno; } r = setsockopt(fd, SOL_SOCKET, SO_PASSCRED, &one, sizeof(one));