X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fhealth.c;h=6c4de9430793fa1d8508c06dab17e88af0b6bcae;hp=58f804eb94b186c7769a52f2fe1e62653223e918;hb=8809eec0bb55b03862cb1eb128eb39d50104c258;hpb=44a5e5eb99f1d8b528f83fda5585677a3882f5f5 diff --git a/src/bin/lttng-sessiond/health.c b/src/bin/lttng-sessiond/health.c index 58f804eb9..6c4de9430 100644 --- a/src/bin/lttng-sessiond/health.c +++ b/src/bin/lttng-sessiond/health.c @@ -20,11 +20,53 @@ #include #include #include +#include +#include #include #include "health.h" +static const struct timespec time_delta = { + .tv_sec = DEFAULT_HEALTH_CHECK_DELTA_S, + .tv_nsec = DEFAULT_HEALTH_CHECK_DELTA_NS, +}; + +/* + * Set time difference in res from time_a and time_b. + */ +static void time_diff(const struct timespec *time_a, + const struct timespec *time_b, struct timespec *res) +{ + if (time_a->tv_nsec - time_b->tv_nsec < 0) { + res->tv_sec = time_a->tv_sec - time_b->tv_sec - 1; + res->tv_nsec = 1000000000L + time_a->tv_sec - time_b->tv_sec; + } else { + res->tv_sec = time_a->tv_sec - time_b->tv_sec; + res->tv_nsec = time_a->tv_sec - time_b->tv_sec; + } +} + +/* + * Return true if time_a - time_b > diff, else false. + */ +static int time_diff_gt(const struct timespec *time_a, + const struct timespec *time_b, const struct timespec *diff) +{ + struct timespec res; + + time_diff(time_a, time_b, &res); + time_diff(&res, diff, &res); + + if (res.tv_sec > 0) { + return 1; + } else if (res.tv_sec == 0 && res.tv_nsec > 0) { + return 1; + } + + return 0; +} + /* * Check health of a specific health state counter. * @@ -32,33 +74,57 @@ */ int health_check_state(struct health_state *state) { - int ret; - uint64_t current; - uint64_t last; + int retval = 1, ret; + unsigned long current, last; + struct timespec current_time; assert(state); + last = state->last; current = uatomic_read(&state->current); - last = uatomic_read(&state->last); + + ret = clock_gettime(CLOCK_MONOTONIC, ¤t_time); + if (ret) { + PERROR("Error reading time\n"); + /* error */ + retval = 0; + goto end; + } /* - * Here are the conditions for a bad health. Current state set to 0 or the - * current state is the same as the last one and we are NOT waiting for a - * poll() call. + * Thread is in bad health if flag HEALTH_ERROR is set. It is also in bad + * health if, after the delta delay has passed, its the progress counter + * has not moved and it has NOT been waiting for a poll() call. */ - if (current == 0 || (current == last && HEALTH_IS_IN_CODE(current))) { - ret = 0; - goto error; + if (uatomic_read(&state->flags) & HEALTH_ERROR) { + retval = 0; + goto end; } - /* All good */ - ret = 1; + /* + * Initial condition need to update the last counter and sample time, but + * should not check health in this initial case, because we don't know how + * much time has passed. + */ + if (state->last_time.tv_sec == 0 && state->last_time.tv_nsec == 0) { + /* update last counter and last sample time */ + state->last = current; + memcpy(&state->last_time, ¤t_time, sizeof(current_time)); + } else { + if (time_diff_gt(¤t_time, &state->last_time, &time_delta)) { + if (current == last && !HEALTH_IS_IN_POLL(current)) { + /* error */ + retval = 0; + } + /* update last counter and last sample time */ + state->last = current; + memcpy(&state->last_time, ¤t_time, sizeof(current_time)); + } + } -error: +end: DBG("Health state current %" PRIu64 ", last %" PRIu64 ", ret %d", current, last, ret); - /* Exchange current state counter into last one */ - uatomic_xchg(&state->last, state->current); - return ret; + return retval; }