Commit | Line | Data |
---|---|---|
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 | * |
1e46a50f | 8 | * This library is free software; you can redistribute it and/or modify it |
d14d33bf AM |
9 | * under the terms of the GNU Lesser General Public License, version 2.1 only, |
10 | * as published by the Free Software Foundation. | |
82a3637f | 11 | * |
1e46a50f TD |
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 | |
15 | * for more details. | |
82a3637f | 16 | * |
1e46a50f TD |
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 | |
fac6795d DG |
20 | */ |
21 | ||
73db5be4 DG |
22 | #ifndef LTTNG_H |
23 | #define LTTNG_H | |
fac6795d | 24 | |
57167058 | 25 | #include <limits.h> |
1e307fab DG |
26 | #include <stdint.h> |
27 | #include <sys/types.h> | |
57167058 | 28 | |
03b1319d DG |
29 | /* Error codes that can be returned by API calls */ |
30 | #include <lttng/lttng-error.h> | |
31 | ||
5168918c DG |
32 | #ifdef __cplusplus |
33 | extern "C" { | |
34 | #endif | |
35 | ||
b7384347 | 36 | /* |
e6ddca71 | 37 | * Event symbol length. Copied from LTTng kernel ABI. |
1657e9bb | 38 | */ |
8d326ab9 | 39 | #define LTTNG_SYMBOL_NAME_LEN 256 |
f3ed775e | 40 | |
e6ddca71 DG |
41 | /* |
42 | * Every lttng_event_* structure both apply to kernel event and user-space | |
43 | * event. | |
e6ddca71 DG |
44 | */ |
45 | ||
7d29a247 | 46 | /* |
1e46a50f | 47 | * Domain types: the different possible tracers. |
7d29a247 DG |
48 | */ |
49 | enum lttng_domain_type { | |
b9dfb167 DG |
50 | LTTNG_DOMAIN_KERNEL = 1, /* Linux Kernel tracer. */ |
51 | LTTNG_DOMAIN_UST = 2, /* Global Userspace tracer. */ | |
52 | LTTNG_DOMAIN_JUL = 3, /* Java Util Logging. */ | |
7d29a247 DG |
53 | }; |
54 | ||
7d29a247 DG |
55 | /* |
56 | * Instrumentation type of tracing event. | |
57 | */ | |
f3ed775e | 58 | enum lttng_event_type { |
7a3d1328 MD |
59 | LTTNG_EVENT_ALL = -1, |
60 | LTTNG_EVENT_TRACEPOINT = 0, | |
61 | LTTNG_EVENT_PROBE = 1, | |
62 | LTTNG_EVENT_FUNCTION = 2, | |
63 | LTTNG_EVENT_FUNCTION_ENTRY = 3, | |
64 | LTTNG_EVENT_NOOP = 4, | |
65 | LTTNG_EVENT_SYSCALL = 5, | |
0cda4f28 MD |
66 | }; |
67 | ||
68 | /* | |
69 | * Loglevel information. | |
70 | */ | |
71 | enum lttng_loglevel_type { | |
8005f29a MD |
72 | LTTNG_EVENT_LOGLEVEL_ALL = 0, |
73 | LTTNG_EVENT_LOGLEVEL_RANGE = 1, | |
74 | LTTNG_EVENT_LOGLEVEL_SINGLE = 2, | |
1657e9bb DG |
75 | }; |
76 | ||
46839cc2 MD |
77 | /* |
78 | * Available loglevels. | |
79 | */ | |
80 | enum lttng_loglevel { | |
00e2e675 DG |
81 | LTTNG_LOGLEVEL_EMERG = 0, |
82 | LTTNG_LOGLEVEL_ALERT = 1, | |
83 | LTTNG_LOGLEVEL_CRIT = 2, | |
84 | LTTNG_LOGLEVEL_ERR = 3, | |
85 | LTTNG_LOGLEVEL_WARNING = 4, | |
86 | LTTNG_LOGLEVEL_NOTICE = 5, | |
87 | LTTNG_LOGLEVEL_INFO = 6, | |
88 | LTTNG_LOGLEVEL_DEBUG_SYSTEM = 7, | |
89 | LTTNG_LOGLEVEL_DEBUG_PROGRAM = 8, | |
90 | LTTNG_LOGLEVEL_DEBUG_PROCESS = 9, | |
91 | LTTNG_LOGLEVEL_DEBUG_MODULE = 10, | |
92 | LTTNG_LOGLEVEL_DEBUG_UNIT = 11, | |
93 | LTTNG_LOGLEVEL_DEBUG_FUNCTION = 12, | |
94 | LTTNG_LOGLEVEL_DEBUG_LINE = 13, | |
95 | LTTNG_LOGLEVEL_DEBUG = 14, | |
46839cc2 MD |
96 | }; |
97 | ||
e3a639d0 DG |
98 | /* |
99 | * Available loglevels for the JUL domain. Those are an exact map from the | |
100 | * class java.util.logging.Level. | |
101 | */ | |
102 | enum lttng_loglevel_jul { | |
103 | LTTNG_LOGLEVEL_JUL_OFF = INT32_MAX, | |
104 | LTTNG_LOGLEVEL_JUL_SEVERE = 1000, | |
105 | LTTNG_LOGLEVEL_JUL_WARNING = 900, | |
106 | LTTNG_LOGLEVEL_JUL_INFO = 800, | |
107 | LTTNG_LOGLEVEL_JUL_CONFIG = 700, | |
108 | LTTNG_LOGLEVEL_JUL_FINE = 500, | |
109 | LTTNG_LOGLEVEL_JUL_FINER = 400, | |
110 | LTTNG_LOGLEVEL_JUL_FINEST = 300, | |
111 | LTTNG_LOGLEVEL_JUL_ALL = INT32_MIN, | |
112 | }; | |
113 | ||
e6ddca71 DG |
114 | /* |
115 | * LTTng consumer mode | |
116 | */ | |
117 | enum lttng_event_output { | |
d78d6610 DG |
118 | LTTNG_EVENT_SPLICE = 0, |
119 | LTTNG_EVENT_MMAP = 1, | |
e6ddca71 DG |
120 | }; |
121 | ||
7d29a247 DG |
122 | /* Event context possible type */ |
123 | enum lttng_event_context_type { | |
d78d6610 DG |
124 | LTTNG_EVENT_CONTEXT_PID = 0, |
125 | LTTNG_EVENT_CONTEXT_PERF_COUNTER = 1, | |
9197c5c4 | 126 | LTTNG_EVENT_CONTEXT_PROCNAME = 2, |
d78d6610 DG |
127 | LTTNG_EVENT_CONTEXT_PRIO = 3, |
128 | LTTNG_EVENT_CONTEXT_NICE = 4, | |
129 | LTTNG_EVENT_CONTEXT_VPID = 5, | |
130 | LTTNG_EVENT_CONTEXT_TID = 6, | |
131 | LTTNG_EVENT_CONTEXT_VTID = 7, | |
132 | LTTNG_EVENT_CONTEXT_PPID = 8, | |
133 | LTTNG_EVENT_CONTEXT_VPPID = 9, | |
9197c5c4 | 134 | LTTNG_EVENT_CONTEXT_PTHREAD_ID = 10, |
54773d68 | 135 | LTTNG_EVENT_CONTEXT_HOSTNAME = 11, |
7c612c2e | 136 | LTTNG_EVENT_CONTEXT_IP = 12, |
d65106b1 DG |
137 | }; |
138 | ||
d0254c7c | 139 | enum lttng_calibrate_type { |
d78d6610 | 140 | LTTNG_CALIBRATE_FUNCTION = 0, |
d0254c7c MD |
141 | }; |
142 | ||
44a5e5eb DG |
143 | /* Health component for the health check function. */ |
144 | enum lttng_health_component { | |
145 | LTTNG_HEALTH_CMD, | |
139ac872 | 146 | LTTNG_HEALTH_APP_MANAGE, |
44a5e5eb DG |
147 | LTTNG_HEALTH_APP_REG, |
148 | LTTNG_HEALTH_KERNEL, | |
149 | LTTNG_HEALTH_CONSUMER, | |
0b2dc8df | 150 | LTTNG_HEALTH_HT_CLEANUP, |
380e8d6f | 151 | LTTNG_HEALTH_APP_MANAGE_NOTIFY, |
12e2b881 | 152 | LTTNG_HEALTH_APP_REG_DISPATCH, |
44a5e5eb DG |
153 | LTTNG_HEALTH_ALL, |
154 | }; | |
155 | ||
7972aab2 DG |
156 | /* Buffer type for a specific domain. */ |
157 | enum lttng_buffer_type { | |
158 | LTTNG_BUFFER_PER_PID, /* Only supported by UST being the default. */ | |
159 | LTTNG_BUFFER_PER_UID, /* Only supported by UST. */ | |
160 | LTTNG_BUFFER_GLOBAL, /* Only supported by the Kernel. */ | |
161 | }; | |
162 | ||
ece640c8 RB |
163 | /* |
164 | * The structures should be initialized to zero before use. | |
165 | */ | |
7972aab2 | 166 | #define LTTNG_DOMAIN_PADDING1 12 |
8d326ab9 | 167 | #define LTTNG_DOMAIN_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32 |
9f19cc17 DG |
168 | struct lttng_domain { |
169 | enum lttng_domain_type type; | |
7972aab2 | 170 | enum lttng_buffer_type buf_type; |
8d326ab9 DG |
171 | char padding[LTTNG_DOMAIN_PADDING1]; |
172 | ||
9f19cc17 DG |
173 | union { |
174 | pid_t pid; | |
175 | char exec_name[NAME_MAX]; | |
8d326ab9 | 176 | char padding[LTTNG_DOMAIN_PADDING2]; |
9f19cc17 | 177 | } attr; |
54c90d10 | 178 | }; |
9f19cc17 | 179 | |
ece640c8 RB |
180 | /* |
181 | * Perf counter attributes | |
182 | * | |
183 | * The structures should be initialized to zero before use. | |
184 | */ | |
8d326ab9 | 185 | #define LTTNG_PERF_EVENT_PADDING1 16 |
7d29a247 | 186 | struct lttng_event_perf_counter_ctx { |
d65106b1 DG |
187 | uint32_t type; |
188 | uint64_t config; | |
189 | char name[LTTNG_SYMBOL_NAME_LEN]; | |
8d326ab9 DG |
190 | |
191 | char padding[LTTNG_PERF_EVENT_PADDING1]; | |
54c90d10 | 192 | }; |
d65106b1 | 193 | |
ece640c8 RB |
194 | /* |
195 | * Event/channel context | |
196 | * | |
197 | * The structures should be initialized to zero before use. | |
198 | */ | |
8d326ab9 DG |
199 | #define LTTNG_EVENT_CONTEXT_PADDING1 16 |
200 | #define LTTNG_EVENT_CONTEXT_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32 | |
7d29a247 DG |
201 | struct lttng_event_context { |
202 | enum lttng_event_context_type ctx; | |
8d326ab9 DG |
203 | char padding[LTTNG_EVENT_CONTEXT_PADDING1]; |
204 | ||
d65106b1 | 205 | union { |
7d29a247 | 206 | struct lttng_event_perf_counter_ctx perf_counter; |
8d326ab9 | 207 | char padding[LTTNG_EVENT_CONTEXT_PADDING2]; |
d65106b1 | 208 | } u; |
54c90d10 | 209 | }; |
d65106b1 | 210 | |
b7384347 | 211 | /* |
7d29a247 DG |
212 | * Event probe. |
213 | * | |
214 | * Either addr is used or symbol_name and offset. | |
ece640c8 RB |
215 | * |
216 | * The structures should be initialized to zero before use. | |
57167058 | 217 | */ |
8d326ab9 | 218 | #define LTTNG_EVENT_PROBE_PADDING1 16 |
7d29a247 | 219 | struct lttng_event_probe_attr { |
f3ed775e DG |
220 | uint64_t addr; |
221 | ||
222 | uint64_t offset; | |
223 | char symbol_name[LTTNG_SYMBOL_NAME_LEN]; | |
8d326ab9 DG |
224 | |
225 | char padding[LTTNG_EVENT_PROBE_PADDING1]; | |
54c90d10 | 226 | }; |
57167058 | 227 | |
b7384347 | 228 | /* |
f3ed775e | 229 | * Function tracer |
ece640c8 RB |
230 | * |
231 | * The structures should be initialized to zero before use. | |
f3ed775e | 232 | */ |
8d326ab9 | 233 | #define LTTNG_EVENT_FUNCTION_PADDING1 16 |
f3ed775e DG |
234 | struct lttng_event_function_attr { |
235 | char symbol_name[LTTNG_SYMBOL_NAME_LEN]; | |
8d326ab9 DG |
236 | |
237 | char padding[LTTNG_EVENT_FUNCTION_PADDING1]; | |
54c90d10 | 238 | }; |
f3ed775e DG |
239 | |
240 | /* | |
241 | * Generic lttng event | |
ece640c8 RB |
242 | * |
243 | * The structures should be initialized to zero before use. | |
f3ed775e | 244 | */ |
4634f12e | 245 | #define LTTNG_EVENT_PADDING1 14 |
8d326ab9 | 246 | #define LTTNG_EVENT_PADDING2 LTTNG_SYMBOL_NAME_LEN + 32 |
f3ed775e | 247 | struct lttng_event { |
0cda4f28 | 248 | enum lttng_event_type type; |
f3ed775e | 249 | char name[LTTNG_SYMBOL_NAME_LEN]; |
0cda4f28 MD |
250 | |
251 | enum lttng_loglevel_type loglevel_type; | |
8005f29a | 252 | int loglevel; |
0cda4f28 | 253 | |
35dc4d62 | 254 | int32_t enabled; /* Does not apply: -1 */ |
b551a063 | 255 | pid_t pid; |
fceb65df | 256 | unsigned char filter; /* filter enabled ? */ |
4634f12e | 257 | unsigned char exclusion; /* exclusions added ? */ |
8d326ab9 DG |
258 | |
259 | char padding[LTTNG_EVENT_PADDING1]; | |
260 | ||
f3ed775e DG |
261 | /* Per event type configuration */ |
262 | union { | |
7d29a247 | 263 | struct lttng_event_probe_attr probe; |
f3ed775e | 264 | struct lttng_event_function_attr ftrace; |
8d326ab9 DG |
265 | |
266 | char padding[LTTNG_EVENT_PADDING2]; | |
f3ed775e | 267 | } attr; |
54c90d10 | 268 | }; |
f3ed775e | 269 | |
f37d259d MD |
270 | enum lttng_event_field_type { |
271 | LTTNG_EVENT_FIELD_OTHER = 0, | |
272 | LTTNG_EVENT_FIELD_INTEGER = 1, | |
273 | LTTNG_EVENT_FIELD_ENUM = 2, | |
274 | LTTNG_EVENT_FIELD_FLOAT = 3, | |
275 | LTTNG_EVENT_FIELD_STRING = 4, | |
276 | }; | |
277 | ||
278 | #define LTTNG_EVENT_FIELD_PADDING LTTNG_SYMBOL_NAME_LEN + 32 | |
279 | struct lttng_event_field { | |
280 | char field_name[LTTNG_SYMBOL_NAME_LEN]; | |
281 | enum lttng_event_field_type type; | |
282 | char padding[LTTNG_EVENT_FIELD_PADDING]; | |
283 | struct lttng_event event; | |
590b9e3c | 284 | int nowrite; |
54c90d10 | 285 | }; |
f37d259d | 286 | |
e6ddca71 DG |
287 | /* |
288 | * Tracer channel attributes. For both kernel and user-space. | |
ece640c8 RB |
289 | * |
290 | * The structures should be initialized to zero before use. | |
e6ddca71 | 291 | */ |
ecc48a90 | 292 | #define LTTNG_CHANNEL_ATTR_PADDING1 LTTNG_SYMBOL_NAME_LEN + 12 |
f3ed775e | 293 | struct lttng_channel_attr { |
8ce37aa5 DG |
294 | int overwrite; /* 1: overwrite, 0: discard */ |
295 | uint64_t subbuf_size; /* bytes */ | |
296 | uint64_t num_subbuf; /* power of 2 */ | |
297 | unsigned int switch_timer_interval; /* usec */ | |
298 | unsigned int read_timer_interval; /* usec */ | |
f05b5f07 | 299 | enum lttng_event_output output; /* splice, mmap */ |
1624d5b7 JD |
300 | /* LTTng 2.1 padding limit */ |
301 | uint64_t tracefile_size; /* bytes */ | |
302 | uint64_t tracefile_count; /* number of tracefiles */ | |
ecc48a90 JD |
303 | /* LTTng 2.3 padding limit */ |
304 | unsigned int live_timer_interval; /* usec */ | |
8d326ab9 DG |
305 | |
306 | char padding[LTTNG_CHANNEL_ATTR_PADDING1]; | |
54c90d10 | 307 | }; |
f3ed775e DG |
308 | |
309 | /* | |
e6ddca71 | 310 | * Channel information structure. For both kernel and user-space. |
ece640c8 RB |
311 | * |
312 | * The structures should be initialized to zero before use. | |
1657e9bb | 313 | */ |
8d326ab9 | 314 | #define LTTNG_CHANNEL_PADDING1 16 |
e6ddca71 | 315 | struct lttng_channel { |
045e5491 | 316 | char name[LTTNG_SYMBOL_NAME_LEN]; |
9f19cc17 | 317 | uint32_t enabled; |
e6ddca71 | 318 | struct lttng_channel_attr attr; |
8d326ab9 DG |
319 | |
320 | char padding[LTTNG_CHANNEL_PADDING1]; | |
54c90d10 | 321 | }; |
f3ed775e | 322 | |
8d326ab9 | 323 | #define LTTNG_CALIBRATE_PADDING1 16 |
d0254c7c MD |
324 | struct lttng_calibrate { |
325 | enum lttng_calibrate_type type; | |
8d326ab9 DG |
326 | |
327 | char padding[LTTNG_CALIBRATE_PADDING1]; | |
54c90d10 | 328 | }; |
d0254c7c | 329 | |
e6ddca71 DG |
330 | /* |
331 | * Basic session information. | |
332 | * | |
333 | * This is an 'output data' meaning that it only comes *from* the session | |
334 | * daemon *to* the lttng client. It's basically a 'human' representation of | |
335 | * tracing entities (here a session). | |
ece640c8 RB |
336 | * |
337 | * The structures should be initialized to zero before use. | |
e6ddca71 | 338 | */ |
2cbf8fed | 339 | #define LTTNG_SESSION_PADDING1 12 |
e6ddca71 | 340 | struct lttng_session { |
f3ed775e | 341 | char name[NAME_MAX]; |
e6ddca71 DG |
342 | /* The path where traces are written */ |
343 | char path[PATH_MAX]; | |
464dd62d | 344 | uint32_t enabled; /* enabled/started: 1, disabled/stopped: 0 */ |
2cbf8fed | 345 | uint32_t snapshot_mode; |
ecc48a90 | 346 | unsigned int live_timer_interval; /* usec */ |
8d326ab9 DG |
347 | |
348 | char padding[LTTNG_SESSION_PADDING1]; | |
54c90d10 | 349 | }; |
1657e9bb | 350 | |
cd80958d DG |
351 | /* |
352 | * Handle used as a context for commands. | |
ece640c8 RB |
353 | * |
354 | * The structures should be initialized to zero before use. | |
cd80958d | 355 | */ |
8d326ab9 | 356 | #define LTTNG_HANDLE_PADDING1 16 |
cd80958d DG |
357 | struct lttng_handle { |
358 | char session_name[NAME_MAX]; | |
359 | struct lttng_domain domain; | |
8d326ab9 DG |
360 | |
361 | char padding[LTTNG_HANDLE_PADDING1]; | |
54c90d10 | 362 | }; |
cd80958d | 363 | |
7d29a247 DG |
364 | /* |
365 | * Public LTTng control API | |
366 | * | |
1e46a50f | 367 | * For functions having an lttng domain type as parameter, if a bad value is |
7d29a247 DG |
368 | * given, NO default is applied and an error is returned. |
369 | * | |
370 | * On success, all functions of the API return 0 or the size of the allocated | |
1e46a50f | 371 | * array (in bytes). |
7d29a247 DG |
372 | * |
373 | * On error, a negative value is returned being a specific lttng-tools error | |
9a745bc7 | 374 | * code which can be humanly interpreted with lttng_strerror(err). |
1e46a50f TD |
375 | * |
376 | * Exceptions to this are noted below. | |
7d29a247 DG |
377 | */ |
378 | ||
b7384347 | 379 | /* |
1e46a50f | 380 | * Create a handle used as a context for every request made to the library. |
cd80958d DG |
381 | * |
382 | * This handle contains the session name and lttng domain on which the command | |
1e46a50f TD |
383 | * will be executed. |
384 | * The returned pointer will be NULL in case of malloc() error. | |
cd80958d DG |
385 | */ |
386 | extern struct lttng_handle *lttng_create_handle(const char *session_name, | |
387 | struct lttng_domain *domain); | |
388 | ||
389 | /* | |
41039c06 DG |
390 | * Destroy an handle. |
391 | * | |
392 | * It free(3) the data pointer returned by lttng_create_handle(), rendering it | |
393 | * unusable. | |
b7384347 | 394 | */ |
cd80958d | 395 | extern void lttng_destroy_handle(struct lttng_handle *handle); |
7d29a247 DG |
396 | |
397 | /* | |
a4b92340 DG |
398 | * Create a tracing session using a name and an optional URL. |
399 | * | |
41039c06 DG |
400 | * If _url_ is NULL, no consumer is created for the session. The name can't be |
401 | * NULL here. | |
00e2e675 | 402 | */ |
a4b92340 | 403 | extern int lttng_create_session(const char *name, const char *url); |
00e2e675 | 404 | |
27babd3a DG |
405 | /* |
406 | * Create a tracing session that will exclusively be used for snapshot meaning | |
407 | * the session will be in no output mode and every channel enabled for that | |
408 | * session will be set in overwrite mode and in mmap output since splice is not | |
409 | * supported. | |
410 | * | |
411 | * If an url is given, it will be used to create a default snapshot output | |
412 | * using it as a destination. If NULL, no output will be defined and an | |
413 | * add-output call will be needed. | |
414 | * | |
415 | * Name can't be NULL. | |
416 | */ | |
417 | extern int lttng_create_session_snapshot(const char *name, | |
418 | const char *snapshot_url); | |
419 | ||
ecc48a90 JD |
420 | /* |
421 | * Create a session exclusively used for live reading. | |
422 | * | |
423 | * In this mode, the switch-timer parameter is forced for each UST channel, a | |
424 | * live-switch-timer is enabled for kernel channels, manually setting | |
425 | * switch-timer is forbidden. Synchronization beacons are sent to the relayd, | |
426 | * indexes are sent and metadata is checked for each packet. | |
427 | * | |
428 | * Returns LTTNG_OK on success or a negative error code. | |
429 | */ | |
430 | extern int lttng_create_session_live(const char *name, const char *url, | |
431 | unsigned int timer_interval); | |
432 | ||
7d29a247 | 433 | /* |
1e46a50f | 434 | * Destroy a tracing session. |
7d29a247 | 435 | * |
1e46a50f TD |
436 | * The session will not be usable anymore, tracing will be stopped for all |
437 | * registered traces, and the tracing buffers will be flushed. | |
41039c06 DG |
438 | * |
439 | * The name can't be NULL here. | |
7d29a247 | 440 | */ |
843f5df9 | 441 | extern int lttng_destroy_session(const char *name); |
f3ed775e | 442 | |
e6ddca71 | 443 | /* |
1e46a50f | 444 | * List all the tracing sessions. |
7d29a247 | 445 | * |
1e46a50f TD |
446 | * Return the size (number of entries) of the "lttng_session" array. Caller |
447 | * must free(3). | |
e6ddca71 | 448 | */ |
ca95a216 | 449 | extern int lttng_list_sessions(struct lttng_session **sessions); |
f3ed775e | 450 | |
9f19cc17 | 451 | /* |
1e46a50f | 452 | * List the registered domain(s) of a session. |
9f19cc17 | 453 | * |
1e46a50f TD |
454 | * Return the size (number of entries) of the "lttng_domain" array. Caller |
455 | * must free(3). | |
9f19cc17 | 456 | */ |
330be774 | 457 | extern int lttng_list_domains(const char *session_name, |
9f19cc17 DG |
458 | struct lttng_domain **domains); |
459 | ||
460 | /* | |
1e46a50f | 461 | * List the channel(s) of a session. |
9f19cc17 | 462 | * |
1e46a50f TD |
463 | * Return the size (number of entries) of the "lttng_channel" array. Caller |
464 | * must free(3). | |
9f19cc17 | 465 | */ |
cd80958d DG |
466 | extern int lttng_list_channels(struct lttng_handle *handle, |
467 | struct lttng_channel **channels); | |
9f19cc17 DG |
468 | |
469 | /* | |
1e46a50f | 470 | * List the event(s) of a session channel. |
9f19cc17 | 471 | * |
1e46a50f TD |
472 | * Return the size (number of entries) of the "lttng_event" array. |
473 | * Caller must free(3). | |
9f19cc17 | 474 | */ |
cd80958d DG |
475 | extern int lttng_list_events(struct lttng_handle *handle, |
476 | const char *channel_name, struct lttng_event **events); | |
9f19cc17 DG |
477 | |
478 | /* | |
1e46a50f | 479 | * List the available tracepoints of a specific lttng domain. |
9f19cc17 | 480 | * |
1e46a50f TD |
481 | * Return the size (number of entries) of the "lttng_event" array. |
482 | * Caller must free(3). | |
9f19cc17 | 483 | */ |
cd80958d | 484 | extern int lttng_list_tracepoints(struct lttng_handle *handle, |
2a71efd5 | 485 | struct lttng_event **events); |
9f19cc17 | 486 | |
f37d259d MD |
487 | /* |
488 | * List the available tracepoints fields of a specific lttng domain. | |
489 | * | |
490 | * Return the size (number of entries) of the "lttng_event_field" array. | |
491 | * Caller must free(3). | |
492 | */ | |
493 | extern int lttng_list_tracepoint_fields(struct lttng_handle *handle, | |
494 | struct lttng_event_field **fields); | |
495 | ||
7d29a247 DG |
496 | /* |
497 | * Check if a session daemon is alive. | |
1e46a50f TD |
498 | * |
499 | * Return 1 if alive or 0 if not. On error returns a negative value. | |
7d29a247 | 500 | */ |
947308c4 | 501 | extern int lttng_session_daemon_alive(void); |
f3ed775e | 502 | |
7d29a247 | 503 | /* |
1e46a50f TD |
504 | * Set the tracing group for the *current* flow of execution. |
505 | * | |
41039c06 DG |
506 | * On success, returns 0 else a negative value on error being a lttng error |
507 | * code found in lttng-error.h | |
7d29a247 | 508 | */ |
b7384347 | 509 | extern int lttng_set_tracing_group(const char *name); |
f3ed775e | 510 | |
7d29a247 | 511 | /* |
1e46a50f | 512 | * Return a human-readable error message for an lttng-tools error code. |
7d29a247 DG |
513 | * |
514 | * Parameter MUST be a negative value or else you'll get a generic message. | |
515 | */ | |
9a745bc7 | 516 | extern const char *lttng_strerror(int code); |
b7384347 | 517 | |
d9800920 | 518 | /* |
1e46a50f TD |
519 | * This call registers an "outside consumer" for a session and an lttng domain. |
520 | * No consumer will be spawned and all fds/commands will go through the socket | |
521 | * path given (socket_path). | |
d9800920 | 522 | * |
3bd1e081 | 523 | * NOTE: At the moment, if you use the liblttng-kconsumer, you can only use the |
d9800920 DG |
524 | * command socket. The error socket is not supported yet for roaming consumers. |
525 | */ | |
526 | extern int lttng_register_consumer(struct lttng_handle *handle, | |
527 | const char *socket_path); | |
528 | ||
7d29a247 | 529 | /* |
1e46a50f | 530 | * Start tracing for *all* registered traces (kernel and user-space). |
7d29a247 | 531 | */ |
6a4f824d | 532 | extern int lttng_start_tracing(const char *session_name); |
f3ed775e | 533 | |
7d29a247 | 534 | /* |
1e46a50f | 535 | * Stop tracing for *all* registered traces (kernel and user-space). |
38ee087f DG |
536 | * |
537 | * This call will wait for data availability for each domain of the session so | |
538 | * this can take an abritrary amount of time. However, when returning you have | |
539 | * the guarantee that the data is ready to be read and analyse. Use the | |
540 | * _no_wait call below to avoid this behavior. | |
41039c06 DG |
541 | * |
542 | * The session_name can't be NULL. | |
7d29a247 | 543 | */ |
6a4f824d | 544 | extern int lttng_stop_tracing(const char *session_name); |
f3ed775e | 545 | |
38ee087f DG |
546 | /* |
547 | * Behave exactly like lttng_stop_tracing but does not wait for data | |
548 | * availability. | |
549 | */ | |
550 | extern int lttng_stop_tracing_no_wait(const char *session_name); | |
551 | ||
b7384347 | 552 | /* |
1e46a50f | 553 | * Add context to event(s) for a specific channel (or for all). |
7d29a247 | 554 | * |
41039c06 DG |
555 | * If channel_name is NULL, a lookup of the event's channel is done. If both |
556 | * are NULL, the context is applied to all events of all channels. | |
557 | * | |
558 | * Note that whatever event_name value is, a context can not be added to an | |
559 | * event, so we just ignore it for now. | |
b7384347 | 560 | */ |
cd80958d | 561 | extern int lttng_add_context(struct lttng_handle *handle, |
38057ed1 DG |
562 | struct lttng_event_context *ctx, const char *event_name, |
563 | const char *channel_name); | |
f3ed775e | 564 | |
7d29a247 | 565 | /* |
c8f61fc6 | 566 | * Create or enable an event (or events) for a channel. |
7d29a247 DG |
567 | * |
568 | * If the event you are trying to enable does not exist, it will be created, | |
569 | * else it is enabled. | |
7d29a247 | 570 | * If channel_name is NULL, the default channel is used (channel0). |
41039c06 DG |
571 | * |
572 | * The handle and ev params can not be NULL. | |
7d29a247 | 573 | */ |
cd80958d DG |
574 | extern int lttng_enable_event(struct lttng_handle *handle, |
575 | struct lttng_event *ev, const char *channel_name); | |
f3ed775e | 576 | |
53a80697 | 577 | /* |
025faf73 | 578 | * Create or enable an event with a specific filter. |
53a80697 | 579 | * |
025faf73 DG |
580 | * If the event you are trying to enable does not exist, it will be created, |
581 | * else it is enabled. | |
41039c06 | 582 | * If ev is NULL, all events are enabled with that filter. |
025faf73 DG |
583 | * If channel_name is NULL, the default channel is used (channel0) and created |
584 | * if not found. | |
52df2401 MD |
585 | * If filter_expression is NULL, an event without associated filter is |
586 | * created. | |
53a80697 | 587 | */ |
025faf73 | 588 | extern int lttng_enable_event_with_filter(struct lttng_handle *handle, |
178191b3 | 589 | struct lttng_event *event, const char *channel_name, |
53a80697 | 590 | const char *filter_expression); |
178191b3 | 591 | |
93deb080 JI |
592 | /* |
593 | * Create or enable an event with a filter and/or exclusions. | |
594 | * | |
595 | * If the event you are trying to enable does not exist, it will be created, | |
596 | * else it is enabled. | |
597 | * If ev is NULL, all events are enabled with the filter and exclusion options. | |
598 | * If channel_name is NULL, the default channel is used (channel0) and created | |
599 | * if not found. | |
600 | * If filter_expression is NULL, an event without associated filter is | |
601 | * created. | |
602 | * If exclusion count is zero, the event will be created without exclusions. | |
603 | */ | |
604 | extern int lttng_enable_event_with_exclusions(struct lttng_handle *handle, | |
605 | struct lttng_event *event, const char *channel_name, | |
606 | const char *filter_expression, | |
607 | int exclusion_count, char **exclusion_names); | |
608 | ||
7d29a247 | 609 | /* |
c8f61fc6 | 610 | * Create or enable a channel. |
41039c06 DG |
611 | * |
612 | * The chan and handle params can not be NULL. | |
7d29a247 | 613 | */ |
cd80958d | 614 | extern int lttng_enable_channel(struct lttng_handle *handle, |
38057ed1 | 615 | struct lttng_channel *chan); |
f3ed775e | 616 | |
7d29a247 | 617 | /* |
c8f61fc6 | 618 | * Disable event(s) of a channel and domain. |
7d29a247 | 619 | * |
41039c06 | 620 | * If name is NULL, all events are disabled. |
7d29a247 DG |
621 | * If channel_name is NULL, the default channel is used (channel0). |
622 | */ | |
cd80958d DG |
623 | extern int lttng_disable_event(struct lttng_handle *handle, |
624 | const char *name, const char *channel_name); | |
fac6795d | 625 | |
1df4dedd | 626 | /* |
c8f61fc6 | 627 | * Disable channel. |
7d29a247 | 628 | * |
1df4dedd | 629 | */ |
cd80958d | 630 | extern int lttng_disable_channel(struct lttng_handle *handle, |
38057ed1 | 631 | const char *name); |
1df4dedd | 632 | |
d0254c7c MD |
633 | /* |
634 | * Calibrate LTTng overhead. | |
41039c06 DG |
635 | * |
636 | * The chan and handle params can not be NULL. | |
d0254c7c | 637 | */ |
cd80958d | 638 | extern int lttng_calibrate(struct lttng_handle *handle, |
d0254c7c MD |
639 | struct lttng_calibrate *calibrate); |
640 | ||
5edd7e09 DG |
641 | /* |
642 | * Set the default channel attributes for a specific domain and an allocated | |
643 | * lttng_channel_attr pointer. | |
1e46a50f | 644 | * |
41039c06 | 645 | * If one or both arguments are NULL, nothing happens. |
5edd7e09 DG |
646 | */ |
647 | extern void lttng_channel_set_default_attr(struct lttng_domain *domain, | |
648 | struct lttng_channel_attr *attr); | |
649 | ||
00e2e675 | 650 | /* |
a4b92340 DG |
651 | * Set URL for a consumer for a session and domain. |
652 | * | |
653 | * Both data and control URL must be defined. If both URLs are the same, only | |
654 | * the control URL is used even for network streaming. | |
00e2e675 | 655 | * |
a4b92340 DG |
656 | * Default port are 5342 and 5343 respectively for control and data which uses |
657 | * the TCP protocol. | |
00e2e675 | 658 | */ |
a4b92340 DG |
659 | extern int lttng_set_consumer_url(struct lttng_handle *handle, |
660 | const char *control_url, const char *data_url); | |
00e2e675 DG |
661 | |
662 | /* | |
663 | * Enable the consumer for a session and domain. | |
664 | */ | |
9c6bda17 | 665 | extern LTTNG_DEPRECATED("This call is now obsolete.") |
785d2d0d | 666 | int lttng_enable_consumer(struct lttng_handle *handle); |
00e2e675 DG |
667 | |
668 | /* | |
669 | * Disable consumer for a session and domain. | |
670 | */ | |
9c6bda17 | 671 | extern LTTNG_DEPRECATED("This call is now obsolete.") |
785d2d0d | 672 | int lttng_disable_consumer(struct lttng_handle *handle); |
00e2e675 | 673 | |
44a5e5eb DG |
674 | /* |
675 | * Check session daemon health for a specific component. | |
676 | * | |
677 | * Return 0 if health is OK or 1 if BAD. A returned value of -1 indicate that | |
678 | * the control library was not able to connect to the session daemon health | |
679 | * socket. | |
680 | * | |
681 | * Any other positive value is an lttcomm error which can be translate with | |
682 | * lttng_strerror(). | |
41039c06 DG |
683 | * |
684 | * Please see lttng-health-check(3) man page for more information. | |
44a5e5eb | 685 | */ |
d74df422 MD |
686 | extern LTTNG_DEPRECATED("This call is now obsolete.") |
687 | int lttng_health_check(enum lttng_health_component c); | |
44a5e5eb | 688 | |
806e2684 DG |
689 | /* |
690 | * For a given session name, this call checks if the data is ready to be read | |
6d805429 DG |
691 | * or is still being extracted by the consumer(s) (pending) hence not ready to |
692 | * be used by any readers. | |
806e2684 | 693 | * |
6d805429 DG |
694 | * Return 0 if there is _no_ data pending in the buffers thus having a |
695 | * guarantee that the data can be read safely. Else, return 1 if there is still | |
696 | * traced data is pending. On error, a negative value is returned and readable | |
697 | * by lttng_strerror(). | |
806e2684 | 698 | */ |
6d805429 | 699 | extern int lttng_data_pending(const char *session_name); |
806e2684 | 700 | |
5168918c DG |
701 | #ifdef __cplusplus |
702 | } | |
703 | #endif | |
704 | ||
73db5be4 | 705 | #endif /* LTTNG_H */ |