1 #ifndef HEALTH_INTERNAL_H
2 #define HEALTH_INTERNAL_H
5 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
6 * Copyright (C) 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * SPDX-License-Identifier: GPL-2.0-only
12 #include <common/compat/time.hpp>
14 #include <urcu/tls-compat.h>
15 #include <urcu/uatomic.h>
16 #include <urcu/list.h>
17 #include <lttng/health.h>
18 #include <common/macros.hpp>
21 * These are the value added to the current state depending of the position in
22 * the thread where is either waiting on a poll() or running in the code.
24 #define HEALTH_POLL_VALUE (1UL << 0)
25 #define HEALTH_CODE_VALUE (1UL << 1)
27 #define HEALTH_IS_IN_POLL(x) ((x) & HEALTH_POLL_VALUE)
32 HEALTH_ERROR = (1U << 0),
37 * last counter and last_time are only read and updated by the health_check
38 * thread (single updater).
41 struct timespec last_time;
44 * current and flags are updated by multiple threads concurrently.
46 unsigned long current; /* progress counter, updated atomically */
47 enum health_flags flags; /* other flags, updated atomically */
48 int type; /* Indicates the nature of the thread. */
49 /* Node of the global TLS state list. */
50 struct cds_list_head node;
57 struct health_comm_msg {
58 uint32_t cmd; /* enum health_cmd */
61 struct health_comm_reply {
62 uint64_t ret_code; /* bitmask of threads in bad health */
65 /* Declare TLS health state. */
66 extern DECLARE_URCU_TLS(struct health_state, health_state);
69 * Update current counter by 1 to indicate that the thread entered or left a
70 * blocking state caused by a poll(). If the counter's value is not an even
71 * number (meaning a code execution flow), an LTTNG_ASSERT() is raised.
73 static inline void health_poll_entry(void)
75 /* Code MUST be in code execution state which is an even number. */
76 LTTNG_ASSERT(!(uatomic_read(&URCU_TLS(health_state).current)
77 & HEALTH_POLL_VALUE));
79 uatomic_add(&URCU_TLS(health_state).current, HEALTH_POLL_VALUE);
83 * Update current counter by 1 indicating the exit of a poll or blocking call.
84 * If the counter's value is not an odd number (a poll execution), an LTTNG_ASSERT()
87 static inline void health_poll_exit(void)
89 /* Code MUST be in poll execution state which is an odd number. */
90 LTTNG_ASSERT(uatomic_read(&URCU_TLS(health_state).current)
93 uatomic_add(&URCU_TLS(health_state).current, HEALTH_POLL_VALUE);
97 * Update current counter by 2 indicates progress in execution of a
100 static inline void health_code_update(void)
102 uatomic_add(&URCU_TLS(health_state).current, HEALTH_CODE_VALUE);
106 * Set health "error" flag.
108 static inline void health_error(void)
110 uatomic_or(&URCU_TLS(health_state).flags, HEALTH_ERROR);
113 struct health_app *health_app_create(int nr_types);
114 void health_app_destroy(struct health_app *ha);
115 int health_check_state(struct health_app *ha, int type);
116 void health_register(struct health_app *ha, int type);
117 void health_unregister(struct health_app *ha);
119 #endif /* HEALTH_INTERNAL_H */