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