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