relayd: add LTTNG_RELAYD_HEALTH env var
[lttng-tools.git] / src / bin / lttng-relayd / health-relayd.c
index 2ce1c1fdafa763a180e15d894de041fb55369664..01e54d2eae795a35e87d94dd6f06b51ef96be3ac 100644 (file)
@@ -53,9 +53,8 @@
 #include "health-relayd.h"
 
 /* Global health check unix path */
-static char health_unix_sock_path[PATH_MAX];
-static char *relayd_path;
-static char *lttng_rundir;
+static
+char health_unix_sock_path[PATH_MAX];
 
 int health_quit_pipe[2];
 
@@ -131,16 +130,36 @@ error:
        return ret;
 }
 
+static
+int parse_health_env(void)
+{
+       const char *health_path;
+
+       health_path = getenv(LTTNG_RELAYD_HEALTH_ENV);
+       if (health_path) {
+               strncpy(health_unix_sock_path, health_path,
+                       PATH_MAX);
+               health_unix_sock_path[PATH_MAX - 1] = '\0';
+       }
+
+       return 0;
+}
+
 static
 int setup_health_path(void)
 {
        int is_root, ret = 0;
-       char *home_path = NULL;
+       char *home_path = NULL, *rundir = NULL, *relayd_path;
+
+       ret = parse_health_env();
+       if (ret) {
+               return ret;
+       }
 
        is_root = !getuid();
 
        if (is_root) {
-               lttng_rundir = strdup(DEFAULT_LTTNG_RUNDIR);
+               rundir = strdup(DEFAULT_LTTNG_RUNDIR);
        } else {
                /*
                 * Create rundir from home path. This will create something like
@@ -155,20 +174,20 @@ int setup_health_path(void)
                        goto end;
                }
 
-               ret = asprintf(&lttng_rundir, DEFAULT_LTTNG_HOME_RUNDIR, home_path);
+               ret = asprintf(&rundir, DEFAULT_LTTNG_HOME_RUNDIR, home_path);
                if (ret < 0) {
                        ret = -ENOMEM;
                        goto end;
                }
        }
 
-       ret = asprintf(&relayd_path, DEFAULT_RELAYD_PATH, lttng_rundir);
+       ret = asprintf(&relayd_path, DEFAULT_RELAYD_PATH, rundir);
        if (ret < 0) {
                ret = -ENOMEM;
                goto end;
        }
 
-       ret = create_lttng_rundir_with_perm(lttng_rundir);
+       ret = create_lttng_rundir_with_perm(rundir);
        if (ret < 0) {
                goto end;
        }
@@ -197,6 +216,7 @@ int setup_health_path(void)
        }
 
 end:
+       free(rundir);
        return ret;
 }
 
@@ -379,11 +399,6 @@ error:
        }
        DBG("Health check thread dying");
        unlink(health_unix_sock_path);
-       (void) rmdir(relayd_path);
-       free(relayd_path);
-       (void) rmdir(lttng_rundir);
-       free(lttng_rundir);
-
        if (sock >= 0) {
                ret = close(sock);
                if (ret) {
@@ -391,6 +406,11 @@ error:
                }
        }
 
+       /*
+        * We do NOT rmdir rundir nor the relayd path because there are
+        * other processes using them.
+        */
+
        lttng_poll_clean(&events);
 
        rcu_unregister_thread();
This page took 0.025128 seconds and 4 git commands to generate.