include: implement REUSE with SPDX identifiers
[lttng-ust.git] / include / lttng / ust-ctl.h
CommitLineData
1c196845
MJ
1// SPDX-FileCopyrightText: 2011 EfficiOS Inc.
2// SPDX-FileCopyrightText: 2011-2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
3//
4// SPDX-License-Identifier: GPL-2.0-only
f3105c67
MD
5
6#ifndef _LTTNG_UST_CTL_H
7#define _LTTNG_UST_CTL_H
8
fb31eb73 9#include <limits.h>
b4051ad8 10#include <stddef.h>
fb31eb73 11#include <stdint.h>
ebabbf58 12#include <stdbool.h>
32ce8569 13#include <sys/types.h>
fb31eb73
FD
14
15#include <lttng/ust-abi.h>
eae3c729 16#include <lttng/ust-utils.h>
63b3205f 17#include <lttng/ust-sigbus.h>
74d81a6c 18
81b2d238
SM
19#ifdef __cplusplus
20extern "C" {
21#endif
22
74d81a6c
MD
23#ifndef LTTNG_UST_UUID_LEN
24#define LTTNG_UST_UUID_LEN 16
25#endif
26
32ce8569
MD
27/* Default unix socket path */
28#define LTTNG_UST_SOCK_FILENAME \
29 "lttng-ust-sock-" \
6c21eb5a 30 lttng_ust_stringify(LTTNG_UST_ABI_MAJOR_VERSION_OLDEST_COMPATIBLE)
32ce8569
MD
31
32/*
33 * Shared memory files path are automatically related to shm root, e.g.
34 * /dev/shm under linux.
35 */
36#define LTTNG_UST_WAIT_FILENAME \
37 "lttng-ust-wait-" \
6c21eb5a 38 lttng_ust_stringify(LTTNG_UST_ABI_MAJOR_VERSION_OLDEST_COMPATIBLE)
32ce8569 39
249cffb5 40struct lttng_ust_ctl_consumer_channel_attr {
fd17d7ce 41 enum lttng_ust_abi_chan_type type;
74d81a6c
MD
42 uint64_t subbuf_size; /* bytes */
43 uint64_t num_subbuf; /* power of 2 */
44 int overwrite; /* 1: overwrite, 0: discard */
45 unsigned int switch_timer_interval; /* usec */
46 unsigned int read_timer_interval; /* usec */
fd17d7ce 47 enum lttng_ust_abi_output output; /* splice, mmap */
6ca18e66 48 uint32_t chan_id; /* channel ID */
74d81a6c 49 unsigned char uuid[LTTNG_UST_UUID_LEN]; /* Trace session unique ID */
b2c5f61a 50 int64_t blocking_timeout; /* Blocking timeout (usec) */
9f5ade14 51} __attribute__((packed));
74d81a6c
MD
52
53/*
54 * API used by sessiond.
55 */
56
53f0df51 57struct lttng_ust_context_attr {
fd17d7ce 58 enum lttng_ust_abi_context_type ctx;
53f0df51 59 union {
fd17d7ce 60 struct lttng_ust_abi_perf_counter_ctx perf_counter;
53f0df51
JG
61 struct {
62 char *provider_name;
63 char *ctx_name;
64 } app_ctx;
65 } u;
66};
67
7bc53e94
MD
68/*
69 * Error values: all the following functions return:
c354a72c 70 * >= 0: Success (LTTNG_UST_OK)
7bc53e94
MD
71 * < 0: error code.
72 */
249cffb5
MJ
73int lttng_ust_ctl_register_done(int sock);
74int lttng_ust_ctl_create_session(int sock);
75int lttng_ust_ctl_create_event(int sock, struct lttng_ust_abi_event *ev,
fd17d7ce
MD
76 struct lttng_ust_abi_object_data *channel_data,
77 struct lttng_ust_abi_object_data **event_data);
249cffb5 78int lttng_ust_ctl_add_context(int sock, struct lttng_ust_context_attr *ctx,
fd17d7ce
MD
79 struct lttng_ust_abi_object_data *obj_data,
80 struct lttng_ust_abi_object_data **context_data);
249cffb5 81int lttng_ust_ctl_set_filter(int sock, struct lttng_ust_abi_filter_bytecode *bytecode,
fd17d7ce 82 struct lttng_ust_abi_object_data *obj_data);
249cffb5 83int lttng_ust_ctl_set_capture(int sock, struct lttng_ust_abi_capture_bytecode *bytecode,
fd17d7ce 84 struct lttng_ust_abi_object_data *obj_data);
249cffb5 85int lttng_ust_ctl_set_exclusion(int sock, struct lttng_ust_abi_event_exclusion *exclusion,
fd17d7ce
MD
86 struct lttng_ust_abi_object_data *obj_data);
87
249cffb5
MJ
88int lttng_ust_ctl_enable(int sock, struct lttng_ust_abi_object_data *object);
89int lttng_ust_ctl_disable(int sock, struct lttng_ust_abi_object_data *object);
90int lttng_ust_ctl_start_session(int sock, int handle);
91int lttng_ust_ctl_stop_session(int sock, int handle);
f3105c67 92
d8d2416d 93/*
249cffb5 94 * lttng_ust_ctl_create_event notifier_group creates a event notifier group. It
d8d2416d
FD
95 * establishes the connection with the application by providing a file
96 * descriptor of the pipe to be used by the application when a event notifier
97 * of that group is fired. It returns a handle to be used when creating event
98 * notifier in that group.
99 */
249cffb5 100int lttng_ust_ctl_create_event_notifier_group(int sock, int pipe_fd,
fd17d7ce 101 struct lttng_ust_abi_object_data **event_notifier_group);
d8d2416d
FD
102
103/*
249cffb5 104 * lttng_ust_ctl_create_event notifier creates a event notifier in a event notifier
d8d2416d
FD
105 * group giving a event notifier description and a event notifier group handle.
106 * It returns a event notifier handle to be used when enabling the event
107 * notifier, attaching filter, attaching exclusion, and disabling the event
108 * notifier.
109 */
249cffb5 110int lttng_ust_ctl_create_event_notifier(int sock,
fd17d7ce
MD
111 struct lttng_ust_abi_event_notifier *event_notifier,
112 struct lttng_ust_abi_object_data *event_notifier_group,
113 struct lttng_ust_abi_object_data **event_notifier_data);
d8d2416d 114
b115631f 115/*
249cffb5 116 * lttng_ust_ctl_tracepoint_list returns a tracepoint list handle, or negative
b115631f
MD
117 * error value.
118 */
249cffb5 119int lttng_ust_ctl_tracepoint_list(int sock);
74d81a6c 120
b115631f 121/*
249cffb5 122 * lttng_ust_ctl_tracepoint_list_get is used to iterate on the tp list
7bc53e94
MD
123 * handle. End is iteration is reached when -LTTNG_UST_ERR_NOENT is
124 * returned.
b115631f 125 */
249cffb5 126int lttng_ust_ctl_tracepoint_list_get(int sock, int tp_list_handle,
fd17d7ce 127 struct lttng_ust_abi_tracepoint_iter *iter);
b115631f 128
40003310 129/*
249cffb5 130 * lttng_ust_ctl_tracepoint_field_list returns a tracepoint field list handle,
40003310
MD
131 * or negative error value.
132 */
249cffb5 133int lttng_ust_ctl_tracepoint_field_list(int sock);
40003310
MD
134
135/*
249cffb5 136 * lttng_ust_ctl_tracepoint_field_list_get is used to iterate on the tp field
7bc53e94
MD
137 * list handle. End is iteration is reached when -LTTNG_UST_ERR_NOENT is
138 * returned.
40003310 139 */
249cffb5 140int lttng_ust_ctl_tracepoint_field_list_get(int sock, int tp_field_list_handle,
fd17d7ce 141 struct lttng_ust_abi_field_iter *iter);
40003310 142
249cffb5
MJ
143int lttng_ust_ctl_tracer_version(int sock, struct lttng_ust_abi_tracer_version *v);
144int lttng_ust_ctl_wait_quiescent(int sock);
f3105c67 145
249cffb5 146int lttng_ust_ctl_sock_flush_buffer(int sock, struct lttng_ust_abi_object_data *object);
f1fffc57 147
249cffb5 148int lttng_ust_ctl_calibrate(int sock, struct lttng_ust_abi_calibrate *calibrate);
f3105c67 149
74d81a6c 150/* Release object created by members of this API. */
249cffb5 151int lttng_ust_ctl_release_object(int sock, struct lttng_ust_abi_object_data *data);
74d81a6c 152/* Release handle returned by create session. */
249cffb5 153int lttng_ust_ctl_release_handle(int sock, int handle);
74d81a6c 154
249cffb5 155int lttng_ust_ctl_recv_channel_from_consumer(int sock,
fd17d7ce 156 struct lttng_ust_abi_object_data **channel_data);
249cffb5 157int lttng_ust_ctl_recv_stream_from_consumer(int sock,
fd17d7ce 158 struct lttng_ust_abi_object_data **stream_data);
249cffb5 159int lttng_ust_ctl_send_channel_to_ust(int sock, int session_handle,
fd17d7ce 160 struct lttng_ust_abi_object_data *channel_data);
249cffb5 161int lttng_ust_ctl_send_stream_to_ust(int sock,
fd17d7ce
MD
162 struct lttng_ust_abi_object_data *channel_data,
163 struct lttng_ust_abi_object_data *stream_data);
74d81a6c 164
12f3dabc 165/*
249cffb5 166 * lttng_ust_ctl_duplicate_ust_object_data allocated a new object in "dest" if
12f3dabc 167 * it succeeds (returns 0). It must be released using
249cffb5 168 * lttng_ust_ctl_release_object() and then freed with free().
12f3dabc 169 */
249cffb5 170int lttng_ust_ctl_duplicate_ust_object_data(struct lttng_ust_abi_object_data **dest,
fd17d7ce 171 struct lttng_ust_abi_object_data *src);
12f3dabc 172
f3105c67 173/*
74d81a6c 174 * API used by consumer.
f3105c67 175 */
74d81a6c 176
249cffb5
MJ
177struct lttng_ust_ctl_consumer_channel;
178struct lttng_ust_ctl_consumer_stream;
179struct lttng_ust_ctl_consumer_channel_attr;
74d81a6c 180
249cffb5 181int lttng_ust_ctl_get_nr_stream_per_channel(void);
5ea386c3 182
249cffb5
MJ
183struct lttng_ust_ctl_consumer_channel *
184 lttng_ust_ctl_create_channel(struct lttng_ust_ctl_consumer_channel_attr *attr,
5ea386c3 185 const int *stream_fds, int nr_stream_fds);
5224b5c8 186/*
74d81a6c 187 * Each stream created needs to be destroyed before calling
249cffb5 188 * lttng_ust_ctl_destroy_channel().
5224b5c8 189 */
249cffb5 190void lttng_ust_ctl_destroy_channel(struct lttng_ust_ctl_consumer_channel *chan);
f3105c67 191
249cffb5
MJ
192int lttng_ust_ctl_send_channel_to_sessiond(int sock,
193 struct lttng_ust_ctl_consumer_channel *channel);
194int lttng_ust_ctl_channel_close_wait_fd(struct lttng_ust_ctl_consumer_channel *consumer_chan);
195int lttng_ust_ctl_channel_close_wakeup_fd(struct lttng_ust_ctl_consumer_channel *consumer_chan);
196int lttng_ust_ctl_channel_get_wait_fd(struct lttng_ust_ctl_consumer_channel *consumer_chan);
197int lttng_ust_ctl_channel_get_wakeup_fd(struct lttng_ust_ctl_consumer_channel *consumer_chan);
c9023c93 198
249cffb5
MJ
199int lttng_ust_ctl_write_metadata_to_channel(
200 struct lttng_ust_ctl_consumer_channel *channel,
c9023c93
MD
201 const char *metadata_str, /* NOT null-terminated */
202 size_t len); /* metadata length */
249cffb5
MJ
203ssize_t lttng_ust_ctl_write_one_packet_to_channel(
204 struct lttng_ust_ctl_consumer_channel *channel,
3ef94b0e
JD
205 const char *metadata_str, /* NOT null-terminated */
206 size_t len); /* metadata length */
c9023c93 207
74d81a6c
MD
208/*
209 * Send a NULL stream to finish iteration over all streams of a given
210 * channel.
211 */
249cffb5
MJ
212int lttng_ust_ctl_send_stream_to_sessiond(int sock,
213 struct lttng_ust_ctl_consumer_stream *stream);
214int lttng_ust_ctl_stream_close_wait_fd(struct lttng_ust_ctl_consumer_stream *stream);
215int lttng_ust_ctl_stream_close_wakeup_fd(struct lttng_ust_ctl_consumer_stream *stream);
216int lttng_ust_ctl_stream_get_wait_fd(struct lttng_ust_ctl_consumer_stream *stream);
217int lttng_ust_ctl_stream_get_wakeup_fd(struct lttng_ust_ctl_consumer_stream *stream);
f3105c67 218
74d81a6c 219/* Create/destroy stream buffers for read */
249cffb5
MJ
220struct lttng_ust_ctl_consumer_stream *
221 lttng_ust_ctl_create_stream(struct lttng_ust_ctl_consumer_channel *channel,
74d81a6c 222 int cpu);
249cffb5 223void lttng_ust_ctl_destroy_stream(struct lttng_ust_ctl_consumer_stream *stream);
f3105c67
MD
224
225/* For mmap mode, readable without "get" operation */
249cffb5 226int lttng_ust_ctl_get_mmap_len(struct lttng_ust_ctl_consumer_stream *stream,
f3105c67 227 unsigned long *len);
249cffb5 228int lttng_ust_ctl_get_max_subbuf_size(struct lttng_ust_ctl_consumer_stream *stream,
f3105c67
MD
229 unsigned long *len);
230
231/*
232 * For mmap mode, operate on the current packet (between get/put or
233 * get_next/put_next).
234 */
249cffb5
MJ
235void *lttng_ust_ctl_get_mmap_base(struct lttng_ust_ctl_consumer_stream *stream);
236int lttng_ust_ctl_get_mmap_read_offset(struct lttng_ust_ctl_consumer_stream *stream,
74d81a6c 237 unsigned long *off);
249cffb5 238int lttng_ust_ctl_get_subbuf_size(struct lttng_ust_ctl_consumer_stream *stream,
74d81a6c 239 unsigned long *len);
249cffb5 240int lttng_ust_ctl_get_padded_subbuf_size(struct lttng_ust_ctl_consumer_stream *stream,
74d81a6c 241 unsigned long *len);
249cffb5
MJ
242int lttng_ust_ctl_get_next_subbuf(struct lttng_ust_ctl_consumer_stream *stream);
243int lttng_ust_ctl_put_next_subbuf(struct lttng_ust_ctl_consumer_stream *stream);
f3105c67
MD
244
245/* snapshot */
246
249cffb5
MJ
247int lttng_ust_ctl_snapshot(struct lttng_ust_ctl_consumer_stream *stream);
248int lttng_ust_ctl_snapshot_sample_positions(struct lttng_ust_ctl_consumer_stream *stream);
249int lttng_ust_ctl_snapshot_get_consumed(struct lttng_ust_ctl_consumer_stream *stream,
74d81a6c 250 unsigned long *pos);
249cffb5 251int lttng_ust_ctl_snapshot_get_produced(struct lttng_ust_ctl_consumer_stream *stream,
74d81a6c 252 unsigned long *pos);
249cffb5 253int lttng_ust_ctl_get_subbuf(struct lttng_ust_ctl_consumer_stream *stream,
74d81a6c 254 unsigned long *pos);
249cffb5 255int lttng_ust_ctl_put_subbuf(struct lttng_ust_ctl_consumer_stream *stream);
5f9d3dbc 256
63b3205f 257int lttng_ust_ctl_flush_buffer(struct lttng_ust_ctl_consumer_stream *stream,
74d81a6c 258 int producer_active);
63b3205f 259int lttng_ust_ctl_clear_buffer(struct lttng_ust_ctl_consumer_stream *stream);
f3105c67 260
b2f3252a 261/* index */
82df14e4
MD
262
263/*
264 * Getters which need to be used on the current packet (between get/put
265 * or get_next/put_next.
266 */
267
249cffb5 268int lttng_ust_ctl_get_timestamp_begin(struct lttng_ust_ctl_consumer_stream *stream,
b2f3252a 269 uint64_t *timestamp_begin);
249cffb5 270int lttng_ust_ctl_get_timestamp_end(struct lttng_ust_ctl_consumer_stream *stream,
b2f3252a 271 uint64_t *timestamp_end);
249cffb5 272int lttng_ust_ctl_get_events_discarded(struct lttng_ust_ctl_consumer_stream *stream,
b2f3252a 273 uint64_t *events_discarded);
249cffb5 274int lttng_ust_ctl_get_content_size(struct lttng_ust_ctl_consumer_stream *stream,
b2f3252a 275 uint64_t *content_size);
249cffb5 276int lttng_ust_ctl_get_packet_size(struct lttng_ust_ctl_consumer_stream *stream,
b2f3252a 277 uint64_t *packet_size);
249cffb5 278int lttng_ust_ctl_get_sequence_number(struct lttng_ust_ctl_consumer_stream *stream,
1ff31389 279 uint64_t *seq);
82df14e4
MD
280
281/*
282 * Getter returning state invariant for the stream, which can be used
283 * without "get" operation.
284 */
285
249cffb5 286int lttng_ust_ctl_get_stream_id(struct lttng_ust_ctl_consumer_stream *stream,
82df14e4 287 uint64_t *stream_id);
249cffb5 288int lttng_ust_ctl_get_instance_id(struct lttng_ust_ctl_consumer_stream *stream,
45a00b05 289 uint64_t *id);
b2f3252a 290
82df14e4
MD
291/*
292 * Getter returning the current timestamp as perceived from the
293 * tracer.
294 */
249cffb5 295int lttng_ust_ctl_get_current_timestamp(struct lttng_ust_ctl_consumer_stream *stream,
82df14e4
MD
296 uint64_t *ts);
297
57201bb3 298/* returns whether UST has perf counters support. */
249cffb5 299int lttng_ust_ctl_has_perf_counters(void);
57201bb3 300
f53329f3 301/* Regenerate the statedump. */
249cffb5 302int lttng_ust_ctl_regenerate_statedump(int sock, int handle);
f53329f3 303
32ce8569
MD
304/* event registry management */
305
249cffb5
MJ
306enum lttng_ust_ctl_socket_type {
307 LTTNG_UST_CTL_SOCKET_CMD = 0,
308 LTTNG_UST_CTL_SOCKET_NOTIFY = 1,
32ce8569
MD
309};
310
249cffb5
MJ
311enum lttng_ust_ctl_notify_cmd {
312 LTTNG_UST_CTL_NOTIFY_CMD_EVENT = 0,
313 LTTNG_UST_CTL_NOTIFY_CMD_CHANNEL = 1,
314 LTTNG_UST_CTL_NOTIFY_CMD_ENUM = 2,
32ce8569
MD
315};
316
249cffb5
MJ
317enum lttng_ust_ctl_channel_header {
318 LTTNG_UST_CTL_CHANNEL_HEADER_UNKNOWN = 0,
319 LTTNG_UST_CTL_CHANNEL_HEADER_COMPACT = 1,
320 LTTNG_UST_CTL_CHANNEL_HEADER_LARGE = 2,
32ce8569
MD
321};
322
323/* event type structures */
324
249cffb5
MJ
325enum lttng_ust_ctl_abstract_types {
326 lttng_ust_ctl_atype_integer,
327 lttng_ust_ctl_atype_enum, /* legacy */
328 lttng_ust_ctl_atype_array, /* legacy */
329 lttng_ust_ctl_atype_sequence, /* legacy */
330 lttng_ust_ctl_atype_string,
331 lttng_ust_ctl_atype_float,
332 lttng_ust_ctl_atype_variant, /* legacy */
333 lttng_ust_ctl_atype_struct, /* legacy */
334 lttng_ust_ctl_atype_enum_nestable,
335 lttng_ust_ctl_atype_array_nestable,
336 lttng_ust_ctl_atype_sequence_nestable,
337 lttng_ust_ctl_atype_struct_nestable,
338 lttng_ust_ctl_atype_variant_nestable,
339 NR_LTTNG_UST_CTL_ABSTRACT_TYPES,
32ce8569
MD
340};
341
249cffb5
MJ
342enum lttng_ust_ctl_string_encodings {
343 lttng_ust_ctl_encode_none = 0,
344 lttng_ust_ctl_encode_UTF8 = 1,
345 lttng_ust_ctl_encode_ASCII = 2,
346 NR_LTTNG_UST_CTL_STRING_ENCODINGS,
32ce8569
MD
347};
348
249cffb5
MJ
349#define LTTNG_UST_CTL_UST_INTEGER_TYPE_PADDING 24
350struct lttng_ust_ctl_integer_type {
32ce8569
MD
351 uint32_t size; /* in bits */
352 uint32_t signedness;
353 uint32_t reverse_byte_order;
354 uint32_t base; /* 2, 8, 10, 16, for pretty print */
249cffb5 355 int32_t encoding; /* enum lttng_ust_ctl_string_encodings */
32ce8569 356 uint16_t alignment; /* in bits */
249cffb5 357 char padding[LTTNG_UST_CTL_UST_INTEGER_TYPE_PADDING];
9f5ade14 358} __attribute__((packed));
32ce8569 359
249cffb5
MJ
360#define LTTNG_UST_CTL_UST_FLOAT_TYPE_PADDING 24
361struct lttng_ust_ctl_float_type {
32ce8569
MD
362 uint32_t exp_dig; /* exponent digits, in bits */
363 uint32_t mant_dig; /* mantissa digits, in bits */
364 uint32_t reverse_byte_order;
365 uint16_t alignment; /* in bits */
249cffb5 366 char padding[LTTNG_UST_CTL_UST_FLOAT_TYPE_PADDING];
9f5ade14 367} __attribute__((packed));
32ce8569 368
249cffb5
MJ
369#define LTTNG_UST_CTL_UST_ENUM_VALUE_PADDING 15
370struct lttng_ust_ctl_enum_value {
a6f80644
MD
371 uint64_t value;
372 uint8_t signedness;
249cffb5 373 char padding[LTTNG_UST_CTL_UST_ENUM_VALUE_PADDING];
9f5ade14 374} __attribute__((packed));
a6f80644 375
249cffb5
MJ
376enum lttng_ust_ctl_ust_enum_entry_options {
377 LTTNG_UST_CTL_UST_ENUM_ENTRY_OPTION_IS_AUTO = 1U << 0,
3e762260
PP
378};
379
249cffb5
MJ
380#define LTTNG_UST_CTL_UST_ENUM_ENTRY_PADDING 32
381struct lttng_ust_ctl_enum_entry {
382 struct lttng_ust_ctl_enum_value start, end; /* start and end are inclusive */
fd17d7ce 383 char string[LTTNG_UST_ABI_SYM_NAME_LEN];
3e762260
PP
384 union {
385 struct {
386 uint32_t options;
9f5ade14 387 } __attribute__((packed)) extra;
249cffb5 388 char padding[LTTNG_UST_CTL_UST_ENUM_ENTRY_PADDING];
3e762260 389 } u;
9f5ade14 390} __attribute__((packed));
c785c634 391
218deb69 392/* legacy */
249cffb5
MJ
393#define LTTNG_UST_CTL_UST_BASIC_TYPE_PADDING 296
394union _lttng_ust_ctl_basic_type {
395 struct lttng_ust_ctl_integer_type integer;
c785c634 396 struct {
fd17d7ce 397 char name[LTTNG_UST_ABI_SYM_NAME_LEN];
249cffb5 398 struct lttng_ust_ctl_integer_type container_type;
c785c634
MD
399 uint64_t id; /* enum ID in sessiond. */
400 } enumeration;
32ce8569 401 struct {
249cffb5 402 int32_t encoding; /* enum lttng_ust_ctl_string_encodings */
32ce8569 403 } string;
249cffb5
MJ
404 struct lttng_ust_ctl_float_type _float;
405 char padding[LTTNG_UST_CTL_UST_BASIC_TYPE_PADDING];
9f5ade14 406} __attribute__((packed));
32ce8569 407
218deb69 408/* legacy */
249cffb5
MJ
409struct lttng_ust_ctl_basic_type {
410 enum lttng_ust_ctl_abstract_types atype;
32ce8569 411 union {
249cffb5 412 union _lttng_ust_ctl_basic_type basic;
32ce8569 413 } u;
9f5ade14 414} __attribute__((packed));
32ce8569 415
218deb69
MD
416/*
417 * Padding is derived from largest member: u.legacy.sequence which
249cffb5 418 * contains two basic types, each with LTTNG_UST_CTL_UST_BASIC_TYPE_PADDING.
218deb69 419 */
249cffb5
MJ
420#define LTTNG_UST_CTL_UST_TYPE_PADDING (2 * LTTNG_UST_CTL_UST_BASIC_TYPE_PADDING)
421struct lttng_ust_ctl_type {
422 enum lttng_ust_ctl_abstract_types atype;
32ce8569 423 union {
249cffb5
MJ
424 struct lttng_ust_ctl_integer_type integer;
425 struct lttng_ust_ctl_float_type _float;
218deb69 426 struct {
249cffb5 427 int32_t encoding; /* enum lttng_ust_ctl_string_encodings */
218deb69
MD
428 } string;
429 struct {
fd17d7ce 430 char name[LTTNG_UST_ABI_SYM_NAME_LEN];
218deb69 431 uint64_t id; /* enum ID in sessiond. */
249cffb5 432 /* container_type follows after this struct lttng_ust_ctl_field. */
218deb69 433 } enum_nestable;
32ce8569 434 struct {
32ce8569 435 uint32_t length; /* num. elems. */
218deb69 436 uint32_t alignment;
249cffb5 437 /* elem_type follows after this struct lttng_ust_ctl_field. */
218deb69 438 } array_nestable;
32ce8569 439 struct {
fd17d7ce 440 char length_name[LTTNG_UST_ABI_SYM_NAME_LEN];
218deb69
MD
441 uint32_t alignment; /* Alignment before elements. */
442 /* elem_type follows after the length_type. */
443 } sequence_nestable;
444 struct {
445 uint32_t nr_fields;
446 uint32_t alignment;
249cffb5 447 /* Followed by nr_fields struct lttng_ust_ctl_field. */
218deb69 448 } struct_nestable;
53569322
MD
449 struct {
450 uint32_t nr_choices;
fd17d7ce 451 char tag_name[LTTNG_UST_ABI_SYM_NAME_LEN];
218deb69 452 uint32_t alignment;
249cffb5 453 /* Followed by nr_choices struct lttng_ust_ctl_field. */
218deb69
MD
454 } variant_nestable;
455
456 /* Legacy ABI */
457 union {
249cffb5 458 union _lttng_ust_ctl_basic_type basic;
218deb69 459 struct {
249cffb5 460 struct lttng_ust_ctl_basic_type elem_type;
218deb69
MD
461 uint32_t length; /* num. elems. */
462 } array;
463 struct {
249cffb5
MJ
464 struct lttng_ust_ctl_basic_type length_type;
465 struct lttng_ust_ctl_basic_type elem_type;
218deb69
MD
466 } sequence;
467 struct {
468 uint32_t nr_fields;
249cffb5 469 /* Followed by nr_fields struct lttng_ust_ctl_field. */
218deb69
MD
470 } _struct;
471 struct {
472 uint32_t nr_choices;
fd17d7ce 473 char tag_name[LTTNG_UST_ABI_SYM_NAME_LEN];
249cffb5 474 /* Followed by nr_choices struct lttng_ust_ctl_field. */
218deb69
MD
475 } variant;
476 } legacy;
249cffb5 477 char padding[LTTNG_UST_CTL_UST_TYPE_PADDING];
32ce8569 478 } u;
9f5ade14 479} __attribute__((packed));
32ce8569 480
249cffb5
MJ
481#define LTTNG_UST_CTL_UST_FIELD_PADDING 28
482struct lttng_ust_ctl_field {
fd17d7ce 483 char name[LTTNG_UST_ABI_SYM_NAME_LEN];
249cffb5
MJ
484 struct lttng_ust_ctl_type type;
485 char padding[LTTNG_UST_CTL_UST_FIELD_PADDING];
9f5ade14 486} __attribute__((packed));
32ce8569
MD
487
488/*
489 * Returns 0 on success, negative error value on error.
490 * If an error other than -LTTNG_UST_ERR_UNSUP_MAJOR is returned,
491 * the output fields are not populated.
492 */
249cffb5
MJ
493int lttng_ust_ctl_recv_reg_msg(int sock,
494 enum lttng_ust_ctl_socket_type *type,
32ce8569
MD
495 uint32_t *major,
496 uint32_t *minor,
497 uint32_t *pid,
498 uint32_t *ppid,
499 uint32_t *uid,
500 uint32_t *gid,
501 uint32_t *bits_per_long,
502 uint32_t *uint8_t_alignment,
503 uint32_t *uint16_t_alignment,
504 uint32_t *uint32_t_alignment,
505 uint32_t *uint64_t_alignment,
506 uint32_t *long_alignment,
507 int *byte_order,
508 char *name); /* size LTTNG_UST_ABI_PROCNAME_LEN */
509
510/*
511 * Returns 0 on success, negative UST or system error value on error.
512 * Receive the notification command. The "notify_cmd" can then be used
249cffb5
MJ
513 * by the caller to find out which lttng_ust_ctl_recv_* function should be
514 * called to receive the notification, and which lttng_ust_ctl_reply_* is
32ce8569
MD
515 * appropriate.
516 */
249cffb5 517int lttng_ust_ctl_recv_notify(int sock, enum lttng_ust_ctl_notify_cmd *notify_cmd);
32ce8569
MD
518
519/*
520 * Returns 0 on success, negative UST or system error value on error.
521 */
249cffb5 522int lttng_ust_ctl_recv_register_event(int sock,
32ce8569
MD
523 int *session_objd, /* session descriptor (output) */
524 int *channel_objd, /* channel descriptor (output) */
525 char *event_name, /*
526 * event name (output,
fd17d7ce 527 * size LTTNG_UST_ABI_SYM_NAME_LEN)
32ce8569
MD
528 */
529 int *loglevel,
530 char **signature, /*
531 * event signature
532 * (output, dynamically
533 * allocated, must be free(3)'d
534 * by the caller if function
535 * returns success.)
536 */
537 size_t *nr_fields,
249cffb5 538 struct lttng_ust_ctl_field **fields,
32ce8569
MD
539 char **model_emf_uri);
540
541/*
542 * Returns 0 on success, negative error value on error.
543 */
249cffb5 544int lttng_ust_ctl_reply_register_event(int sock,
32ce8569
MD
545 uint32_t id, /* event id (input) */
546 int ret_code); /* return code. 0 ok, negative error */
547
c785c634
MD
548/*
549 * Returns 0 on success, negative UST or system error value on error.
550 */
249cffb5 551int lttng_ust_ctl_recv_register_enum(int sock,
c785c634
MD
552 int *session_objd,
553 char *enum_name,
249cffb5 554 struct lttng_ust_ctl_enum_entry **entries,
c785c634
MD
555 size_t *nr_entries);
556
557/*
558 * Returns 0 on success, negative error value on error.
559 */
249cffb5 560int lttng_ust_ctl_reply_register_enum(int sock,
c785c634
MD
561 uint64_t id, /* enum id (input) */
562 int ret_code);
563
32ce8569
MD
564/*
565 * Returns 0 on success, negative UST or system error value on error.
566 */
249cffb5 567int lttng_ust_ctl_recv_register_channel(int sock,
32ce8569
MD
568 int *session_objd, /* session descriptor (output) */
569 int *channel_objd, /* channel descriptor (output) */
570 size_t *nr_fields, /* context fields */
249cffb5 571 struct lttng_ust_ctl_field **fields);
32ce8569
MD
572
573/*
574 * Returns 0 on success, negative error value on error.
575 */
249cffb5 576int lttng_ust_ctl_reply_register_channel(int sock,
32ce8569 577 uint32_t chan_id,
249cffb5 578 enum lttng_ust_ctl_channel_header header_type,
32ce8569
MD
579 int ret_code); /* return code. 0 ok, negative error */
580
ebabbf58
MD
581/*
582 * Counter API.
583 */
584
249cffb5
MJ
585enum lttng_ust_ctl_counter_bitness {
586 LTTNG_UST_CTL_COUNTER_BITNESS_32 = 0,
587 LTTNG_UST_CTL_COUNTER_BITNESS_64 = 1,
ebabbf58
MD
588};
589
249cffb5
MJ
590enum lttng_ust_ctl_counter_arithmetic {
591 LTTNG_UST_CTL_COUNTER_ARITHMETIC_MODULAR = 0,
592 LTTNG_UST_CTL_COUNTER_ARITHMETIC_SATURATION = 1,
ebabbf58
MD
593};
594
595/* Used as alloc flags. */
249cffb5
MJ
596enum lttng_ust_ctl_counter_alloc {
597 LTTNG_UST_CTL_COUNTER_ALLOC_PER_CPU = (1 << 0),
598 LTTNG_UST_CTL_COUNTER_ALLOC_GLOBAL = (1 << 1),
ebabbf58
MD
599};
600
249cffb5 601struct lttng_ust_ctl_daemon_counter;
ebabbf58 602
249cffb5 603int lttng_ust_ctl_get_nr_cpu_per_counter(void);
ebabbf58 604
249cffb5 605struct lttng_ust_ctl_counter_dimension {
ebabbf58
MD
606 uint64_t size;
607 uint64_t underflow_index;
608 uint64_t overflow_index;
609 uint8_t has_underflow;
610 uint8_t has_overflow;
611};
612
249cffb5
MJ
613struct lttng_ust_ctl_daemon_counter *
614 lttng_ust_ctl_create_counter(size_t nr_dimensions,
615 const struct lttng_ust_ctl_counter_dimension *dimensions,
ebabbf58
MD
616 int64_t global_sum_step,
617 int global_counter_fd,
618 int nr_counter_cpu_fds,
619 const int *counter_cpu_fds,
249cffb5
MJ
620 enum lttng_ust_ctl_counter_bitness bitness,
621 enum lttng_ust_ctl_counter_arithmetic arithmetic,
81bc4972
MD
622 uint32_t alloc_flags,
623 bool coalesce_hits);
ebabbf58 624
249cffb5 625int lttng_ust_ctl_create_counter_data(struct lttng_ust_ctl_daemon_counter *counter,
fd17d7ce 626 struct lttng_ust_abi_object_data **counter_data);
ebabbf58 627
249cffb5 628int lttng_ust_ctl_create_counter_global_data(struct lttng_ust_ctl_daemon_counter *counter,
fd17d7ce 629 struct lttng_ust_abi_object_data **counter_global_data);
249cffb5 630int lttng_ust_ctl_create_counter_cpu_data(struct lttng_ust_ctl_daemon_counter *counter, int cpu,
fd17d7ce 631 struct lttng_ust_abi_object_data **counter_cpu_data);
ebabbf58
MD
632
633/*
634 * Each counter data and counter cpu data created need to be destroyed
249cffb5 635 * before calling lttng_ust_ctl_destroy_counter().
ebabbf58 636 */
249cffb5 637void lttng_ust_ctl_destroy_counter(struct lttng_ust_ctl_daemon_counter *counter);
ebabbf58 638
249cffb5 639int lttng_ust_ctl_send_counter_data_to_ust(int sock, int parent_handle,
fd17d7ce 640 struct lttng_ust_abi_object_data *counter_data);
249cffb5 641int lttng_ust_ctl_send_counter_global_data_to_ust(int sock,
fd17d7ce
MD
642 struct lttng_ust_abi_object_data *counter_data,
643 struct lttng_ust_abi_object_data *counter_global_data);
249cffb5 644int lttng_ust_ctl_send_counter_cpu_data_to_ust(int sock,
fd17d7ce
MD
645 struct lttng_ust_abi_object_data *counter_data,
646 struct lttng_ust_abi_object_data *counter_cpu_data);
ebabbf58 647
249cffb5 648int lttng_ust_ctl_counter_read(struct lttng_ust_ctl_daemon_counter *counter,
ebabbf58
MD
649 const size_t *dimension_indexes,
650 int cpu, int64_t *value,
651 bool *overflow, bool *underflow);
249cffb5 652int lttng_ust_ctl_counter_aggregate(struct lttng_ust_ctl_daemon_counter *counter,
ebabbf58
MD
653 const size_t *dimension_indexes,
654 int64_t *value,
655 bool *overflow, bool *underflow);
249cffb5 656int lttng_ust_ctl_counter_clear(struct lttng_ust_ctl_daemon_counter *counter,
ebabbf58
MD
657 const size_t *dimension_indexes);
658
63b3205f
MD
659void lttng_ust_ctl_sigbus_handle(void *addr);
660
9c96e34c
JG
661int lttng_ust_ctl_get_version(uint32_t *major, uint32_t *minor, uint32_t *patchlevel);
662
81b2d238
SM
663#ifdef __cplusplus
664}
665#endif
666
f3105c67 667#endif /* _LTTNG_UST_CTL_H */
This page took 0.071878 seconds and 4 git commands to generate.