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