2 * SPDX-License-Identifier: GPL-2.0-only
4 * Copyright (C) 2011 Julien Desfossez <julien.desfossez@polymtl.ca>
5 * Copyright (C) 2011-2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 #ifndef _LTTNG_UST_CTL_H
9 #define _LTTNG_UST_CTL_H
15 #include <sys/types.h>
17 #include <lttng/ust-abi.h>
18 #include <lttng/ust-utils.h>
19 #include <lttng/ust-sigbus.h>
25 #ifndef LTTNG_UST_UUID_LEN
26 #define LTTNG_UST_UUID_LEN 16
29 /* Default unix socket path */
30 #define LTTNG_UST_SOCK_FILENAME \
32 lttng_ust_stringify(LTTNG_UST_ABI_MAJOR_VERSION_OLDEST_COMPATIBLE)
35 * Shared memory files path are automatically related to shm root, e.g.
36 * /dev/shm under linux.
38 #define LTTNG_UST_WAIT_FILENAME \
40 lttng_ust_stringify(LTTNG_UST_ABI_MAJOR_VERSION_OLDEST_COMPATIBLE)
42 struct lttng_ust_ctl_consumer_channel_attr
{
43 enum lttng_ust_abi_chan_type type
;
44 uint64_t subbuf_size
; /* bytes */
45 uint64_t num_subbuf
; /* power of 2 */
46 int overwrite
; /* 1: overwrite, 0: discard */
47 unsigned int switch_timer_interval
; /* usec */
48 unsigned int read_timer_interval
; /* usec */
49 enum lttng_ust_abi_output output
; /* splice, mmap */
50 uint32_t chan_id
; /* channel ID */
51 unsigned char uuid
[LTTNG_UST_UUID_LEN
]; /* Trace session unique ID */
52 int64_t blocking_timeout
; /* Blocking timeout (usec) */
53 } __attribute__((packed
));
56 * API used by sessiond.
59 struct lttng_ust_context_attr
{
60 enum lttng_ust_abi_context_type ctx
;
62 struct lttng_ust_abi_perf_counter_ctx perf_counter
;
71 * Error values: all the following functions return:
72 * >= 0: Success (LTTNG_UST_OK)
75 int lttng_ust_ctl_register_done(int sock
);
76 int lttng_ust_ctl_create_session(int sock
);
77 int lttng_ust_ctl_create_event(int sock
, struct lttng_ust_abi_event
*ev
,
78 struct lttng_ust_abi_object_data
*channel_data
,
79 struct lttng_ust_abi_object_data
**event_data
);
80 int lttng_ust_ctl_add_context(int sock
, struct lttng_ust_context_attr
*ctx
,
81 struct lttng_ust_abi_object_data
*obj_data
,
82 struct lttng_ust_abi_object_data
**context_data
);
83 int lttng_ust_ctl_set_filter(int sock
, struct lttng_ust_abi_filter_bytecode
*bytecode
,
84 struct lttng_ust_abi_object_data
*obj_data
);
85 int lttng_ust_ctl_set_capture(int sock
, struct lttng_ust_abi_capture_bytecode
*bytecode
,
86 struct lttng_ust_abi_object_data
*obj_data
);
87 int lttng_ust_ctl_set_exclusion(int sock
, struct lttng_ust_abi_event_exclusion
*exclusion
,
88 struct lttng_ust_abi_object_data
*obj_data
);
90 int lttng_ust_ctl_enable(int sock
, struct lttng_ust_abi_object_data
*object
);
91 int lttng_ust_ctl_disable(int sock
, struct lttng_ust_abi_object_data
*object
);
92 int lttng_ust_ctl_start_session(int sock
, int handle
);
93 int lttng_ust_ctl_stop_session(int sock
, int handle
);
96 * lttng_ust_ctl_create_event notifier_group creates a event notifier group. It
97 * establishes the connection with the application by providing a file
98 * descriptor of the pipe to be used by the application when a event notifier
99 * of that group is fired. It returns a handle to be used when creating event
100 * notifier in that group.
102 int lttng_ust_ctl_create_event_notifier_group(int sock
, int pipe_fd
,
103 struct lttng_ust_abi_object_data
**event_notifier_group
);
106 * lttng_ust_ctl_create_event notifier creates a event notifier in a event notifier
107 * group giving a event notifier description and a event notifier group handle.
108 * It returns a event notifier handle to be used when enabling the event
109 * notifier, attaching filter, attaching exclusion, and disabling the event
112 int lttng_ust_ctl_create_event_notifier(int sock
,
113 struct lttng_ust_abi_event_notifier
*event_notifier
,
114 struct lttng_ust_abi_object_data
*event_notifier_group
,
115 struct lttng_ust_abi_object_data
**event_notifier_data
);
118 * lttng_ust_ctl_tracepoint_list returns a tracepoint list handle, or negative
121 int lttng_ust_ctl_tracepoint_list(int sock
);
124 * lttng_ust_ctl_tracepoint_list_get is used to iterate on the tp list
125 * handle. End is iteration is reached when -LTTNG_UST_ERR_NOENT is
128 int lttng_ust_ctl_tracepoint_list_get(int sock
, int tp_list_handle
,
129 struct lttng_ust_abi_tracepoint_iter
*iter
);
132 * lttng_ust_ctl_tracepoint_field_list returns a tracepoint field list handle,
133 * or negative error value.
135 int lttng_ust_ctl_tracepoint_field_list(int sock
);
138 * lttng_ust_ctl_tracepoint_field_list_get is used to iterate on the tp field
139 * list handle. End is iteration is reached when -LTTNG_UST_ERR_NOENT is
142 int lttng_ust_ctl_tracepoint_field_list_get(int sock
, int tp_field_list_handle
,
143 struct lttng_ust_abi_field_iter
*iter
);
145 int lttng_ust_ctl_tracer_version(int sock
, struct lttng_ust_abi_tracer_version
*v
);
146 int lttng_ust_ctl_wait_quiescent(int sock
);
148 int lttng_ust_ctl_sock_flush_buffer(int sock
, struct lttng_ust_abi_object_data
*object
);
150 int lttng_ust_ctl_calibrate(int sock
, struct lttng_ust_abi_calibrate
*calibrate
);
152 /* Release object created by members of this API. */
153 int lttng_ust_ctl_release_object(int sock
, struct lttng_ust_abi_object_data
*data
);
154 /* Release handle returned by create session. */
155 int lttng_ust_ctl_release_handle(int sock
, int handle
);
157 int lttng_ust_ctl_recv_channel_from_consumer(int sock
,
158 struct lttng_ust_abi_object_data
**channel_data
);
159 int lttng_ust_ctl_recv_stream_from_consumer(int sock
,
160 struct lttng_ust_abi_object_data
**stream_data
);
161 int lttng_ust_ctl_send_channel_to_ust(int sock
, int session_handle
,
162 struct lttng_ust_abi_object_data
*channel_data
);
163 int lttng_ust_ctl_send_stream_to_ust(int sock
,
164 struct lttng_ust_abi_object_data
*channel_data
,
165 struct lttng_ust_abi_object_data
*stream_data
);
168 * lttng_ust_ctl_duplicate_ust_object_data allocated a new object in "dest" if
169 * it succeeds (returns 0). It must be released using
170 * lttng_ust_ctl_release_object() and then freed with free().
172 int lttng_ust_ctl_duplicate_ust_object_data(struct lttng_ust_abi_object_data
**dest
,
173 struct lttng_ust_abi_object_data
*src
);
176 * API used by consumer.
179 struct lttng_ust_ctl_consumer_channel
;
180 struct lttng_ust_ctl_consumer_stream
;
181 struct lttng_ust_ctl_consumer_channel_attr
;
183 int lttng_ust_ctl_get_nr_stream_per_channel(void);
185 struct lttng_ust_ctl_consumer_channel
*
186 lttng_ust_ctl_create_channel(struct lttng_ust_ctl_consumer_channel_attr
*attr
,
187 const int *stream_fds
, int nr_stream_fds
);
189 * Each stream created needs to be destroyed before calling
190 * lttng_ust_ctl_destroy_channel().
192 void lttng_ust_ctl_destroy_channel(struct lttng_ust_ctl_consumer_channel
*chan
);
194 int lttng_ust_ctl_send_channel_to_sessiond(int sock
,
195 struct lttng_ust_ctl_consumer_channel
*channel
);
196 int lttng_ust_ctl_channel_close_wait_fd(struct lttng_ust_ctl_consumer_channel
*consumer_chan
);
197 int lttng_ust_ctl_channel_close_wakeup_fd(struct lttng_ust_ctl_consumer_channel
*consumer_chan
);
198 int lttng_ust_ctl_channel_get_wait_fd(struct lttng_ust_ctl_consumer_channel
*consumer_chan
);
199 int lttng_ust_ctl_channel_get_wakeup_fd(struct lttng_ust_ctl_consumer_channel
*consumer_chan
);
201 int lttng_ust_ctl_write_metadata_to_channel(
202 struct lttng_ust_ctl_consumer_channel
*channel
,
203 const char *metadata_str
, /* NOT null-terminated */
204 size_t len
); /* metadata length */
205 ssize_t
lttng_ust_ctl_write_one_packet_to_channel(
206 struct lttng_ust_ctl_consumer_channel
*channel
,
207 const char *metadata_str
, /* NOT null-terminated */
208 size_t len
); /* metadata length */
211 * Send a NULL stream to finish iteration over all streams of a given
214 int lttng_ust_ctl_send_stream_to_sessiond(int sock
,
215 struct lttng_ust_ctl_consumer_stream
*stream
);
216 int lttng_ust_ctl_stream_close_wait_fd(struct lttng_ust_ctl_consumer_stream
*stream
);
217 int lttng_ust_ctl_stream_close_wakeup_fd(struct lttng_ust_ctl_consumer_stream
*stream
);
218 int lttng_ust_ctl_stream_get_wait_fd(struct lttng_ust_ctl_consumer_stream
*stream
);
219 int lttng_ust_ctl_stream_get_wakeup_fd(struct lttng_ust_ctl_consumer_stream
*stream
);
221 /* Create/destroy stream buffers for read */
222 struct lttng_ust_ctl_consumer_stream
*
223 lttng_ust_ctl_create_stream(struct lttng_ust_ctl_consumer_channel
*channel
,
225 void lttng_ust_ctl_destroy_stream(struct lttng_ust_ctl_consumer_stream
*stream
);
227 /* For mmap mode, readable without "get" operation */
228 int lttng_ust_ctl_get_mmap_len(struct lttng_ust_ctl_consumer_stream
*stream
,
230 int lttng_ust_ctl_get_max_subbuf_size(struct lttng_ust_ctl_consumer_stream
*stream
,
234 * For mmap mode, operate on the current packet (between get/put or
235 * get_next/put_next).
237 void *lttng_ust_ctl_get_mmap_base(struct lttng_ust_ctl_consumer_stream
*stream
);
238 int lttng_ust_ctl_get_mmap_read_offset(struct lttng_ust_ctl_consumer_stream
*stream
,
240 int lttng_ust_ctl_get_subbuf_size(struct lttng_ust_ctl_consumer_stream
*stream
,
242 int lttng_ust_ctl_get_padded_subbuf_size(struct lttng_ust_ctl_consumer_stream
*stream
,
244 int lttng_ust_ctl_get_next_subbuf(struct lttng_ust_ctl_consumer_stream
*stream
);
245 int lttng_ust_ctl_put_next_subbuf(struct lttng_ust_ctl_consumer_stream
*stream
);
249 int lttng_ust_ctl_snapshot(struct lttng_ust_ctl_consumer_stream
*stream
);
250 int lttng_ust_ctl_snapshot_sample_positions(struct lttng_ust_ctl_consumer_stream
*stream
);
251 int lttng_ust_ctl_snapshot_get_consumed(struct lttng_ust_ctl_consumer_stream
*stream
,
253 int lttng_ust_ctl_snapshot_get_produced(struct lttng_ust_ctl_consumer_stream
*stream
,
255 int lttng_ust_ctl_get_subbuf(struct lttng_ust_ctl_consumer_stream
*stream
,
257 int lttng_ust_ctl_put_subbuf(struct lttng_ust_ctl_consumer_stream
*stream
);
259 int lttng_ust_ctl_flush_buffer(struct lttng_ust_ctl_consumer_stream
*stream
,
260 int producer_active
);
261 int lttng_ust_ctl_clear_buffer(struct lttng_ust_ctl_consumer_stream
*stream
);
266 * Getters which need to be used on the current packet (between get/put
267 * or get_next/put_next.
270 int lttng_ust_ctl_get_timestamp_begin(struct lttng_ust_ctl_consumer_stream
*stream
,
271 uint64_t *timestamp_begin
);
272 int lttng_ust_ctl_get_timestamp_end(struct lttng_ust_ctl_consumer_stream
*stream
,
273 uint64_t *timestamp_end
);
274 int lttng_ust_ctl_get_events_discarded(struct lttng_ust_ctl_consumer_stream
*stream
,
275 uint64_t *events_discarded
);
276 int lttng_ust_ctl_get_content_size(struct lttng_ust_ctl_consumer_stream
*stream
,
277 uint64_t *content_size
);
278 int lttng_ust_ctl_get_packet_size(struct lttng_ust_ctl_consumer_stream
*stream
,
279 uint64_t *packet_size
);
280 int lttng_ust_ctl_get_sequence_number(struct lttng_ust_ctl_consumer_stream
*stream
,
284 * Getter returning state invariant for the stream, which can be used
285 * without "get" operation.
288 int lttng_ust_ctl_get_stream_id(struct lttng_ust_ctl_consumer_stream
*stream
,
289 uint64_t *stream_id
);
290 int lttng_ust_ctl_get_instance_id(struct lttng_ust_ctl_consumer_stream
*stream
,
294 * Getter returning the current timestamp as perceived from the
297 int lttng_ust_ctl_get_current_timestamp(struct lttng_ust_ctl_consumer_stream
*stream
,
300 /* returns whether UST has perf counters support. */
301 int lttng_ust_ctl_has_perf_counters(void);
303 /* Regenerate the statedump. */
304 int lttng_ust_ctl_regenerate_statedump(int sock
, int handle
);
306 /* event registry management */
308 enum lttng_ust_ctl_socket_type
{
309 LTTNG_UST_CTL_SOCKET_CMD
= 0,
310 LTTNG_UST_CTL_SOCKET_NOTIFY
= 1,
313 enum lttng_ust_ctl_notify_cmd
{
314 LTTNG_UST_CTL_NOTIFY_CMD_EVENT
= 0,
315 LTTNG_UST_CTL_NOTIFY_CMD_CHANNEL
= 1,
316 LTTNG_UST_CTL_NOTIFY_CMD_ENUM
= 2,
319 enum lttng_ust_ctl_channel_header
{
320 LTTNG_UST_CTL_CHANNEL_HEADER_UNKNOWN
= 0,
321 LTTNG_UST_CTL_CHANNEL_HEADER_COMPACT
= 1,
322 LTTNG_UST_CTL_CHANNEL_HEADER_LARGE
= 2,
325 /* event type structures */
327 enum lttng_ust_ctl_abstract_types
{
328 lttng_ust_ctl_atype_integer
,
329 lttng_ust_ctl_atype_enum
, /* legacy */
330 lttng_ust_ctl_atype_array
, /* legacy */
331 lttng_ust_ctl_atype_sequence
, /* legacy */
332 lttng_ust_ctl_atype_string
,
333 lttng_ust_ctl_atype_float
,
334 lttng_ust_ctl_atype_variant
, /* legacy */
335 lttng_ust_ctl_atype_struct
, /* legacy */
336 lttng_ust_ctl_atype_enum_nestable
,
337 lttng_ust_ctl_atype_array_nestable
,
338 lttng_ust_ctl_atype_sequence_nestable
,
339 lttng_ust_ctl_atype_struct_nestable
,
340 lttng_ust_ctl_atype_variant_nestable
,
341 NR_LTTNG_UST_CTL_ABSTRACT_TYPES
,
344 enum lttng_ust_ctl_string_encodings
{
345 lttng_ust_ctl_encode_none
= 0,
346 lttng_ust_ctl_encode_UTF8
= 1,
347 lttng_ust_ctl_encode_ASCII
= 2,
348 NR_LTTNG_UST_CTL_STRING_ENCODINGS
,
351 #define LTTNG_UST_CTL_UST_INTEGER_TYPE_PADDING 24
352 struct lttng_ust_ctl_integer_type
{
353 uint32_t size
; /* in bits */
355 uint32_t reverse_byte_order
;
356 uint32_t base
; /* 2, 8, 10, 16, for pretty print */
357 int32_t encoding
; /* enum lttng_ust_ctl_string_encodings */
358 uint16_t alignment
; /* in bits */
359 char padding
[LTTNG_UST_CTL_UST_INTEGER_TYPE_PADDING
];
360 } __attribute__((packed
));
362 #define LTTNG_UST_CTL_UST_FLOAT_TYPE_PADDING 24
363 struct lttng_ust_ctl_float_type
{
364 uint32_t exp_dig
; /* exponent digits, in bits */
365 uint32_t mant_dig
; /* mantissa digits, in bits */
366 uint32_t reverse_byte_order
;
367 uint16_t alignment
; /* in bits */
368 char padding
[LTTNG_UST_CTL_UST_FLOAT_TYPE_PADDING
];
369 } __attribute__((packed
));
371 #define LTTNG_UST_CTL_UST_ENUM_VALUE_PADDING 15
372 struct lttng_ust_ctl_enum_value
{
375 char padding
[LTTNG_UST_CTL_UST_ENUM_VALUE_PADDING
];
376 } __attribute__((packed
));
378 enum lttng_ust_ctl_ust_enum_entry_options
{
379 LTTNG_UST_CTL_UST_ENUM_ENTRY_OPTION_IS_AUTO
= 1U << 0,
382 #define LTTNG_UST_CTL_UST_ENUM_ENTRY_PADDING 32
383 struct lttng_ust_ctl_enum_entry
{
384 struct lttng_ust_ctl_enum_value start
, end
; /* start and end are inclusive */
385 char string
[LTTNG_UST_ABI_SYM_NAME_LEN
];
389 } __attribute__((packed
)) extra
;
390 char padding
[LTTNG_UST_CTL_UST_ENUM_ENTRY_PADDING
];
392 } __attribute__((packed
));
395 #define LTTNG_UST_CTL_UST_BASIC_TYPE_PADDING 296
396 union _lttng_ust_ctl_basic_type
{
397 struct lttng_ust_ctl_integer_type integer
;
399 char name
[LTTNG_UST_ABI_SYM_NAME_LEN
];
400 struct lttng_ust_ctl_integer_type container_type
;
401 uint64_t id
; /* enum ID in sessiond. */
404 int32_t encoding
; /* enum lttng_ust_ctl_string_encodings */
406 struct lttng_ust_ctl_float_type _float
;
407 char padding
[LTTNG_UST_CTL_UST_BASIC_TYPE_PADDING
];
408 } __attribute__((packed
));
411 struct lttng_ust_ctl_basic_type
{
412 enum lttng_ust_ctl_abstract_types atype
;
414 union _lttng_ust_ctl_basic_type basic
;
416 } __attribute__((packed
));
419 * Padding is derived from largest member: u.legacy.sequence which
420 * contains two basic types, each with LTTNG_UST_CTL_UST_BASIC_TYPE_PADDING.
422 #define LTTNG_UST_CTL_UST_TYPE_PADDING (2 * LTTNG_UST_CTL_UST_BASIC_TYPE_PADDING)
423 struct lttng_ust_ctl_type
{
424 enum lttng_ust_ctl_abstract_types atype
;
426 struct lttng_ust_ctl_integer_type integer
;
427 struct lttng_ust_ctl_float_type _float
;
429 int32_t encoding
; /* enum lttng_ust_ctl_string_encodings */
432 char name
[LTTNG_UST_ABI_SYM_NAME_LEN
];
433 uint64_t id
; /* enum ID in sessiond. */
434 /* container_type follows after this struct lttng_ust_ctl_field. */
437 uint32_t length
; /* num. elems. */
439 /* elem_type follows after this struct lttng_ust_ctl_field. */
442 char length_name
[LTTNG_UST_ABI_SYM_NAME_LEN
];
443 uint32_t alignment
; /* Alignment before elements. */
444 /* elem_type follows after the length_type. */
449 /* Followed by nr_fields struct lttng_ust_ctl_field. */
453 char tag_name
[LTTNG_UST_ABI_SYM_NAME_LEN
];
455 /* Followed by nr_choices struct lttng_ust_ctl_field. */
460 union _lttng_ust_ctl_basic_type basic
;
462 struct lttng_ust_ctl_basic_type elem_type
;
463 uint32_t length
; /* num. elems. */
466 struct lttng_ust_ctl_basic_type length_type
;
467 struct lttng_ust_ctl_basic_type elem_type
;
471 /* Followed by nr_fields struct lttng_ust_ctl_field. */
475 char tag_name
[LTTNG_UST_ABI_SYM_NAME_LEN
];
476 /* Followed by nr_choices struct lttng_ust_ctl_field. */
479 char padding
[LTTNG_UST_CTL_UST_TYPE_PADDING
];
481 } __attribute__((packed
));
483 #define LTTNG_UST_CTL_UST_FIELD_PADDING 28
484 struct lttng_ust_ctl_field
{
485 char name
[LTTNG_UST_ABI_SYM_NAME_LEN
];
486 struct lttng_ust_ctl_type type
;
487 char padding
[LTTNG_UST_CTL_UST_FIELD_PADDING
];
488 } __attribute__((packed
));
491 * Returns 0 on success, negative error value on error.
492 * If an error other than -LTTNG_UST_ERR_UNSUP_MAJOR is returned,
493 * the output fields are not populated.
495 int lttng_ust_ctl_recv_reg_msg(int sock
,
496 enum lttng_ust_ctl_socket_type
*type
,
503 uint32_t *bits_per_long
,
504 uint32_t *uint8_t_alignment
,
505 uint32_t *uint16_t_alignment
,
506 uint32_t *uint32_t_alignment
,
507 uint32_t *uint64_t_alignment
,
508 uint32_t *long_alignment
,
510 char *name
); /* size LTTNG_UST_ABI_PROCNAME_LEN */
513 * Returns 0 on success, negative UST or system error value on error.
514 * Receive the notification command. The "notify_cmd" can then be used
515 * by the caller to find out which lttng_ust_ctl_recv_* function should be
516 * called to receive the notification, and which lttng_ust_ctl_reply_* is
519 int lttng_ust_ctl_recv_notify(int sock
, enum lttng_ust_ctl_notify_cmd
*notify_cmd
);
522 * Returns 0 on success, negative UST or system error value on error.
524 int lttng_ust_ctl_recv_register_event(int sock
,
525 int *session_objd
, /* session descriptor (output) */
526 int *channel_objd
, /* channel descriptor (output) */
528 * event name (output,
529 * size LTTNG_UST_ABI_SYM_NAME_LEN)
534 * (output, dynamically
535 * allocated, must be free(3)'d
536 * by the caller if function
540 struct lttng_ust_ctl_field
**fields
,
541 char **model_emf_uri
);
544 * Returns 0 on success, negative error value on error.
546 int lttng_ust_ctl_reply_register_event(int sock
,
547 uint32_t id
, /* event id (input) */
548 int ret_code
); /* return code. 0 ok, negative error */
551 * Returns 0 on success, negative UST or system error value on error.
553 int lttng_ust_ctl_recv_register_enum(int sock
,
556 struct lttng_ust_ctl_enum_entry
**entries
,
560 * Returns 0 on success, negative error value on error.
562 int lttng_ust_ctl_reply_register_enum(int sock
,
563 uint64_t id
, /* enum id (input) */
567 * Returns 0 on success, negative UST or system error value on error.
569 int lttng_ust_ctl_recv_register_channel(int sock
,
570 int *session_objd
, /* session descriptor (output) */
571 int *channel_objd
, /* channel descriptor (output) */
572 size_t *nr_fields
, /* context fields */
573 struct lttng_ust_ctl_field
**fields
);
576 * Returns 0 on success, negative error value on error.
578 int lttng_ust_ctl_reply_register_channel(int sock
,
580 enum lttng_ust_ctl_channel_header header_type
,
581 int ret_code
); /* return code. 0 ok, negative error */
587 enum lttng_ust_ctl_counter_bitness
{
588 LTTNG_UST_CTL_COUNTER_BITNESS_32
= 0,
589 LTTNG_UST_CTL_COUNTER_BITNESS_64
= 1,
592 enum lttng_ust_ctl_counter_arithmetic
{
593 LTTNG_UST_CTL_COUNTER_ARITHMETIC_MODULAR
= 0,
594 LTTNG_UST_CTL_COUNTER_ARITHMETIC_SATURATION
= 1,
597 /* Used as alloc flags. */
598 enum lttng_ust_ctl_counter_alloc
{
599 LTTNG_UST_CTL_COUNTER_ALLOC_PER_CPU
= (1 << 0),
600 LTTNG_UST_CTL_COUNTER_ALLOC_GLOBAL
= (1 << 1),
603 struct lttng_ust_ctl_daemon_counter
;
605 int lttng_ust_ctl_get_nr_cpu_per_counter(void);
607 struct lttng_ust_ctl_counter_dimension
{
609 uint64_t underflow_index
;
610 uint64_t overflow_index
;
611 uint8_t has_underflow
;
612 uint8_t has_overflow
;
615 struct lttng_ust_ctl_daemon_counter
*
616 lttng_ust_ctl_create_counter(size_t nr_dimensions
,
617 const struct lttng_ust_ctl_counter_dimension
*dimensions
,
618 int64_t global_sum_step
,
619 int global_counter_fd
,
620 int nr_counter_cpu_fds
,
621 const int *counter_cpu_fds
,
622 enum lttng_ust_ctl_counter_bitness bitness
,
623 enum lttng_ust_ctl_counter_arithmetic arithmetic
,
624 uint32_t alloc_flags
,
627 int lttng_ust_ctl_create_counter_data(struct lttng_ust_ctl_daemon_counter
*counter
,
628 struct lttng_ust_abi_object_data
**counter_data
);
630 int lttng_ust_ctl_create_counter_global_data(struct lttng_ust_ctl_daemon_counter
*counter
,
631 struct lttng_ust_abi_object_data
**counter_global_data
);
632 int lttng_ust_ctl_create_counter_cpu_data(struct lttng_ust_ctl_daemon_counter
*counter
, int cpu
,
633 struct lttng_ust_abi_object_data
**counter_cpu_data
);
636 * Each counter data and counter cpu data created need to be destroyed
637 * before calling lttng_ust_ctl_destroy_counter().
639 void lttng_ust_ctl_destroy_counter(struct lttng_ust_ctl_daemon_counter
*counter
);
641 int lttng_ust_ctl_send_counter_data_to_ust(int sock
, int parent_handle
,
642 struct lttng_ust_abi_object_data
*counter_data
);
643 int lttng_ust_ctl_send_counter_global_data_to_ust(int sock
,
644 struct lttng_ust_abi_object_data
*counter_data
,
645 struct lttng_ust_abi_object_data
*counter_global_data
);
646 int lttng_ust_ctl_send_counter_cpu_data_to_ust(int sock
,
647 struct lttng_ust_abi_object_data
*counter_data
,
648 struct lttng_ust_abi_object_data
*counter_cpu_data
);
650 int lttng_ust_ctl_counter_read(struct lttng_ust_ctl_daemon_counter
*counter
,
651 const size_t *dimension_indexes
,
652 int cpu
, int64_t *value
,
653 bool *overflow
, bool *underflow
);
654 int lttng_ust_ctl_counter_aggregate(struct lttng_ust_ctl_daemon_counter
*counter
,
655 const size_t *dimension_indexes
,
657 bool *overflow
, bool *underflow
);
658 int lttng_ust_ctl_counter_clear(struct lttng_ust_ctl_daemon_counter
*counter
,
659 const size_t *dimension_indexes
);
661 void lttng_ust_ctl_sigbus_handle(void *addr
);
667 #endif /* _LTTNG_UST_CTL_H */