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 <common/common.h>
26 #include "consumer-timer.h"
27 #include "ust-consumer/ust-consumer.h"
29 static struct timer_signal_data timer_signal
;
32 * Set custom signal mask to current thread.
34 static void setmask(sigset_t
*mask
)
38 ret
= sigemptyset(mask
);
40 PERROR("sigemptyset");
42 ret
= sigaddset(mask
, LTTNG_CONSUMER_SIG_SWITCH
);
46 ret
= sigaddset(mask
, LTTNG_CONSUMER_SIG_TEARDOWN
);
53 * Execute action on a timer switch.
55 static void metadata_switch_timer(struct lttng_consumer_local_data
*ctx
,
56 int sig
, siginfo_t
*si
, void *uc
)
59 struct lttng_consumer_channel
*channel
;
61 channel
= si
->si_value
.sival_ptr
;
64 if (channel
->switch_timer_error
) {
68 DBG("Switch timer for channel %" PRIu64
, channel
->key
);
70 case LTTNG_CONSUMER32_UST
:
71 case LTTNG_CONSUMER64_UST
:
72 ret
= lttng_ustconsumer_request_metadata(ctx
, channel
);
74 channel
->switch_timer_error
= 1;
77 case LTTNG_CONSUMER_KERNEL
:
78 case LTTNG_CONSUMER_UNKNOWN
:
85 * Set the timer for periodical metadata flush.
86 * Should be called only from the recv cmd thread (single thread ensures
89 void consumer_timer_switch_start(struct lttng_consumer_channel
*channel
,
90 unsigned int switch_timer_interval
)
94 struct itimerspec its
;
99 if (switch_timer_interval
== 0) {
103 sev
.sigev_notify
= SIGEV_SIGNAL
;
104 sev
.sigev_signo
= LTTNG_CONSUMER_SIG_SWITCH
;
105 sev
.sigev_value
.sival_ptr
= channel
;
106 ret
= timer_create(CLOCKID
, &sev
, &channel
->switch_timer
);
108 PERROR("timer_create");
110 channel
->switch_timer_enabled
= 1;
112 its
.it_value
.tv_sec
= switch_timer_interval
/ 1000000;
113 its
.it_value
.tv_nsec
= switch_timer_interval
% 1000000;
114 its
.it_interval
.tv_sec
= its
.it_value
.tv_sec
;
115 its
.it_interval
.tv_nsec
= its
.it_value
.tv_nsec
;
117 ret
= timer_settime(channel
->switch_timer
, 0, &its
, NULL
);
119 PERROR("timer_settime");
124 * Stop and delete timer.
125 * Should be called only from the recv cmd thread (single thread ensures
128 void consumer_timer_switch_stop(struct lttng_consumer_channel
*channel
)
131 sigset_t pending_set
;
135 ret
= timer_delete(channel
->switch_timer
);
137 PERROR("timer_delete");
140 /* Ensure we don't have any signal queued for this channel. */
142 ret
= sigemptyset(&pending_set
);
144 PERROR("sigemptyset");
146 ret
= sigpending(&pending_set
);
148 PERROR("sigpending");
150 if (!sigismember(&pending_set
, LTTNG_CONSUMER_SIG_SWITCH
)) {
157 * From this point, no new signal handler will be fired that would try to
158 * access "chan". However, we still need to wait for any currently
159 * executing handler to complete.
162 CMM_STORE_SHARED(timer_signal
.qs_done
, 0);
166 * Kill with LTTNG_CONSUMER_SIG_TEARDOWN, so signal management thread wakes
169 kill(getpid(), LTTNG_CONSUMER_SIG_TEARDOWN
);
171 while (!CMM_LOAD_SHARED(timer_signal
.qs_done
)) {
178 * Block the RT signals for the entire process. It must be called from the
179 * consumer main before creating the threads
181 void consumer_signal_init(void)
186 /* Block signal for entire process, so only our thread processes it. */
188 ret
= pthread_sigmask(SIG_BLOCK
, &mask
, NULL
);
191 PERROR("pthread_sigmask");
196 * This thread is the sighandler for signals LTTNG_CONSUMER_SIG_SWITCH and
197 * LTTNG_CONSUMER_SIG_TEARDOWN that are emitted by the periodic timer to check
198 * if new metadata is available.
200 void *consumer_timer_metadata_thread(void *data
)
205 struct lttng_consumer_local_data
*ctx
= data
;
207 /* Only self thread will receive signal mask. */
209 CMM_STORE_SHARED(timer_signal
.tid
, pthread_self());
212 signr
= sigwaitinfo(&mask
, &info
);
214 if (errno
!= EINTR
) {
215 PERROR("sigwaitinfo");
218 } else if (signr
== LTTNG_CONSUMER_SIG_SWITCH
) {
219 metadata_switch_timer(ctx
, info
.si_signo
, &info
, NULL
);
220 } else if (signr
== LTTNG_CONSUMER_SIG_TEARDOWN
) {
222 CMM_STORE_SHARED(timer_signal
.qs_done
, 1);
224 DBG("Signal timer metadata thread teardown");
226 ERR("Unexpected signal %d\n", info
.si_signo
);