2 * Copyright (C) 2012 - Julien Desfossez <julien.desfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License, version 2 only, as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 51
16 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 #include <bin/lttng-consumerd/health-consumerd.h>
25 #include <common/common.h>
26 #include <common/kernel-ctl/kernel-ctl.h>
27 #include <common/kernel-consumer/kernel-consumer.h>
28 #include <common/consumer-stream.h>
30 #include "consumer-timer.h"
31 #include "consumer-testpoint.h"
32 #include "ust-consumer/ust-consumer.h"
34 static struct timer_signal_data timer_signal
= {
38 .lock
= PTHREAD_MUTEX_INITIALIZER
,
42 * Set custom signal mask to current thread.
44 static void setmask(sigset_t
*mask
)
48 ret
= sigemptyset(mask
);
50 PERROR("sigemptyset");
52 ret
= sigaddset(mask
, LTTNG_CONSUMER_SIG_SWITCH
);
54 PERROR("sigaddset switch");
56 ret
= sigaddset(mask
, LTTNG_CONSUMER_SIG_TEARDOWN
);
58 PERROR("sigaddset teardown");
60 ret
= sigaddset(mask
, LTTNG_CONSUMER_SIG_LIVE
);
62 PERROR("sigaddset live");
67 * Execute action on a timer switch.
69 * Beware: metadata_switch_timer() should *never* take a mutex also held
70 * while consumer_timer_switch_stop() is called. It would result in
73 static void metadata_switch_timer(struct lttng_consumer_local_data
*ctx
,
74 int sig
, siginfo_t
*si
, void *uc
)
77 struct lttng_consumer_channel
*channel
;
79 channel
= si
->si_value
.sival_ptr
;
82 if (channel
->switch_timer_error
) {
86 DBG("Switch timer for channel %" PRIu64
, channel
->key
);
88 case LTTNG_CONSUMER32_UST
:
89 case LTTNG_CONSUMER64_UST
:
91 * Locks taken by lttng_ustconsumer_request_metadata():
92 * - metadata_socket_lock
93 * - Calling lttng_ustconsumer_recv_metadata():
94 * - channel->metadata_cache->lock
95 * - Calling consumer_metadata_cache_flushed():
96 * - channel->timer_lock
97 * - channel->metadata_cache->lock
99 * Ensure that neither consumer_data.lock nor
100 * channel->lock are taken within this function, since
101 * they are held while consumer_timer_switch_stop() is
104 ret
= lttng_ustconsumer_request_metadata(ctx
, channel
, 1, 1);
106 channel
->switch_timer_error
= 1;
109 case LTTNG_CONSUMER_KERNEL
:
110 case LTTNG_CONSUMER_UNKNOWN
:
116 static int send_empty_index(struct lttng_consumer_stream
*stream
, uint64_t ts
)
119 struct ctf_packet_index index
;
121 memset(&index
, 0, sizeof(index
));
122 index
.timestamp_end
= htobe64(ts
);
123 ret
= consumer_stream_write_index(stream
, &index
);
132 static int check_kernel_stream(struct lttng_consumer_stream
*stream
)
138 * While holding the stream mutex, try to take a snapshot, if it
139 * succeeds, it means that data is ready to be sent, just let the data
140 * thread handle that. Otherwise, if the snapshot returns EAGAIN, it
141 * means that there is no data to read after the flush, so we can
142 * safely send the empty index.
144 pthread_mutex_lock(&stream
->lock
);
145 ret
= kernctl_get_current_timestamp(stream
->wait_fd
, &ts
);
147 ERR("Failed to get the current timestamp");
150 ret
= kernctl_buffer_flush(stream
->wait_fd
);
152 ERR("Failed to flush kernel stream");
155 ret
= kernctl_snapshot(stream
->wait_fd
);
157 if (errno
!= EAGAIN
) {
158 ERR("Taking kernel snapshot");
162 DBG("Stream %" PRIu64
" empty, sending beacon", stream
->key
);
163 ret
= send_empty_index(stream
, ts
);
171 pthread_mutex_unlock(&stream
->lock
);
175 static int check_ust_stream(struct lttng_consumer_stream
*stream
)
181 assert(stream
->ustream
);
183 * While holding the stream mutex, try to take a snapshot, if it
184 * succeeds, it means that data is ready to be sent, just let the data
185 * thread handle that. Otherwise, if the snapshot returns EAGAIN, it
186 * means that there is no data to read after the flush, so we can
187 * safely send the empty index.
189 pthread_mutex_lock(&stream
->lock
);
190 ret
= cds_lfht_is_node_deleted(&stream
->node
.node
);
195 ret
= lttng_ustconsumer_get_current_timestamp(stream
, &ts
);
197 ERR("Failed to get the current timestamp");
200 lttng_ustconsumer_flush_buffer(stream
, 1);
201 ret
= lttng_ustconsumer_take_snapshot(stream
);
203 if (ret
!= -EAGAIN
) {
204 ERR("Taking UST snapshot");
208 DBG("Stream %" PRIu64
" empty, sending beacon", stream
->key
);
209 ret
= send_empty_index(stream
, ts
);
217 pthread_mutex_unlock(&stream
->lock
);
222 * Execute action on a live timer
224 static void live_timer(struct lttng_consumer_local_data
*ctx
,
225 int sig
, siginfo_t
*si
, void *uc
)
228 struct lttng_consumer_channel
*channel
;
229 struct lttng_consumer_stream
*stream
;
231 struct lttng_ht_iter iter
;
233 channel
= si
->si_value
.sival_ptr
;
236 if (channel
->switch_timer_error
) {
239 ht
= consumer_data
.stream_per_chan_id_ht
;
241 DBG("Live timer for channel %" PRIu64
, channel
->key
);
245 case LTTNG_CONSUMER32_UST
:
246 case LTTNG_CONSUMER64_UST
:
247 cds_lfht_for_each_entry_duplicate(ht
->ht
,
248 ht
->hash_fct(&channel
->key
, lttng_ht_seed
),
249 ht
->match_fct
, &channel
->key
, &iter
.iter
,
250 stream
, node_channel_id
.node
) {
251 ret
= check_ust_stream(stream
);
257 case LTTNG_CONSUMER_KERNEL
:
258 cds_lfht_for_each_entry_duplicate(ht
->ht
,
259 ht
->hash_fct(&channel
->key
, lttng_ht_seed
),
260 ht
->match_fct
, &channel
->key
, &iter
.iter
,
261 stream
, node_channel_id
.node
) {
262 ret
= check_kernel_stream(stream
);
268 case LTTNG_CONSUMER_UNKNOWN
:
281 void consumer_timer_signal_thread_qs(unsigned int signr
)
283 sigset_t pending_set
;
287 * We need to be the only thread interacting with the thread
288 * that manages signals for teardown synchronization.
290 pthread_mutex_lock(&timer_signal
.lock
);
292 /* Ensure we don't have any signal queued for this channel. */
294 ret
= sigemptyset(&pending_set
);
296 PERROR("sigemptyset");
298 ret
= sigpending(&pending_set
);
300 PERROR("sigpending");
302 if (!sigismember(&pending_set
, LTTNG_CONSUMER_SIG_SWITCH
)) {
309 * From this point, no new signal handler will be fired that would try to
310 * access "chan". However, we still need to wait for any currently
311 * executing handler to complete.
314 CMM_STORE_SHARED(timer_signal
.qs_done
, 0);
318 * Kill with LTTNG_CONSUMER_SIG_TEARDOWN, so signal management thread wakes
321 kill(getpid(), LTTNG_CONSUMER_SIG_TEARDOWN
);
323 while (!CMM_LOAD_SHARED(timer_signal
.qs_done
)) {
328 pthread_mutex_unlock(&timer_signal
.lock
);
332 * Set the timer for periodical metadata flush.
334 void consumer_timer_switch_start(struct lttng_consumer_channel
*channel
,
335 unsigned int switch_timer_interval
)
339 struct itimerspec its
;
342 assert(channel
->key
);
344 if (switch_timer_interval
== 0) {
348 sev
.sigev_notify
= SIGEV_SIGNAL
;
349 sev
.sigev_signo
= LTTNG_CONSUMER_SIG_SWITCH
;
350 sev
.sigev_value
.sival_ptr
= channel
;
351 ret
= timer_create(CLOCKID
, &sev
, &channel
->switch_timer
);
353 PERROR("timer_create");
355 channel
->switch_timer_enabled
= 1;
357 its
.it_value
.tv_sec
= switch_timer_interval
/ 1000000;
358 its
.it_value
.tv_nsec
= switch_timer_interval
% 1000000;
359 its
.it_interval
.tv_sec
= its
.it_value
.tv_sec
;
360 its
.it_interval
.tv_nsec
= its
.it_value
.tv_nsec
;
362 ret
= timer_settime(channel
->switch_timer
, 0, &its
, NULL
);
364 PERROR("timer_settime");
369 * Stop and delete timer.
371 void consumer_timer_switch_stop(struct lttng_consumer_channel
*channel
)
377 ret
= timer_delete(channel
->switch_timer
);
379 PERROR("timer_delete");
382 consumer_timer_signal_thread_qs(LTTNG_CONSUMER_SIG_SWITCH
);
384 channel
->switch_timer
= 0;
385 channel
->switch_timer_enabled
= 0;
389 * Set the timer for the live mode.
391 void consumer_timer_live_start(struct lttng_consumer_channel
*channel
,
392 int live_timer_interval
)
396 struct itimerspec its
;
399 assert(channel
->key
);
401 if (live_timer_interval
<= 0) {
405 sev
.sigev_notify
= SIGEV_SIGNAL
;
406 sev
.sigev_signo
= LTTNG_CONSUMER_SIG_LIVE
;
407 sev
.sigev_value
.sival_ptr
= channel
;
408 ret
= timer_create(CLOCKID
, &sev
, &channel
->live_timer
);
410 PERROR("timer_create");
412 channel
->live_timer_enabled
= 1;
414 its
.it_value
.tv_sec
= live_timer_interval
/ 1000000;
415 its
.it_value
.tv_nsec
= live_timer_interval
% 1000000;
416 its
.it_interval
.tv_sec
= its
.it_value
.tv_sec
;
417 its
.it_interval
.tv_nsec
= its
.it_value
.tv_nsec
;
419 ret
= timer_settime(channel
->live_timer
, 0, &its
, NULL
);
421 PERROR("timer_settime");
426 * Stop and delete timer.
428 void consumer_timer_live_stop(struct lttng_consumer_channel
*channel
)
434 ret
= timer_delete(channel
->live_timer
);
436 PERROR("timer_delete");
439 consumer_timer_signal_thread_qs(LTTNG_CONSUMER_SIG_LIVE
);
441 channel
->live_timer
= 0;
442 channel
->live_timer_enabled
= 0;
446 * Block the RT signals for the entire process. It must be called from the
447 * consumer main before creating the threads
449 void consumer_signal_init(void)
454 /* Block signal for entire process, so only our thread processes it. */
456 ret
= pthread_sigmask(SIG_BLOCK
, &mask
, NULL
);
459 PERROR("pthread_sigmask");
464 * This thread is the sighandler for signals LTTNG_CONSUMER_SIG_SWITCH,
465 * LTTNG_CONSUMER_SIG_TEARDOWN and LTTNG_CONSUMER_SIG_LIVE.
467 void *consumer_timer_thread(void *data
)
472 struct lttng_consumer_local_data
*ctx
= data
;
474 health_register(health_consumerd
, HEALTH_CONSUMERD_TYPE_METADATA_TIMER
);
476 if (testpoint(consumerd_thread_metadata_timer
)) {
477 goto error_testpoint
;
480 health_code_update();
482 /* Only self thread will receive signal mask. */
484 CMM_STORE_SHARED(timer_signal
.tid
, pthread_self());
487 health_code_update();
490 signr
= sigwaitinfo(&mask
, &info
);
493 if (errno
!= EINTR
) {
494 PERROR("sigwaitinfo");
497 } else if (signr
== LTTNG_CONSUMER_SIG_SWITCH
) {
498 metadata_switch_timer(ctx
, info
.si_signo
, &info
, NULL
);
499 } else if (signr
== LTTNG_CONSUMER_SIG_TEARDOWN
) {
501 CMM_STORE_SHARED(timer_signal
.qs_done
, 1);
503 DBG("Signal timer metadata thread teardown");
504 } else if (signr
== LTTNG_CONSUMER_SIG_LIVE
) {
505 live_timer(ctx
, info
.si_signo
, &info
, NULL
);
507 ERR("Unexpected signal %d\n", info
.si_signo
);
512 /* Only reached in testpoint error */
514 health_unregister(health_consumerd
);