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