Fix: Unexpected payload size in cmd_recv_stream_2_11
[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];
7bd95aee 431 struct lttng_event event;
6b453b5e
JG
432 /* Length of following filter expression. */
433 uint32_t expression_len;
025faf73
DG
434 /* Length of following bytecode for filter. */
435 uint32_t bytecode_len;
15e37663 436 /* Exclusion count (fixed-size strings). */
a5516688 437 uint32_t exclusion_count;
15e37663
JG
438 /* Userspace probe location size. */
439 uint32_t userspace_probe_location_len;
a5516688
JI
440 /*
441 * After this structure, the following variable-length
442 * items are transmitted:
443 * - char exclusion_names[LTTNG_SYMBOL_NAME_LEN][exclusion_count]
15e37663 444 * - char filter_expression[expression_len]
a5516688
JI
445 * - unsigned char filter_bytecode[bytecode_len]
446 */
fc5e05b7 447 } LTTNG_PACKED enable;
6e911cad
MD
448 struct {
449 char channel_name[LTTNG_SYMBOL_NAME_LEN];
7bd95aee 450 struct lttng_event event;
6e911cad
MD
451 /* Length of following filter expression. */
452 uint32_t expression_len;
453 /* Length of following bytecode for filter. */
454 uint32_t bytecode_len;
455 /*
456 * After this structure, the following variable-length
457 * items are transmitted:
458 * - unsigned char filter_expression[expression_len]
459 * - unsigned char filter_bytecode[bytecode_len]
460 */
461 } LTTNG_PACKED disable;
f3ed775e
DG
462 /* Create channel */
463 struct {
7bd95aee 464 struct lttng_channel chan;
e9404c27 465 struct lttng_channel_extended extended;
fc5e05b7 466 } LTTNG_PACKED channel;
d65106b1
DG
467 /* Context */
468 struct {
db8870ed 469 char channel_name[LTTNG_SYMBOL_NAME_LEN];
7bd95aee 470 struct lttng_event_context ctx;
2001793c
JG
471 uint32_t provider_name_len;
472 uint32_t context_name_len;
fc5e05b7 473 } LTTNG_PACKED context;
d9800920
DG
474 /* Use by register_consumer */
475 struct {
476 char path[PATH_MAX];
fc5e05b7 477 } LTTNG_PACKED reg;
9f19cc17
DG
478 /* List */
479 struct {
db8870ed 480 char channel_name[LTTNG_SYMBOL_NAME_LEN];
fc5e05b7 481 } LTTNG_PACKED list;
d0254c7c 482 struct lttng_calibrate calibrate;
a4b92340 483 /* Used by the set_consumer_url and used by create_session also call */
de5e9086 484 struct {
a4b92340
DG
485 /* Number of lttng_uri following */
486 uint32_t size;
fc5e05b7 487 } LTTNG_PACKED uri;
da3c9ec1 488 struct {
7bd95aee 489 struct lttng_snapshot_output output;
da3c9ec1
DG
490 } LTTNG_PACKED snapshot_output;
491 struct {
492 uint32_t wait;
7bd95aee 493 struct lttng_snapshot_output output;
da3c9ec1 494 } LTTNG_PACKED snapshot_record;
ecc48a90
JD
495 struct {
496 uint32_t nb_uri;
497 unsigned int timer_interval; /* usec */
498 } LTTNG_PACKED session_live;
00c76cea 499 struct {
7bd95aee 500 struct lttng_save_session_attr attr;
00c76cea 501 } LTTNG_PACKED save_session;
d7ba1388
MD
502 struct {
503 char shm_path[PATH_MAX];
504 } LTTNG_PACKED set_shm_path;
ccf10263 505 struct {
159b042f
JG
506 /* enum lttng_process_attr */
507 int32_t process_attr;
508 /* enum lttng_process_attr_value_type */
509 int32_t value_type;
510
511 struct process_attr_integral_value_comm integral_value;
55c9e7ca 512 /*
159b042f
JG
513 * For user/group names, a variable length,
514 * zero-terminated, string of length 'name_len'
515 * (including the terminator) follows.
516 *
517 * integral_value should not be used in those cases.
55c9e7ca 518 */
159b042f
JG
519 uint32_t name_len;
520 } LTTNG_PACKED process_attr_tracker_add_remove_include_value;
55c9e7ca 521 struct {
159b042f
JG
522 /* enum lttng_process_attr */
523 int32_t process_attr;
524 } LTTNG_PACKED process_attr_tracker_get_inclusion_set;
525 struct {
526 /* enum lttng_process_attr */
527 int32_t process_attr;
528 } LTTNG_PACKED process_attr_tracker_get_tracking_policy;
529 struct {
530 /* enum lttng_process_attr */
531 int32_t process_attr;
532 /* enum lttng_tracking_policy */
533 int32_t tracking_policy;
534 } LTTNG_PACKED process_attr_tracker_set_tracking_policy;
e9404c27
JG
535 struct {
536 uint32_t length;
0efb2ad7 537 uint8_t is_trigger_anonymous;
e9404c27 538 } LTTNG_PACKED trigger;
b99a0cb3
JG
539 struct {
540 uint32_t length;
541 } LTTNG_PACKED error_query;
d88744a4 542 struct {
d68c9a04
JD
543 uint64_t rotation_id;
544 } LTTNG_PACKED get_rotation_info;
259c2674 545 struct {
66ea93b1
JG
546 /* enum lttng_rotation_schedule_type */
547 uint8_t type;
548 /*
549 * If set == 1, set schedule to value, if set == 0,
550 * clear this schedule type.
551 */
552 uint8_t set;
553 uint64_t value;
554 } LTTNG_PACKED rotation_set_schedule;
b178f53e
JG
555 struct {
556 /*
557 * Includes the null-terminator.
558 * Must be an absolute path.
559 *
560 * Size bounded by LTTNG_PATH_MAX.
561 */
562 uint16_t home_dir_size;
563 uint64_t session_descriptor_size;
564 /* An lttng_session_descriptor follows. */
565 } LTTNG_PACKED create_session;
fac6795d 566 } u;
99608320
JR
567 /* Count of fds sent. */
568 uint32_t fd_count;
fc5e05b7 569} LTTNG_PACKED;
fac6795d 570
d93c4f1f 571#define LTTNG_FILTER_MAX_LEN 65536
b178f53e 572#define LTTNG_SESSION_DESCRIPTOR_MAX_LEN 65536
53a80697
MD
573
574/*
575 * Filter bytecode data. The reloc table is located at the end of the
576 * bytecode. It is made of tuples: (uint16_t, var. len. string). It
577 * starts at reloc_table_offset.
578 */
b6bbed5f 579#define LTTNG_FILTER_PADDING 32
2b00d462 580struct lttng_bytecode {
d93c4f1f
CB
581 uint32_t len; /* len of data */
582 uint32_t reloc_table_offset;
f3f0db50 583 uint64_t seqnum;
b6bbed5f 584 char padding[LTTNG_FILTER_PADDING];
53a80697 585 char data[0];
fc5e05b7 586} LTTNG_PACKED;
53a80697 587
579640f9
JI
588/*
589 * Event exclusion data. At the end of the structure, there will actually
590 * by zero or more names, where the actual number of names is given by
591 * the 'count' item of the structure.
592 */
593#define LTTNG_EVENT_EXCLUSION_PADDING 32
594struct lttng_event_exclusion {
595 uint32_t count;
596 char padding[LTTNG_EVENT_EXCLUSION_PADDING];
caafa356 597 char names[0][LTTNG_SYMBOL_NAME_LEN];
579640f9
JI
598} LTTNG_PACKED;
599
d7af3565
PP
600#define LTTNG_EVENT_EXCLUSION_NAME_AT(_exclusion, _i) \
601 (&(_exclusion)->names[_i][0])
602
b4e3ceb9
PP
603/*
604 * Event command header.
605 */
606struct lttcomm_event_command_header {
607 /* Number of events */
608 uint32_t nb_events;
609} LTTNG_PACKED;
610
611/*
612 * Event extended info header. This is the structure preceding each
613 * extended info data.
614 */
615struct lttcomm_event_extended_header {
616 /*
617 * Size of filter string immediately following this header.
618 * This size includes the terminal null character.
619 */
620 uint32_t filter_len;
795d57ce
PP
621
622 /*
623 * Number of exclusion names, immediately following the filter
624 * string. Each exclusion name has a fixed length of
625 * LTTNG_SYMBOL_NAME_LEN bytes, including the terminal null
626 * character.
627 */
628 uint32_t nb_exclusions;
56f0bc67
JG
629
630 /*
631 * Size of the event's userspace probe location (if applicable).
632 */
633 uint32_t userspace_probe_location_len;
b4e3ceb9
PP
634} LTTNG_PACKED;
635
3e3665b8
JG
636/*
637 * Command header of the reply to an LTTNG_DESTROY_SESSION command.
638 */
639struct lttcomm_session_destroy_command_header {
640 /* enum lttng_session */
641 int32_t rotation_state;
642};
643
55c9e7ca
JR
644/*
645 * tracker command header.
646 */
647struct lttcomm_tracker_command_header {
648 uint32_t nb_tracker_id;
649} LTTNG_PACKED;
650
fac6795d 651/*
5e16da05 652 * Data structure for the response from sessiond to the lttng client.
fac6795d 653 */
5461b305 654struct lttcomm_lttng_msg {
d0b96690
DG
655 uint32_t cmd_type; /* enum lttcomm_sessiond_command */
656 uint32_t ret_code; /* enum lttcomm_return_code */
657 uint32_t pid; /* pid_t */
795a978d 658 uint32_t cmd_header_size;
773168b7 659 uint32_t data_size;
e368fb43 660 uint32_t fd_count;
fc5e05b7 661} LTTNG_PACKED;
fac6795d 662
da3c9ec1
DG
663struct lttcomm_lttng_output_id {
664 uint32_t id;
665} LTTNG_PACKED;
666
6e3805e2 667/*
3bd1e081
MD
668 * lttcomm_consumer_msg is the message sent from sessiond to consumerd
669 * to either add a channel, add a stream, update a stream, or stop
670 * operation.
6e3805e2 671 */
3bd1e081 672struct lttcomm_consumer_msg {
92816cc3 673 uint32_t cmd_type; /* enum lttng_consumer_command */
3bd1e081
MD
674 union {
675 struct {
d88aee68 676 uint64_t channel_key;
ffe60014 677 uint64_t session_id;
d2956687 678 /* ID of the session's current trace chunk. */
0a30bf9b 679 LTTNG_OPTIONAL_COMM(uint64_t) LTTNG_PACKED chunk_id;
ffe60014 680 char pathname[PATH_MAX];
d88aee68 681 uint64_t relayd_id;
c30aaa51 682 /* nb_init_streams is the number of streams open initially. */
d88aee68 683 uint32_t nb_init_streams;
de5e9086 684 char name[LTTNG_SYMBOL_NAME_LEN];
ffe60014
DG
685 /* Use splice or mmap to consume this fd */
686 enum lttng_event_output output;
687 int type; /* Per cpu or metadata. */
1624d5b7
JD
688 uint64_t tracefile_size; /* bytes */
689 uint32_t tracefile_count; /* number of tracefiles */
2bba9e53
DG
690 /* If the channel's streams have to be monitored or not. */
691 uint32_t monitor;
ecc48a90
JD
692 /* timer to check the streams usage in live mode (usec). */
693 unsigned int live_timer_interval;
a2814ea7
JG
694 /* is part of a live session */
695 uint8_t is_live;
e9404c27
JG
696 /* timer to sample a channel's positions (usec). */
697 unsigned int monitor_timer_interval;
ffe60014 698 } LTTNG_PACKED channel; /* Only used by Kernel. */
3bd1e081 699 struct {
d88aee68
DG
700 uint64_t stream_key;
701 uint64_t channel_key;
702 int32_t cpu; /* On which CPU this stream is assigned. */
6dc3064a
DG
703 /* Tells the consumer if the stream should be or not monitored. */
704 uint32_t no_monitor;
ffe60014 705 } LTTNG_PACKED stream; /* Only used by Kernel. */
de5e9086 706 struct {
d88aee68 707 uint64_t net_index;
de5e9086 708 enum lttng_stream_type type;
4222116f
JR
709 uint32_t major;
710 uint32_t minor;
711 uint8_t relayd_socket_protocol;
46e6455f
DG
712 /* Tracing session id associated to the relayd. */
713 uint64_t session_id;
d3e2ba59
JD
714 /* Relayd session id, only used with control socket. */
715 uint64_t relayd_session_id;
fc5e05b7 716 } LTTNG_PACKED relayd_sock;
173af62f
DG
717 struct {
718 uint64_t net_seq_idx;
fc5e05b7 719 } LTTNG_PACKED destroy_relayd;
53632229
DG
720 struct {
721 uint64_t session_id;
fc5e05b7 722 } LTTNG_PACKED data_pending;
ffe60014 723 struct {
d0b96690
DG
724 uint64_t subbuf_size; /* bytes */
725 uint64_t num_subbuf; /* power of 2 */
d88aee68
DG
726 int32_t overwrite; /* 1: overwrite, 0: discard */
727 uint32_t switch_timer_interval; /* usec */
728 uint32_t read_timer_interval; /* usec */
e9404c27 729 unsigned int live_timer_interval; /* usec */
a2814ea7 730 uint8_t is_live; /* is part of a live session */
e9404c27 731 uint32_t monitor_timer_interval; /* usec */
d88aee68
DG
732 int32_t output; /* splice, mmap */
733 int32_t type; /* metadata or per_cpu */
d0b96690
DG
734 uint64_t session_id; /* Tracing session id */
735 char pathname[PATH_MAX]; /* Channel file path. */
ffe60014 736 char name[LTTNG_SYMBOL_NAME_LEN]; /* Channel name. */
d2956687
JG
737 /* Credentials used to open the UST buffer shared mappings. */
738 struct {
739 uint32_t uid;
740 uint32_t gid;
741 } LTTNG_PACKED buffer_credentials;
d88aee68
DG
742 uint64_t relayd_id; /* Relayd id if apply. */
743 uint64_t key; /* Unique channel key. */
d2956687 744 /* ID of the session's current trace chunk. */
0a30bf9b 745 LTTNG_OPTIONAL_COMM(uint64_t) LTTNG_PACKED chunk_id;
c70636a7 746 unsigned char uuid[LTTNG_UUID_LEN]; /* uuid for ust tracer. */
7972aab2 747 uint32_t chan_id; /* Channel ID on the tracer side. */
1624d5b7
JD
748 uint64_t tracefile_size; /* bytes */
749 uint32_t tracefile_count; /* number of tracefiles */
1950109e 750 uint64_t session_id_per_pid; /* Per-pid session ID. */
2bba9e53
DG
751 /* Tells the consumer if the stream should be or not monitored. */
752 uint32_t monitor;
567eb353
DG
753 /*
754 * For UST per UID buffers, this is the application UID of the
755 * channel. This can be different from the user UID requesting the
756 * channel creation and used for the rights on the stream file
757 * because the application can be in the tracing for instance.
758 */
759 uint32_t ust_app_uid;
491d1539 760 int64_t blocking_timeout;
3d071855 761 char root_shm_path[PATH_MAX];
d7ba1388 762 char shm_path[PATH_MAX];
ffe60014
DG
763 } LTTNG_PACKED ask_channel;
764 struct {
d88aee68 765 uint64_t key;
ffe60014
DG
766 } LTTNG_PACKED get_channel;
767 struct {
d88aee68 768 uint64_t key;
ffe60014 769 } LTTNG_PACKED destroy_channel;
d88aee68
DG
770 struct {
771 uint64_t key; /* Metadata channel key. */
772 uint64_t target_offset; /* Offset in the consumer */
773 uint64_t len; /* Length of metadata to be received. */
93ec662e 774 uint64_t version; /* Version of the metadata. */
d88aee68
DG
775 } LTTNG_PACKED push_metadata;
776 struct {
777 uint64_t key; /* Metadata channel key. */
778 } LTTNG_PACKED close_metadata;
779 struct {
780 uint64_t key; /* Metadata channel key. */
781 } LTTNG_PACKED setup_metadata;
7972aab2
DG
782 struct {
783 uint64_t key; /* Channel key. */
784 } LTTNG_PACKED flush_channel;
0dd01979
MD
785 struct {
786 uint64_t key; /* Channel key. */
787 } LTTNG_PACKED clear_quiescent_channel;
6dc3064a
DG
788 struct {
789 char pathname[PATH_MAX];
790 /* Indicate if the snapshot goes on the relayd or locally. */
791 uint32_t use_relayd;
792 uint32_t metadata; /* This a metadata snapshot. */
793 uint64_t relayd_id; /* Relayd id if apply. */
794 uint64_t key;
d07ceecd 795 uint64_t nb_packets_per_stream;
6dc3064a 796 } LTTNG_PACKED snapshot_channel;
a4baae1b
JD
797 struct {
798 uint64_t channel_key;
799 uint64_t net_seq_idx;
800 } LTTNG_PACKED sent_streams;
fb83fe64
JD
801 struct {
802 uint64_t session_id;
803 uint64_t channel_key;
804 } LTTNG_PACKED discarded_events;
805 struct {
806 uint64_t session_id;
807 uint64_t channel_key;
808 } LTTNG_PACKED lost_packets;
93ec662e
JD
809 struct {
810 uint64_t session_id;
eded6438 811 } LTTNG_PACKED regenerate_metadata;
b99a8d42 812 struct {
b99a8d42
JD
813 uint32_t metadata; /* This is a metadata channel. */
814 uint64_t relayd_id; /* Relayd id if apply. */
815 uint64_t key;
b99a8d42 816 } LTTNG_PACKED rotate_channel;
92816cc3
JG
817 struct {
818 uint64_t session_id;
819 uint64_t chunk_id;
820 } LTTNG_PACKED check_rotation_pending_local;
d88744a4
JD
821 struct {
822 uint64_t relayd_id;
823 uint64_t session_id;
824 uint64_t chunk_id;
92816cc3 825 } LTTNG_PACKED check_rotation_pending_relay;
a1ae2ea5 826 struct {
d2956687
JG
827 /*
828 * Relayd id, if applicable (remote).
829 *
830 * A directory file descriptor referring to the chunk's
831 * output folder is transmitted if the chunk is local
832 * (relayd_id unset).
833 *
834 * `override_name` is left NULL (all-zeroes) if the
913a542b 835 * chunk's name is not overridden.
d2956687 836 */
0a30bf9b 837 LTTNG_OPTIONAL_COMM(uint64_t) LTTNG_PACKED relayd_id;
d2956687
JG
838 char override_name[LTTNG_NAME_MAX];
839 uint64_t session_id;
840 uint64_t chunk_id;
841 uint64_t creation_timestamp;
e5add6d0 842 LTTNG_OPTIONAL_COMM(struct {
d2956687
JG
843 uint32_t uid;
844 uint32_t gid;
e5add6d0 845 } LTTNG_PACKED ) LTTNG_PACKED credentials;
d2956687
JG
846 } LTTNG_PACKED create_trace_chunk;
847 struct {
0a30bf9b 848 LTTNG_OPTIONAL_COMM(uint64_t) LTTNG_PACKED relayd_id;
d2956687
JG
849 uint64_t session_id;
850 uint64_t chunk_id;
851 uint64_t close_timestamp;
bbc4768c
JG
852 /* enum lttng_trace_chunk_command_type */
853 LTTNG_OPTIONAL_COMM(uint32_t) LTTNG_PACKED close_command;
d2956687
JG
854 } LTTNG_PACKED close_trace_chunk;
855 struct {
0a30bf9b 856 LTTNG_OPTIONAL_COMM(uint64_t) LTTNG_PACKED relayd_id;
a1ae2ea5 857 uint64_t session_id;
d2956687
JG
858 uint64_t chunk_id;
859 } LTTNG_PACKED trace_chunk_exists;
860 struct {
861 lttng_uuid sessiond_uuid;
862 } LTTNG_PACKED init;
b01b201a
MD
863 struct {
864 uint64_t key;
865 } LTTNG_PACKED clear_channel;
04ed9e10
JG
866 struct {
867 uint64_t key;
868 } LTTNG_PACKED open_channel_packets;
3bd1e081 869 } u;
fc5e05b7 870} LTTNG_PACKED;
6e3805e2 871
e9404c27
JG
872/*
873 * Channel monitoring message returned to the session daemon on every
874 * monitor timer expiration.
875 */
876struct lttcomm_consumer_channel_monitor_msg {
877 /* Key of the sampled channel. */
878 uint64_t key;
879 /*
880 * Lowest and highest usage (bytes) at the moment the sample was taken.
881 */
882 uint64_t lowest, highest;
e8360425
JD
883 /*
884 * Sum of all the consumed positions for a channel.
885 */
886 uint64_t total_consumed;
e9404c27
JG
887} LTTNG_PACKED;
888
f50f23d9
DG
889/*
890 * Status message returned to the sessiond after a received command.
891 */
892struct lttcomm_consumer_status_msg {
0c759fc9 893 enum lttcomm_return_code ret_code;
fc5e05b7 894} LTTNG_PACKED;
f50f23d9 895
ffe60014 896struct lttcomm_consumer_status_channel {
0c759fc9 897 enum lttcomm_return_code ret_code;
d88aee68 898 uint64_t key;
ffe60014
DG
899 unsigned int stream_count;
900} LTTNG_PACKED;
901
ecd1a12f
MD
902struct lttcomm_consumer_close_trace_chunk_reply {
903 enum lttcomm_return_code ret_code;
904 uint32_t path_length;
905 char path[];
906};
907
51791532
JG
908#ifdef HAVE_LIBLTTNG_UST_CTL
909
9df8df5e 910#include <lttng/ust-abi.h>
6e3805e2 911
3817e7df
DG
912/*
913 * Data structure for the commands sent from sessiond to UST.
914 */
915struct lttcomm_ust_msg {
3817e7df
DG
916 uint32_t handle;
917 uint32_t cmd;
918 union {
fc4b93fa
MD
919 struct lttng_ust_abi_channel channel;
920 struct lttng_ust_abi_stream stream;
921 struct lttng_ust_abi_event event;
922 struct lttng_ust_abi_context context;
923 struct lttng_ust_abi_tracer_version version;
3817e7df 924 } u;
fc5e05b7 925} LTTNG_PACKED;
3817e7df
DG
926
927/*
928 * Data structure for the response from UST to the session daemon.
929 * cmd_type is sent back in the reply for validation.
930 */
931struct lttcomm_ust_reply {
932 uint32_t handle;
933 uint32_t cmd;
934 uint32_t ret_code; /* enum lttcomm_return_code */
935 uint32_t ret_val; /* return value */
936 union {
2b0bf864
DG
937 struct {
938 uint64_t memory_map_size;
fc5e05b7 939 } LTTNG_PACKED channel;
2b0bf864
DG
940 struct {
941 uint64_t memory_map_size;
fc5e05b7 942 } LTTNG_PACKED stream;
fc4b93fa 943 struct lttng_ust_abi_tracer_version version;
3817e7df 944 } u;
fc5e05b7 945} LTTNG_PACKED;
3817e7df 946
74d0b642 947#endif /* HAVE_LIBLTTNG_UST_CTL */
3bd1e081 948
ca806b0b 949const char *lttcomm_get_readable_code(enum lttcomm_return_code code);
fac6795d 950
ca806b0b 951int lttcomm_init_inet_sockaddr(struct lttcomm_sockaddr *sockaddr,
6364a07a 952 const char *ip, unsigned int port);
ca806b0b 953int lttcomm_init_inet6_sockaddr(struct lttcomm_sockaddr *sockaddr,
6364a07a
DG
954 const char *ip, unsigned int port);
955
ca806b0b 956struct lttcomm_sock *lttcomm_alloc_sock(enum lttcomm_sock_proto proto);
4222116f
JR
957int lttcomm_populate_sock_from_open_socket(struct lttcomm_sock *sock,
958 int fd,
959 enum lttcomm_sock_proto protocol);
ca806b0b
SM
960int lttcomm_create_sock(struct lttcomm_sock *sock);
961struct lttcomm_sock *lttcomm_alloc_sock_from_uri(struct lttng_uri *uri);
962void lttcomm_destroy_sock(struct lttcomm_sock *sock);
963struct lttcomm_sock *lttcomm_alloc_copy_sock(struct lttcomm_sock *src);
964void lttcomm_copy_sock(struct lttcomm_sock *dst,
de5e9086 965 struct lttcomm_sock *src);
6364a07a 966
6151a90f 967/* Relayd socket object. */
ca806b0b 968struct lttcomm_relayd_sock *lttcomm_alloc_relayd_sock(
6151a90f
JD
969 struct lttng_uri *uri, uint32_t major, uint32_t minor);
970
ca806b0b
SM
971int lttcomm_setsockopt_rcv_timeout(int sock, unsigned int msec);
972int lttcomm_setsockopt_snd_timeout(int sock, unsigned int msec);
783a3b9a 973
ca806b0b 974int lttcomm_sock_get_port(const struct lttcomm_sock *sock,
2288467f
JG
975 uint16_t *port);
976/*
977 * Set a port to an lttcomm_sock. This will have no effect is the socket is
978 * already bound.
979 */
ca806b0b 980int lttcomm_sock_set_port(struct lttcomm_sock *sock, uint16_t port);
2288467f 981
ca806b0b 982void lttcomm_init(void);
554831e7 983/* Get network timeout, in milliseconds */
ca806b0b 984unsigned long lttcomm_get_network_timeout(void);
554831e7 985
773168b7 986#endif /* _LTTNG_SESSIOND_COMM_H */
This page took 0.120648 seconds and 4 git commands to generate.