Revert "sessiond: trigger: run trigger actions through an action executor"
[lttng-tools.git] / src / lib / lttng-ctl / rotate.c
CommitLineData
d68c9a04 1/*
ab5be9fa 2 * Copyright (C) 2017 Julien Desfossez <jdesfossez@efficios.com>
d68c9a04 3 *
ab5be9fa 4 * SPDX-License-Identifier: LGPL-2.1-only
d68c9a04 5 *
d68c9a04
JD
6 */
7
8#define _LGPL_SOURCE
9#include <assert.h>
10#include <string.h>
11
12#include <lttng/lttng-error.h>
13#include <lttng/rotation.h>
dd73d57b 14#include <lttng/location-internal.h>
d68c9a04
JD
15#include <lttng/rotate-internal.h>
16#include <common/sessiond-comm/sessiond-comm.h>
17#include <common/macros.h>
18
19#include "lttng-ctl-helper.h"
20
d68c9a04
JD
21static
22enum lttng_rotation_status ask_rotation_info(
23 struct lttng_rotation_handle *rotation_handle,
24 struct lttng_rotation_get_info_return **info)
25{
26 /* lsm.get_rotation_state.rotation_id */
27 struct lttcomm_session_msg lsm;
28 enum lttng_rotation_status status = LTTNG_ROTATION_STATUS_OK;
29 int ret;
30
31 if (!rotation_handle || !info) {
32 status = LTTNG_ROTATION_STATUS_INVALID;
33 goto end;
34 }
35
36 memset(&lsm, 0, sizeof(lsm));
37 lsm.cmd_type = LTTNG_ROTATION_GET_INFO;
38 lsm.u.get_rotation_info.rotation_id = rotation_handle->rotation_id;
39
40 ret = lttng_strncpy(lsm.session.name, rotation_handle->session_name,
41 sizeof(lsm.session.name));
42 if (ret) {
43 status = LTTNG_ROTATION_STATUS_INVALID;
44 goto end;
45 }
46
47 ret = lttng_ctl_ask_sessiond(&lsm, (void **) info);
48 if (ret < 0) {
49 status = LTTNG_ROTATION_STATUS_ERROR;
50 goto end;
51 }
52end:
53 return status;
54
55}
56
dd73d57b
JG
57static
58struct lttng_trace_archive_location *
59create_trace_archive_location_from_get_info(
60 const struct lttng_rotation_get_info_return *info)
61{
62 struct lttng_trace_archive_location *location;
63
64 switch (info->location_type) {
65 case LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_LOCAL:
66 location = lttng_trace_archive_location_local_create(
67 info->location.local.absolute_path);
68 break;
69 case LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_RELAY:
70 location = lttng_trace_archive_location_relay_create(
71 info->location.relay.host,
72 info->location.relay.protocol,
73 info->location.relay.ports.control,
74 info->location.relay.ports.data,
75 info->location.relay.relative_path);
76 break;
77 default:
78 location = NULL;
79 break;
80 }
81 return location;
82}
83
d68c9a04
JD
84enum lttng_rotation_status lttng_rotation_handle_get_state(
85 struct lttng_rotation_handle *rotation_handle,
86 enum lttng_rotation_state *state)
87{
88 enum lttng_rotation_status status = LTTNG_ROTATION_STATUS_OK;
89 struct lttng_rotation_get_info_return *info = NULL;
d68c9a04
JD
90
91 if (!rotation_handle || !state) {
92 status = LTTNG_ROTATION_STATUS_INVALID;
93 goto end;
94 }
95
96 status = ask_rotation_info(rotation_handle, &info);
97 if (status != LTTNG_ROTATION_STATUS_OK) {
98 goto end;
99 }
100
101 *state = (enum lttng_rotation_state) info->status;
dd73d57b 102 if (rotation_handle->archive_location ||
d68c9a04
JD
103 *state != LTTNG_ROTATION_STATE_COMPLETED) {
104 /*
105 * The path is only provided by the sessiond once
106 * the session rotation is completed, but not expired.
107 */
108 goto end;
109 }
110
111 /*
112 * Cache the location since the rotation may expire before the user
113 * has a chance to query it.
114 */
dd73d57b
JG
115 rotation_handle->archive_location =
116 create_trace_archive_location_from_get_info(info);
117 if (!rotation_handle->archive_location) {
d68c9a04
JD
118 status = LTTNG_ROTATION_STATUS_ERROR;
119 goto end;
120 }
d68c9a04
JD
121end:
122 free(info);
123 return status;
124}
125
dd73d57b 126enum lttng_rotation_status lttng_rotation_handle_get_archive_location(
d68c9a04 127 struct lttng_rotation_handle *rotation_handle,
dd73d57b 128 const struct lttng_trace_archive_location **location)
d68c9a04 129{
d68c9a04
JD
130 enum lttng_rotation_status status = LTTNG_ROTATION_STATUS_OK;
131 struct lttng_rotation_get_info_return *info = NULL;
132
dd73d57b 133 if (!rotation_handle || !location) {
d68c9a04
JD
134 status = LTTNG_ROTATION_STATUS_INVALID;
135 goto end;
136 }
137
138 /* Use the cached location we got from a previous query. */
dd73d57b
JG
139 if (rotation_handle->archive_location) {
140 *location = rotation_handle->archive_location;
d68c9a04
JD
141 goto end;
142 }
143
144 status = ask_rotation_info(rotation_handle, &info);
145 if (status != LTTNG_ROTATION_STATUS_OK) {
146 goto end;
147 }
148
149 if ((enum lttng_rotation_state) info->status !=
150 LTTNG_ROTATION_STATE_COMPLETED) {
151 status = LTTNG_ROTATION_STATUS_UNAVAILABLE;
152 goto end;
153 }
154
dd73d57b
JG
155 rotation_handle->archive_location =
156 create_trace_archive_location_from_get_info(info);
157 if (!rotation_handle->archive_location) {
d68c9a04
JD
158 status = LTTNG_ROTATION_STATUS_ERROR;
159 goto end;
160 }
d68c9a04
JD
161end:
162 free(info);
163 return status;
164}
165
166void lttng_rotation_handle_destroy(
167 struct lttng_rotation_handle *rotation_handle)
168{
06b180a1
JR
169 if (!rotation_handle) {
170 return;
171 }
dd73d57b 172 lttng_trace_archive_location_destroy(rotation_handle->archive_location);
d68c9a04
JD
173 free(rotation_handle);
174}
175
176static
177int init_rotation_handle(struct lttng_rotation_handle *rotation_handle,
dbd512ea 178 const char *session_name,
66ea93b1 179 struct lttng_rotate_session_return *rotate_return)
d68c9a04
JD
180{
181 int ret;
182
dbd512ea 183 ret = lttng_strncpy(rotation_handle->session_name, session_name,
d68c9a04
JD
184 sizeof(rotation_handle->session_name));
185 if (ret) {
186 goto end;
187 }
188
189 rotation_handle->rotation_id = rotate_return->rotation_id;
190end:
191 return ret;
192}
193
194/*
195 * Rotate the output folder of the session.
196 *
197 * Return 0 on success else a negative LTTng error code.
198 */
dbd512ea 199int lttng_rotate_session(const char *session_name,
66ea93b1 200 struct lttng_rotation_immediate_descriptor *descriptor,
d68c9a04
JD
201 struct lttng_rotation_handle **rotation_handle)
202{
203 struct lttcomm_session_msg lsm;
204 struct lttng_rotate_session_return *rotate_return = NULL;
205 int ret;
dbd512ea 206 size_t session_name_len;
d68c9a04 207
dbd512ea
JG
208 if (!session_name) {
209 ret = -LTTNG_ERR_INVALID;
210 goto end;
211 }
212
213 session_name_len = strlen(session_name);
214 if (session_name_len >= sizeof(lsm.session.name) ||
215 session_name_len >= member_sizeof(struct lttng_rotation_handle, session_name)) {
d68c9a04
JD
216 ret = -LTTNG_ERR_INVALID;
217 goto end;
218 }
219
220 memset(&lsm, 0, sizeof(lsm));
221 lsm.cmd_type = LTTNG_ROTATE_SESSION;
dbd512ea 222 lttng_ctl_copy_string(lsm.session.name, session_name,
d68c9a04
JD
223 sizeof(lsm.session.name));
224
225 ret = lttng_ctl_ask_sessiond(&lsm, (void **) &rotate_return);
1320cab1 226 if (ret <= 0) {
d68c9a04
JD
227 *rotation_handle = NULL;
228 goto end;
229 }
230
231 *rotation_handle = zmalloc(sizeof(struct lttng_rotation_handle));
232 if (!*rotation_handle) {
233 ret = -LTTNG_ERR_NOMEM;
234 goto end;
235 }
236
66ea93b1 237 init_rotation_handle(*rotation_handle, session_name, rotate_return);
d68c9a04
JD
238
239 ret = 0;
240
241end:
242 free(rotate_return);
243 return ret;
244}
259c2674
JD
245
246/*
66ea93b1
JG
247 * Update the automatic rotation parameters.
248 * 'add' as true enables the provided schedule, false removes the shedule.
249 *
250 * The external API makes it appear as though arbitrary schedules can
251 * be added or removed at will. However, the session daemon is
252 * currently limited to one schedule per type (per session).
253 *
254 * The additional flexibility of the public API is offered for future
255 * rotation schedules that could indicate more precise criteria than
256 * size and time (e.g. a domain) where it could make sense to add
257 * multiple schedules of a given type to a session.
258 *
259 * Hence, the exact schedule that the user wishes to remove (and not
260 * just its type) must be passed so that the session daemon can
261 * validate that is exists before clearing it.
259c2674 262 */
66ea93b1
JG
263static
264enum lttng_rotation_status lttng_rotation_update_schedule(
265 const char *session_name,
266 const struct lttng_rotation_schedule *schedule,
267 bool add)
259c2674
JD
268{
269 struct lttcomm_session_msg lsm;
66ea93b1 270 enum lttng_rotation_status status = LTTNG_ROTATION_STATUS_OK;
259c2674
JD
271 int ret;
272
66ea93b1
JG
273 if (!session_name || !schedule) {
274 status = LTTNG_ROTATION_STATUS_INVALID;
dbd512ea
JG
275 goto end;
276 }
277
278 if (strlen(session_name) >= sizeof(lsm.session.name)) {
66ea93b1 279 status = LTTNG_ROTATION_STATUS_INVALID;
259c2674
JD
280 goto end;
281 }
282
283 memset(&lsm, 0, sizeof(lsm));
284 lsm.cmd_type = LTTNG_ROTATION_SET_SCHEDULE;
dbd512ea 285 lttng_ctl_copy_string(lsm.session.name, session_name,
259c2674 286 sizeof(lsm.session.name));
66ea93b1
JG
287
288 lsm.u.rotation_set_schedule.type = (uint32_t) schedule->type;
289 switch (schedule->type) {
290 case LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD:
291 {
7370c955
JG
292 uint64_t threshold;
293
66ea93b1 294 status = lttng_rotation_schedule_size_threshold_get_threshold(
7370c955 295 schedule, &threshold);
66ea93b1 296 if (status != LTTNG_ROTATION_STATUS_OK) {
ed9f1fb2
JG
297 if (status == LTTNG_ROTATION_STATUS_UNAVAILABLE) {
298 status = LTTNG_ROTATION_STATUS_INVALID;
299 }
66ea93b1
JG
300 goto end;
301 }
7370c955 302 lsm.u.rotation_set_schedule.value = threshold;
66ea93b1
JG
303 lsm.u.rotation_set_schedule.set = !!add;
304 break;
305 }
306 case LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC:
307 {
7370c955
JG
308 uint64_t period;
309
66ea93b1 310 status = lttng_rotation_schedule_periodic_get_period(
7370c955 311 schedule, &period);
66ea93b1 312 if (status != LTTNG_ROTATION_STATUS_OK) {
ed9f1fb2
JG
313 if (status == LTTNG_ROTATION_STATUS_UNAVAILABLE) {
314 status = LTTNG_ROTATION_STATUS_INVALID;
315 }
66ea93b1
JG
316 goto end;
317 }
7370c955 318 lsm.u.rotation_set_schedule.value = period;
66ea93b1
JG
319 lsm.u.rotation_set_schedule.set = !!add;
320 break;
321 }
322 default:
323 status = LTTNG_ROTATION_STATUS_INVALID;
324 goto end;
325 }
259c2674
JD
326
327 ret = lttng_ctl_ask_sessiond(&lsm, NULL);
66ea93b1
JG
328 if (ret >= 0) {
329 goto end;
330 }
331
332 switch (-ret) {
333 case LTTNG_ERR_ROTATION_SCHEDULE_SET:
334 status = LTTNG_ROTATION_STATUS_SCHEDULE_ALREADY_SET;
335 break;
336 case LTTNG_ERR_ROTATION_SCHEDULE_NOT_SET:
337 status = LTTNG_ROTATION_STATUS_INVALID;
338 break;
339 default:
340 status = LTTNG_ROTATION_STATUS_ERROR;
341 }
259c2674 342end:
66ea93b1
JG
343 return status;
344}
345
346static
347struct lttng_rotation_schedules *lttng_rotation_schedules_create(void)
348{
349 return zmalloc(sizeof(struct lttng_rotation_schedules));
259c2674 350}
329f3443 351
66ea93b1
JG
352static
353void lttng_schedules_add(struct lttng_rotation_schedules *schedules,
354 struct lttng_rotation_schedule *schedule)
355{
356 schedules->schedules[schedules->count++] = schedule;
357}
358
359static
360int get_schedules(const char *session_name,
361 struct lttng_rotation_schedules **_schedules)
329f3443 362{
329f3443 363 int ret;
66ea93b1 364 struct lttcomm_session_msg lsm;
25357057 365 struct lttng_session_list_schedules_return *schedules_comm = NULL;
66ea93b1
JG
366 struct lttng_rotation_schedules *schedules = NULL;
367 struct lttng_rotation_schedule *periodic = NULL, *size = NULL;
329f3443
JD
368
369 memset(&lsm, 0, sizeof(lsm));
66ea93b1 370 lsm.cmd_type = LTTNG_SESSION_LIST_ROTATION_SCHEDULES;
329f3443
JD
371 lttng_ctl_copy_string(lsm.session.name, session_name,
372 sizeof(lsm.session.name));
373
66ea93b1 374 ret = lttng_ctl_ask_sessiond(&lsm, (void **) &schedules_comm);
329f3443 375 if (ret < 0) {
329f3443
JD
376 goto end;
377 }
378
66ea93b1
JG
379 schedules = lttng_rotation_schedules_create();
380 if (!schedules) {
381 ret = -LTTNG_ERR_NOMEM;
382 goto end;
383 }
384
385 if (schedules_comm->periodic.set == 1) {
386 enum lttng_rotation_status status;
387
388 periodic = lttng_rotation_schedule_periodic_create();
389 if (!periodic) {
390 ret = -LTTNG_ERR_NOMEM;
391 goto end;
392 }
393
394 status = lttng_rotation_schedule_periodic_set_period(
395 periodic, schedules_comm->periodic.value);
396 if (status != LTTNG_ROTATION_STATUS_OK) {
397 /*
398 * This would imply that the session daemon returned
399 * an invalid periodic rotation schedule value.
400 */
401 ret = -LTTNG_ERR_UNK;
402 goto end;
403 }
404
405 lttng_schedules_add(schedules, periodic);
406 periodic = NULL;
407 }
408
409 if (schedules_comm->size.set == 1) {
410 enum lttng_rotation_status status;
411
412 size = lttng_rotation_schedule_size_threshold_create();
413 if (!size) {
414 ret = -LTTNG_ERR_NOMEM;
415 goto end;
416 }
417
418 status = lttng_rotation_schedule_size_threshold_set_threshold(
419 size, schedules_comm->size.value);
420 if (status != LTTNG_ROTATION_STATUS_OK) {
421 /*
422 * This would imply that the session daemon returned
423 * an invalid size threshold schedule value.
424 */
425 ret = -LTTNG_ERR_UNK;
426 goto end;
427 }
428
429 lttng_schedules_add(schedules, size);
430 size = NULL;
431 }
432
433 ret = LTTNG_OK;
329f3443 434end:
66ea93b1
JG
435 free(schedules_comm);
436 free(periodic);
437 free(size);
438 *_schedules = schedules;
329f3443
JD
439 return ret;
440}
441
66ea93b1
JG
442enum lttng_rotation_schedule_type lttng_rotation_schedule_get_type(
443 const struct lttng_rotation_schedule *schedule)
329f3443 444{
66ea93b1
JG
445 return schedule ? schedule->type : LTTNG_ROTATION_SCHEDULE_TYPE_UNKNOWN;
446}
329f3443 447
66ea93b1
JG
448struct lttng_rotation_schedule *
449lttng_rotation_schedule_size_threshold_create(void)
450{
451 struct lttng_rotation_schedule_size_threshold *schedule;
329f3443 452
66ea93b1
JG
453 schedule = zmalloc(sizeof(*schedule));
454 if (!schedule) {
329f3443
JD
455 goto end;
456 }
457
66ea93b1
JG
458 schedule->parent.type = LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD;
459end:
460 return &schedule->parent;
461}
462
463enum lttng_rotation_status
464lttng_rotation_schedule_size_threshold_get_threshold(
465 const struct lttng_rotation_schedule *schedule,
466 uint64_t *size_threshold_bytes)
467{
468 enum lttng_rotation_status status = LTTNG_ROTATION_STATUS_OK;
469 struct lttng_rotation_schedule_size_threshold *size_schedule;
329f3443 470
ed9f1fb2
JG
471 if (!schedule || !size_threshold_bytes ||
472 schedule->type != LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD) {
66ea93b1
JG
473 status = LTTNG_ROTATION_STATUS_INVALID;
474 goto end;
475 }
476
477 size_schedule = container_of(schedule,
478 struct lttng_rotation_schedule_size_threshold,
479 parent);
480 if (size_schedule->size.set) {
481 *size_threshold_bytes = size_schedule->size.bytes;
482 } else {
483 status = LTTNG_ROTATION_STATUS_UNAVAILABLE;
484 goto end;
485 }
486end:
487 return status;
488}
489
490enum lttng_rotation_status
491lttng_rotation_schedule_size_threshold_set_threshold(
492 struct lttng_rotation_schedule *schedule,
493 uint64_t size_threshold_bytes)
494{
495 enum lttng_rotation_status status = LTTNG_ROTATION_STATUS_OK;
496 struct lttng_rotation_schedule_size_threshold *size_schedule;
497
498 if (!schedule || size_threshold_bytes == 0 ||
ed9f1fb2
JG
499 size_threshold_bytes == -1ULL ||
500 schedule->type != LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD) {
66ea93b1
JG
501 status = LTTNG_ROTATION_STATUS_INVALID;
502 goto end;
503 }
329f3443 504
66ea93b1
JG
505 size_schedule = container_of(schedule,
506 struct lttng_rotation_schedule_size_threshold,
507 parent);
508 size_schedule->size.bytes = size_threshold_bytes;
509 size_schedule->size.set = true;
329f3443 510end:
66ea93b1
JG
511 return status;
512}
513
514struct lttng_rotation_schedule *
515lttng_rotation_schedule_periodic_create(void)
516{
517 struct lttng_rotation_schedule_periodic *schedule;
518
519 schedule = zmalloc(sizeof(*schedule));
520 if (!schedule) {
521 goto end;
522 }
523
524 schedule->parent.type = LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC;
525end:
526 return &schedule->parent;
527}
528
529enum lttng_rotation_status
530lttng_rotation_schedule_periodic_get_period(
531 const struct lttng_rotation_schedule *schedule,
532 uint64_t *period_us)
533{
534 enum lttng_rotation_status status = LTTNG_ROTATION_STATUS_OK;
535 struct lttng_rotation_schedule_periodic *periodic_schedule;
536
ed9f1fb2
JG
537 if (!schedule || !period_us ||
538 schedule->type != LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC) {
66ea93b1
JG
539 status = LTTNG_ROTATION_STATUS_INVALID;
540 goto end;
541 }
542
543 periodic_schedule = container_of(schedule,
544 struct lttng_rotation_schedule_periodic,
545 parent);
546 if (periodic_schedule->period.set) {
547 *period_us = periodic_schedule->period.us;
548 } else {
549 status = LTTNG_ROTATION_STATUS_UNAVAILABLE;
550 goto end;
551 }
552end:
553 return status;
554}
555
556enum lttng_rotation_status
557lttng_rotation_schedule_periodic_set_period(
558 struct lttng_rotation_schedule *schedule,
559 uint64_t period_us)
560{
561 enum lttng_rotation_status status = LTTNG_ROTATION_STATUS_OK;
562 struct lttng_rotation_schedule_periodic *periodic_schedule;
563
ed9f1fb2
JG
564 if (!schedule || period_us == 0 || period_us == -1ULL ||
565 schedule->type != LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC) {
66ea93b1
JG
566 status = LTTNG_ROTATION_STATUS_INVALID;
567 goto end;
568 }
569
570 periodic_schedule = container_of(schedule,
571 struct lttng_rotation_schedule_periodic,
572 parent);
573 periodic_schedule->period.us = period_us;
574 periodic_schedule->period.set = true;
575end:
576 return status;
577}
578
579void lttng_rotation_schedule_destroy(struct lttng_rotation_schedule *schedule)
580{
581 if (!schedule) {
582 return;
583 }
584 free(schedule);
585}
586
587void lttng_rotation_schedules_destroy(
588 struct lttng_rotation_schedules *schedules)
589{
590 unsigned int i;
591
592 if (!schedules) {
593 return;
594 }
595
596 for (i = 0; i < schedules->count; i++) {
597 lttng_rotation_schedule_destroy(schedules->schedules[i]);
598 }
599 free(schedules);
600}
601
602
603enum lttng_rotation_status lttng_rotation_schedules_get_count(
604 const struct lttng_rotation_schedules *schedules,
605 unsigned int *count)
606{
607 enum lttng_rotation_status status = LTTNG_ROTATION_STATUS_OK;
608
609 if (!schedules || !count) {
610 status = LTTNG_ROTATION_STATUS_INVALID;
611 goto end;
612 }
613
614 *count = schedules->count;
615end:
616 return status;
617}
618
619const struct lttng_rotation_schedule *lttng_rotation_schedules_get_at_index(
620 const struct lttng_rotation_schedules *schedules,
621 unsigned int index)
622{
623 const struct lttng_rotation_schedule *schedule = NULL;
624
625 if (!schedules || index >= schedules->count) {
626 goto end;
627 }
628
629 schedule = schedules->schedules[index];
630end:
631 return schedule;
632}
633
634enum lttng_rotation_status lttng_session_add_rotation_schedule(
635 const char *session_name,
636 const struct lttng_rotation_schedule *schedule)
637{
638 return lttng_rotation_update_schedule(session_name, schedule, true);
639}
640
641enum lttng_rotation_status lttng_session_remove_rotation_schedule(
642 const char *session_name,
643 const struct lttng_rotation_schedule *schedule)
644{
645 return lttng_rotation_update_schedule(session_name, schedule, false);
646}
647
648int lttng_session_list_rotation_schedules(
649 const char *session_name,
650 struct lttng_rotation_schedules **schedules)
651{
652 return get_schedules(session_name, schedules);
329f3443 653}
This page took 0.066309 seconds and 5 git commands to generate.