Fix: add extern "C" to two header files
[lttng-ust.git] / include / lttng / ust-ctl.h
CommitLineData
f3105c67
MD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
74d81a6c 3 * Copyright (C) 2011-2013 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
f3105c67 4 *
e92f3e28
MD
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License only.
f3105c67
MD
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
e92f3e28
MD
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
f3105c67
MD
17 */
18
19#ifndef _LTTNG_UST_CTL_H
20#define _LTTNG_UST_CTL_H
21
4318ae1b 22#include <lttng/ust-abi.h>
32ce8569 23#include <sys/types.h>
a9ff648c 24#include <limits.h>
74d81a6c 25
db56acaf
MD
26#ifndef LTTNG_PACKED
27#error "LTTNG_PACKED should be defined"
28#endif
29
35a1054b
SM
30#ifdef __cplusplus
31extern "C" {
32#endif
33
74d81a6c
MD
34#ifndef LTTNG_UST_UUID_LEN
35#define LTTNG_UST_UUID_LEN 16
36#endif
37
32ce8569
MD
38/* Default unix socket path */
39#define LTTNG_UST_SOCK_FILENAME \
40 "lttng-ust-sock-" \
41 __ust_stringify(LTTNG_UST_ABI_MAJOR_VERSION)
42
43/*
44 * Shared memory files path are automatically related to shm root, e.g.
45 * /dev/shm under linux.
46 */
47#define LTTNG_UST_WAIT_FILENAME \
48 "lttng-ust-wait-" \
49 __ust_stringify(LTTNG_UST_ABI_MAJOR_VERSION)
50
74d81a6c
MD
51struct lttng_ust_shm_handle;
52struct lttng_ust_lib_ring_buffer;
53
54struct ustctl_consumer_channel_attr {
55 enum lttng_ust_chan_type type;
56 uint64_t subbuf_size; /* bytes */
57 uint64_t num_subbuf; /* power of 2 */
58 int overwrite; /* 1: overwrite, 0: discard */
59 unsigned int switch_timer_interval; /* usec */
60 unsigned int read_timer_interval; /* usec */
61 enum lttng_ust_output output; /* splice, mmap */
6ca18e66 62 uint32_t chan_id; /* channel ID */
74d81a6c 63 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
b2c5f61a 64 int64_t blocking_timeout; /* Blocking timeout (usec) */
74d81a6c
MD
65} LTTNG_PACKED;
66
67/*
68 * API used by sessiond.
69 */
70
53f0df51
JG
71struct lttng_ust_context_attr {
72 enum lttng_ust_context_type ctx;
73 union {
74 struct lttng_ust_perf_counter_ctx perf_counter;
75 struct {
76 char *provider_name;
77 char *ctx_name;
78 } app_ctx;
79 } u;
80};
81
7bc53e94
MD
82/*
83 * Error values: all the following functions return:
c354a72c 84 * >= 0: Success (LTTNG_UST_OK)
7bc53e94
MD
85 * < 0: error code.
86 */
1c5e467e 87int ustctl_register_done(int sock);
f3105c67 88int ustctl_create_session(int sock);
f3105c67 89int ustctl_create_event(int sock, struct lttng_ust_event *ev,
61f02aea
MD
90 struct lttng_ust_object_data *channel_data,
91 struct lttng_ust_object_data **event_data);
53f0df51 92int ustctl_add_context(int sock, struct lttng_ust_context_attr *ctx,
61f02aea
MD
93 struct lttng_ust_object_data *obj_data,
94 struct lttng_ust_object_data **context_data);
cd54f6d9
MD
95int ustctl_set_filter(int sock, struct lttng_ust_filter_bytecode *bytecode,
96 struct lttng_ust_object_data *obj_data);
da57c034
JI
97int ustctl_set_exclusion(int sock, struct lttng_ust_event_exclusion *exclusion,
98 struct lttng_ust_object_data *obj_data);
f3105c67 99
61f02aea
MD
100int ustctl_enable(int sock, struct lttng_ust_object_data *object);
101int ustctl_disable(int sock, struct lttng_ust_object_data *object);
4a6ca058
MD
102int ustctl_start_session(int sock, int handle);
103int ustctl_stop_session(int sock, int handle);
f3105c67 104
b115631f
MD
105/*
106 * ustctl_tracepoint_list returns a tracepoint list handle, or negative
107 * error value.
108 */
109int ustctl_tracepoint_list(int sock);
74d81a6c 110
b115631f
MD
111/*
112 * ustctl_tracepoint_list_get is used to iterate on the tp list
7bc53e94
MD
113 * handle. End is iteration is reached when -LTTNG_UST_ERR_NOENT is
114 * returned.
b115631f
MD
115 */
116int ustctl_tracepoint_list_get(int sock, int tp_list_handle,
cbef6901 117 struct lttng_ust_tracepoint_iter *iter);
b115631f 118
40003310
MD
119/*
120 * ustctl_tracepoint_field_list returns a tracepoint field list handle,
121 * or negative error value.
122 */
123int ustctl_tracepoint_field_list(int sock);
124
125/*
126 * ustctl_tracepoint_field_list_get is used to iterate on the tp field
7bc53e94
MD
127 * list handle. End is iteration is reached when -LTTNG_UST_ERR_NOENT is
128 * returned.
40003310
MD
129 */
130int ustctl_tracepoint_field_list_get(int sock, int tp_field_list_handle,
131 struct lttng_ust_field_iter *iter);
132
f3105c67
MD
133int ustctl_tracer_version(int sock, struct lttng_ust_tracer_version *v);
134int ustctl_wait_quiescent(int sock);
135
f1fffc57
MD
136int ustctl_sock_flush_buffer(int sock, struct lttng_ust_object_data *object);
137
f3105c67
MD
138int ustctl_calibrate(int sock, struct lttng_ust_calibrate *calibrate);
139
74d81a6c
MD
140/* Release object created by members of this API. */
141int ustctl_release_object(int sock, struct lttng_ust_object_data *data);
142/* Release handle returned by create session. */
143int ustctl_release_handle(int sock, int handle);
144
145int ustctl_recv_channel_from_consumer(int sock,
146 struct lttng_ust_object_data **channel_data);
147int ustctl_recv_stream_from_consumer(int sock,
148 struct lttng_ust_object_data **stream_data);
149int ustctl_send_channel_to_ust(int sock, int session_handle,
150 struct lttng_ust_object_data *channel_data);
151int ustctl_send_stream_to_ust(int sock,
152 struct lttng_ust_object_data *channel_data,
153 struct lttng_ust_object_data *stream_data);
154
12f3dabc
MD
155/*
156 * ustctl_duplicate_ust_object_data allocated a new object in "dest" if
157 * it succeeds (returns 0). It must be released using
158 * ustctl_release_object() and then freed with free().
159 */
160int ustctl_duplicate_ust_object_data(struct lttng_ust_object_data **dest,
161 struct lttng_ust_object_data *src);
162
f3105c67 163/*
74d81a6c 164 * API used by consumer.
f3105c67 165 */
74d81a6c
MD
166
167struct ustctl_consumer_channel;
168struct ustctl_consumer_stream;
169struct ustctl_consumer_channel_attr;
170
5ea386c3
MD
171int ustctl_get_nr_stream_per_channel(void);
172
74d81a6c 173struct ustctl_consumer_channel *
5ea386c3
MD
174 ustctl_create_channel(struct ustctl_consumer_channel_attr *attr,
175 const int *stream_fds, int nr_stream_fds);
5224b5c8 176/*
74d81a6c
MD
177 * Each stream created needs to be destroyed before calling
178 * ustctl_destroy_channel().
5224b5c8 179 */
74d81a6c 180void ustctl_destroy_channel(struct ustctl_consumer_channel *chan);
f3105c67 181
74d81a6c
MD
182int ustctl_send_channel_to_sessiond(int sock,
183 struct ustctl_consumer_channel *channel);
ff0f5728
MD
184int ustctl_channel_close_wait_fd(struct ustctl_consumer_channel *consumer_chan);
185int ustctl_channel_close_wakeup_fd(struct ustctl_consumer_channel *consumer_chan);
186int ustctl_channel_get_wait_fd(struct ustctl_consumer_channel *consumer_chan);
187int ustctl_channel_get_wakeup_fd(struct ustctl_consumer_channel *consumer_chan);
c9023c93
MD
188
189int ustctl_write_metadata_to_channel(
190 struct ustctl_consumer_channel *channel,
191 const char *metadata_str, /* NOT null-terminated */
192 size_t len); /* metadata length */
3ef94b0e
JD
193ssize_t ustctl_write_one_packet_to_channel(
194 struct ustctl_consumer_channel *channel,
195 const char *metadata_str, /* NOT null-terminated */
196 size_t len); /* metadata length */
c9023c93 197
74d81a6c
MD
198/*
199 * Send a NULL stream to finish iteration over all streams of a given
200 * channel.
201 */
202int ustctl_send_stream_to_sessiond(int sock,
203 struct ustctl_consumer_stream *stream);
204int ustctl_stream_close_wait_fd(struct ustctl_consumer_stream *stream);
205int ustctl_stream_close_wakeup_fd(struct ustctl_consumer_stream *stream);
ff0f5728
MD
206int ustctl_stream_get_wait_fd(struct ustctl_consumer_stream *stream);
207int ustctl_stream_get_wakeup_fd(struct ustctl_consumer_stream *stream);
f3105c67 208
74d81a6c
MD
209/* Create/destroy stream buffers for read */
210struct ustctl_consumer_stream *
211 ustctl_create_stream(struct ustctl_consumer_channel *channel,
212 int cpu);
213void ustctl_destroy_stream(struct ustctl_consumer_stream *stream);
f3105c67
MD
214
215/* For mmap mode, readable without "get" operation */
74d81a6c 216int ustctl_get_mmap_len(struct ustctl_consumer_stream *stream,
f3105c67 217 unsigned long *len);
74d81a6c 218int ustctl_get_max_subbuf_size(struct ustctl_consumer_stream *stream,
f3105c67
MD
219 unsigned long *len);
220
221/*
222 * For mmap mode, operate on the current packet (between get/put or
223 * get_next/put_next).
224 */
74d81a6c
MD
225void *ustctl_get_mmap_base(struct ustctl_consumer_stream *stream);
226int ustctl_get_mmap_read_offset(struct ustctl_consumer_stream *stream,
227 unsigned long *off);
228int ustctl_get_subbuf_size(struct ustctl_consumer_stream *stream,
229 unsigned long *len);
230int ustctl_get_padded_subbuf_size(struct ustctl_consumer_stream *stream,
231 unsigned long *len);
232int ustctl_get_next_subbuf(struct ustctl_consumer_stream *stream);
233int ustctl_put_next_subbuf(struct ustctl_consumer_stream *stream);
f3105c67
MD
234
235/* snapshot */
236
74d81a6c 237int ustctl_snapshot(struct ustctl_consumer_stream *stream);
f45930b7 238int ustctl_snapshot_sample_positions(struct ustctl_consumer_stream *stream);
74d81a6c
MD
239int ustctl_snapshot_get_consumed(struct ustctl_consumer_stream *stream,
240 unsigned long *pos);
241int ustctl_snapshot_get_produced(struct ustctl_consumer_stream *stream,
242 unsigned long *pos);
243int ustctl_get_subbuf(struct ustctl_consumer_stream *stream,
244 unsigned long *pos);
245int ustctl_put_subbuf(struct ustctl_consumer_stream *stream);
5f9d3dbc 246
74d81a6c
MD
247void ustctl_flush_buffer(struct ustctl_consumer_stream *stream,
248 int producer_active);
beca55a1 249void ustctl_clear_buffer(struct ustctl_consumer_stream *stream);
f3105c67 250
b2f3252a 251/* index */
82df14e4
MD
252
253/*
254 * Getters which need to be used on the current packet (between get/put
255 * or get_next/put_next.
256 */
257
b2f3252a
JD
258int ustctl_get_timestamp_begin(struct ustctl_consumer_stream *stream,
259 uint64_t *timestamp_begin);
260int ustctl_get_timestamp_end(struct ustctl_consumer_stream *stream,
261 uint64_t *timestamp_end);
262int ustctl_get_events_discarded(struct ustctl_consumer_stream *stream,
263 uint64_t *events_discarded);
264int ustctl_get_content_size(struct ustctl_consumer_stream *stream,
265 uint64_t *content_size);
266int ustctl_get_packet_size(struct ustctl_consumer_stream *stream,
267 uint64_t *packet_size);
1ff31389
JD
268int ustctl_get_sequence_number(struct ustctl_consumer_stream *stream,
269 uint64_t *seq);
82df14e4
MD
270
271/*
272 * Getter returning state invariant for the stream, which can be used
273 * without "get" operation.
274 */
275
276int ustctl_get_stream_id(struct ustctl_consumer_stream *stream,
277 uint64_t *stream_id);
45a00b05
JD
278int ustctl_get_instance_id(struct ustctl_consumer_stream *stream,
279 uint64_t *id);
b2f3252a 280
82df14e4
MD
281/*
282 * Getter returning the current timestamp as perceived from the
283 * tracer.
284 */
285int ustctl_get_current_timestamp(struct ustctl_consumer_stream *stream,
286 uint64_t *ts);
287
57201bb3
MD
288/* returns whether UST has perf counters support. */
289int ustctl_has_perf_counters(void);
290
f53329f3
JD
291/* Regenerate the statedump. */
292int ustctl_regenerate_statedump(int sock, int handle);
293
32ce8569
MD
294/* event registry management */
295
296enum ustctl_socket_type {
297 USTCTL_SOCKET_CMD = 0,
298 USTCTL_SOCKET_NOTIFY = 1,
299};
300
301enum ustctl_notify_cmd {
302 USTCTL_NOTIFY_CMD_EVENT = 0,
303 USTCTL_NOTIFY_CMD_CHANNEL = 1,
c785c634 304 USTCTL_NOTIFY_CMD_ENUM = 2,
32ce8569
MD
305};
306
307enum ustctl_channel_header {
308 USTCTL_CHANNEL_HEADER_UNKNOWN = 0,
309 USTCTL_CHANNEL_HEADER_COMPACT = 1,
310 USTCTL_CHANNEL_HEADER_LARGE = 2,
311};
312
313/* event type structures */
314
315enum ustctl_abstract_types {
316 ustctl_atype_integer,
317 ustctl_atype_enum,
318 ustctl_atype_array,
319 ustctl_atype_sequence,
320 ustctl_atype_string,
321 ustctl_atype_float,
53569322
MD
322 ustctl_atype_variant,
323 ustctl_atype_struct,
32ce8569
MD
324 NR_USTCTL_ABSTRACT_TYPES,
325};
326
327enum ustctl_string_encodings {
328 ustctl_encode_none = 0,
329 ustctl_encode_UTF8 = 1,
330 ustctl_encode_ASCII = 2,
331 NR_USTCTL_STRING_ENCODINGS,
332};
333
334#define USTCTL_UST_INTEGER_TYPE_PADDING 24
335struct ustctl_integer_type {
336 uint32_t size; /* in bits */
337 uint32_t signedness;
338 uint32_t reverse_byte_order;
339 uint32_t base; /* 2, 8, 10, 16, for pretty print */
735ea6a8 340 int32_t encoding; /* enum ustctl_string_encodings */
32ce8569
MD
341 uint16_t alignment; /* in bits */
342 char padding[USTCTL_UST_INTEGER_TYPE_PADDING];
343} LTTNG_PACKED;
344
345#define USTCTL_UST_FLOAT_TYPE_PADDING 24
346struct ustctl_float_type {
347 uint32_t exp_dig; /* exponent digits, in bits */
348 uint32_t mant_dig; /* mantissa digits, in bits */
349 uint32_t reverse_byte_order;
350 uint16_t alignment; /* in bits */
351 char padding[USTCTL_UST_FLOAT_TYPE_PADDING];
352} LTTNG_PACKED;
353
a6f80644
MD
354#define USTCTL_UST_ENUM_VALUE_PADDING 15
355struct ustctl_enum_value {
356 uint64_t value;
357 uint8_t signedness;
358 char padding[USTCTL_UST_ENUM_VALUE_PADDING];
359} LTTNG_PACKED;
360
3e762260
PP
361enum ustctl_ust_enum_entry_options {
362 USTCTL_UST_ENUM_ENTRY_OPTION_IS_AUTO = 1U << 0,
363};
364
c785c634
MD
365#define USTCTL_UST_ENUM_ENTRY_PADDING 32
366struct ustctl_enum_entry {
a6f80644 367 struct ustctl_enum_value start, end; /* start and end are inclusive */
c785c634 368 char string[LTTNG_UST_SYM_NAME_LEN];
3e762260
PP
369 union {
370 struct {
371 uint32_t options;
372 } LTTNG_PACKED extra;
373 char padding[USTCTL_UST_ENUM_ENTRY_PADDING];
374 } u;
a6f80644 375} LTTNG_PACKED;
c785c634 376
32ce8569
MD
377#define USTCTL_UST_BASIC_TYPE_PADDING 296
378union _ustctl_basic_type {
379 struct ustctl_integer_type integer;
c785c634
MD
380 struct {
381 char name[LTTNG_UST_SYM_NAME_LEN];
382 struct ustctl_integer_type container_type;
383 uint64_t id; /* enum ID in sessiond. */
384 } enumeration;
32ce8569 385 struct {
735ea6a8 386 int32_t encoding; /* enum ustctl_string_encodings */
32ce8569
MD
387 } string;
388 struct ustctl_float_type _float;
389 char padding[USTCTL_UST_BASIC_TYPE_PADDING];
390} LTTNG_PACKED;
391
392struct ustctl_basic_type {
393 enum ustctl_abstract_types atype;
394 union {
395 union _ustctl_basic_type basic;
396 } u;
397} LTTNG_PACKED;
398
399#define USTCTL_UST_TYPE_PADDING 128
400struct ustctl_type {
401 enum ustctl_abstract_types atype;
402 union {
403 union _ustctl_basic_type basic;
404 struct {
405 struct ustctl_basic_type elem_type;
406 uint32_t length; /* num. elems. */
407 } array;
408 struct {
409 struct ustctl_basic_type length_type;
410 struct ustctl_basic_type elem_type;
411 } sequence;
53569322
MD
412 struct {
413 uint32_t nr_choices;
414 char tag_name[LTTNG_UST_SYM_NAME_LEN];
415 /* Followed by nr_choices struct ustctl_field. */
416 } variant;
417 struct {
418 uint32_t nr_fields;
419 /* Followed by nr_fields struct ustctl_field. */
420 } _struct;
32ce8569
MD
421 char padding[USTCTL_UST_TYPE_PADDING];
422 } u;
423} LTTNG_PACKED;
424
425#define USTCTL_UST_FIELD_PADDING 28
426struct ustctl_field {
427 char name[LTTNG_UST_SYM_NAME_LEN];
428 struct ustctl_type type;
429 char padding[USTCTL_UST_FIELD_PADDING];
430} LTTNG_PACKED;
431
432/*
433 * Returns 0 on success, negative error value on error.
434 * If an error other than -LTTNG_UST_ERR_UNSUP_MAJOR is returned,
435 * the output fields are not populated.
436 */
437int ustctl_recv_reg_msg(int sock,
438 enum ustctl_socket_type *type,
439 uint32_t *major,
440 uint32_t *minor,
441 uint32_t *pid,
442 uint32_t *ppid,
443 uint32_t *uid,
444 uint32_t *gid,
445 uint32_t *bits_per_long,
446 uint32_t *uint8_t_alignment,
447 uint32_t *uint16_t_alignment,
448 uint32_t *uint32_t_alignment,
449 uint32_t *uint64_t_alignment,
450 uint32_t *long_alignment,
451 int *byte_order,
452 char *name); /* size LTTNG_UST_ABI_PROCNAME_LEN */
453
454/*
455 * Returns 0 on success, negative UST or system error value on error.
456 * Receive the notification command. The "notify_cmd" can then be used
457 * by the caller to find out which ustctl_recv_* function should be
458 * called to receive the notification, and which ustctl_reply_* is
459 * appropriate.
460 */
461int ustctl_recv_notify(int sock, enum ustctl_notify_cmd *notify_cmd);
462
463/*
464 * Returns 0 on success, negative UST or system error value on error.
465 */
466int ustctl_recv_register_event(int sock,
467 int *session_objd, /* session descriptor (output) */
468 int *channel_objd, /* channel descriptor (output) */
469 char *event_name, /*
470 * event name (output,
471 * size LTTNG_UST_SYM_NAME_LEN)
472 */
473 int *loglevel,
474 char **signature, /*
475 * event signature
476 * (output, dynamically
477 * allocated, must be free(3)'d
478 * by the caller if function
479 * returns success.)
480 */
481 size_t *nr_fields,
482 struct ustctl_field **fields,
483 char **model_emf_uri);
484
485/*
486 * Returns 0 on success, negative error value on error.
487 */
488int ustctl_reply_register_event(int sock,
489 uint32_t id, /* event id (input) */
490 int ret_code); /* return code. 0 ok, negative error */
491
c785c634
MD
492/*
493 * Returns 0 on success, negative UST or system error value on error.
494 */
495int ustctl_recv_register_enum(int sock,
496 int *session_objd,
497 char *enum_name,
498 struct ustctl_enum_entry **entries,
499 size_t *nr_entries);
500
501/*
502 * Returns 0 on success, negative error value on error.
503 */
504int ustctl_reply_register_enum(int sock,
505 uint64_t id, /* enum id (input) */
506 int ret_code);
507
32ce8569
MD
508/*
509 * Returns 0 on success, negative UST or system error value on error.
510 */
511int ustctl_recv_register_channel(int sock,
512 int *session_objd, /* session descriptor (output) */
513 int *channel_objd, /* channel descriptor (output) */
514 size_t *nr_fields, /* context fields */
515 struct ustctl_field **fields);
516
517/*
518 * Returns 0 on success, negative error value on error.
519 */
520int ustctl_reply_register_channel(int sock,
521 uint32_t chan_id,
522 enum ustctl_channel_header header_type,
523 int ret_code); /* return code. 0 ok, negative error */
524
35a1054b
SM
525#ifdef __cplusplus
526}
527#endif
528
f3105c67 529#endif /* _LTTNG_UST_CTL_H */
This page took 0.060849 seconds and 5 git commands to generate.