Disable lttng ust domain not implemented
[lttng-tools.git] / include / lttng / lttng.h
CommitLineData
826d496d 1/*
b7384347
DG
2 * lttng.h
3 *
4 * Linux Trace Toolkit Control Library Header File
5 *
826d496d 6 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
fac6795d 7 *
82a3637f
DG
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
12 *
13 * This library is distributed in the hope that it will be useful,
fac6795d 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
82a3637f
DG
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
fac6795d
DG
21 */
22
b7384347
DG
23#ifndef _LTTNG_H
24#define _LTTNG_H
fac6795d 25
57167058 26#include <limits.h>
1e307fab
DG
27#include <stdint.h>
28#include <sys/types.h>
57167058 29
b7384347
DG
30/* Default unix group name for tracing. */
31#define LTTNG_DEFAULT_TRACING_GROUP "tracing"
fac6795d 32
b7384347 33/* Environment variable to set session daemon binary path. */
5b8719f5
DG
34#define LTTNG_SESSIOND_PATH_ENV "LTTNG_SESSIOND_PATH"
35
58a97671
DG
36/* Default trace output directory name */
37#define LTTNG_DEFAULT_TRACE_DIR_NAME "lttng-traces"
38
b7384347 39/*
e6ddca71 40 * Event symbol length. Copied from LTTng kernel ABI.
1657e9bb 41 */
0a31fd3c 42#define LTTNG_SYMBOL_NAME_LEN 256
f3ed775e 43
e6ddca71
DG
44/*
45 * Every lttng_event_* structure both apply to kernel event and user-space
46 * event.
e6ddca71
DG
47 */
48
7d29a247
DG
49/*
50 * Domain type are the different possible tracers.
51 */
52enum lttng_domain_type {
0d0c377a
DG
53 LTTNG_DOMAIN_KERNEL = 1,
54 LTTNG_DOMAIN_UST = 2,
d78d6610
DG
55
56 /*
57 * For now, the domains below are not implemented. However, we keep them
58 * here in order to retain their enum values for future development. Note
59 * that it is on the roadmap to implement them.
60 *
0d0c377a
DG
61 LTTNG_DOMAIN_UST_EXEC_NAME = 3,
62 LTTNG_DOMAIN_UST_PID = 4,
63 LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN = 5,
d78d6610 64 */
7d29a247
DG
65};
66
7d29a247
DG
67/*
68 * Instrumentation type of tracing event.
69 */
f3ed775e 70enum lttng_event_type {
7a3d1328
MD
71 LTTNG_EVENT_ALL = -1,
72 LTTNG_EVENT_TRACEPOINT = 0,
73 LTTNG_EVENT_PROBE = 1,
74 LTTNG_EVENT_FUNCTION = 2,
75 LTTNG_EVENT_FUNCTION_ENTRY = 3,
76 LTTNG_EVENT_NOOP = 4,
77 LTTNG_EVENT_SYSCALL = 5,
81afa345 78 LTTNG_EVENT_TRACEPOINT_LOGLEVEL = 6,
1657e9bb
DG
79};
80
e6ddca71
DG
81/*
82 * LTTng consumer mode
83 */
84enum lttng_event_output {
d78d6610
DG
85 LTTNG_EVENT_SPLICE = 0,
86 LTTNG_EVENT_MMAP = 1,
e6ddca71
DG
87};
88
7d29a247
DG
89/* Event context possible type */
90enum lttng_event_context_type {
d78d6610
DG
91 LTTNG_EVENT_CONTEXT_PID = 0,
92 LTTNG_EVENT_CONTEXT_PERF_COUNTER = 1,
93 LTTNG_EVENT_CONTEXT_COMM = 2,
94 LTTNG_EVENT_CONTEXT_PRIO = 3,
95 LTTNG_EVENT_CONTEXT_NICE = 4,
96 LTTNG_EVENT_CONTEXT_VPID = 5,
97 LTTNG_EVENT_CONTEXT_TID = 6,
98 LTTNG_EVENT_CONTEXT_VTID = 7,
99 LTTNG_EVENT_CONTEXT_PPID = 8,
100 LTTNG_EVENT_CONTEXT_VPPID = 9,
d65106b1
DG
101};
102
d0254c7c 103enum lttng_calibrate_type {
d78d6610 104 LTTNG_CALIBRATE_FUNCTION = 0,
d0254c7c
MD
105};
106
9f19cc17
DG
107struct lttng_domain {
108 enum lttng_domain_type type;
109 union {
110 pid_t pid;
111 char exec_name[NAME_MAX];
112 } attr;
113};
114
d65106b1 115/* Perf counter attributes */
7d29a247 116struct lttng_event_perf_counter_ctx {
d65106b1
DG
117 uint32_t type;
118 uint64_t config;
119 char name[LTTNG_SYMBOL_NAME_LEN];
120};
121
122/* Event/Channel context */
7d29a247
DG
123struct lttng_event_context {
124 enum lttng_event_context_type ctx;
d65106b1 125 union {
7d29a247 126 struct lttng_event_perf_counter_ctx perf_counter;
d65106b1
DG
127 } u;
128};
129
b7384347 130/*
7d29a247
DG
131 * Event probe.
132 *
133 * Either addr is used or symbol_name and offset.
57167058 134 */
7d29a247 135struct lttng_event_probe_attr {
f3ed775e
DG
136 uint64_t addr;
137
138 uint64_t offset;
139 char symbol_name[LTTNG_SYMBOL_NAME_LEN];
57167058
DG
140};
141
b7384347 142/*
f3ed775e
DG
143 * Function tracer
144 */
145struct lttng_event_function_attr {
146 char symbol_name[LTTNG_SYMBOL_NAME_LEN];
147};
148
149/*
150 * Generic lttng event
151 */
152struct lttng_event {
153 char name[LTTNG_SYMBOL_NAME_LEN];
81afa345 154 char loglevel[LTTNG_SYMBOL_NAME_LEN];
e4baff1e 155 int64_t loglevel_value;
f3ed775e 156 enum lttng_event_type type;
9f19cc17 157 uint32_t enabled;
b551a063 158 pid_t pid;
f3ed775e
DG
159 /* Per event type configuration */
160 union {
7d29a247 161 struct lttng_event_probe_attr probe;
f3ed775e
DG
162 struct lttng_event_function_attr ftrace;
163 } attr;
164};
165
e6ddca71
DG
166/*
167 * Tracer channel attributes. For both kernel and user-space.
168 */
f3ed775e 169struct lttng_channel_attr {
8ce37aa5
DG
170 int overwrite; /* 1: overwrite, 0: discard */
171 uint64_t subbuf_size; /* bytes */
172 uint64_t num_subbuf; /* power of 2 */
173 unsigned int switch_timer_interval; /* usec */
174 unsigned int read_timer_interval; /* usec */
f05b5f07 175 enum lttng_event_output output; /* splice, mmap */
f3ed775e
DG
176};
177
178/*
e6ddca71 179 * Channel information structure. For both kernel and user-space.
1657e9bb 180 */
e6ddca71 181struct lttng_channel {
045e5491 182 char name[LTTNG_SYMBOL_NAME_LEN];
9f19cc17 183 uint32_t enabled;
e6ddca71 184 struct lttng_channel_attr attr;
f3ed775e
DG
185};
186
d0254c7c
MD
187struct lttng_calibrate {
188 enum lttng_calibrate_type type;
189};
190
e6ddca71
DG
191/*
192 * Basic session information.
193 *
194 * This is an 'output data' meaning that it only comes *from* the session
195 * daemon *to* the lttng client. It's basically a 'human' representation of
196 * tracing entities (here a session).
197 */
198struct lttng_session {
f3ed775e 199 char name[NAME_MAX];
e6ddca71
DG
200 /* The path where traces are written */
201 char path[PATH_MAX];
464dd62d 202 uint32_t enabled; /* enabled/started: 1, disabled/stopped: 0 */
1657e9bb
DG
203};
204
cd80958d
DG
205/*
206 * Handle used as a context for commands.
207 */
208struct lttng_handle {
209 char session_name[NAME_MAX];
210 struct lttng_domain domain;
211};
212
7d29a247
DG
213/*
214 * Public LTTng control API
215 *
216 * For functions having a lttng domain type as parameter, if a bad value is
217 * given, NO default is applied and an error is returned.
218 *
219 * On success, all functions of the API return 0 or the size of the allocated
220 * array.
221 *
222 * On error, a negative value is returned being a specific lttng-tools error
9a745bc7 223 * code which can be humanly interpreted with lttng_strerror(err).
7d29a247
DG
224 */
225
b7384347 226/*
cd80958d
DG
227 * Create an handle used as a context for every request made to the library.
228 *
229 * This handle contains the session name and lttng domain on which the command
230 * will be executed on.
231 */
232extern struct lttng_handle *lttng_create_handle(const char *session_name,
233 struct lttng_domain *domain);
234
235/*
236 * Destroy an handle. This will simply free(3) the data pointer returned by
237 * lttng_create_handle() and rendering it unsuable.
b7384347 238 */
cd80958d 239extern void lttng_destroy_handle(struct lttng_handle *handle);
7d29a247
DG
240
241/*
242 * Create tracing session using a name and a path where trace will be written.
243 */
38057ed1 244extern int lttng_create_session(const char *name, const char *path);
f3ed775e 245
7d29a247
DG
246/*
247 * Destroy tracing session.
248 *
249 * The session will not be useable anymore, tracing will stopped for all
250 * registered trace and tracing buffers will be flushed.
251 */
843f5df9 252extern int lttng_destroy_session(const char *name);
f3ed775e 253
e6ddca71 254/*
9f19cc17 255 * List all tracing sessions.
7d29a247 256 *
9f19cc17 257 * Return the size of the "lttng_session" array. Caller must free(3).
e6ddca71 258 */
ca95a216 259extern int lttng_list_sessions(struct lttng_session **sessions);
f3ed775e 260
9f19cc17 261/*
2a71efd5 262 * List registered domain(s) of a session.
9f19cc17
DG
263 *
264 * Return the size of the "lttng_domain" array. Caller must free(3).
265 */
330be774 266extern int lttng_list_domains(const char *session_name,
9f19cc17
DG
267 struct lttng_domain **domains);
268
269/*
270 * List channel(s) of a session.
271 *
272 * Return the size of the "lttng_channel" array. Caller must free(3).
273 */
cd80958d
DG
274extern int lttng_list_channels(struct lttng_handle *handle,
275 struct lttng_channel **channels);
9f19cc17
DG
276
277/*
278 * List event(s) of a session channel.
279 *
280 * Return the size of the "lttng_event" array. Caller must free(3).
281 */
cd80958d
DG
282extern int lttng_list_events(struct lttng_handle *handle,
283 const char *channel_name, struct lttng_event **events);
9f19cc17
DG
284
285/*
cd80958d 286 * List available tracepoints of a specific lttng domain.
9f19cc17
DG
287 *
288 * Return the size of the "lttng_event" array. Caller must free(3).
289 */
cd80958d 290extern int lttng_list_tracepoints(struct lttng_handle *handle,
2a71efd5 291 struct lttng_event **events);
9f19cc17 292
7d29a247
DG
293/*
294 * Check if a session daemon is alive.
295 */
947308c4 296extern int lttng_session_daemon_alive(void);
f3ed775e 297
7d29a247
DG
298/*
299 * Set tracing group for the *current* flow of execution.
300 */
b7384347 301extern int lttng_set_tracing_group(const char *name);
f3ed775e 302
7d29a247
DG
303/*
304 * Return a human readable error message of a lttng-tools error code.
305 *
306 * Parameter MUST be a negative value or else you'll get a generic message.
307 */
9a745bc7 308extern const char *lttng_strerror(int code);
b7384347 309
d9800920
DG
310/*
311 * This call permits to register an "outside consumer" to a session and a lttng
312 * domain. No consumer will be spawned and all fds/commands will go through the
313 * socket path given (socket_path).
314 *
3bd1e081 315 * NOTE: At the moment, if you use the liblttng-kconsumer, you can only use the
d9800920
DG
316 * command socket. The error socket is not supported yet for roaming consumers.
317 */
318extern int lttng_register_consumer(struct lttng_handle *handle,
319 const char *socket_path);
320
7d29a247
DG
321/*
322 * Start tracing for *all* registered trace (kernel and user-space).
323 */
6a4f824d 324extern int lttng_start_tracing(const char *session_name);
f3ed775e 325
7d29a247
DG
326/*
327 * Stop tracing for *all* registered trace (kernel and user-space).
328 */
6a4f824d 329extern int lttng_stop_tracing(const char *session_name);
f3ed775e 330
b7384347 331/*
7d29a247
DG
332 * Add context to event for a specific channel.
333 *
334 * If event_name is NULL, the context is applied to all event of the channel.
335 * If channel_name is NULL, a lookup of the event's channel is done.
336 * If both are NULL, the context is applied on all events of all channels.
b7384347 337 */
cd80958d 338extern int lttng_add_context(struct lttng_handle *handle,
38057ed1
DG
339 struct lttng_event_context *ctx, const char *event_name,
340 const char *channel_name);
f3ed775e 341
7d29a247
DG
342/*
343 * Create or enable a kernel event.
344 *
345 * If the event you are trying to enable does not exist, it will be created,
346 * else it is enabled.
347 *
348 * If channel_name is NULL, the default channel is used (channel0).
349 */
cd80958d
DG
350extern int lttng_enable_event(struct lttng_handle *handle,
351 struct lttng_event *ev, const char *channel_name);
f3ed775e 352
7d29a247
DG
353/*
354 * Create or enable a kernel channel.
355 *
356 * If name is NULL, the default channel is enabled (channel0).
357 */
cd80958d 358extern int lttng_enable_channel(struct lttng_handle *handle,
38057ed1 359 struct lttng_channel *chan);
f3ed775e 360
7d29a247
DG
361/*
362 * Disable kernel event.
363 *
364 * If channel_name is NULL, the default channel is used (channel0).
365 */
cd80958d
DG
366extern int lttng_disable_event(struct lttng_handle *handle,
367 const char *name, const char *channel_name);
fac6795d 368
1df4dedd 369/*
7d29a247
DG
370 * Disable kernel channel.
371 *
372 * If channel_name is NULL, the default channel is disabled (channel0).
1df4dedd 373 */
cd80958d 374extern int lttng_disable_channel(struct lttng_handle *handle,
38057ed1 375 const char *name);
1df4dedd 376
d0254c7c
MD
377/*
378 * Calibrate LTTng overhead.
379 */
cd80958d 380extern int lttng_calibrate(struct lttng_handle *handle,
d0254c7c
MD
381 struct lttng_calibrate *calibrate);
382
5edd7e09
DG
383/*
384 * Set the default channel attributes for a specific domain and an allocated
385 * lttng_channel_attr pointer.
386 */
387extern void lttng_channel_set_default_attr(struct lttng_domain *domain,
388 struct lttng_channel_attr *attr);
389
b7384347 390#endif /* _LTTNG_H */
This page took 0.048488 seconds and 5 git commands to generate.