common: compile libsessiond-common as C++
[lttng-tools.git] / src / common / sessiond-comm / sessiond-comm.h
CommitLineData
6e3805e2 1/*
ab5be9fa
MJ
2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2011 Julien Desfossez <julien.desfossez@polymtl.ca>
4 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
fac6795d 5 *
ab5be9fa 6 * SPDX-License-Identifier: GPL-2.0-only
ba999de0 7 *
fac6795d
DG
8 */
9
773168b7 10/*
990570ed
DG
11 * This header is meant for liblttng and libust internal use ONLY. These
12 * declarations should NOT be considered stable API.
773168b7 13 */
fac6795d 14
990570ed
DG
15#ifndef _LTTNG_SESSIOND_COMM_H
16#define _LTTNG_SESSIOND_COMM_H
17
fac6795d 18#include <limits.h>
f3ed775e 19#include <lttng/lttng.h>
da3c9ec1 20#include <lttng/snapshot-internal.h>
00c76cea 21#include <lttng/save-internal.h>
e9404c27
JG
22#include <lttng/channel-internal.h>
23#include <lttng/trigger/trigger-internal.h>
d88744a4 24#include <lttng/rotate-internal.h>
b17231c6 25#include <common/compat/socket.h>
a4b92340 26#include <common/uri.h>
ce2a9e76 27#include <common/defaults.h>
c70636a7 28#include <common/uuid.h>
aa52c986 29#include <common/macros.h>
d2956687 30#include <common/optional.h>
5e16da05 31
6364a07a
DG
32#include <arpa/inet.h>
33#include <netinet/in.h>
34#include <sys/un.h>
35
36#include "inet.h"
37#include "inet6.h"
2038dd6c 38#include <common/unix.h>
0d37f2bc 39
7966af57
SM
40#ifdef __cplusplus
41extern "C" {
42#endif
43
fac6795d 44/* Queue size of listen(2) */
f158a754 45#define LTTNG_SESSIOND_COMM_MAX_LISTEN 64
fac6795d 46
990570ed 47/* Maximum number of FDs that can be sent over a Unix socket */
0b5a4de9
JG
48#if defined(__linux__)
49/* Based on the kernel's SCM_MAX_FD which is 253 since 2.6.38 (255 before) */
50#define LTTCOMM_MAX_SEND_FDS 253
51#else
52#define LTTCOMM_MAX_SEND_FDS 16
53#endif
990570ed 54
6abb15de 55enum lttcomm_sessiond_command {
0d0c377a 56 /* Tracer command */
159b042f 57 LTTNG_ADD_CONTEXT = 0,
b812e5ca 58 /* LTTNG_CALIBRATE used to be here */
159b042f
JG
59 LTTNG_DISABLE_CHANNEL = 2,
60 LTTNG_DISABLE_EVENT = 3,
61 LTTNG_LIST_SYSCALLS = 4,
62 LTTNG_ENABLE_CHANNEL = 5,
63 LTTNG_ENABLE_EVENT = 6,
18a720cd 64 /* 7 */
0d0c377a 65 /* Session daemon command */
b178f53e 66 /* 8 */
159b042f
JG
67 LTTNG_DESTROY_SESSION = 9,
68 LTTNG_LIST_CHANNELS = 10,
69 LTTNG_LIST_DOMAINS = 11,
70 LTTNG_LIST_EVENTS = 12,
71 LTTNG_LIST_SESSIONS = 13,
72 LTTNG_LIST_TRACEPOINTS = 14,
73 LTTNG_REGISTER_CONSUMER = 15,
74 LTTNG_START_TRACE = 16,
75 LTTNG_STOP_TRACE = 17,
76 LTTNG_LIST_TRACEPOINT_FIELDS = 18,
53a80697 77
de5e9086 78 /* Consumer */
159b042f
JG
79 LTTNG_DISABLE_CONSUMER = 19,
80 LTTNG_ENABLE_CONSUMER = 20,
81 LTTNG_SET_CONSUMER_URI = 21,
67676bd8
DG
82 /* 22 */
83 /* 23 */
159b042f
JG
84 LTTNG_DATA_PENDING = 24,
85 LTTNG_SNAPSHOT_ADD_OUTPUT = 25,
86 LTTNG_SNAPSHOT_DEL_OUTPUT = 26,
87 LTTNG_SNAPSHOT_LIST_OUTPUT = 27,
88 LTTNG_SNAPSHOT_RECORD = 28,
b178f53e
JG
89 /* 29 */
90 /* 30 */
159b042f
JG
91 LTTNG_SAVE_SESSION = 31,
92 LTTNG_PROCESS_ATTR_TRACKER_ADD_INCLUDE_VALUE = 32,
93 LTTNG_PROCESS_ATTR_TRACKER_REMOVE_INCLUDE_VALUE = 33,
94 LTTNG_PROCESS_ATTR_TRACKER_GET_POLICY = 34,
95 LTTNG_PROCESS_ATTR_TRACKER_SET_POLICY = 35,
96 LTTNG_PROCESS_ATTR_TRACKER_GET_INCLUSION_SET = 36,
97 LTTNG_SET_SESSION_SHM_PATH = 40,
98 LTTNG_REGENERATE_METADATA = 41,
99 LTTNG_REGENERATE_STATEDUMP = 42,
100 LTTNG_REGISTER_TRIGGER = 43,
101 LTTNG_UNREGISTER_TRIGGER = 44,
102 LTTNG_ROTATE_SESSION = 45,
103 LTTNG_ROTATION_GET_INFO = 46,
104 LTTNG_ROTATION_SET_SCHEDULE = 47,
105 LTTNG_SESSION_LIST_ROTATION_SCHEDULES = 48,
106 LTTNG_CREATE_SESSION_EXT = 49,
107 LTTNG_CLEAR_SESSION = 50,
fbc9f37d 108 LTTNG_LIST_TRIGGERS = 51,
b99a0cb3 109 LTTNG_EXECUTE_ERROR_QUERY = 52,
7c9534d6
JD
110};
111
19f912db
FD
112static inline
113const char *lttcomm_sessiond_command_str(enum lttcomm_sessiond_command cmd)
114{
115 switch (cmd) {
116 case LTTNG_ADD_CONTEXT:
117 return "LTTNG_ADD_CONTEXT";
118 case LTTNG_DISABLE_CHANNEL:
119 return "LTTNG_DISABLE_CHANNEL";
120 case LTTNG_DISABLE_EVENT:
121 return "LTTNG_DISABLE_EVENT";
122 case LTTNG_LIST_SYSCALLS:
123 return "LTTNG_LIST_SYSCALLS";
124 case LTTNG_ENABLE_CHANNEL:
125 return "LTTNG_ENABLE_CHANNEL";
126 case LTTNG_ENABLE_EVENT:
127 return "LTTNG_ENABLE_EVENT";
128 case LTTNG_DESTROY_SESSION:
129 return "LTTNG_DESTROY_SESSION";
130 case LTTNG_LIST_CHANNELS:
131 return "LTTNG_LIST_CHANNELS";
132 case LTTNG_LIST_DOMAINS:
133 return "LTTNG_LIST_DOMAINS";
134 case LTTNG_LIST_EVENTS:
135 return "LTTNG_LIST_EVENTS";
136 case LTTNG_LIST_SESSIONS:
137 return "LTTNG_LIST_SESSIONS";
138 case LTTNG_LIST_TRACEPOINTS:
139 return "LTTNG_LIST_TRACEPOINTS";
140 case LTTNG_REGISTER_CONSUMER:
141 return "LTTNG_REGISTER_CONSUMER";
142 case LTTNG_START_TRACE:
143 return "LTTNG_START_TRACE";
144 case LTTNG_STOP_TRACE:
145 return "LTTNG_STOP_TRACE";
146 case LTTNG_LIST_TRACEPOINT_FIELDS:
147 return "LTTNG_LIST_TRACEPOINT_FIELDS";
148 case LTTNG_DISABLE_CONSUMER:
149 return "LTTNG_DISABLE_CONSUMER";
150 case LTTNG_ENABLE_CONSUMER:
151 return "LTTNG_ENABLE_CONSUMER";
152 case LTTNG_SET_CONSUMER_URI:
153 return "LTTNG_SET_CONSUMER_URI";
154 case LTTNG_DATA_PENDING:
155 return "LTTNG_DATA_PENDING";
156 case LTTNG_SNAPSHOT_ADD_OUTPUT:
157 return "LTTNG_SNAPSHOT_ADD_OUTPUT";
158 case LTTNG_SNAPSHOT_DEL_OUTPUT:
159 return "LTTNG_SNAPSHOT_DEL_OUTPUT";
160 case LTTNG_SNAPSHOT_LIST_OUTPUT:
161 return "LTTNG_SNAPSHOT_LIST_OUTPUT";
162 case LTTNG_SNAPSHOT_RECORD:
163 return "LTTNG_SNAPSHOT_RECORD";
164 case LTTNG_SAVE_SESSION:
165 return "LTTNG_SAVE_SESSION";
166 case LTTNG_PROCESS_ATTR_TRACKER_ADD_INCLUDE_VALUE:
167 return "LTTNG_PROCESS_ATTR_TRACKER_ADD_INCLUDE_VALUE";
168 case LTTNG_PROCESS_ATTR_TRACKER_REMOVE_INCLUDE_VALUE:
169 return "LTTNG_PROCESS_ATTR_TRACKER_REMOVE_INCLUDE_VALUE";
170 case LTTNG_PROCESS_ATTR_TRACKER_GET_POLICY:
171 return "LTTNG_PROCESS_ATTR_TRACKER_GET_POLICY";
172 case LTTNG_PROCESS_ATTR_TRACKER_SET_POLICY:
173 return "LTTNG_PROCESS_ATTR_TRACKER_SET_POLICY";
174 case LTTNG_PROCESS_ATTR_TRACKER_GET_INCLUSION_SET:
175 return "LTTNG_PROCESS_ATTR_TRACKER_GET_INCLUSION_SET";
176 case LTTNG_SET_SESSION_SHM_PATH:
177 return "LTTNG_SET_SESSION_SHM_PATH";
178 case LTTNG_REGENERATE_METADATA:
179 return "LTTNG_REGENERATE_METADATA";
180 case LTTNG_REGENERATE_STATEDUMP:
181 return "LTTNG_REGENERATE_STATEDUMP";
182 case LTTNG_REGISTER_TRIGGER:
183 return "LTTNG_REGISTER_TRIGGER";
184 case LTTNG_UNREGISTER_TRIGGER:
185 return "LTTNG_UNREGISTER_TRIGGER";
186 case LTTNG_ROTATE_SESSION:
187 return "LTTNG_ROTATE_SESSION";
188 case LTTNG_ROTATION_GET_INFO:
189 return "LTTNG_ROTATION_GET_INFO";
190 case LTTNG_ROTATION_SET_SCHEDULE:
191 return "LTTNG_ROTATION_SET_SCHEDULE";
192 case LTTNG_SESSION_LIST_ROTATION_SCHEDULES:
193 return "LTTNG_SESSION_LIST_ROTATION_SCHEDULES";
194 case LTTNG_CREATE_SESSION_EXT:
195 return "LTTNG_CREATE_SESSION_EXT";
196 case LTTNG_CLEAR_SESSION:
197 return "LTTNG_CLEAR_SESSION";
198 case LTTNG_LIST_TRIGGERS:
199 return "LTTNG_LIST_TRIGGERS";
b99a0cb3
JG
200 case LTTNG_EXECUTE_ERROR_QUERY:
201 return "LTTNG_EXECUTE_ERROR_QUERY";
19f912db
FD
202 default:
203 abort();
204 }
205}
206
7c9534d6
JD
207enum lttcomm_relayd_command {
208 RELAYD_ADD_STREAM = 1,
209 RELAYD_CREATE_SESSION = 2,
210 RELAYD_START_DATA = 3,
211 RELAYD_UPDATE_SYNC_INFO = 4,
212 RELAYD_VERSION = 5,
213 RELAYD_SEND_METADATA = 6,
214 RELAYD_CLOSE_STREAM = 7,
215 RELAYD_DATA_PENDING = 8,
216 RELAYD_QUIESCENT_CONTROL = 9,
217 RELAYD_BEGIN_DATA_PENDING = 10,
218 RELAYD_END_DATA_PENDING = 11,
1c20f0e2
JD
219 RELAYD_ADD_INDEX = 12,
220 RELAYD_SEND_INDEX = 13,
221 RELAYD_CLOSE_INDEX = 14,
a4baae1b 222 /* Live-reading commands (2.4+). */
d3e2ba59 223 RELAYD_LIST_SESSIONS = 15,
a4baae1b
JD
224 /* All streams of the channel have been sent to the relayd (2.4+). */
225 RELAYD_STREAMS_SENT = 16,
93ec662e
JD
226 /* Ask the relay to reset the metadata trace file (2.8+) */
227 RELAYD_RESET_METADATA = 17,
c35f9726
JG
228 /* Ask the relay to rotate a set of stream files (2.11+) */
229 RELAYD_ROTATE_STREAMS = 18,
e5add6d0
JG
230 /* Ask the relay to create a trace chunk (2.11+) */
231 RELAYD_CREATE_TRACE_CHUNK = 19,
bbc4768c
JG
232 /* Ask the relay to close a trace chunk (2.11+) */
233 RELAYD_CLOSE_TRACE_CHUNK = 20,
c35f9726
JG
234 /* Ask the relay whether a trace chunk exists (2.11+) */
235 RELAYD_TRACE_CHUNK_EXISTS = 21,
8614e600
MD
236 /* Get the current configuration of a relayd peer (2.12+) */
237 RELAYD_GET_CONFIGURATION = 22,
3fe73a46
MD
238
239 /* Feature branch specific commands start at 10000. */
fac6795d
DG
240};
241
242/*
243 * lttcomm error code.
244 */
245enum lttcomm_return_code {
0c759fc9 246 LTTCOMM_CONSUMERD_SUCCESS = 0, /* Everything went fine. */
d2956687
JG
247 /*
248 * Some code paths use -1 to express an error, others
249 * negate this consumer return code. Starting codes at
250 * 100 ensures there is no mix-up between this error value
251 * and legitimate status codes.
252 */
253 LTTCOMM_CONSUMERD_COMMAND_SOCK_READY = 100, /* Command socket ready */
f73fabfd
DG
254 LTTCOMM_CONSUMERD_SUCCESS_RECV_FD, /* Success on receiving fds */
255 LTTCOMM_CONSUMERD_ERROR_RECV_FD, /* Error on receiving fds */
256 LTTCOMM_CONSUMERD_ERROR_RECV_CMD, /* Error on receiving command */
257 LTTCOMM_CONSUMERD_POLL_ERROR, /* Error in polling thread */
258 LTTCOMM_CONSUMERD_POLL_NVAL, /* Poll on closed fd */
259 LTTCOMM_CONSUMERD_POLL_HUP, /* All fds have hungup */
260 LTTCOMM_CONSUMERD_EXIT_SUCCESS, /* Consumerd exiting normally */
261 LTTCOMM_CONSUMERD_EXIT_FAILURE, /* Consumerd exiting on error */
262 LTTCOMM_CONSUMERD_OUTFD_ERROR, /* Error opening the tracefile */
263 LTTCOMM_CONSUMERD_SPLICE_EBADF, /* EBADF from splice(2) */
264 LTTCOMM_CONSUMERD_SPLICE_EINVAL, /* EINVAL from splice(2) */
265 LTTCOMM_CONSUMERD_SPLICE_ENOMEM, /* ENOMEM from splice(2) */
266 LTTCOMM_CONSUMERD_SPLICE_ESPIPE, /* ESPIPE from splice(2) */
ffe60014 267 LTTCOMM_CONSUMERD_ENOMEM, /* Consumer is out of memory */
d88aee68
DG
268 LTTCOMM_CONSUMERD_ERROR_METADATA, /* Error with metadata. */
269 LTTCOMM_CONSUMERD_FATAL, /* Fatal error. */
618a6a28 270 LTTCOMM_CONSUMERD_RELAYD_FAIL, /* Error on remote relayd */
0c759fc9 271 LTTCOMM_CONSUMERD_CHANNEL_FAIL, /* Channel creation failed. */
e462382a 272 LTTCOMM_CONSUMERD_CHAN_NOT_FOUND, /* Channel not found. */
e9404c27 273 LTTCOMM_CONSUMERD_ALREADY_SET, /* Resource already set. */
92b7a7f8 274 LTTCOMM_CONSUMERD_ROTATION_FAIL, /* Rotation has failed. */
3eb928aa 275 LTTCOMM_CONSUMERD_SNAPSHOT_FAILED, /* snapshot has failed. */
d2956687 276 LTTCOMM_CONSUMERD_CREATE_TRACE_CHUNK_FAILED,/* Trace chunk creation failed. */
64efa44e 277 LTTCOMM_CONSUMERD_CLOSE_TRACE_CHUNK_FAILED, /* Trace chunk close failed. */
d2956687
JG
278 LTTCOMM_CONSUMERD_INVALID_PARAMETERS, /* Invalid parameters. */
279 LTTCOMM_CONSUMERD_TRACE_CHUNK_EXISTS_LOCAL, /* Trace chunk exists on consumer daemon. */
280 LTTCOMM_CONSUMERD_TRACE_CHUNK_EXISTS_REMOTE,/* Trace chunk exists on relay daemon. */
281 LTTCOMM_CONSUMERD_UNKNOWN_TRACE_CHUNK, /* Unknown trace chunk. */
b01b201a 282 LTTCOMM_CONSUMERD_RELAYD_CLEAR_DISALLOWED, /* Relayd does not accept clear command. */
04ed9e10 283 LTTCOMM_CONSUMERD_UNKNOWN_ERROR, /* Unknown error. */
80e327fa 284
20fe2104
DG
285 /* MUST be last element */
286 LTTCOMM_NR, /* Last element */
fac6795d
DG
287};
288
de5e9086
DG
289/* lttng socket protocol. */
290enum lttcomm_sock_proto {
291 LTTCOMM_SOCK_UDP,
292 LTTCOMM_SOCK_TCP,
293};
294
295/*
296 * Index in the net_families array below. Please keep in sync!
297 */
298enum lttcomm_sock_domain {
01d0a631
CB
299 LTTCOMM_INET = 0,
300 LTTCOMM_INET6 = 1,
de5e9086
DG
301};
302
331744e3
JD
303enum lttcomm_metadata_command {
304 LTTCOMM_METADATA_REQUEST = 1,
305};
306
307/*
308 * Commands sent from the consumerd to the sessiond to request if new metadata
309 * is available. This message is used to find the per UID _or_ per PID registry
310 * for the channel key. For per UID lookup, the triplet
311 * bits_per_long/uid/session_id is used. On lookup failure, we search for the
312 * per PID registry indexed by session id ignoring the other values.
313 */
314struct lttcomm_metadata_request_msg {
1950109e
JD
315 uint64_t session_id; /* Tracing session id */
316 uint64_t session_id_per_pid; /* Tracing session id for per-pid */
331744e3
JD
317 uint32_t bits_per_long; /* Consumer ABI */
318 uint32_t uid;
319 uint64_t key; /* Metadata channel key. */
320} LTTNG_PACKED;
321
de5e9086
DG
322struct lttcomm_sockaddr {
323 enum lttcomm_sock_domain type;
324 union {
325 struct sockaddr_in sin;
326 struct sockaddr_in6 sin6;
327 } addr;
fc5e05b7 328} LTTNG_PACKED;
de5e9086
DG
329
330struct lttcomm_sock {
d88aee68 331 int32_t fd;
de5e9086
DG
332 enum lttcomm_sock_proto proto;
333 struct lttcomm_sockaddr sockaddr;
334 const struct lttcomm_proto_ops *ops;
fc5e05b7 335} LTTNG_PACKED;
de5e9086 336
6151a90f
JD
337/*
338 * Relayd sock. Adds the protocol version to use for the communications with
339 * the relayd.
340 */
341struct lttcomm_relayd_sock {
342 struct lttcomm_sock sock;
343 uint32_t major;
344 uint32_t minor;
345} LTTNG_PACKED;
346
de5e9086
DG
347struct lttcomm_net_family {
348 int family;
349 int (*create) (struct lttcomm_sock *sock, int type, int proto);
350};
351
352struct lttcomm_proto_ops {
353 int (*bind) (struct lttcomm_sock *sock);
354 int (*close) (struct lttcomm_sock *sock);
355 int (*connect) (struct lttcomm_sock *sock);
356 struct lttcomm_sock *(*accept) (struct lttcomm_sock *sock);
357 int (*listen) (struct lttcomm_sock *sock, int backlog);
358 ssize_t (*recvmsg) (struct lttcomm_sock *sock, void *buf, size_t len,
359 int flags);
c2d69327
JG
360 ssize_t (*sendmsg) (struct lttcomm_sock *sock, const void *buf,
361 size_t len, int flags);
de5e9086
DG
362};
363
159b042f
JG
364struct process_attr_integral_value_comm {
365 union {
366 int64_t _signed;
367 uint64_t _unsigned;
368 } u;
369} LTTNG_PACKED;
370
fac6795d 371/*
9bda164d 372 * Data structure received from lttng client to session daemon.
fac6795d
DG
373 */
374struct lttcomm_session_msg {
d0b96690 375 uint32_t cmd_type; /* enum lttcomm_sessiond_command */
42abccdb 376 struct lttng_session session;
9f19cc17 377 struct lttng_domain domain;
fac6795d 378 union {
f3ed775e 379 /* Event data */
fac6795d 380 struct {
db8870ed 381 char channel_name[LTTNG_SYMBOL_NAME_LEN];
7bd95aee 382 struct lttng_event event;
6b453b5e
JG
383 /* Length of following filter expression. */
384 uint32_t expression_len;
025faf73
DG
385 /* Length of following bytecode for filter. */
386 uint32_t bytecode_len;
15e37663 387 /* Exclusion count (fixed-size strings). */
a5516688 388 uint32_t exclusion_count;
15e37663
JG
389 /* Userspace probe location size. */
390 uint32_t userspace_probe_location_len;
a5516688
JI
391 /*
392 * After this structure, the following variable-length
393 * items are transmitted:
394 * - char exclusion_names[LTTNG_SYMBOL_NAME_LEN][exclusion_count]
15e37663 395 * - char filter_expression[expression_len]
a5516688
JI
396 * - unsigned char filter_bytecode[bytecode_len]
397 */
fc5e05b7 398 } LTTNG_PACKED enable;
6e911cad
MD
399 struct {
400 char channel_name[LTTNG_SYMBOL_NAME_LEN];
7bd95aee 401 struct lttng_event event;
6e911cad
MD
402 /* Length of following filter expression. */
403 uint32_t expression_len;
404 /* Length of following bytecode for filter. */
405 uint32_t bytecode_len;
406 /*
407 * After this structure, the following variable-length
408 * items are transmitted:
409 * - unsigned char filter_expression[expression_len]
410 * - unsigned char filter_bytecode[bytecode_len]
411 */
412 } LTTNG_PACKED disable;
f3ed775e
DG
413 /* Create channel */
414 struct {
7bd95aee 415 struct lttng_channel chan;
e9404c27 416 struct lttng_channel_extended extended;
fc5e05b7 417 } LTTNG_PACKED channel;
d65106b1
DG
418 /* Context */
419 struct {
db8870ed 420 char channel_name[LTTNG_SYMBOL_NAME_LEN];
7bd95aee 421 struct lttng_event_context ctx;
2001793c
JG
422 uint32_t provider_name_len;
423 uint32_t context_name_len;
fc5e05b7 424 } LTTNG_PACKED context;
d9800920
DG
425 /* Use by register_consumer */
426 struct {
427 char path[PATH_MAX];
fc5e05b7 428 } LTTNG_PACKED reg;
9f19cc17
DG
429 /* List */
430 struct {
db8870ed 431 char channel_name[LTTNG_SYMBOL_NAME_LEN];
fc5e05b7 432 } LTTNG_PACKED list;
d0254c7c 433 struct lttng_calibrate calibrate;
a4b92340 434 /* Used by the set_consumer_url and used by create_session also call */
de5e9086 435 struct {
a4b92340
DG
436 /* Number of lttng_uri following */
437 uint32_t size;
fc5e05b7 438 } LTTNG_PACKED uri;
da3c9ec1 439 struct {
7bd95aee 440 struct lttng_snapshot_output output;
da3c9ec1
DG
441 } LTTNG_PACKED snapshot_output;
442 struct {
443 uint32_t wait;
7bd95aee 444 struct lttng_snapshot_output output;
da3c9ec1 445 } LTTNG_PACKED snapshot_record;
ecc48a90
JD
446 struct {
447 uint32_t nb_uri;
448 unsigned int timer_interval; /* usec */
449 } LTTNG_PACKED session_live;
00c76cea 450 struct {
7bd95aee 451 struct lttng_save_session_attr attr;
00c76cea 452 } LTTNG_PACKED save_session;
d7ba1388
MD
453 struct {
454 char shm_path[PATH_MAX];
455 } LTTNG_PACKED set_shm_path;
ccf10263 456 struct {
159b042f
JG
457 /* enum lttng_process_attr */
458 int32_t process_attr;
459 /* enum lttng_process_attr_value_type */
460 int32_t value_type;
461
462 struct process_attr_integral_value_comm integral_value;
55c9e7ca 463 /*
159b042f
JG
464 * For user/group names, a variable length,
465 * zero-terminated, string of length 'name_len'
466 * (including the terminator) follows.
467 *
468 * integral_value should not be used in those cases.
55c9e7ca 469 */
159b042f
JG
470 uint32_t name_len;
471 } LTTNG_PACKED process_attr_tracker_add_remove_include_value;
55c9e7ca 472 struct {
159b042f
JG
473 /* enum lttng_process_attr */
474 int32_t process_attr;
475 } LTTNG_PACKED process_attr_tracker_get_inclusion_set;
476 struct {
477 /* enum lttng_process_attr */
478 int32_t process_attr;
479 } LTTNG_PACKED process_attr_tracker_get_tracking_policy;
480 struct {
481 /* enum lttng_process_attr */
482 int32_t process_attr;
483 /* enum lttng_tracking_policy */
484 int32_t tracking_policy;
485 } LTTNG_PACKED process_attr_tracker_set_tracking_policy;
e9404c27
JG
486 struct {
487 uint32_t length;
0efb2ad7 488 uint8_t is_trigger_anonymous;
e9404c27 489 } LTTNG_PACKED trigger;
b99a0cb3
JG
490 struct {
491 uint32_t length;
492 } LTTNG_PACKED error_query;
d88744a4 493 struct {
d68c9a04
JD
494 uint64_t rotation_id;
495 } LTTNG_PACKED get_rotation_info;
259c2674 496 struct {
66ea93b1
JG
497 /* enum lttng_rotation_schedule_type */
498 uint8_t type;
499 /*
500 * If set == 1, set schedule to value, if set == 0,
501 * clear this schedule type.
502 */
503 uint8_t set;
504 uint64_t value;
505 } LTTNG_PACKED rotation_set_schedule;
b178f53e
JG
506 struct {
507 /*
508 * Includes the null-terminator.
509 * Must be an absolute path.
510 *
511 * Size bounded by LTTNG_PATH_MAX.
512 */
513 uint16_t home_dir_size;
514 uint64_t session_descriptor_size;
515 /* An lttng_session_descriptor follows. */
516 } LTTNG_PACKED create_session;
fac6795d 517 } u;
99608320
JR
518 /* Count of fds sent. */
519 uint32_t fd_count;
fc5e05b7 520} LTTNG_PACKED;
fac6795d 521
d93c4f1f 522#define LTTNG_FILTER_MAX_LEN 65536
b178f53e 523#define LTTNG_SESSION_DESCRIPTOR_MAX_LEN 65536
53a80697
MD
524
525/*
526 * Filter bytecode data. The reloc table is located at the end of the
527 * bytecode. It is made of tuples: (uint16_t, var. len. string). It
528 * starts at reloc_table_offset.
529 */
b6bbed5f 530#define LTTNG_FILTER_PADDING 32
2b00d462 531struct lttng_bytecode {
d93c4f1f
CB
532 uint32_t len; /* len of data */
533 uint32_t reloc_table_offset;
f3f0db50 534 uint64_t seqnum;
b6bbed5f 535 char padding[LTTNG_FILTER_PADDING];
53a80697 536 char data[0];
fc5e05b7 537} LTTNG_PACKED;
53a80697 538
579640f9
JI
539/*
540 * Event exclusion data. At the end of the structure, there will actually
541 * by zero or more names, where the actual number of names is given by
542 * the 'count' item of the structure.
543 */
544#define LTTNG_EVENT_EXCLUSION_PADDING 32
545struct lttng_event_exclusion {
546 uint32_t count;
547 char padding[LTTNG_EVENT_EXCLUSION_PADDING];
caafa356 548 char names[0][LTTNG_SYMBOL_NAME_LEN];
579640f9
JI
549} LTTNG_PACKED;
550
d7af3565
PP
551#define LTTNG_EVENT_EXCLUSION_NAME_AT(_exclusion, _i) \
552 (&(_exclusion)->names[_i][0])
553
b4e3ceb9
PP
554/*
555 * Event command header.
556 */
557struct lttcomm_event_command_header {
558 /* Number of events */
559 uint32_t nb_events;
560} LTTNG_PACKED;
561
562/*
563 * Event extended info header. This is the structure preceding each
564 * extended info data.
565 */
566struct lttcomm_event_extended_header {
567 /*
568 * Size of filter string immediately following this header.
569 * This size includes the terminal null character.
570 */
571 uint32_t filter_len;
795d57ce
PP
572
573 /*
574 * Number of exclusion names, immediately following the filter
575 * string. Each exclusion name has a fixed length of
576 * LTTNG_SYMBOL_NAME_LEN bytes, including the terminal null
577 * character.
578 */
579 uint32_t nb_exclusions;
56f0bc67
JG
580
581 /*
582 * Size of the event's userspace probe location (if applicable).
583 */
584 uint32_t userspace_probe_location_len;
b4e3ceb9
PP
585} LTTNG_PACKED;
586
3e3665b8
JG
587/*
588 * Command header of the reply to an LTTNG_DESTROY_SESSION command.
589 */
590struct lttcomm_session_destroy_command_header {
591 /* enum lttng_session */
592 int32_t rotation_state;
593};
594
55c9e7ca
JR
595/*
596 * tracker command header.
597 */
598struct lttcomm_tracker_command_header {
599 uint32_t nb_tracker_id;
600} LTTNG_PACKED;
601
fac6795d 602/*
5e16da05 603 * Data structure for the response from sessiond to the lttng client.
fac6795d 604 */
5461b305 605struct lttcomm_lttng_msg {
d0b96690
DG
606 uint32_t cmd_type; /* enum lttcomm_sessiond_command */
607 uint32_t ret_code; /* enum lttcomm_return_code */
608 uint32_t pid; /* pid_t */
795a978d 609 uint32_t cmd_header_size;
773168b7 610 uint32_t data_size;
e368fb43 611 uint32_t fd_count;
fc5e05b7 612} LTTNG_PACKED;
fac6795d 613
da3c9ec1
DG
614struct lttcomm_lttng_output_id {
615 uint32_t id;
616} LTTNG_PACKED;
617
6e3805e2 618/*
3bd1e081
MD
619 * lttcomm_consumer_msg is the message sent from sessiond to consumerd
620 * to either add a channel, add a stream, update a stream, or stop
621 * operation.
6e3805e2 622 */
3bd1e081 623struct lttcomm_consumer_msg {
92816cc3 624 uint32_t cmd_type; /* enum lttng_consumer_command */
3bd1e081
MD
625 union {
626 struct {
d88aee68 627 uint64_t channel_key;
ffe60014 628 uint64_t session_id;
d2956687 629 /* ID of the session's current trace chunk. */
0a30bf9b 630 LTTNG_OPTIONAL_COMM(uint64_t) LTTNG_PACKED chunk_id;
ffe60014 631 char pathname[PATH_MAX];
d88aee68 632 uint64_t relayd_id;
c30aaa51 633 /* nb_init_streams is the number of streams open initially. */
d88aee68 634 uint32_t nb_init_streams;
de5e9086 635 char name[LTTNG_SYMBOL_NAME_LEN];
ffe60014
DG
636 /* Use splice or mmap to consume this fd */
637 enum lttng_event_output output;
638 int type; /* Per cpu or metadata. */
1624d5b7
JD
639 uint64_t tracefile_size; /* bytes */
640 uint32_t tracefile_count; /* number of tracefiles */
2bba9e53
DG
641 /* If the channel's streams have to be monitored or not. */
642 uint32_t monitor;
ecc48a90
JD
643 /* timer to check the streams usage in live mode (usec). */
644 unsigned int live_timer_interval;
a2814ea7
JG
645 /* is part of a live session */
646 uint8_t is_live;
e9404c27
JG
647 /* timer to sample a channel's positions (usec). */
648 unsigned int monitor_timer_interval;
ffe60014 649 } LTTNG_PACKED channel; /* Only used by Kernel. */
3bd1e081 650 struct {
d88aee68
DG
651 uint64_t stream_key;
652 uint64_t channel_key;
653 int32_t cpu; /* On which CPU this stream is assigned. */
6dc3064a
DG
654 /* Tells the consumer if the stream should be or not monitored. */
655 uint32_t no_monitor;
ffe60014 656 } LTTNG_PACKED stream; /* Only used by Kernel. */
de5e9086 657 struct {
d88aee68 658 uint64_t net_index;
de5e9086
DG
659 enum lttng_stream_type type;
660 /* Open socket to the relayd */
6151a90f 661 struct lttcomm_relayd_sock sock;
46e6455f
DG
662 /* Tracing session id associated to the relayd. */
663 uint64_t session_id;
d3e2ba59
JD
664 /* Relayd session id, only used with control socket. */
665 uint64_t relayd_session_id;
fc5e05b7 666 } LTTNG_PACKED relayd_sock;
173af62f
DG
667 struct {
668 uint64_t net_seq_idx;
fc5e05b7 669 } LTTNG_PACKED destroy_relayd;
53632229
DG
670 struct {
671 uint64_t session_id;
fc5e05b7 672 } LTTNG_PACKED data_pending;
ffe60014 673 struct {
d0b96690
DG
674 uint64_t subbuf_size; /* bytes */
675 uint64_t num_subbuf; /* power of 2 */
d88aee68
DG
676 int32_t overwrite; /* 1: overwrite, 0: discard */
677 uint32_t switch_timer_interval; /* usec */
678 uint32_t read_timer_interval; /* usec */
e9404c27 679 unsigned int live_timer_interval; /* usec */
a2814ea7 680 uint8_t is_live; /* is part of a live session */
e9404c27 681 uint32_t monitor_timer_interval; /* usec */
d88aee68
DG
682 int32_t output; /* splice, mmap */
683 int32_t type; /* metadata or per_cpu */
d0b96690
DG
684 uint64_t session_id; /* Tracing session id */
685 char pathname[PATH_MAX]; /* Channel file path. */
ffe60014 686 char name[LTTNG_SYMBOL_NAME_LEN]; /* Channel name. */
d2956687
JG
687 /* Credentials used to open the UST buffer shared mappings. */
688 struct {
689 uint32_t uid;
690 uint32_t gid;
691 } LTTNG_PACKED buffer_credentials;
d88aee68
DG
692 uint64_t relayd_id; /* Relayd id if apply. */
693 uint64_t key; /* Unique channel key. */
d2956687 694 /* ID of the session's current trace chunk. */
0a30bf9b 695 LTTNG_OPTIONAL_COMM(uint64_t) LTTNG_PACKED chunk_id;
c70636a7 696 unsigned char uuid[LTTNG_UUID_LEN]; /* uuid for ust tracer. */
7972aab2 697 uint32_t chan_id; /* Channel ID on the tracer side. */
1624d5b7
JD
698 uint64_t tracefile_size; /* bytes */
699 uint32_t tracefile_count; /* number of tracefiles */
1950109e 700 uint64_t session_id_per_pid; /* Per-pid session ID. */
2bba9e53
DG
701 /* Tells the consumer if the stream should be or not monitored. */
702 uint32_t monitor;
567eb353
DG
703 /*
704 * For UST per UID buffers, this is the application UID of the
705 * channel. This can be different from the user UID requesting the
706 * channel creation and used for the rights on the stream file
707 * because the application can be in the tracing for instance.
708 */
709 uint32_t ust_app_uid;
491d1539 710 int64_t blocking_timeout;
3d071855 711 char root_shm_path[PATH_MAX];
d7ba1388 712 char shm_path[PATH_MAX];
ffe60014
DG
713 } LTTNG_PACKED ask_channel;
714 struct {
d88aee68 715 uint64_t key;
ffe60014
DG
716 } LTTNG_PACKED get_channel;
717 struct {
d88aee68 718 uint64_t key;
ffe60014 719 } LTTNG_PACKED destroy_channel;
d88aee68
DG
720 struct {
721 uint64_t key; /* Metadata channel key. */
722 uint64_t target_offset; /* Offset in the consumer */
723 uint64_t len; /* Length of metadata to be received. */
93ec662e 724 uint64_t version; /* Version of the metadata. */
d88aee68
DG
725 } LTTNG_PACKED push_metadata;
726 struct {
727 uint64_t key; /* Metadata channel key. */
728 } LTTNG_PACKED close_metadata;
729 struct {
730 uint64_t key; /* Metadata channel key. */
731 } LTTNG_PACKED setup_metadata;
7972aab2
DG
732 struct {
733 uint64_t key; /* Channel key. */
734 } LTTNG_PACKED flush_channel;
0dd01979
MD
735 struct {
736 uint64_t key; /* Channel key. */
737 } LTTNG_PACKED clear_quiescent_channel;
6dc3064a
DG
738 struct {
739 char pathname[PATH_MAX];
740 /* Indicate if the snapshot goes on the relayd or locally. */
741 uint32_t use_relayd;
742 uint32_t metadata; /* This a metadata snapshot. */
743 uint64_t relayd_id; /* Relayd id if apply. */
744 uint64_t key;
d07ceecd 745 uint64_t nb_packets_per_stream;
6dc3064a 746 } LTTNG_PACKED snapshot_channel;
a4baae1b
JD
747 struct {
748 uint64_t channel_key;
749 uint64_t net_seq_idx;
750 } LTTNG_PACKED sent_streams;
fb83fe64
JD
751 struct {
752 uint64_t session_id;
753 uint64_t channel_key;
754 } LTTNG_PACKED discarded_events;
755 struct {
756 uint64_t session_id;
757 uint64_t channel_key;
758 } LTTNG_PACKED lost_packets;
93ec662e
JD
759 struct {
760 uint64_t session_id;
eded6438 761 } LTTNG_PACKED regenerate_metadata;
b99a8d42 762 struct {
b99a8d42
JD
763 uint32_t metadata; /* This is a metadata channel. */
764 uint64_t relayd_id; /* Relayd id if apply. */
765 uint64_t key;
b99a8d42 766 } LTTNG_PACKED rotate_channel;
92816cc3
JG
767 struct {
768 uint64_t session_id;
769 uint64_t chunk_id;
770 } LTTNG_PACKED check_rotation_pending_local;
d88744a4
JD
771 struct {
772 uint64_t relayd_id;
773 uint64_t session_id;
774 uint64_t chunk_id;
92816cc3 775 } LTTNG_PACKED check_rotation_pending_relay;
a1ae2ea5 776 struct {
d2956687
JG
777 /*
778 * Relayd id, if applicable (remote).
779 *
780 * A directory file descriptor referring to the chunk's
781 * output folder is transmitted if the chunk is local
782 * (relayd_id unset).
783 *
784 * `override_name` is left NULL (all-zeroes) if the
913a542b 785 * chunk's name is not overridden.
d2956687 786 */
0a30bf9b 787 LTTNG_OPTIONAL_COMM(uint64_t) LTTNG_PACKED relayd_id;
d2956687
JG
788 char override_name[LTTNG_NAME_MAX];
789 uint64_t session_id;
790 uint64_t chunk_id;
791 uint64_t creation_timestamp;
e5add6d0 792 LTTNG_OPTIONAL_COMM(struct {
d2956687
JG
793 uint32_t uid;
794 uint32_t gid;
e5add6d0 795 } LTTNG_PACKED ) LTTNG_PACKED credentials;
d2956687
JG
796 } LTTNG_PACKED create_trace_chunk;
797 struct {
0a30bf9b 798 LTTNG_OPTIONAL_COMM(uint64_t) LTTNG_PACKED relayd_id;
d2956687
JG
799 uint64_t session_id;
800 uint64_t chunk_id;
801 uint64_t close_timestamp;
bbc4768c
JG
802 /* enum lttng_trace_chunk_command_type */
803 LTTNG_OPTIONAL_COMM(uint32_t) LTTNG_PACKED close_command;
d2956687
JG
804 } LTTNG_PACKED close_trace_chunk;
805 struct {
0a30bf9b 806 LTTNG_OPTIONAL_COMM(uint64_t) LTTNG_PACKED relayd_id;
a1ae2ea5 807 uint64_t session_id;
d2956687
JG
808 uint64_t chunk_id;
809 } LTTNG_PACKED trace_chunk_exists;
810 struct {
811 lttng_uuid sessiond_uuid;
812 } LTTNG_PACKED init;
b01b201a
MD
813 struct {
814 uint64_t key;
815 } LTTNG_PACKED clear_channel;
04ed9e10
JG
816 struct {
817 uint64_t key;
818 } LTTNG_PACKED open_channel_packets;
3bd1e081 819 } u;
fc5e05b7 820} LTTNG_PACKED;
6e3805e2 821
e9404c27
JG
822/*
823 * Channel monitoring message returned to the session daemon on every
824 * monitor timer expiration.
825 */
826struct lttcomm_consumer_channel_monitor_msg {
827 /* Key of the sampled channel. */
828 uint64_t key;
829 /*
830 * Lowest and highest usage (bytes) at the moment the sample was taken.
831 */
832 uint64_t lowest, highest;
e8360425
JD
833 /*
834 * Sum of all the consumed positions for a channel.
835 */
836 uint64_t total_consumed;
e9404c27
JG
837} LTTNG_PACKED;
838
f50f23d9
DG
839/*
840 * Status message returned to the sessiond after a received command.
841 */
842struct lttcomm_consumer_status_msg {
0c759fc9 843 enum lttcomm_return_code ret_code;
fc5e05b7 844} LTTNG_PACKED;
f50f23d9 845
ffe60014 846struct lttcomm_consumer_status_channel {
0c759fc9 847 enum lttcomm_return_code ret_code;
d88aee68 848 uint64_t key;
ffe60014
DG
849 unsigned int stream_count;
850} LTTNG_PACKED;
851
ecd1a12f
MD
852struct lttcomm_consumer_close_trace_chunk_reply {
853 enum lttcomm_return_code ret_code;
854 uint32_t path_length;
855 char path[];
856};
857
51791532
JG
858#ifdef HAVE_LIBLTTNG_UST_CTL
859
9df8df5e 860#include <lttng/ust-abi.h>
6e3805e2 861
3817e7df
DG
862/*
863 * Data structure for the commands sent from sessiond to UST.
864 */
865struct lttcomm_ust_msg {
3817e7df
DG
866 uint32_t handle;
867 uint32_t cmd;
868 union {
fc4b93fa
MD
869 struct lttng_ust_abi_channel channel;
870 struct lttng_ust_abi_stream stream;
871 struct lttng_ust_abi_event event;
872 struct lttng_ust_abi_context context;
873 struct lttng_ust_abi_tracer_version version;
3817e7df 874 } u;
fc5e05b7 875} LTTNG_PACKED;
3817e7df
DG
876
877/*
878 * Data structure for the response from UST to the session daemon.
879 * cmd_type is sent back in the reply for validation.
880 */
881struct lttcomm_ust_reply {
882 uint32_t handle;
883 uint32_t cmd;
884 uint32_t ret_code; /* enum lttcomm_return_code */
885 uint32_t ret_val; /* return value */
886 union {
2b0bf864
DG
887 struct {
888 uint64_t memory_map_size;
fc5e05b7 889 } LTTNG_PACKED channel;
2b0bf864
DG
890 struct {
891 uint64_t memory_map_size;
fc5e05b7 892 } LTTNG_PACKED stream;
fc4b93fa 893 struct lttng_ust_abi_tracer_version version;
3817e7df 894 } u;
fc5e05b7 895} LTTNG_PACKED;
3817e7df 896
74d0b642 897#endif /* HAVE_LIBLTTNG_UST_CTL */
3bd1e081 898
ca806b0b 899const char *lttcomm_get_readable_code(enum lttcomm_return_code code);
fac6795d 900
ca806b0b 901int lttcomm_init_inet_sockaddr(struct lttcomm_sockaddr *sockaddr,
6364a07a 902 const char *ip, unsigned int port);
ca806b0b 903int lttcomm_init_inet6_sockaddr(struct lttcomm_sockaddr *sockaddr,
6364a07a
DG
904 const char *ip, unsigned int port);
905
ca806b0b
SM
906struct lttcomm_sock *lttcomm_alloc_sock(enum lttcomm_sock_proto proto);
907int lttcomm_create_sock(struct lttcomm_sock *sock);
908struct lttcomm_sock *lttcomm_alloc_sock_from_uri(struct lttng_uri *uri);
909void lttcomm_destroy_sock(struct lttcomm_sock *sock);
910struct lttcomm_sock *lttcomm_alloc_copy_sock(struct lttcomm_sock *src);
911void lttcomm_copy_sock(struct lttcomm_sock *dst,
de5e9086 912 struct lttcomm_sock *src);
6364a07a 913
6151a90f 914/* Relayd socket object. */
ca806b0b 915struct lttcomm_relayd_sock *lttcomm_alloc_relayd_sock(
6151a90f
JD
916 struct lttng_uri *uri, uint32_t major, uint32_t minor);
917
ca806b0b
SM
918int lttcomm_setsockopt_rcv_timeout(int sock, unsigned int msec);
919int lttcomm_setsockopt_snd_timeout(int sock, unsigned int msec);
783a3b9a 920
ca806b0b 921int lttcomm_sock_get_port(const struct lttcomm_sock *sock,
2288467f
JG
922 uint16_t *port);
923/*
924 * Set a port to an lttcomm_sock. This will have no effect is the socket is
925 * already bound.
926 */
ca806b0b 927int lttcomm_sock_set_port(struct lttcomm_sock *sock, uint16_t port);
2288467f 928
ca806b0b 929void lttcomm_init(void);
554831e7 930/* Get network timeout, in milliseconds */
ca806b0b 931unsigned long lttcomm_get_network_timeout(void);
554831e7 932
7966af57
SM
933#ifdef __cplusplus
934}
935#endif
936
773168b7 937#endif /* _LTTNG_SESSIOND_COMM_H */
This page took 0.115008 seconds and 4 git commands to generate.