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