Fix handling of sessiond respawn after a SIGKILL
[lttng-tools.git] / ltt-sessiond / main.c
index 1139df8b94fd26e256d10be10b6dda15965616b0..1e2a0831dc80187b4b581e72ef97a037762a3fa4 100644 (file)
@@ -2418,18 +2418,21 @@ end:
 }
 
 /*
 }
 
 /*
- * Check if the global socket is available.  If yes, error is returned.
+ * Check if the global socket is available, and if a daemon is answering
+ * at the other side. If yes, error is returned.
  */
 static int check_existing_daemon(void)
 {
        int ret;
 
  */
 static int check_existing_daemon(void)
 {
        int ret;
 
-       ret = access(client_unix_sock_path, F_OK);
-       if (ret == 0) {
-               ret = access(apps_unix_sock_path, F_OK);
-       }
-
-       return ret;
+       if (access(client_unix_sock_path, F_OK) < 0 &&
+           access(apps_unix_sock_path, F_OK) < 0)
+               return 0;
+       /* Is there anybody out there ? */
+       if (lttng_session_daemon_alive())
+               return -EEXIST;
+       else
+               return 0;
 }
 
 /*
 }
 
 /*
@@ -2714,11 +2717,9 @@ int main(int argc, char **argv)
        DBG("Application socket path %s", apps_unix_sock_path);
 
        /*
        DBG("Application socket path %s", apps_unix_sock_path);
 
        /*
-        * See if daemon already exist. If any of the two socket needed by the
-        * daemon are present, this test fails. However, if the daemon is killed
-        * with a SIGKILL, those unix socket must be unlinked by hand.
+        * See if daemon already exist.
         */
         */
-       if ((ret = check_existing_daemon()) == 0) {
+       if ((ret = check_existing_daemon()) < 0) {
                ERR("Already running daemon.\n");
                /*
                 * We do not goto exit because we must not cleanup()
                ERR("Already running daemon.\n");
                /*
                 * We do not goto exit because we must not cleanup()
This page took 0.024448 seconds and 4 git commands to generate.