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