actions: introduce start session action
[lttng-tools.git] / include / lttng / lttng.h
index c04d1b4eadb7d996b752570c85d406544ac0f290..6b4ca565770b97b83409b70692ca76e00414dc40 100644 (file)
  *
  * Linux Trace Toolkit Control Library Header File
  *
- * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
- */
-
-#ifndef _LTTNG_H
-#define _LTTNG_H
-
-#include <asm/types.h>
-#include <stdint.h>
-#include <limits.h>
-
-/* Default unix group name for tracing. */
-#define LTTNG_DEFAULT_TRACING_GROUP "tracing"
-
-/* Environment variable to set session daemon binary path. */
-#define LTTNG_SESSIOND_PATH_ENV "LTTNG_SESSIOND_PATH"
-
-/*
- * Event symbol length.
+ * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
+ *
+ * SPDX-License-Identifier: LGPL-2.1-only
+ *
  */
-#define LTTNG_SYMBOL_NAME_LEN 128
 
-enum lttng_event_type {
-       LTTNG_EVENT_TRACEPOINTS,
-       LTTNG_EVENT_KPROBES,
-       LTTNG_EVENT_FUNCTION,
+#ifndef LTTNG_H
+#define LTTNG_H
+
+/* Error codes that can be returned by API calls */
+#include <lttng/lttng-error.h>
+
+/* Include every LTTng ABI/API available. */
+#include <lttng/action/action.h>
+#include <lttng/action/notify.h>
+#include <lttng/action/start-session.h>
+#include <lttng/channel.h>
+#include <lttng/clear-handle.h>
+#include <lttng/clear.h>
+#include <lttng/condition/buffer-usage.h>
+#include <lttng/condition/condition.h>
+#include <lttng/condition/evaluation.h>
+#include <lttng/condition/session-consumed-size.h>
+#include <lttng/condition/session-rotation.h>
+#include <lttng/destruction-handle.h>
+#include <lttng/domain.h>
+#include <lttng/endpoint.h>
+#include <lttng/event.h>
+#include <lttng/handle.h>
+#include <lttng/health.h>
+#include <lttng/load.h>
+#include <lttng/location.h>
+#include <lttng/notification/channel.h>
+#include <lttng/notification/notification.h>
+#include <lttng/rotation.h>
+#include <lttng/save.h>
+#include <lttng/session-descriptor.h>
+#include <lttng/session.h>
+#include <lttng/snapshot.h>
+#include <lttng/tracker.h>
+#include <lttng/trigger/trigger.h>
+#include <lttng/userspace-probe.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+enum lttng_calibrate_type {
+       LTTNG_CALIBRATE_FUNCTION              = 0,
 };
 
-/* Kernel context possible type */
-enum lttng_kernel_context_type {
-       LTTNG_KERNEL_CONTEXT_PID                = 0,
-       LTTNG_KERNEL_CONTEXT_PERF_COUNTER       = 1,
-       LTTNG_KERNEL_CONTEXT_COMM               = 2,
-       LTTNG_KERNEL_CONTEXT_PRIO               = 3,
-       LTTNG_KERNEL_CONTEXT_NICE               = 4,
-       LTTNG_KERNEL_CONTEXT_VPID               = 5,
-       LTTNG_KERNEL_CONTEXT_TID                = 6,
-       LTTNG_KERNEL_CONTEXT_VTID               = 7,
-       LTTNG_KERNEL_CONTEXT_PPID               = 8,
-       LTTNG_KERNEL_CONTEXT_VPPID              = 9,
+/* Machine interface output type */
+enum lttng_mi_output_type {
+       LTTNG_MI_XML                          = 1 /* XML output */
 };
 
-/* Perf counter attributes */
-struct lttng_kernel_perf_counter_ctx {
-       uint32_t type;
-       uint64_t config;
-       char name[LTTNG_SYMBOL_NAME_LEN];
-};
+#define LTTNG_CALIBRATE_PADDING1           16
+struct lttng_calibrate {
+       enum lttng_calibrate_type type;
 
-/* Event/Channel context */
-struct lttng_kernel_context {
-       enum lttng_kernel_context_type ctx;
-       union {
-               struct lttng_kernel_perf_counter_ctx perf_counter;
-       } u;
+       char padding[LTTNG_CALIBRATE_PADDING1];
 };
 
 /*
- * LTTng consumer mode
+ * Check if a session daemon is alive.
+ *
+ * Return 1 if alive or 0 if not. On error, returns a negative negative LTTng
+ * error code.
  */
-enum lttng_kernel_output {
-       LTTNG_KERNEL_SPLICE       = 0,
-       LTTNG_KERNEL_MMAP         = 1,
-};
+extern int lttng_session_daemon_alive(void);
 
 /*
- * Either addr is used or symbol_name and offset.
+ * Set the tracing group for the *current* flow of execution.
+ *
+ * On success, returns 0 else a negative LTTng error code.
  */
-struct lttng_event_kprobe_attr {
-       uint64_t addr;
-
-       uint64_t offset;
-       char symbol_name[LTTNG_SYMBOL_NAME_LEN];
-};
+extern int lttng_set_tracing_group(const char *name);
 
 /*
- * Function tracer
+ * This call registers an "outside consumer" for a session and an lttng domain.
+ * No consumer will be spawned and all fds/commands will go through the socket
+ * path given (socket_path).
+ *
+ * NOTE that this is not recommended unless you absolutely know what you are
+ * doing.
+ *
+ * Return 0 on success else a negative LTTng error code.
  */
-struct lttng_event_function_attr {
-       char symbol_name[LTTNG_SYMBOL_NAME_LEN];
-};
+extern int lttng_register_consumer(struct lttng_handle *handle,
+               const char *socket_path);
 
 /*
- * Generic lttng event
+ * Start tracing for *all* domain(s) in the session.
+ *
+ * Return 0 on success else a negative LTTng error code.
  */
-struct lttng_event {
-       char name[LTTNG_SYMBOL_NAME_LEN];
-       enum lttng_event_type type;
-       /* Per event type configuration */
-       union {
-               struct lttng_event_kprobe_attr kprobe;
-               struct lttng_event_function_attr ftrace;
-       } attr;
-};
-
-/* Tracer channel attributes */
-struct lttng_channel_attr {
-       int overwrite;                        /* 1: overwrite, 0: discard */
-       uint64_t subbuf_size;                      /* bytes */
-       uint64_t num_subbuf;                       /* power of 2 */
-       unsigned int switch_timer_interval;   /* usec */
-       unsigned int read_timer_interval;     /* usec */
-       enum lttng_kernel_output output;        /* splice, mmap */
-};
+extern int lttng_start_tracing(const char *session_name);
 
 /*
- * Basic session information.
+ * Stop tracing for *all* domain(s) in the session.
+ *
+ * This call will wait for data availability for each domain of the session so
+ * this can take an abritrary amount of time. However, when returning you have
+ * the guarantee that the data is ready to be read and analyze. Use the
+ * _no_wait call below to avoid this behavior.
+ *
+ * The session_name can't be NULL.
+ *
+ * Return 0 on success else a negative LTTng error code.
  */
-struct lttng_session {
-       char name[NAME_MAX];
-       char path[PATH_MAX];
-};
-
-/* Channel information structure */
-struct lttng_channel {
-       char name[NAME_MAX];
-       struct lttng_channel_attr attr;
-};
+extern int lttng_stop_tracing(const char *session_name);
 
 /*
- * Session daemon control
+ * Behave exactly like lttng_stop_tracing but does not wait for data
+ * availability.
  */
-extern int lttng_connect_sessiond(void);
-
-extern int lttng_create_session(char *name, char *path);
-
-extern int lttng_destroy_session(char *name);
-
-extern int lttng_disconnect_sessiond(void);
-
-/* Return an allocated array of lttng_session */
-extern int lttng_list_sessions(struct lttng_session **sessions);
-
-extern int lttng_session_daemon_alive(void);
-
-/* Set tracing group for the current execution */
-extern int lttng_set_tracing_group(const char *name);
-
-extern void lttng_set_session_name(char *name);
-
-extern const char *lttng_get_readable_code(int code);
-
-extern int lttng_start_tracing(char *session_name);
-
-extern int lttng_stop_tracing(char *session_name);
-
-//extern int lttng_ust_list_traceable_apps(pid_t **pids);
+extern int lttng_stop_tracing_no_wait(const char *session_name);
 
 /*
- * LTTng Kernel tracer control
+ * Deprecated: As of LTTng 2.9, this function always returns
+ * -LTTNG_ERR_UND.
  */
-extern int lttng_kernel_add_context(struct lttng_kernel_context *ctx,
-               char *event_name, char *channel_name);
-
-extern int lttng_kernel_create_channel(struct lttng_channel *chan);
+extern int lttng_calibrate(struct lttng_handle *handle,
+               struct lttng_calibrate *calibrate);
 
-extern int lttng_kernel_enable_event(struct lttng_event *ev, char *channel_name);
-
-extern int lttng_kernel_enable_channel(char *name);
+/*
+ * Set URL for a consumer for a session and domain.
+ *
+ * Both data and control URL must be defined. If both URLs are the same, only
+ * the control URL is used even for network streaming.
+ *
+ * Default port are 5342 and 5343 respectively for control and data which uses
+ * the TCP protocol.
+ *
+ * URL format: proto://[HOST|IP][:PORT1[:PORT2]][/TRACE_PATH]
+ *
+ * Possible protocols are:
+ * > file://...
+ *   Local filesystem full path.
+ *
+ * > net[6]://...
+ *   This will use the default network transport layer which is TCP for both
+ *   control (PORT1) and data port (PORT2).
+ *
+ * > tcp[6]://...
+ *   TCP only streaming. For this one, both data and control URL must be given.
+ *
+ * Return 0 on success else a negative LTTng error code.
+ */
+extern int lttng_set_consumer_url(struct lttng_handle *handle,
+               const char *control_url, const char *data_url);
 
-extern int lttng_kernel_disable_event(char *name, char *channel_name);
+/*
+ * For a given session name, this call checks if the data is ready to be read
+ * or is still being extracted by the consumer(s) (pending) hence not ready to
+ * be used by any readers.
+ *
+ * Return 0 if there is _no_ data pending in the buffers thus having a
+ * guarantee that the data can be read safely. Else, return 1 if there is still
+ * traced data is pending. On error, a negative value is returned and readable
+ * by lttng_strerror().
+ */
+extern int lttng_data_pending(const char *session_name);
 
-extern int lttng_kernel_disable_channel(char *name);
+/*
+ * Deprecated, replaced by lttng_regenerate_metadata.
+ */
+LTTNG_DEPRECATED()
+extern int lttng_metadata_regenerate(const char *session_name);
 
-extern int lttng_kernel_list_events(char **event_list);
+/*
+ * Trigger the regeneration of the metadata for a session.
+ * The new metadata overwrite the previous one locally or remotely (through
+ * the lttng-relayd). Only kernel, per-uid and non-live sessions are supported.
+ * Return 0 on success, a negative LTTng error code on error.
+ */
+extern int lttng_regenerate_metadata(const char *session_name);
 
 /*
- * LTTng User-space tracer control
+ * Trigger the regeneration of the statedump for a session. The new statedump
+ * information is appended to the currently active trace, the session needs to
+ * be active.
+ *
+ * Return 0 on success, a negative LTTng error code on error.
  */
+extern int lttng_regenerate_statedump(const char *session_name);
+
+#ifdef __cplusplus
+}
+#endif
 
-#endif /* _LTTNG_H */
+#endif /* LTTNG_H */
This page took 0.026403 seconds and 4 git commands to generate.