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