]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
rpc: socket: Explicitly error if we exceed retry count
authorCole Robinson <crobinso@redhat.com>
Tue, 12 Jan 2016 01:08:45 +0000 (20:08 -0500)
committerCole Robinson <crobinso@redhat.com>
Thu, 21 Jan 2016 00:13:25 +0000 (19:13 -0500)
When we autolaunch libvirtd for session URIs, we spin in a retry
loop waiting for the daemon to start and the connect(2) to succeed.

However if we exceed the retry count, we don't explicitly raise an
error, which can yield a slew of different error messages elsewhere
in the code.

Explicitly raise the last connect(2) failure if we run out of retries.

(cherry picked from commit 8da02d528068942303923fc4f935e77cccac9c7c)

src/rpc/virnetsocket.c

index fc8ce6c1232047b21ab3b15441bc2c1655dd0351..6a51dc840b9134e172940e810257a26995ae0886 100644 (file)
@@ -690,7 +690,9 @@ int virNetSocketNewConnectUNIX(const char *path,
         }
         VIR_DEBUG("connect() failed: retries=%d errno=%d", retries, errno);
 
+        retries--;
         if (!spawnDaemon ||
+            retries == 0 ||
             (errno != ENOENT && errno != ECONNREFUSED)) {
             virReportSystemError(errno, _("Failed to connect socket to '%s'"),
                                  path);
@@ -700,7 +702,6 @@ int virNetSocketNewConnectUNIX(const char *path,
         if (virNetSocketForkDaemon(binary) < 0)
             goto cleanup;
 
-        retries--;
         usleep(5000);
     }