2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: GPL-2.0-only
8 #include <common/compat/getenv.hpp>
9 #include <common/consumer/consumer.hpp>
10 #include <common/pipe.hpp>
11 #include <common/error.hpp>
14 #include <lttng/constant.h>
15 #include <lttng/lttng-export.h>
20 static char *pause_pipe_path
;
21 static struct lttng_pipe
*pause_pipe
;
22 static int *data_consumption_state
;
23 using lttng_consumer_get_type_func
= enum lttng_consumer_type (*)();
24 static lttng_consumer_get_type_func lttng_consumer_get_type
;
26 int lttng_opt_verbose
;
31 void __attribute__((destructor
)) pause_pipe_fini(void)
35 if (pause_pipe_path
) {
36 ret
= unlink(pause_pipe_path
);
38 PERROR("unlink pause pipe");
42 free(pause_pipe_path
);
43 lttng_pipe_destroy(pause_pipe
);
47 * We use this testpoint, invoked at the start of the consumerd's data handling
48 * thread to create a named pipe/FIFO which a test application can use to either
49 * pause or resume the consumption of data.
51 extern "C" LTTNG_EXPORT
int __testpoint_consumerd_thread_data(void);
52 int __testpoint_consumerd_thread_data(void)
55 const char *pause_pipe_path_prefix
, *domain
;
57 pause_pipe_path_prefix
= lttng_secure_getenv(
58 "CONSUMER_PAUSE_PIPE_PATH");
59 if (!pause_pipe_path_prefix
) {
65 * These symbols are exclusive to the consumerd process, hence we can't
66 * rely on their presence in the sessiond. Not looking-up these symbols
67 * dynamically would not allow this shared object to be LD_PRELOAD-ed
68 * when launching the session daemon.
70 data_consumption_state
= (int *) dlsym(NULL
, "data_consumption_paused");
71 LTTNG_ASSERT(data_consumption_state
);
72 lttng_consumer_get_type
= (lttng_consumer_type (*)()) dlsym(NULL
, "lttng_consumer_get_type");
73 LTTNG_ASSERT(lttng_consumer_get_type
);
75 switch (lttng_consumer_get_type()) {
76 case LTTNG_CONSUMER_KERNEL
:
79 case LTTNG_CONSUMER32_UST
:
82 case LTTNG_CONSUMER64_UST
:
89 ret
= asprintf(&pause_pipe_path
, "%s-%s", pause_pipe_path_prefix
,
92 ERR("Failed to allocate pause pipe path");
96 DBG("Creating pause pipe at %s", pause_pipe_path
);
97 pause_pipe
= lttng_pipe_named_open(pause_pipe_path
,
98 S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IWGRP
, O_NONBLOCK
);
100 ERR("Failed to create pause pipe at %s", pause_pipe_path
);
105 /* Only the read end of the pipe is useful to us. */
106 ret
= lttng_pipe_write_close(pause_pipe
);
111 extern "C" LTTNG_EXPORT
int __testpoint_consumerd_thread_data_poll(void);
112 int __testpoint_consumerd_thread_data_poll(void)
116 bool value_read
= false;
123 /* Purge pipe and only consider the freshest value. */
125 ret
= lttng_pipe_read(pause_pipe
, &value
, sizeof(value
));
126 if (ret
== sizeof(value
)) {
129 } while (ret
== sizeof(value
));
131 ret
= (errno
== EAGAIN
) ? 0 : -errno
;
134 *data_consumption_state
= !!value
;
135 DBG("Message received on pause pipe: %s data consumption",
136 *data_consumption_state
? "paused" : "resumed");