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