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