4 * Linux Trace Toolkit Health Control Library
6 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
7 * Copyright (C) 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9 * SPDX-License-Identifier: LGPL-2.1-only
15 #include <sys/types.h>
20 #include <lttng/health-internal.h>
22 #include <bin/lttng-sessiond/health-sessiond.h>
23 #include <bin/lttng-consumerd/health-consumerd.h>
24 #include <bin/lttng-relayd/health-relayd.h>
25 #include <common/defaults.h>
26 #include <common/utils.h>
28 #include "lttng-ctl-helper.h"
30 enum health_component
{
31 HEALTH_COMPONENT_SESSIOND
,
32 HEALTH_COMPONENT_CONSUMERD
,
33 HEALTH_COMPONENT_RELAYD
,
38 struct lttng_health_thread
{
39 struct lttng_health
*p
;
44 enum health_component component
;
46 unsigned int nr_threads
;
47 char health_sock_path
[PATH_MAX
];
48 /* For consumer health only */
49 enum lttng_health_consumerd consumerd_type
;
50 struct lttng_health_thread thread
[];
54 const char *sessiond_thread_name
[NR_HEALTH_SESSIOND_TYPES
] = {
55 [ HEALTH_SESSIOND_TYPE_CMD
] = "Session daemon command",
56 [ HEALTH_SESSIOND_TYPE_APP_MANAGE
] = "Session daemon application manager",
57 [ HEALTH_SESSIOND_TYPE_APP_REG
] = "Session daemon application registration",
58 [ HEALTH_SESSIOND_TYPE_KERNEL
] = "Session daemon kernel",
59 [ HEALTH_SESSIOND_TYPE_CONSUMER
] = "Session daemon consumer manager",
60 [ HEALTH_SESSIOND_TYPE_HT_CLEANUP
] = "Session daemon hash table cleanup",
61 [ HEALTH_SESSIOND_TYPE_APP_MANAGE_NOTIFY
] = "Session daemon application notification manager",
62 [ HEALTH_SESSIOND_TYPE_APP_REG_DISPATCH
] = "Session daemon application registration dispatcher",
63 [ HEALTH_SESSIOND_TYPE_ROTATION
] = "Session daemon rotation manager",
64 [ HEALTH_SESSIOND_TYPE_TIMER
] = "Session daemon timer manager",
68 const char *consumerd_thread_name
[NR_HEALTH_CONSUMERD_TYPES
] = {
69 [ HEALTH_CONSUMERD_TYPE_CHANNEL
] = "Consumer daemon channel",
70 [ HEALTH_CONSUMERD_TYPE_METADATA
] = "Consumer daemon metadata",
71 [ HEALTH_CONSUMERD_TYPE_DATA
] = "Consumer daemon data",
72 [ HEALTH_CONSUMERD_TYPE_SESSIOND
] = "Consumer daemon session daemon command manager",
73 [ HEALTH_CONSUMERD_TYPE_METADATA_TIMER
] = "Consumer daemon metadata timer",
77 const char *relayd_thread_name
[NR_HEALTH_RELAYD_TYPES
] = {
78 [ HEALTH_RELAYD_TYPE_DISPATCHER
] = "Relay daemon dispatcher",
79 [ HEALTH_RELAYD_TYPE_WORKER
] = "Relay daemon worker",
80 [ HEALTH_RELAYD_TYPE_LISTENER
] = "Relay daemon listener",
81 [ HEALTH_RELAYD_TYPE_LIVE_DISPATCHER
] = "Relay daemon live dispatcher",
82 [ HEALTH_RELAYD_TYPE_LIVE_WORKER
] = "Relay daemon live worker",
83 [ HEALTH_RELAYD_TYPE_LIVE_LISTENER
] = "Relay daemon live listener",
87 const char **thread_name
[NR_HEALTH_COMPONENT
] = {
88 [ HEALTH_COMPONENT_SESSIOND
] = sessiond_thread_name
,
89 [ HEALTH_COMPONENT_CONSUMERD
] = consumerd_thread_name
,
90 [ HEALTH_COMPONENT_RELAYD
] = relayd_thread_name
,
94 * Set health socket path.
96 * Returns 0 on success or -ENOMEM.
99 int set_health_socket_path(struct lttng_health
*lh
,
105 /* Global and home format strings */
106 const char *global_str
, *home_str
;
108 switch (lh
->component
) {
109 case HEALTH_COMPONENT_SESSIOND
:
110 global_str
= DEFAULT_GLOBAL_HEALTH_UNIX_SOCK
;
111 home_str
= DEFAULT_HOME_HEALTH_UNIX_SOCK
;
113 case HEALTH_COMPONENT_CONSUMERD
:
114 switch (lh
->consumerd_type
) {
115 case LTTNG_HEALTH_CONSUMERD_UST_32
:
116 global_str
= DEFAULT_GLOBAL_USTCONSUMER32_HEALTH_UNIX_SOCK
;
117 home_str
= DEFAULT_HOME_USTCONSUMER32_HEALTH_UNIX_SOCK
;
119 case LTTNG_HEALTH_CONSUMERD_UST_64
:
120 global_str
= DEFAULT_GLOBAL_USTCONSUMER64_HEALTH_UNIX_SOCK
;
121 home_str
= DEFAULT_HOME_USTCONSUMER64_HEALTH_UNIX_SOCK
;
123 case LTTNG_HEALTH_CONSUMERD_KERNEL
:
124 global_str
= DEFAULT_GLOBAL_KCONSUMER_HEALTH_UNIX_SOCK
;
125 home_str
= DEFAULT_HOME_KCONSUMER_HEALTH_UNIX_SOCK
;
131 case HEALTH_COMPONENT_RELAYD
:
132 if (lh
->health_sock_path
[0] == '\0') {
137 break; /* Unreached */
144 if (uid
== 0 || tracing_group
) {
145 lttng_ctl_copy_string(lh
->health_sock_path
,
147 sizeof(lh
->health_sock_path
));
152 * With GNU C < 2.1, snprintf returns -1 if the target buffer
153 * is too small; With GNU C >= 2.1, snprintf returns the
154 * required size (excluding closing null).
156 home
= utils_get_home_dir();
158 /* Fallback in /tmp */
162 ret
= snprintf(lh
->health_sock_path
, sizeof(lh
->health_sock_path
),
164 if ((ret
< 0) || (ret
>= sizeof(lh
->health_sock_path
))) {
172 struct lttng_health
*lttng_health_create(enum health_component hc
,
173 unsigned int nr_threads
)
175 struct lttng_health
*lh
;
178 lh
= zmalloc(sizeof(*lh
) + sizeof(lh
->thread
[0]) * nr_threads
);
184 lh
->state
= UINT64_MAX
; /* All bits in error initially */
185 lh
->nr_threads
= nr_threads
;
186 for (i
= 0; i
< nr_threads
; i
++) {
187 lh
->thread
[i
].p
= lh
;
192 struct lttng_health
*lttng_health_create_sessiond(void)
194 struct lttng_health
*lh
;
196 lh
= lttng_health_create(HEALTH_COMPONENT_SESSIOND
,
197 NR_HEALTH_SESSIOND_TYPES
);
204 struct lttng_health
*
205 lttng_health_create_consumerd(enum lttng_health_consumerd consumerd
)
207 struct lttng_health
*lh
;
209 lh
= lttng_health_create(HEALTH_COMPONENT_CONSUMERD
,
210 NR_HEALTH_CONSUMERD_TYPES
);
214 lh
->consumerd_type
= consumerd
;
218 struct lttng_health
*lttng_health_create_relayd(const char *path
)
220 struct lttng_health
*lh
;
226 lh
= lttng_health_create(HEALTH_COMPONENT_RELAYD
,
227 NR_HEALTH_RELAYD_TYPES
);
231 lttng_ctl_copy_string(lh
->health_sock_path
, path
,
232 sizeof(lh
->health_sock_path
));
236 void lttng_health_destroy(struct lttng_health
*lh
)
241 int lttng_health_query(struct lttng_health
*health
)
243 int sock
, ret
, i
, tracing_group
;
244 struct health_comm_msg msg
;
245 struct health_comm_reply reply
;
251 tracing_group
= lttng_check_tracing_group();
253 ret
= set_health_socket_path(health
, tracing_group
);
257 /* Connect to component */
258 sock
= lttcomm_connect_unix_sock(health
->health_sock_path
);
261 /* For tracing group, fallback to per-user */
269 memset(&msg
, 0, sizeof(msg
));
270 msg
.cmd
= HEALTH_CMD_CHECK
;
272 ret
= lttcomm_send_unix_sock(sock
, (void *)&msg
, sizeof(msg
));
278 ret
= lttcomm_recv_unix_sock(sock
, (void *)&reply
, sizeof(reply
));
284 health
->state
= reply
.ret_code
;
285 for (i
= 0; i
< health
->nr_threads
; i
++) {
286 if (health
->state
& (1ULL << i
)) {
287 health
->thread
[i
].state
= -1;
289 health
->thread
[i
].state
= 0;
297 closeret
= close(sock
);
307 int lttng_health_state(const struct lttng_health
*health
)
313 if (health
->state
== 0) {
320 int lttng_health_get_nr_threads(const struct lttng_health
*health
)
325 return health
->nr_threads
;
328 const struct lttng_health_thread
*
329 lttng_health_get_thread(const struct lttng_health
*health
,
330 unsigned int nth_thread
)
332 if (!health
|| nth_thread
>= health
->nr_threads
) {
335 return &health
->thread
[nth_thread
];
338 int lttng_health_thread_state(const struct lttng_health_thread
*thread
)
343 return thread
->state
;
346 const char *lttng_health_thread_name(const struct lttng_health_thread
*thread
)
353 nr
= thread
- &thread
->p
->thread
[0];
354 return thread_name
[thread
->p
->component
][nr
];