Basic structure for the rotate command
[deliverable/lttng-tools.git] / src / bin / lttng-sessiond / cmd.c
index c4e4ccfbe5e0098c0d7e6a9da50e56b5a9b4795f..386e5649c2c0560dde9314d06d1723fa62fd5729 100644 (file)
@@ -34,6 +34,7 @@
 #include <lttng/trigger/trigger-internal.h>
 #include <lttng/condition/condition.h>
 #include <lttng/action/action.h>
+#include <lttng/channel.h>
 #include <lttng/channel-internal.h>
 #include <common/string-utils/string-utils.h>
 
@@ -50,6 +51,7 @@
 #include "buffer-registry.h"
 #include "notification-thread.h"
 #include "notification-thread-commands.h"
+#include "rotation-thread.h"
 
 #include "cmd.h"
 
@@ -243,11 +245,11 @@ end:
 /*
  * Fill lttng_channel array of all channels.
  */
-static void list_lttng_channels(enum lttng_domain_type domain,
+static ssize_t list_lttng_channels(enum lttng_domain_type domain,
                struct ltt_session *session, struct lttng_channel *channels,
                struct lttng_channel_extended *chan_exts)
 {
-       int i = 0, ret;
+       int i = 0, ret = 0;
        struct ltt_kernel_channel *kchan;
 
        DBG("Listing channels for session %s", session->name);
@@ -277,6 +279,7 @@ static void list_lttng_channels(enum lttng_domain_type domain,
                                chan_exts[i].lost_packets = lost_packets;
                                chan_exts[i].monitor_timer_interval =
                                                extended->monitor_timer_interval;
+                               chan_exts[i].blocking_timeout = 0;
                                i++;
                        }
                }
@@ -322,6 +325,11 @@ static void list_lttng_channels(enum lttng_domain_type domain,
                                break;
                        }
 
+                       chan_exts[i].monitor_timer_interval =
+                                       uchan->monitor_timer_interval;
+                       chan_exts[i].blocking_timeout =
+                               uchan->attr.u.s.blocking_timeout;
+
                        ret = get_ust_runtime_stats(session, uchan,
                                        &discarded_events, &lost_packets);
                        if (ret < 0) {
@@ -329,8 +337,6 @@ static void list_lttng_channels(enum lttng_domain_type domain,
                        }
                        chan_exts[i].discarded_events = discarded_events;
                        chan_exts[i].lost_packets = lost_packets;
-                       chan_exts[i].monitor_timer_interval =
-                                       uchan->monitor_timer_interval;
                        i++;
                }
                rcu_read_unlock();
@@ -341,7 +347,11 @@ static void list_lttng_channels(enum lttng_domain_type domain,
        }
 
 end:
-       return;
+       if (ret < 0) {
+               return -LTTNG_ERR_FATAL;
+       } else {
+               return LTTNG_OK;
+       }
 }
 
 static void increment_extended_len(const char *filter_expression,
@@ -775,17 +785,17 @@ static int add_uri_to_consumer(struct consumer_output *consumer,
                break;
        case LTTNG_DST_PATH:
                DBG2("Setting trace directory path from URI to %s", uri->dst.path);
-               memset(consumer->dst.trace_path, 0,
-                               sizeof(consumer->dst.trace_path));
+               memset(consumer->dst.session_root_path, 0,
+                               sizeof(consumer->dst.session_root_path));
                /* Explicit length checks for strcpy and strcat. */
                if (strlen(uri->dst.path) + strlen(default_trace_dir)
-                               >= sizeof(consumer->dst.trace_path)) {
+                               >= sizeof(consumer->dst.session_root_path)) {
                        ret = LTTNG_ERR_FATAL;
                        goto error;
                }
-               strcpy(consumer->dst.trace_path, uri->dst.path);
+               strcpy(consumer->dst.session_root_path, uri->dst.path);
                /* Append default trace dir */
-               strcat(consumer->dst.trace_path, default_trace_dir);
+               strcat(consumer->dst.session_root_path, default_trace_dir);
                /* Flag consumer as local. */
                consumer->type = CONSUMER_DST_LOCAL;
                break;
@@ -1349,6 +1359,30 @@ int cmd_enable_channel(struct ltt_session *session,
                attr->attr.switch_timer_interval = 0;
        }
 
+       /* Check for feature support */
+       switch (domain->type) {
+       case LTTNG_DOMAIN_KERNEL:
+       {
+               if (kernel_supports_ring_buffer_snapshot_sample_positions(kernel_tracer_fd) != 1) {
+                       /* Sampling position of buffer is not supported */
+                       WARN("Kernel tracer does not support buffer monitoring. "
+                                       "Setting the monitor interval timer to 0 "
+                                       "(disabled) for channel '%s' of session '%s'",
+                                       attr-> name, session->name);
+                       lttng_channel_set_monitor_timer_interval(attr, 0);
+               }
+               break;
+       }
+       case LTTNG_DOMAIN_UST:
+       case LTTNG_DOMAIN_JUL:
+       case LTTNG_DOMAIN_LOG4J:
+       case LTTNG_DOMAIN_PYTHON:
+               break;
+       default:
+               ret = LTTNG_ERR_UNKNOWN_DOMAIN;
+               goto error;
+       }
+
        switch (domain->type) {
        case LTTNG_DOMAIN_KERNEL:
        {
@@ -2362,6 +2396,19 @@ int cmd_start_trace(struct ltt_session *session)
                goto error;
        }
 
+       /*
+        * Record the timestamp of the first time the session is started for
+        * an eventual session rotation call.
+        */
+       if (!session->has_been_started) {
+               session->session_start_ts = time(NULL);
+               if (session->session_start_ts == (time_t) -1) {
+                       PERROR("Get start time");
+                       ret = LTTNG_ERR_FATAL;
+                       goto error;
+               }
+       }
+
        /* Kernel tracing */
        if (ksession != NULL) {
                ret = start_kernel_session(ksession, kernel_tracer_fd);
@@ -2462,6 +2509,8 @@ int cmd_stop_trace(struct ltt_session *session)
                }
        }
 
+       session->session_last_stop_ts = time(NULL);
+
        /* Flag inactive after a successful stop. */
        session->active = 0;
        ret = LTTNG_OK;
@@ -2718,6 +2767,22 @@ int cmd_destroy_session(struct ltt_session *session, int wpipe)
                trace_ust_destroy_session(usess);
        }
 
+       if (session->rotate_count > 0) {
+               session->rotate_count++;
+               /*
+                * The currently active tracing path is now the folder we
+                * want to rename.
+                */
+               snprintf(session->rotation_chunk.current_rotate_path,
+                               PATH_MAX, "%s",
+                               session->rotation_chunk.active_tracing_path);
+               ret = rename_complete_chunk(session,
+                               session->session_last_stop_ts);
+               if (ret < 0) {
+                       ERR("Renaming session on destroy");
+               }
+       }
+
        /*
         * Must notify the kernel thread here to update it's poll set in order to
         * remove the channel(s)' fd just destroyed.
@@ -2936,7 +3001,12 @@ ssize_t cmd_list_channels(enum lttng_domain_type domain,
 
                channel_exts = ((void *) *channels) +
                                (nb_chan * sizeof(struct lttng_channel));
-               list_lttng_channels(domain, session, *channels, channel_exts);
+               ret = list_lttng_channels(domain, session, *channels, channel_exts);
+               if (ret != LTTNG_OK) {
+                       free(*channels);
+                       *channels = NULL;
+                       goto end;
+               }
        } else {
                *channels = NULL;
        }
@@ -3044,7 +3114,7 @@ void cmd_list_lttng_sessions(struct lttng_session *sessions, uid_t uid,
                                        sizeof(sessions[i].path), session);
                } else {
                        ret = snprintf(sessions[i].path, sizeof(sessions[i].path), "%s",
-                                       session->consumer->dst.trace_path);
+                                       session->consumer->dst.session_root_path);
                }
                if (ret < 0) {
                        PERROR("snprintf session path");
@@ -3281,7 +3351,7 @@ ssize_t cmd_snapshot_list_outputs(struct ltt_session *session,
                }
                if (output->consumer->type == CONSUMER_DST_LOCAL) {
                        if (lttng_strncpy(list[idx].ctrl_url,
-                                       output->consumer->dst.trace_path,
+                                       output->consumer->dst.session_root_path,
                                        sizeof(list[idx].ctrl_url))) {
                                ret = -LTTNG_ERR_INVALID;
                                goto error;
@@ -3512,7 +3582,6 @@ int cmd_regenerate_statedump(struct ltt_session *session)
                ret = LTTNG_ERR_SESSION_NOT_STARTED;
                goto end;
        }
-       ret = 0;
 
        if (session->kernel_session) {
                ret = kernctl_session_regenerate_statedump(
@@ -4062,6 +4131,248 @@ int cmd_set_session_shm_path(struct ltt_session *session,
        return 0;
 }
 
+static
+int rename_first_chunk(struct consumer_output *consumer, char *datetime)
+{
+       int ret;
+       char *tmppath = NULL, *tmppath2 = NULL;
+
+       tmppath = zmalloc(PATH_MAX * sizeof(char));
+       if (!tmppath) {
+               ret = -LTTNG_ERR_NOMEM;
+               goto error;
+       }
+       tmppath2 = zmalloc(PATH_MAX * sizeof(char));
+       if (!tmppath2) {
+               ret = -LTTNG_ERR_NOMEM;
+               goto error;
+       }
+
+       /* Current domain path: <session>/kernel */
+       snprintf(tmppath, PATH_MAX, "%s/%s",
+                       consumer->dst.session_root_path, consumer->subdir);
+       /* New domain path: <session>/<start-date>-/kernel */
+       snprintf(tmppath2, PATH_MAX, "%s/%s-/%s",
+                       consumer->dst.session_root_path, datetime,
+                       consumer->subdir);
+       /*
+        * Move the per-domain folder inside the first rotation
+        * folder.
+        */
+       ret = rename(tmppath, tmppath2);
+       if (ret < 0) {
+               PERROR("Rename first trace directory");
+               ret = -LTTNG_ERR_ROTATE_NO_DATA;
+               goto error;
+       }
+
+       ret = 0;
+
+error:
+       free(tmppath);
+       free(tmppath2);
+
+       return ret;
+}
+
+/*
+ * Command LTTNG_ROTATE_SESSION from the lttng-ctl library.
+ *
+ * Ask the consumer to rotate the session output directory.
+ *
+ * Return 0 on success or else a LTTNG_ERR code.
+ */
+int cmd_rotate_session(struct ltt_session *session,
+               struct lttng_rotate_session_return **rotate_return)
+{
+       int ret;
+       struct tm *timeinfo;
+       char datetime[16];
+       time_t now;
+
+       assert(session);
+
+       *rotate_return = zmalloc(sizeof(struct lttng_rotate_session_return));
+       if (!*rotate_return) {
+               ret = -ENOMEM;
+               goto end;
+       }
+
+       if (session->live_timer || session->snapshot_mode ||
+                       !session->output_traces) {
+               ret = -LTTNG_ERR_ROTATE_NOT_AVAILABLE;
+               goto error;
+       }
+
+       if (session->rotate_pending) {
+               ret = -LTTNG_ERR_ROTATE_PENDING;
+               goto error;
+       }
+
+       /* Special case for the first rotation. */
+       if (session->rotate_count == 0) {
+               timeinfo = localtime(&session->session_start_ts);
+               strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
+               if (session->kernel_session) {
+                       snprintf(session->rotation_chunk.current_rotate_path,
+                                       PATH_MAX, "%s/%s-",
+                                       session->kernel_session->consumer->dst.session_root_path,
+                                       datetime);
+               } else if (session->ust_session) {
+                       snprintf(session->rotation_chunk.current_rotate_path,
+                                       PATH_MAX, "%s/%s-",
+                                       session->ust_session->consumer->dst.session_root_path,
+                                       datetime);
+               } else {
+                       assert(0);
+               }
+
+               /*
+                * Create the first rotation folder to move the existing
+                * kernel/ust folders into.
+                */
+               ret = run_as_mkdir_recursive(session->rotation_chunk.current_rotate_path,
+                               S_IRWXU | S_IRWXG, session->uid, session->gid);
+               if (ret < 0) {
+                       if (errno != EEXIST) {
+                               ERR("Trace directory creation error");
+                               ret = -LTTNG_ERR_ROTATE_NOT_AVAILABLE;
+                               goto error;
+                       }
+               }
+               if (session->kernel_session) {
+                       ret = rename_first_chunk(session->kernel_session->consumer,
+                                       datetime);
+                       if (ret < 0) {
+                               goto error;
+                       }
+               }
+               if (session->ust_session) {
+                       ret = rename_first_chunk(session->ust_session->consumer,
+                                       datetime);
+                       if (ret < 0) {
+                               goto error;
+                       }
+               }
+       } else {
+               /*
+                * The currently active tracing path is now the folder we
+                * want to rotate.
+                */
+               snprintf(session->rotation_chunk.current_rotate_path,
+                               PATH_MAX, "%s",
+                               session->rotation_chunk.active_tracing_path);
+       }
+
+       session->rotate_count++;
+       session->rotate_pending = 1;
+
+       /*
+        * Create the path name for the next chunk.
+        */
+       now = time(NULL);
+       if (now == (time_t) -1) {
+               ret = -LTTNG_ERR_ROTATE_NOT_AVAILABLE;
+               goto error;
+       }
+
+       timeinfo = localtime(&now);
+       strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
+       if (session->kernel_session) {
+               /* The active path for the next rotation/destroy. */
+               snprintf(session->rotation_chunk.active_tracing_path,
+                               PATH_MAX, "%s/%s-",
+                               session->kernel_session->consumer->dst.session_root_path,
+                               datetime);
+               /* The sub-directory for the consumer. */
+               snprintf(session->kernel_session->consumer->chunk_path,
+                               PATH_MAX, "/%s-/%s/", datetime,
+                               session->kernel_session->consumer->subdir);
+               ret = kernel_rotate_session(session);
+               if (ret != LTTNG_OK) {
+                       goto error;
+               }
+       }
+       if (session->ust_session) {
+               snprintf(session->rotation_chunk.active_tracing_path,
+                               PATH_MAX, "%s/%s-",
+                               session->ust_session->consumer->dst.session_root_path,
+                               datetime);
+               snprintf(session->ust_session->consumer->chunk_path,
+                               PATH_MAX, "/%s-/", datetime);
+               ret = ust_app_rotate_session(session);
+               if (ret != LTTNG_OK) {
+                       goto error;
+               }
+       }
+
+       (*rotate_return)->rotate_id = session->rotate_count;
+       (*rotate_return)->status = LTTNG_ROTATE_STARTED;
+
+       DBG("Cmd rotate session %s, rotate_id %" PRIu64, session->name,
+                       session->rotate_count);
+       ret = LTTNG_OK;
+
+       goto end;
+
+error:
+       (*rotate_return)->status = LTTNG_ROTATE_ERROR;
+end:
+       return ret;
+}
+
+/*
+ * Command LTTNG_ROTATE_PENDING from the lttng-ctl library.
+ *
+ * Check if the session has finished its rotation.
+ *
+ * Return 0 on success or else a LTTNG_ERR code.
+ */
+int cmd_rotate_pending(struct ltt_session *session,
+               struct lttng_rotate_pending_return **pending_return,
+               uint64_t rotate_id)
+{
+       int ret;
+
+       assert(session);
+
+       DBG("Cmd rotate pending session %s, rotate_id %" PRIu64, session->name,
+                       session->rotate_count);
+
+       *pending_return = zmalloc(sizeof(struct lttng_rotate_pending_return));
+       if (!*pending_return) {
+               ret = -ENOMEM;
+               goto end;
+       }
+
+       if (session->rotate_count != rotate_id) {
+               (*pending_return)->status = LTTNG_ROTATE_EXPIRED;
+               ret = LTTNG_OK;
+               goto end;
+       }
+
+       if (session->rotate_pending) {
+               DBG("Session %s, rotate_id %" PRIu64 " still pending",
+                               session->name, session->rotate_count);
+               (*pending_return)->status = LTTNG_ROTATE_STARTED;
+       } else {
+               DBG("Session %s, rotate_id %" PRIu64 " finished",
+                               session->name, session->rotate_count);
+               (*pending_return)->status = LTTNG_ROTATE_COMPLETED;
+               snprintf((*pending_return)->output_path, PATH_MAX, "%s",
+                               session->rotation_chunk.current_rotate_path);
+       }
+
+       ret = LTTNG_OK;
+
+       goto end;
+
+error:
+       (*pending_return)->status = LTTNG_ROTATE_ERROR;
+end:
+       return ret;
+}
+
 /*
  * Init command subsystem.
  */
This page took 0.029548 seconds and 5 git commands to generate.