2 * Copyright (C) 2019 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
8 #ifndef LTTNG_SESSION_DESCRIPTOR_H
9 #define LTTNG_SESSION_DESCRIPTOR_H
11 #include <lttng/lttng-export.h>
17 struct lttng_session_descriptor
;
20 * Session descriptor API.
22 * A session descriptor is an object describing the immutable configuration
23 * options of an LTTng tracing session.
25 * When used with the lttng_create_session_ext() function, a session descriptor
26 * allows the creation of a tracing session of the following types: regular,
29 * Certain parameters can be omitted at the time of creation of a session
30 * descriptor to use default or auto-generated values selected by the
31 * session daemon. For instance, a session's name can be left unspecified,
32 * in which case one that is guaranteed not to clash with pre-existing
33 * sessions will be automatically be generated by the session daemon.
35 * Most session descriptors can be created in either "no output", local, or
36 * network output modes. The various output modes supported vary by session
39 * Regular session creation functions and output modes:
40 * * "no output": lttng_session_descriptor_create()
41 * * local: lttng_session_descriptor_local_create()
42 * * network: lttng_session_descriptor_network_create()
44 * Snapshot session creation functions and output modes:
45 * * "no output": lttng_session_descriptor_snapshot_create()
46 * * local: lttng_session_descriptor_snapshot_local_create()
47 * * network: lttng_session_descriptor_snapshot_network_create()
49 * Live session creation functions and output modes:
50 * * "no output": lttng_session_descriptor_live_create()
51 * * network: lttng_session_descriptor_live_network_create()
53 * Local output functions accept a 'path' parameter that must be an absolute
54 * path to which the user has write access. When a local output is automatically
55 * generated, it adopts the form:
56 * $LTTNG_HOME/DEFAULT_TRACE_DIR_NAME/SESSION_NAME-CREATION_TIME
58 * Where CREATION_TIME is time of the creation of the session on the session
59 * daemon in the form "yyyymmdd-hhmmss".
61 * Network output locations can also be auto-generated by leaving the
62 * 'control_url' and 'data_url' output parameters unspecified. In such cases,
63 * the session daemon will create a default output targeting a relay daemon
64 * at net://127.0.0.1, using the default 'control' and 'data' ports.
66 * The format of the 'control_url' and 'data_url' parameters is:
67 * NETPROTO://(HOST | IPADDR)[:CTRLPORT[:DATAPORT]][/TRACEPATH]
69 * NETPROTO: Network protocol, amongst:
70 * * net: TCP over IPv4; the default values of 'CTRLPORT' and 'DATAPORT'
71 * are defined at build time of the lttng toolchain.
72 * * net6: TCP over IPv6: same default ports as the 'net' protocol.
73 * * tcp: Same as the 'net' protocol.
74 * * tcp6: Same as the 'net6' protocol.
76 * HOST | IPADDR: Hostname or IP address (IPv6 address *must* be enclosed
77 * in brackets; see RFC 2732).
79 * CTRLPORT: Control port.
81 * DATAPORT: Data port.
83 * TRACEPATH: Path of trace files on the remote file system. This path is
84 * relative to the base output directory set on the relay daemon
87 * The 'data_url' parameter is optional:
88 * * This parameter is meaningless for local tracing.
89 * * If 'control_url' is specified and a network protocol is used, the
90 * default data port, and the 'control_url' host will be used.
93 enum lttng_session_descriptor_status
{
94 /* Invalid session descriptor parameter. */
95 LTTNG_SESSION_DESCRIPTOR_STATUS_INVALID
= -1,
96 LTTNG_SESSION_DESCRIPTOR_STATUS_OK
= 0,
97 /* Session descriptor parameter is unset. */
98 LTTNG_SESSION_DESCRIPTOR_STATUS_UNSET
= 1,
102 * Create a session descriptor in no-output mode.
104 * The 'name' parameter can be left NULL to auto-generate a session name.
106 * Returns an lttng_session_descriptor instance on success, NULL on error.
108 LTTNG_EXPORT
extern struct lttng_session_descriptor
*
109 lttng_session_descriptor_create(const char *name
);
112 * Create a session descriptor with a local output destination.
114 * The 'name' parameter can be left NULL to auto-generate a session name.
116 * The 'path' must either be an absolute path or it can be left NULL to
117 * use the default local output destination.
119 * Returns an lttng_session_descriptor instance on success, NULL on error.
121 LTTNG_EXPORT
extern struct lttng_session_descriptor
*
122 lttng_session_descriptor_local_create(const char *name
, const char *path
);
125 * Create a session descriptor with a remote output destination.
127 * The 'name' parameter can be left NULL to auto-generate a session name.
129 * The 'control_url' and 'data_url' must conform to the URL format
130 * described above or can be left NULL to use the default network output.
132 * Returns an lttng_session_descriptor instance on success, NULL on error.
134 LTTNG_EXPORT
extern struct lttng_session_descriptor
*lttng_session_descriptor_network_create(
135 const char *name
, const char *control_url
, const char *data_url
);
138 * Create a snapshot session descriptor without a default output.
140 * The 'name' parameter can be left NULL to auto-generate a session name.
142 * Returns an lttng_session_descriptor instance on success, NULL on error.
144 LTTNG_EXPORT
extern struct lttng_session_descriptor
*
145 lttng_session_descriptor_snapshot_create(const char *name
);
148 * Create a snapshot session descriptor with a local output destination.
150 * The 'name' parameter can be left NULL to auto-generate a session name.
152 * The 'path' must either be an absolute path or it can be left NULL to
153 * use the default local output destination as the default snapshot output.
155 * Returns an lttng_session_descriptor instance on success, NULL on error.
157 LTTNG_EXPORT
extern struct lttng_session_descriptor
*
158 lttng_session_descriptor_snapshot_local_create(const char *name
, const char *path
);
161 * Create a snapshot session descriptor with a remote output destination.
163 * The 'name' parameter can be left NULL to auto-generate a session name.
165 * The 'control_url' and 'data_url' must conform to the URL format
166 * described above or can be left NULL to use the default network output as
167 * the default snapshot output.
169 * Returns an lttng_session_descriptor instance on success, NULL on error.
171 LTTNG_EXPORT
extern struct lttng_session_descriptor
*
172 lttng_session_descriptor_snapshot_network_create(const char *name
,
173 const char *control_url
,
174 const char *data_url
);
177 * Create a live session descriptor without an output.
179 * The 'name' parameter can be left NULL to auto-generate a session name.
181 * The 'live_timer_interval_us' parameter is the live timer's period, specified
184 * This parameter can't be 0. There is no default value defined for a live
187 * Returns an lttng_session_descriptor instance on success, NULL on error.
189 LTTNG_EXPORT
extern struct lttng_session_descriptor
*
190 lttng_session_descriptor_live_create(const char *name
, unsigned long long live_timer_interval_us
);
193 * Create a live session descriptor with a remote output destination.
195 * The 'name' parameter can be left NULL to auto-generate a session name.
197 * The 'control_url' and 'data_url' must conform to the URL format
198 * described above or can be left NULL to use the default network output.
200 * The 'live_timer_interval_us' parameter is the live timer's period, specified
203 * This parameter can't be 0. There is no default value defined for a live
206 * Returns an lttng_session_descriptor instance on success, NULL on error.
208 LTTNG_EXPORT
extern struct lttng_session_descriptor
*
209 lttng_session_descriptor_live_network_create(const char *name
,
210 const char *control_url
,
211 const char *data_url
,
212 unsigned long long live_timer_interval_us
);
215 * Get a session descriptor's session name.
217 * The 'name' parameter is used as an output parameter and will point to
218 * the session descriptor's session name on success
219 * (LTTNG_SESSION_DESCRIPTOR_STATUS_OK). Its content of is left unspecified
220 * for other return codes. The pointer returned through 'name' is only
221 * guaranteed to remain valid until the next method call on the session
224 * Returns LTTNG_SESSION_DESCRIPTOR_STATUS_OK on success,
225 * LTTNG_SESSION_DESCRIPTOR_STATUS_INVALID if 'descriptor' or 'name' are
226 * NULL, and LTTNG_SESSION_DESCRIPTOR_STATUS_UNSET if the descriptor's
227 * name parameter is unset.
229 LTTNG_EXPORT
extern enum lttng_session_descriptor_status
230 lttng_session_descriptor_get_session_name(const struct lttng_session_descriptor
*descriptor
,
234 * Destroy a local lttng_session object.
236 * This does not destroy the session on the session daemon; it releases
237 * the resources allocated by the descriptor object.
239 LTTNG_EXPORT
extern void
240 lttng_session_descriptor_destroy(struct lttng_session_descriptor
*descriptor
);
246 #endif /* LTTNG_SESSION_DESCRIPTOR_H */