rotate timer ready, need UI/API
[deliverable/lttng-tools.git] / src / bin / lttng-sessiond / rotation-thread.c
CommitLineData
6e0be6cc
JD
1/*
2 * Copyright (C) 2017 - Julien Desfossez <jdesfossez@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#define _LGPL_SOURCE
19#include <lttng/trigger/trigger.h>
20#include <common/error.h>
21#include <common/config/session-config.h>
22#include <common/defaults.h>
23#include <common/utils.h>
24#include <common/futex.h>
25#include <common/align.h>
26#include <common/time.h>
27#include <common/hashtable/utils.h>
28#include <sys/eventfd.h>
29#include <sys/stat.h>
30#include <time.h>
31#include <signal.h>
32#include <inttypes.h>
33
34#include <common/kernel-ctl/kernel-ctl.h>
35#include "rotation-thread.h"
36#include "lttng-sessiond.h"
37#include "health-sessiond.h"
e8ed1ed1 38#include "rotate.h"
6e0be6cc 39#include "cmd.h"
0d2ff20e 40#include "sessiond-timer.h"
6e0be6cc
JD
41
42#include <urcu.h>
43#include <urcu/list.h>
44#include <urcu/rculfhash.h>
45
46struct cds_lfht *channel_pending_rotate_ht;
47
6e0be6cc
JD
48static
49void channel_rotation_info_destroy(struct rotation_channel_info *channel_info)
50{
51 assert(channel_info);
52 free(channel_info);
53}
54
6e0be6cc
JD
55static
56int match_channel_info(struct cds_lfht_node *node, const void *key)
57{
58 struct rotation_channel_key *channel_key = (struct rotation_channel_key *) key;
59 struct rotation_channel_info *channel_info;
60
61 channel_info = caa_container_of(node, struct rotation_channel_info,
62 rotate_channels_ht_node);
63
64 return !!((channel_key->key == channel_info->channel_key.key) &&
65 (channel_key->domain == channel_info->channel_key.domain));
66}
67
68static
69struct rotation_channel_info *lookup_channel_pending(uint64_t key,
70 enum lttng_domain_type domain)
71{
72 struct cds_lfht_iter iter;
73 struct cds_lfht_node *node;
74 struct rotation_channel_info *channel_info = NULL;
75 struct rotation_channel_key channel_key = { .key = key,
76 .domain = domain };
77
78 cds_lfht_lookup(channel_pending_rotate_ht,
79 hash_channel_key(&channel_key),
80 match_channel_info,
81 &channel_key, &iter);
82 node = cds_lfht_iter_get_node(&iter);
83 if (!node) {
84 goto end;
85 }
86
87 channel_info = caa_container_of(node, struct rotation_channel_info,
88 rotate_channels_ht_node);
89 cds_lfht_del(channel_pending_rotate_ht, node);
90end:
91 return channel_info;
92}
93
94/*
95 * Destroy the thread data previously created by the init function.
96 */
97void rotation_thread_handle_destroy(
98 struct rotation_thread_handle *handle)
99{
100 int ret;
101
102 if (!handle) {
103 goto end;
104 }
105
106 if (handle->ust32_consumer >= 0) {
107 ret = close(handle->ust32_consumer);
108 if (ret) {
109 PERROR("close 32-bit consumer channel rotation pipe");
110 }
111 }
112 if (handle->ust64_consumer >= 0) {
113 ret = close(handle->ust64_consumer);
114 if (ret) {
115 PERROR("close 64-bit consumer channel rotation pipe");
116 }
117 }
118 if (handle->kernel_consumer >= 0) {
119 ret = close(handle->kernel_consumer);
120 if (ret) {
121 PERROR("close kernel consumer channel rotation pipe");
122 }
123 }
124
125end:
126 free(handle);
127}
128
129struct rotation_thread_handle *rotation_thread_handle_create(
130 struct lttng_pipe *ust32_channel_rotate_pipe,
131 struct lttng_pipe *ust64_channel_rotate_pipe,
132 struct lttng_pipe *kernel_channel_rotate_pipe,
55c2a7f9 133 int thread_quit_pipe, int rotate_timer_pipe)
6e0be6cc
JD
134{
135 struct rotation_thread_handle *handle;
136
137 handle = zmalloc(sizeof(*handle));
138 if (!handle) {
139 goto end;
140 }
141
142 if (ust32_channel_rotate_pipe) {
143 handle->ust32_consumer =
144 lttng_pipe_release_readfd(
145 ust32_channel_rotate_pipe);
146 if (handle->ust32_consumer < 0) {
147 goto error;
148 }
149 } else {
150 handle->ust32_consumer = -1;
151 }
152 if (ust64_channel_rotate_pipe) {
153 handle->ust64_consumer =
154 lttng_pipe_release_readfd(
155 ust64_channel_rotate_pipe);
156 if (handle->ust64_consumer < 0) {
157 goto error;
158 }
159 } else {
160 handle->ust64_consumer = -1;
161 }
162 if (kernel_channel_rotate_pipe) {
163 handle->kernel_consumer =
164 lttng_pipe_release_readfd(
165 kernel_channel_rotate_pipe);
166 if (handle->kernel_consumer < 0) {
167 goto error;
168 }
169 } else {
170 handle->kernel_consumer = -1;
171 }
172 handle->thread_quit_pipe = thread_quit_pipe;
55c2a7f9 173 handle->rotate_timer_pipe = rotate_timer_pipe;
6e0be6cc
JD
174
175end:
176 return handle;
177error:
178 rotation_thread_handle_destroy(handle);
179 return NULL;
180}
181
182static
183int init_poll_set(struct lttng_poll_event *poll_set,
184 struct rotation_thread_handle *handle)
185{
186 int ret;
187
188 /*
55c2a7f9 189 * Create pollset with size 5:
6e0be6cc
JD
190 * - sessiond quit pipe
191 * - consumerd (32-bit user space) channel rotate pipe,
192 * - consumerd (64-bit user space) channel rotate pipe,
193 * - consumerd (kernel) channel rotate pipe.
55c2a7f9 194 * - sessiond rotate pending pipe
6e0be6cc 195 */
55c2a7f9 196 ret = lttng_poll_create(poll_set, 5, LTTNG_CLOEXEC);
6e0be6cc
JD
197 if (ret < 0) {
198 goto end;
199 }
200
201 ret = lttng_poll_add(poll_set, handle->thread_quit_pipe,
202 LPOLLIN | LPOLLERR);
203 if (ret < 0) {
204 ERR("[rotation-thread] Failed to add thread_quit_pipe fd to pollset");
205 goto error;
206 }
55c2a7f9
JD
207 ret = lttng_poll_add(poll_set, handle->rotate_timer_pipe,
208 LPOLLIN | LPOLLERR);
209 if (ret < 0) {
210 ERR("[rotation-thread] Failed to add rotate_pending fd to pollset");
211 goto error;
212 }
6e0be6cc
JD
213 ret = lttng_poll_add(poll_set, handle->ust32_consumer,
214 LPOLLIN | LPOLLERR);
215 if (ret < 0) {
216 ERR("[rotation-thread] Failed to add ust-32 channel rotation pipe fd to pollset");
217 goto error;
218 }
219 ret = lttng_poll_add(poll_set, handle->ust64_consumer,
220 LPOLLIN | LPOLLERR);
221 if (ret < 0) {
222 ERR("[rotation-thread] Failed to add ust-64 channel rotation pipe fd to pollset");
223 goto error;
224 }
225 if (handle->kernel_consumer < 0) {
226 goto end;
227 }
228 ret = lttng_poll_add(poll_set, handle->kernel_consumer,
229 LPOLLIN | LPOLLERR);
230 if (ret < 0) {
231 ERR("[rotation-thread] Failed to add kernel channel rotation pipe fd to pollset");
232 goto error;
233 }
234
235end:
236 return ret;
237error:
238 lttng_poll_clean(poll_set);
239 return ret;
240}
241
242static
243void fini_thread_state(struct rotation_thread_state *state)
244{
245 lttng_poll_clean(&state->events);
246}
247
248static
249int init_thread_state(struct rotation_thread_handle *handle,
250 struct rotation_thread_state *state)
251{
252 int ret;
253
254 memset(state, 0, sizeof(*state));
255 lttng_poll_init(&state->events);
256
257 ret = init_poll_set(&state->events, handle);
258 if (ret) {
259 goto end;
260 }
261
262 channel_pending_rotate_ht = cds_lfht_new(DEFAULT_HT_SIZE,
263 1, 0, CDS_LFHT_AUTO_RESIZE | CDS_LFHT_ACCOUNTING, NULL);
264 if (!channel_pending_rotate_ht) {
265 ret = -1;
266 }
267
268end:
269 return 0;
270}
271
6e0be6cc
JD
272static
273int handle_channel_rotation_pipe(int fd, uint32_t revents,
274 struct rotation_thread_handle *handle,
275 struct rotation_thread_state *state)
276{
277 int ret = 0;
278 enum lttng_domain_type domain;
279 struct rotation_channel_info *channel_info;
280 uint64_t key;
281
282 if (fd == handle->ust32_consumer ||
283 fd == handle->ust64_consumer) {
284 domain = LTTNG_DOMAIN_UST;
285 } else if (fd == handle->kernel_consumer) {
286 domain = LTTNG_DOMAIN_KERNEL;
287 } else {
288 abort();
289 }
290
291 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
292 ret = lttng_poll_del(&state->events, fd);
293 if (ret) {
103373d7
JD
294 ERR("[rotation-thread] Failed to remove consumer "
295 "rotation pipe from poll set");
6e0be6cc
JD
296 }
297 goto end;
298 }
299
300 do {
301 ret = read(fd, &key, sizeof(key));
302 } while (ret == -1 && errno == EINTR);
303 if (ret != sizeof(key)) {
304 ERR("[rotation-thread] Failed to read from pipe (fd = %i)",
305 fd);
306 ret = -1;
307 goto end;
308 }
309
310 DBG("[rotation-thread] Received notification for chan %" PRIu64
311 ", domain %d\n", key, domain);
312
313 channel_info = lookup_channel_pending(key, domain);
314 if (!channel_info) {
315 ERR("[rotation-thread] Failed to find channel_info (key = %"
316 PRIu64 ")", key);
317 ret = -1;
318 goto end;
319 }
320
321 if (--channel_info->session->nr_chan_rotate_pending == 0) {
322 time_t now = time(NULL);
323
324 if (now == (time_t) -1) {
4a478f45 325 channel_info->session->rotate_status = LTTNG_ROTATE_ERROR;
6e0be6cc
JD
326 ret = LTTNG_ERR_ROTATE_NOT_AVAILABLE;
327 goto end;
328 }
329
330 ret = rename_complete_chunk(channel_info->session, now);
331 if (ret < 0) {
332 ERR("Failed to rename completed rotation chunk");
333 goto end;
334 }
d3dedf27 335 channel_info->session->rotate_pending = false;
0d2ff20e
JD
336 if (channel_info->session->rotate_pending_relay) {
337 ret = sessiond_timer_rotate_pending_start(
1b58b7f5
JD
338 channel_info->session,
339 DEFAULT_ROTATE_PENDING_RELAY_TIMER);
0d2ff20e
JD
340 if (ret) {
341 ERR("Enabling rotate pending timer");
342 ret = -1;
343 goto end;
344 }
345 }
6e0be6cc
JD
346 }
347
348 channel_rotation_info_destroy(channel_info);
349
350 ret = 0;
351
352end:
353 return ret;
354}
355
06e13874
JD
356static
357int rotate_pending_relay_timer(struct ltt_session *session)
358{
359 int ret;
360
361 DBG("[rotation-thread] Check rotate pending on session %" PRIu64,
362 session->id);
363 ret = relay_rotate_pending(session, session->rotate_count - 1);
364 if (ret < 0) {
365 ERR("[rotation-thread] Check relay rotate pending");
366 goto end;
367 }
368 if (ret == 0) {
369 DBG("[rotation-thread] Rotation completed on the relay for "
370 "session %" PRIu64, session->id);
371 /*
372 * Stop the timer and clear the queue, the timers are currently
373 * ignored because of the rotate_pending_relay_check_in_progress
374 * flag.
375 */
376 sessiond_timer_rotate_pending_stop(session);
377 /*
378 * Now we can clear the pending flag in the session. New
379 * rotations can start now.
380 */
381 session->rotate_pending_relay = false;
382 } else if (ret == 1) {
383 DBG("[rotation-thread] Rotation still pending on the relay for "
384 "session %" PRIu64, session->id);
385 }
386 /*
387 * Allow the timer thread to send other notifications when needed.
388 */
389 session->rotate_pending_relay_check_in_progress = false;
390 fprintf(stderr, "RET PENDING: %d\n", ret);
391
392 ret = 0;
393
394end:
395 return ret;
396}
397
398static
399int rotate_timer(struct ltt_session *session)
400{
401 int ret;
402
403 DBG("[rotation-thread] Rotate timer on session %" PRIu64, session->id);
404 ret = cmd_rotate_session(session, NULL);
405 fprintf(stderr, "RET ROTATE TIMER: %d\n", ret);
406
407 return ret;
408}
409
55c2a7f9
JD
410static
411int handle_rotate_timer_pipe(int fd, uint32_t revents,
412 struct rotation_thread_handle *handle,
413 struct rotation_thread_state *state)
414{
415 int ret = 0;
55c2a7f9 416 struct ltt_session *session;
06e13874 417 struct sessiond_rotation_timer timer_data;
55c2a7f9
JD
418
419 if (revents & (LPOLLERR | LPOLLHUP | LPOLLRDHUP)) {
420 ret = lttng_poll_del(&state->events, fd);
421 if (ret) {
422 ERR("[rotation-thread] Failed to remove consumer "
423 "rotate pending pipe from poll set");
424 }
425 goto end;
426 }
427
06e13874
JD
428 memset(&timer_data, 0, sizeof(struct sessiond_rotation_timer));
429
55c2a7f9 430 do {
06e13874 431 ret = read(fd, &timer_data, sizeof(timer_data));
55c2a7f9 432 } while (ret == -1 && errno == EINTR);
06e13874 433 if (ret != sizeof(timer_data)) {
55c2a7f9
JD
434 ERR("[rotation-thread] Failed to read from pipe (fd = %i)",
435 fd);
436 ret = -1;
437 goto end;
438 }
439
06e13874 440 session = session_find_by_id(timer_data.session_id);
55c2a7f9
JD
441 if (!session) {
442 ERR("[rotation-thread] Session %" PRIu64 " not found",
06e13874 443 timer_data.session_id);
55c2a7f9
JD
444 ret = -1;
445 goto end;
446 }
447
06e13874
JD
448 if (timer_data.signal == LTTNG_SESSIOND_SIG_ROTATE_PENDING) {
449 ret = rotate_pending_relay_timer(session);
450 } else if (timer_data.signal == LTTNG_SESSIOND_SIG_ROTATE_TIMER) {
451 ret = rotate_timer(session);
452 } else {
453 ERR("Unknown signal in rotate timer");
454 ret = -1;
55c2a7f9 455 }
55c2a7f9
JD
456
457end:
458 return ret;
459}
460
6e0be6cc
JD
461void *thread_rotation(void *data)
462{
463 int ret;
464 struct rotation_thread_handle *handle = data;
465 struct rotation_thread_state state;
466
467 DBG("[rotation-thread] Started rotation thread");
468
469 if (!handle) {
470 ERR("[rotation-thread] Invalid thread context provided");
471 goto end;
472 }
473
474 rcu_register_thread();
475 rcu_thread_online();
476
477 health_register(health_sessiond, HEALTH_SESSIOND_TYPE_ROTATION);
478 health_code_update();
479
480 ret = init_thread_state(handle, &state);
481 if (ret) {
482 goto end;
483 }
484
485 /* Ready to handle client connections. */
486 sessiond_notify_ready();
487
488 while (true) {
489 int fd_count, i;
490
491 health_poll_entry();
492 DBG("[rotation-thread] Entering poll wait");
493 ret = lttng_poll_wait(&state.events, -1);
494 DBG("[rotation-thread] Poll wait returned (%i)", ret);
495 health_poll_exit();
496 if (ret < 0) {
497 /*
498 * Restart interrupted system call.
499 */
500 if (errno == EINTR) {
501 continue;
502 }
503 ERR("[rotation-thread] Error encountered during lttng_poll_wait (%i)", ret);
504 goto error;
505 }
506
507 fd_count = ret;
508 for (i = 0; i < fd_count; i++) {
509 int fd = LTTNG_POLL_GETFD(&state.events, i);
510 uint32_t revents = LTTNG_POLL_GETEV(&state.events, i);
511
512 DBG("[rotation-thread] Handling fd (%i) activity (%u)",
513 fd, revents);
514
515 if (fd == handle->thread_quit_pipe) {
516 DBG("[rotation-thread] Quit pipe activity");
517 goto exit;
55c2a7f9
JD
518 } else if (fd == handle->rotate_timer_pipe) {
519 ret = handle_rotate_timer_pipe(fd, revents,
520 handle, &state);
521 if (ret) {
06e13874 522 ERR("[rotation-thread] Rotate timer");
55c2a7f9
JD
523 goto error;
524 }
6e0be6cc
JD
525 } else if (fd == handle->ust32_consumer ||
526 fd == handle->ust64_consumer ||
527 fd == handle->kernel_consumer) {
528 ret = handle_channel_rotation_pipe(fd,
529 revents, handle, &state);
530 if (ret) {
531 ERR("[rotation-thread] Exit main loop");
532 goto error;
533 }
534 }
535 }
536 }
537exit:
538error:
539 fini_thread_state(&state);
540 health_unregister(health_sessiond);
541 rcu_thread_offline();
542 rcu_unregister_thread();
543end:
544 return NULL;
545}
This page took 0.046114 seconds and 5 git commands to generate.