4 * Linux Trace Toolkit Control Library Header File
6 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
8 * This library is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Lesser General Public License, version 2.1 only,
10 * as published by the Free Software Foundation.
12 * This library is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 #include <sys/types.h>
30 * Event symbol length. Copied from LTTng kernel ABI.
32 #define LTTNG_SYMBOL_NAME_LEN 256
35 * Every lttng_event_* structure both apply to kernel event and user-space
40 * Domain types: the different possible tracers.
42 enum lttng_domain_type
{
43 LTTNG_DOMAIN_KERNEL
= 1,
47 * For now, the domains below are not implemented. However, we keep them
48 * here in order to retain their enum values for future development. Note
49 * that it is on the roadmap to implement them.
51 LTTNG_DOMAIN_UST_EXEC_NAME = 3,
52 LTTNG_DOMAIN_UST_PID = 4,
53 LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN = 5,
58 * Instrumentation type of tracing event.
60 enum lttng_event_type
{
62 LTTNG_EVENT_TRACEPOINT
= 0,
63 LTTNG_EVENT_PROBE
= 1,
64 LTTNG_EVENT_FUNCTION
= 2,
65 LTTNG_EVENT_FUNCTION_ENTRY
= 3,
67 LTTNG_EVENT_SYSCALL
= 5,
71 * Loglevel information.
73 enum lttng_loglevel_type
{
74 LTTNG_EVENT_LOGLEVEL_ALL
= 0,
75 LTTNG_EVENT_LOGLEVEL_RANGE
= 1,
76 LTTNG_EVENT_LOGLEVEL_SINGLE
= 2,
80 * Available loglevels.
83 LTTNG_LOGLEVEL_EMERG
= 0,
84 LTTNG_LOGLEVEL_ALERT
= 1,
85 LTTNG_LOGLEVEL_CRIT
= 2,
86 LTTNG_LOGLEVEL_ERR
= 3,
87 LTTNG_LOGLEVEL_WARNING
= 4,
88 LTTNG_LOGLEVEL_NOTICE
= 5,
89 LTTNG_LOGLEVEL_INFO
= 6,
90 LTTNG_LOGLEVEL_DEBUG_SYSTEM
= 7,
91 LTTNG_LOGLEVEL_DEBUG_PROGRAM
= 8,
92 LTTNG_LOGLEVEL_DEBUG_PROCESS
= 9,
93 LTTNG_LOGLEVEL_DEBUG_MODULE
= 10,
94 LTTNG_LOGLEVEL_DEBUG_UNIT
= 11,
95 LTTNG_LOGLEVEL_DEBUG_FUNCTION
= 12,
96 LTTNG_LOGLEVEL_DEBUG_LINE
= 13,
97 LTTNG_LOGLEVEL_DEBUG
= 14,
101 * LTTng consumer mode
103 enum lttng_event_output
{
104 LTTNG_EVENT_SPLICE
= 0,
105 LTTNG_EVENT_MMAP
= 1,
108 /* Event context possible type */
109 enum lttng_event_context_type
{
110 LTTNG_EVENT_CONTEXT_PID
= 0,
111 LTTNG_EVENT_CONTEXT_PERF_COUNTER
= 1,
112 LTTNG_EVENT_CONTEXT_PROCNAME
= 2,
113 LTTNG_EVENT_CONTEXT_PRIO
= 3,
114 LTTNG_EVENT_CONTEXT_NICE
= 4,
115 LTTNG_EVENT_CONTEXT_VPID
= 5,
116 LTTNG_EVENT_CONTEXT_TID
= 6,
117 LTTNG_EVENT_CONTEXT_VTID
= 7,
118 LTTNG_EVENT_CONTEXT_PPID
= 8,
119 LTTNG_EVENT_CONTEXT_VPPID
= 9,
120 LTTNG_EVENT_CONTEXT_PTHREAD_ID
= 10,
123 enum lttng_calibrate_type
{
124 LTTNG_CALIBRATE_FUNCTION
= 0,
128 * The structures should be initialized to zero before use.
130 #define LTTNG_DOMAIN_PADDING1 16
131 #define LTTNG_DOMAIN_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32
132 struct lttng_domain
{
133 enum lttng_domain_type type
;
134 char padding
[LTTNG_DOMAIN_PADDING1
];
138 char exec_name
[NAME_MAX
];
139 char padding
[LTTNG_DOMAIN_PADDING2
];
144 * Perf counter attributes
146 * The structures should be initialized to zero before use.
148 #define LTTNG_PERF_EVENT_PADDING1 16
149 struct lttng_event_perf_counter_ctx
{
152 char name
[LTTNG_SYMBOL_NAME_LEN
];
154 char padding
[LTTNG_PERF_EVENT_PADDING1
];
158 * Event/channel context
160 * The structures should be initialized to zero before use.
162 #define LTTNG_EVENT_CONTEXT_PADDING1 16
163 #define LTTNG_EVENT_CONTEXT_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32
164 struct lttng_event_context
{
165 enum lttng_event_context_type ctx
;
166 char padding
[LTTNG_EVENT_CONTEXT_PADDING1
];
169 struct lttng_event_perf_counter_ctx perf_counter
;
170 char padding
[LTTNG_EVENT_CONTEXT_PADDING2
];
177 * Either addr is used or symbol_name and offset.
179 * The structures should be initialized to zero before use.
181 #define LTTNG_EVENT_PROBE_PADDING1 16
182 struct lttng_event_probe_attr
{
186 char symbol_name
[LTTNG_SYMBOL_NAME_LEN
];
188 char padding
[LTTNG_EVENT_PROBE_PADDING1
];
194 * The structures should be initialized to zero before use.
196 #define LTTNG_EVENT_FUNCTION_PADDING1 16
197 struct lttng_event_function_attr
{
198 char symbol_name
[LTTNG_SYMBOL_NAME_LEN
];
200 char padding
[LTTNG_EVENT_FUNCTION_PADDING1
];
204 * Generic lttng event
206 * The structures should be initialized to zero before use.
208 #define LTTNG_EVENT_PADDING1 16
209 #define LTTNG_EVENT_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32
211 enum lttng_event_type type
;
212 char name
[LTTNG_SYMBOL_NAME_LEN
];
214 enum lttng_loglevel_type loglevel_type
;
220 char padding
[LTTNG_EVENT_PADDING1
];
222 /* Per event type configuration */
224 struct lttng_event_probe_attr probe
;
225 struct lttng_event_function_attr ftrace
;
227 char padding
[LTTNG_EVENT_PADDING2
];
231 enum lttng_event_field_type
{
232 LTTNG_EVENT_FIELD_OTHER
= 0,
233 LTTNG_EVENT_FIELD_INTEGER
= 1,
234 LTTNG_EVENT_FIELD_ENUM
= 2,
235 LTTNG_EVENT_FIELD_FLOAT
= 3,
236 LTTNG_EVENT_FIELD_STRING
= 4,
239 #define LTTNG_EVENT_FIELD_PADDING LTTNG_SYMBOL_NAME_LEN + 32
240 struct lttng_event_field
{
241 char field_name
[LTTNG_SYMBOL_NAME_LEN
];
242 enum lttng_event_field_type type
;
243 char padding
[LTTNG_EVENT_FIELD_PADDING
];
244 struct lttng_event event
;
248 * Tracer channel attributes. For both kernel and user-space.
250 * The structures should be initialized to zero before use.
252 #define LTTNG_CHANNEL_ATTR_PADDING1 LTTNG_SYMBOL_NAME_LEN + 32
253 struct lttng_channel_attr
{
254 int overwrite
; /* 1: overwrite, 0: discard */
255 uint64_t subbuf_size
; /* bytes */
256 uint64_t num_subbuf
; /* power of 2 */
257 unsigned int switch_timer_interval
; /* usec */
258 unsigned int read_timer_interval
; /* usec */
259 enum lttng_event_output output
; /* splice, mmap */
261 char padding
[LTTNG_CHANNEL_ATTR_PADDING1
];
265 * Channel information structure. For both kernel and user-space.
267 * The structures should be initialized to zero before use.
269 #define LTTNG_CHANNEL_PADDING1 16
270 struct lttng_channel
{
271 char name
[LTTNG_SYMBOL_NAME_LEN
];
273 struct lttng_channel_attr attr
;
275 char padding
[LTTNG_CHANNEL_PADDING1
];
278 #define LTTNG_CALIBRATE_PADDING1 16
279 struct lttng_calibrate
{
280 enum lttng_calibrate_type type
;
282 char padding
[LTTNG_CALIBRATE_PADDING1
];
286 * Basic session information.
288 * This is an 'output data' meaning that it only comes *from* the session
289 * daemon *to* the lttng client. It's basically a 'human' representation of
290 * tracing entities (here a session).
292 * The structures should be initialized to zero before use.
294 #define LTTNG_SESSION_PADDING1 16
295 struct lttng_session
{
297 /* The path where traces are written */
299 uint32_t enabled
; /* enabled/started: 1, disabled/stopped: 0 */
301 char padding
[LTTNG_SESSION_PADDING1
];
305 * Handle used as a context for commands.
307 * The structures should be initialized to zero before use.
309 #define LTTNG_HANDLE_PADDING1 16
310 struct lttng_handle
{
311 char session_name
[NAME_MAX
];
312 struct lttng_domain domain
;
314 char padding
[LTTNG_HANDLE_PADDING1
];
318 * Public LTTng control API
320 * For functions having an lttng domain type as parameter, if a bad value is
321 * given, NO default is applied and an error is returned.
323 * On success, all functions of the API return 0 or the size of the allocated
326 * On error, a negative value is returned being a specific lttng-tools error
327 * code which can be humanly interpreted with lttng_strerror(err).
329 * Exceptions to this are noted below.
333 * Create a handle used as a context for every request made to the library.
335 * This handle contains the session name and lttng domain on which the command
337 * The returned pointer will be NULL in case of malloc() error.
339 extern struct lttng_handle
*lttng_create_handle(const char *session_name
,
340 struct lttng_domain
*domain
);
343 * Destroy a handle. This will simply free(3) the data pointer returned by
344 * lttng_create_handle(), rendering it unusable.
346 extern void lttng_destroy_handle(struct lttng_handle
*handle
);
349 * Create a tracing session using a name and a path where the trace will be
352 extern int lttng_create_session(const char *name
, const char *path
);
355 * Destroy a tracing session.
357 * The session will not be usable anymore, tracing will be stopped for all
358 * registered traces, and the tracing buffers will be flushed.
360 extern int lttng_destroy_session(const char *name
);
363 * List all the tracing sessions.
365 * Return the size (number of entries) of the "lttng_session" array. Caller
368 extern int lttng_list_sessions(struct lttng_session
**sessions
);
371 * List the registered domain(s) of a session.
373 * Return the size (number of entries) of the "lttng_domain" array. Caller
376 extern int lttng_list_domains(const char *session_name
,
377 struct lttng_domain
**domains
);
380 * List the channel(s) of a session.
382 * Return the size (number of entries) of the "lttng_channel" array. Caller
385 extern int lttng_list_channels(struct lttng_handle
*handle
,
386 struct lttng_channel
**channels
);
389 * List the event(s) of a session channel.
391 * Return the size (number of entries) of the "lttng_event" array.
392 * Caller must free(3).
394 extern int lttng_list_events(struct lttng_handle
*handle
,
395 const char *channel_name
, struct lttng_event
**events
);
398 * List the available tracepoints of a specific lttng domain.
400 * Return the size (number of entries) of the "lttng_event" array.
401 * Caller must free(3).
403 extern int lttng_list_tracepoints(struct lttng_handle
*handle
,
404 struct lttng_event
**events
);
407 * List the available tracepoints fields of a specific lttng domain.
409 * Return the size (number of entries) of the "lttng_event_field" array.
410 * Caller must free(3).
412 extern int lttng_list_tracepoint_fields(struct lttng_handle
*handle
,
413 struct lttng_event_field
**fields
);
416 * Check if a session daemon is alive.
418 * Return 1 if alive or 0 if not. On error returns a negative value.
420 extern int lttng_session_daemon_alive(void);
423 * Set the tracing group for the *current* flow of execution.
425 * On success, returns 0, on error, returns -1 (null name) or -ENOMEM.
427 extern int lttng_set_tracing_group(const char *name
);
430 * Return a human-readable error message for an lttng-tools error code.
432 * Parameter MUST be a negative value or else you'll get a generic message.
434 extern const char *lttng_strerror(int code
);
437 * This call registers an "outside consumer" for a session and an lttng domain.
438 * No consumer will be spawned and all fds/commands will go through the socket
439 * path given (socket_path).
441 * NOTE: At the moment, if you use the liblttng-kconsumer, you can only use the
442 * command socket. The error socket is not supported yet for roaming consumers.
444 extern int lttng_register_consumer(struct lttng_handle
*handle
,
445 const char *socket_path
);
448 * Start tracing for *all* registered traces (kernel and user-space).
450 extern int lttng_start_tracing(const char *session_name
);
453 * Stop tracing for *all* registered traces (kernel and user-space).
455 extern int lttng_stop_tracing(const char *session_name
);
458 * Add context to event(s) for a specific channel (or for all).
460 * If event_name is NULL, the context is applied to all events of the channel.
461 * If channel_name is NULL, a lookup of the event's channel is done.
462 * If both are NULL, the context is applied to all events of all channels.
464 extern int lttng_add_context(struct lttng_handle
*handle
,
465 struct lttng_event_context
*ctx
, const char *event_name
,
466 const char *channel_name
);
469 * Create or enable an event (or events) for a channel.
471 * If the event you are trying to enable does not exist, it will be created,
472 * else it is enabled.
473 * If event_name is NULL, all events are enabled.
474 * If channel_name is NULL, the default channel is used (channel0).
476 extern int lttng_enable_event(struct lttng_handle
*handle
,
477 struct lttng_event
*ev
, const char *channel_name
);
480 * Create or enable a channel.
481 * The channel name cannot be NULL.
483 extern int lttng_enable_channel(struct lttng_handle
*handle
,
484 struct lttng_channel
*chan
);
487 * Disable event(s) of a channel and domain.
489 * If event_name is NULL, all events are disabled.
490 * If channel_name is NULL, the default channel is used (channel0).
492 extern int lttng_disable_event(struct lttng_handle
*handle
,
493 const char *name
, const char *channel_name
);
498 * The channel name cannot be NULL.
500 extern int lttng_disable_channel(struct lttng_handle
*handle
,
504 * Calibrate LTTng overhead.
506 extern int lttng_calibrate(struct lttng_handle
*handle
,
507 struct lttng_calibrate
*calibrate
);
510 * Set the default channel attributes for a specific domain and an allocated
511 * lttng_channel_attr pointer.
513 * If either or both of the arguments are NULL, nothing happens.
515 extern void lttng_channel_set_default_attr(struct lttng_domain
*domain
,
516 struct lttng_channel_attr
*attr
);
518 #endif /* _LTTNG_H */