Commit | Line | Data |
---|---|---|
3bd1e081 MD |
1 | /* |
2 | * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca> | |
3 | * Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
b3530820 | 4 | * Copyright (C) 2017 - Jérémie Galarneau <jeremie.galarneau@efficios.com> |
3bd1e081 | 5 | * |
d14d33bf AM |
6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License, version 2 only, | |
8 | * as published by the Free Software Foundation. | |
3bd1e081 MD |
9 | * |
10 | * This program is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
14 | * | |
d14d33bf AM |
15 | * You should have received a copy of the GNU General Public License along |
16 | * with this program; if not, write to the Free Software Foundation, Inc., | |
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
3bd1e081 MD |
18 | */ |
19 | ||
6c1c0768 | 20 | #define _LGPL_SOURCE |
3bd1e081 | 21 | #include <assert.h> |
3bd1e081 MD |
22 | #include <poll.h> |
23 | #include <pthread.h> | |
24 | #include <stdlib.h> | |
25 | #include <string.h> | |
26 | #include <sys/mman.h> | |
27 | #include <sys/socket.h> | |
28 | #include <sys/types.h> | |
77c7c900 | 29 | #include <inttypes.h> |
3bd1e081 | 30 | #include <unistd.h> |
dbb5dfe6 | 31 | #include <sys/stat.h> |
3bd1e081 | 32 | |
51a9e1c7 | 33 | #include <bin/lttng-consumerd/health-consumerd.h> |
990570ed | 34 | #include <common/common.h> |
10a8a223 | 35 | #include <common/kernel-ctl/kernel-ctl.h> |
10a8a223 | 36 | #include <common/sessiond-comm/sessiond-comm.h> |
00e2e675 | 37 | #include <common/sessiond-comm/relayd.h> |
dbb5dfe6 | 38 | #include <common/compat/fcntl.h> |
f263b7fd | 39 | #include <common/compat/endian.h> |
acdb9057 | 40 | #include <common/pipe.h> |
00e2e675 | 41 | #include <common/relayd/relayd.h> |
fe4477ee | 42 | #include <common/utils.h> |
c8fea79c | 43 | #include <common/consumer/consumer-stream.h> |
309167d2 | 44 | #include <common/index/index.h> |
c8fea79c | 45 | #include <common/consumer/consumer-timer.h> |
d2956687 | 46 | #include <common/optional.h> |
0857097f | 47 | |
10a8a223 | 48 | #include "kernel-consumer.h" |
3bd1e081 MD |
49 | |
50 | extern struct lttng_consumer_global_data consumer_data; | |
51 | extern int consumer_poll_timeout; | |
3bd1e081 | 52 | |
3bd1e081 MD |
53 | /* |
54 | * Take a snapshot for a specific fd | |
55 | * | |
56 | * Returns 0 on success, < 0 on error | |
57 | */ | |
ffe60014 | 58 | int lttng_kconsumer_take_snapshot(struct lttng_consumer_stream *stream) |
3bd1e081 MD |
59 | { |
60 | int ret = 0; | |
61 | int infd = stream->wait_fd; | |
62 | ||
63 | ret = kernctl_snapshot(infd); | |
d2d2f190 JD |
64 | /* |
65 | * -EAGAIN is not an error, it just means that there is no data to | |
66 | * be read. | |
67 | */ | |
68 | if (ret != 0 && ret != -EAGAIN) { | |
5a510c9f | 69 | PERROR("Getting sub-buffer snapshot."); |
3bd1e081 MD |
70 | } |
71 | ||
72 | return ret; | |
73 | } | |
74 | ||
e9404c27 JG |
75 | /* |
76 | * Sample consumed and produced positions for a specific fd. | |
77 | * | |
78 | * Returns 0 on success, < 0 on error. | |
79 | */ | |
80 | int lttng_kconsumer_sample_snapshot_positions( | |
81 | struct lttng_consumer_stream *stream) | |
82 | { | |
83 | assert(stream); | |
84 | ||
85 | return kernctl_snapshot_sample_positions(stream->wait_fd); | |
86 | } | |
87 | ||
3bd1e081 MD |
88 | /* |
89 | * Get the produced position | |
90 | * | |
91 | * Returns 0 on success, < 0 on error | |
92 | */ | |
ffe60014 | 93 | int lttng_kconsumer_get_produced_snapshot(struct lttng_consumer_stream *stream, |
3bd1e081 MD |
94 | unsigned long *pos) |
95 | { | |
96 | int ret; | |
97 | int infd = stream->wait_fd; | |
98 | ||
99 | ret = kernctl_snapshot_get_produced(infd, pos); | |
100 | if (ret != 0) { | |
5a510c9f | 101 | PERROR("kernctl_snapshot_get_produced"); |
3bd1e081 MD |
102 | } |
103 | ||
104 | return ret; | |
105 | } | |
106 | ||
07b86b52 JD |
107 | /* |
108 | * Get the consumerd position | |
109 | * | |
110 | * Returns 0 on success, < 0 on error | |
111 | */ | |
112 | int lttng_kconsumer_get_consumed_snapshot(struct lttng_consumer_stream *stream, | |
113 | unsigned long *pos) | |
114 | { | |
115 | int ret; | |
116 | int infd = stream->wait_fd; | |
117 | ||
118 | ret = kernctl_snapshot_get_consumed(infd, pos); | |
119 | if (ret != 0) { | |
5a510c9f | 120 | PERROR("kernctl_snapshot_get_consumed"); |
07b86b52 JD |
121 | } |
122 | ||
123 | return ret; | |
124 | } | |
125 | ||
07b86b52 JD |
126 | /* |
127 | * Take a snapshot of all the stream of a channel | |
3eb928aa | 128 | * RCU read-side lock must be held across this function to ensure existence of |
d2956687 | 129 | * channel. The channel lock must be held by the caller. |
07b86b52 JD |
130 | * |
131 | * Returns 0 on success, < 0 on error | |
132 | */ | |
f72bb42f JG |
133 | static int lttng_kconsumer_snapshot_channel( |
134 | struct lttng_consumer_channel *channel, | |
135 | uint64_t key, char *path, uint64_t relayd_id, | |
136 | uint64_t nb_packets_per_stream, | |
5c786ded | 137 | struct lttng_consumer_local_data *ctx) |
07b86b52 JD |
138 | { |
139 | int ret; | |
07b86b52 JD |
140 | struct lttng_consumer_stream *stream; |
141 | ||
6a00837f | 142 | DBG("Kernel consumer snapshot channel %" PRIu64, key); |
07b86b52 JD |
143 | |
144 | rcu_read_lock(); | |
145 | ||
07b86b52 JD |
146 | /* Splice is not supported yet for channel snapshot. */ |
147 | if (channel->output != CONSUMER_CHANNEL_MMAP) { | |
9381314c JG |
148 | ERR("Unsupported output type for channel \"%s\": mmap output is required to record a snapshot", |
149 | channel->name); | |
07b86b52 JD |
150 | ret = -1; |
151 | goto end; | |
152 | } | |
153 | ||
10a50311 | 154 | cds_list_for_each_entry(stream, &channel->streams.head, send_node) { |
923333cd | 155 | unsigned long consumed_pos, produced_pos; |
9ce5646a MD |
156 | |
157 | health_code_update(); | |
158 | ||
07b86b52 JD |
159 | /* |
160 | * Lock stream because we are about to change its state. | |
161 | */ | |
162 | pthread_mutex_lock(&stream->lock); | |
163 | ||
d2956687 JG |
164 | assert(channel->trace_chunk); |
165 | if (!lttng_trace_chunk_get(channel->trace_chunk)) { | |
166 | /* | |
167 | * Can't happen barring an internal error as the channel | |
168 | * holds a reference to the trace chunk. | |
169 | */ | |
170 | ERR("Failed to acquire reference to channel's trace chunk"); | |
171 | ret = -1; | |
172 | goto end_unlock; | |
173 | } | |
174 | assert(!stream->trace_chunk); | |
175 | stream->trace_chunk = channel->trace_chunk; | |
176 | ||
29decac3 DG |
177 | /* |
178 | * Assign the received relayd ID so we can use it for streaming. The streams | |
179 | * are not visible to anyone so this is OK to change it. | |
180 | */ | |
07b86b52 JD |
181 | stream->net_seq_idx = relayd_id; |
182 | channel->relayd_id = relayd_id; | |
183 | if (relayd_id != (uint64_t) -1ULL) { | |
10a50311 | 184 | ret = consumer_send_relayd_stream(stream, path); |
07b86b52 JD |
185 | if (ret < 0) { |
186 | ERR("sending stream to relayd"); | |
187 | goto end_unlock; | |
188 | } | |
07b86b52 | 189 | } else { |
d2956687 JG |
190 | ret = consumer_stream_create_output_files(stream, |
191 | false); | |
07b86b52 | 192 | if (ret < 0) { |
07b86b52 JD |
193 | goto end_unlock; |
194 | } | |
d2956687 JG |
195 | DBG("Kernel consumer snapshot stream (%" PRIu64 ")", |
196 | stream->key); | |
07b86b52 JD |
197 | } |
198 | ||
f22dd891 | 199 | ret = kernctl_buffer_flush_empty(stream->wait_fd); |
07b86b52 | 200 | if (ret < 0) { |
f22dd891 MD |
201 | /* |
202 | * Doing a buffer flush which does not take into | |
203 | * account empty packets. This is not perfect | |
204 | * for stream intersection, but required as a | |
205 | * fall-back when "flush_empty" is not | |
206 | * implemented by lttng-modules. | |
207 | */ | |
208 | ret = kernctl_buffer_flush(stream->wait_fd); | |
209 | if (ret < 0) { | |
210 | ERR("Failed to flush kernel stream"); | |
211 | goto end_unlock; | |
212 | } | |
07b86b52 JD |
213 | goto end_unlock; |
214 | } | |
215 | ||
216 | ret = lttng_kconsumer_take_snapshot(stream); | |
217 | if (ret < 0) { | |
218 | ERR("Taking kernel snapshot"); | |
219 | goto end_unlock; | |
220 | } | |
221 | ||
222 | ret = lttng_kconsumer_get_produced_snapshot(stream, &produced_pos); | |
223 | if (ret < 0) { | |
224 | ERR("Produced kernel snapshot position"); | |
225 | goto end_unlock; | |
226 | } | |
227 | ||
228 | ret = lttng_kconsumer_get_consumed_snapshot(stream, &consumed_pos); | |
229 | if (ret < 0) { | |
230 | ERR("Consumerd kernel snapshot position"); | |
231 | goto end_unlock; | |
232 | } | |
233 | ||
d07ceecd MD |
234 | consumed_pos = consumer_get_consume_start_pos(consumed_pos, |
235 | produced_pos, nb_packets_per_stream, | |
236 | stream->max_sb_size); | |
5c786ded | 237 | |
9377d830 | 238 | while ((long) (consumed_pos - produced_pos) < 0) { |
07b86b52 JD |
239 | ssize_t read_len; |
240 | unsigned long len, padded_len; | |
241 | ||
9ce5646a MD |
242 | health_code_update(); |
243 | ||
07b86b52 JD |
244 | DBG("Kernel consumer taking snapshot at pos %lu", consumed_pos); |
245 | ||
246 | ret = kernctl_get_subbuf(stream->wait_fd, &consumed_pos); | |
247 | if (ret < 0) { | |
32af2c95 | 248 | if (ret != -EAGAIN) { |
07b86b52 JD |
249 | PERROR("kernctl_get_subbuf snapshot"); |
250 | goto end_unlock; | |
251 | } | |
252 | DBG("Kernel consumer get subbuf failed. Skipping it."); | |
253 | consumed_pos += stream->max_sb_size; | |
ddc93ee4 | 254 | stream->chan->lost_packets++; |
07b86b52 JD |
255 | continue; |
256 | } | |
257 | ||
258 | ret = kernctl_get_subbuf_size(stream->wait_fd, &len); | |
259 | if (ret < 0) { | |
260 | ERR("Snapshot kernctl_get_subbuf_size"); | |
29decac3 | 261 | goto error_put_subbuf; |
07b86b52 JD |
262 | } |
263 | ||
264 | ret = kernctl_get_padded_subbuf_size(stream->wait_fd, &padded_len); | |
265 | if (ret < 0) { | |
266 | ERR("Snapshot kernctl_get_padded_subbuf_size"); | |
29decac3 | 267 | goto error_put_subbuf; |
07b86b52 JD |
268 | } |
269 | ||
270 | read_len = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, len, | |
309167d2 | 271 | padded_len - len, NULL); |
07b86b52 | 272 | /* |
29decac3 DG |
273 | * We write the padded len in local tracefiles but the data len |
274 | * when using a relay. Display the error but continue processing | |
275 | * to try to release the subbuffer. | |
07b86b52 JD |
276 | */ |
277 | if (relayd_id != (uint64_t) -1ULL) { | |
278 | if (read_len != len) { | |
279 | ERR("Error sending to the relay (ret: %zd != len: %lu)", | |
280 | read_len, len); | |
281 | } | |
282 | } else { | |
283 | if (read_len != padded_len) { | |
284 | ERR("Error writing to tracefile (ret: %zd != len: %lu)", | |
285 | read_len, padded_len); | |
286 | } | |
287 | } | |
288 | ||
289 | ret = kernctl_put_subbuf(stream->wait_fd); | |
290 | if (ret < 0) { | |
291 | ERR("Snapshot kernctl_put_subbuf"); | |
292 | goto end_unlock; | |
293 | } | |
294 | consumed_pos += stream->max_sb_size; | |
295 | } | |
296 | ||
297 | if (relayd_id == (uint64_t) -1ULL) { | |
fdf9986c MD |
298 | if (stream->out_fd >= 0) { |
299 | ret = close(stream->out_fd); | |
300 | if (ret < 0) { | |
301 | PERROR("Kernel consumer snapshot close out_fd"); | |
302 | goto end_unlock; | |
303 | } | |
304 | stream->out_fd = -1; | |
07b86b52 | 305 | } |
07b86b52 JD |
306 | } else { |
307 | close_relayd_stream(stream); | |
308 | stream->net_seq_idx = (uint64_t) -1ULL; | |
309 | } | |
d2956687 JG |
310 | lttng_trace_chunk_put(stream->trace_chunk); |
311 | stream->trace_chunk = NULL; | |
07b86b52 JD |
312 | pthread_mutex_unlock(&stream->lock); |
313 | } | |
314 | ||
315 | /* All good! */ | |
316 | ret = 0; | |
317 | goto end; | |
318 | ||
29decac3 DG |
319 | error_put_subbuf: |
320 | ret = kernctl_put_subbuf(stream->wait_fd); | |
321 | if (ret < 0) { | |
322 | ERR("Snapshot kernctl_put_subbuf error path"); | |
323 | } | |
07b86b52 JD |
324 | end_unlock: |
325 | pthread_mutex_unlock(&stream->lock); | |
326 | end: | |
327 | rcu_read_unlock(); | |
328 | return ret; | |
329 | } | |
330 | ||
331 | /* | |
332 | * Read the whole metadata available for a snapshot. | |
3eb928aa | 333 | * RCU read-side lock must be held across this function to ensure existence of |
d2956687 | 334 | * metadata_channel. The channel lock must be held by the caller. |
07b86b52 JD |
335 | * |
336 | * Returns 0 on success, < 0 on error | |
337 | */ | |
d2956687 JG |
338 | static int lttng_kconsumer_snapshot_metadata( |
339 | struct lttng_consumer_channel *metadata_channel, | |
3eb928aa MD |
340 | uint64_t key, char *path, uint64_t relayd_id, |
341 | struct lttng_consumer_local_data *ctx) | |
07b86b52 | 342 | { |
d771f832 DG |
343 | int ret, use_relayd = 0; |
344 | ssize_t ret_read; | |
07b86b52 | 345 | struct lttng_consumer_stream *metadata_stream; |
d771f832 DG |
346 | |
347 | assert(ctx); | |
07b86b52 JD |
348 | |
349 | DBG("Kernel consumer snapshot metadata with key %" PRIu64 " at path %s", | |
350 | key, path); | |
351 | ||
352 | rcu_read_lock(); | |
353 | ||
07b86b52 JD |
354 | metadata_stream = metadata_channel->metadata_stream; |
355 | assert(metadata_stream); | |
d2956687 | 356 | |
fa27abe8 | 357 | pthread_mutex_lock(&metadata_stream->lock); |
d2956687 JG |
358 | assert(metadata_channel->trace_chunk); |
359 | assert(metadata_stream->trace_chunk); | |
07b86b52 | 360 | |
d771f832 | 361 | /* Flag once that we have a valid relayd for the stream. */ |
e2039c7a | 362 | if (relayd_id != (uint64_t) -1ULL) { |
d771f832 DG |
363 | use_relayd = 1; |
364 | } | |
365 | ||
366 | if (use_relayd) { | |
10a50311 | 367 | ret = consumer_send_relayd_stream(metadata_stream, path); |
e2039c7a | 368 | if (ret < 0) { |
fa27abe8 | 369 | goto error_snapshot; |
e2039c7a | 370 | } |
e2039c7a | 371 | } else { |
d2956687 JG |
372 | ret = consumer_stream_create_output_files(metadata_stream, |
373 | false); | |
e2039c7a | 374 | if (ret < 0) { |
fa27abe8 | 375 | goto error_snapshot; |
e2039c7a | 376 | } |
07b86b52 | 377 | } |
07b86b52 | 378 | |
d771f832 | 379 | do { |
9ce5646a MD |
380 | health_code_update(); |
381 | ||
d2956687 | 382 | ret_read = lttng_kconsumer_read_subbuffer(metadata_stream, ctx); |
d771f832 | 383 | if (ret_read < 0) { |
56591bac | 384 | if (ret_read != -EAGAIN) { |
6a00837f | 385 | ERR("Kernel snapshot reading metadata subbuffer (ret: %zd)", |
d771f832 | 386 | ret_read); |
fa27abe8 JG |
387 | ret = ret_read; |
388 | goto error_snapshot; | |
07b86b52 | 389 | } |
d771f832 | 390 | /* ret_read is negative at this point so we will exit the loop. */ |
07b86b52 JD |
391 | continue; |
392 | } | |
d771f832 | 393 | } while (ret_read >= 0); |
07b86b52 | 394 | |
d771f832 DG |
395 | if (use_relayd) { |
396 | close_relayd_stream(metadata_stream); | |
397 | metadata_stream->net_seq_idx = (uint64_t) -1ULL; | |
398 | } else { | |
fdf9986c MD |
399 | if (metadata_stream->out_fd >= 0) { |
400 | ret = close(metadata_stream->out_fd); | |
401 | if (ret < 0) { | |
402 | PERROR("Kernel consumer snapshot metadata close out_fd"); | |
403 | /* | |
404 | * Don't go on error here since the snapshot was successful at this | |
405 | * point but somehow the close failed. | |
406 | */ | |
407 | } | |
408 | metadata_stream->out_fd = -1; | |
d2956687 JG |
409 | lttng_trace_chunk_put(metadata_stream->trace_chunk); |
410 | metadata_stream->trace_chunk = NULL; | |
e2039c7a | 411 | } |
e2039c7a JD |
412 | } |
413 | ||
07b86b52 | 414 | ret = 0; |
fa27abe8 JG |
415 | error_snapshot: |
416 | pthread_mutex_unlock(&metadata_stream->lock); | |
cf53a8a6 JD |
417 | cds_list_del(&metadata_stream->send_node); |
418 | consumer_stream_destroy(metadata_stream, NULL); | |
419 | metadata_channel->metadata_stream = NULL; | |
07b86b52 JD |
420 | rcu_read_unlock(); |
421 | return ret; | |
422 | } | |
423 | ||
1803a064 MD |
424 | /* |
425 | * Receive command from session daemon and process it. | |
426 | * | |
427 | * Return 1 on success else a negative value or 0. | |
428 | */ | |
3bd1e081 MD |
429 | int lttng_kconsumer_recv_cmd(struct lttng_consumer_local_data *ctx, |
430 | int sock, struct pollfd *consumer_sockpoll) | |
431 | { | |
432 | ssize_t ret; | |
0c759fc9 | 433 | enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS; |
3bd1e081 MD |
434 | struct lttcomm_consumer_msg msg; |
435 | ||
9ce5646a MD |
436 | health_code_update(); |
437 | ||
3bd1e081 MD |
438 | ret = lttcomm_recv_unix_sock(sock, &msg, sizeof(msg)); |
439 | if (ret != sizeof(msg)) { | |
1803a064 | 440 | if (ret > 0) { |
c6857fcf | 441 | lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD); |
1803a064 MD |
442 | ret = -1; |
443 | } | |
3bd1e081 MD |
444 | return ret; |
445 | } | |
9ce5646a MD |
446 | |
447 | health_code_update(); | |
448 | ||
84382d49 MD |
449 | /* Deprecated command */ |
450 | assert(msg.cmd_type != LTTNG_CONSUMER_STOP); | |
3bd1e081 | 451 | |
9ce5646a MD |
452 | health_code_update(); |
453 | ||
b0b335c8 MD |
454 | /* relayd needs RCU read-side protection */ |
455 | rcu_read_lock(); | |
456 | ||
3bd1e081 | 457 | switch (msg.cmd_type) { |
00e2e675 DG |
458 | case LTTNG_CONSUMER_ADD_RELAYD_SOCKET: |
459 | { | |
f50f23d9 | 460 | /* Session daemon status message are handled in the following call. */ |
2527bf85 | 461 | consumer_add_relayd_socket(msg.u.relayd_sock.net_index, |
7735ef9e | 462 | msg.u.relayd_sock.type, ctx, sock, consumer_sockpoll, |
d3e2ba59 | 463 | &msg.u.relayd_sock.sock, msg.u.relayd_sock.session_id, |
2527bf85 | 464 | msg.u.relayd_sock.relayd_session_id); |
00e2e675 DG |
465 | goto end_nosignal; |
466 | } | |
3bd1e081 MD |
467 | case LTTNG_CONSUMER_ADD_CHANNEL: |
468 | { | |
469 | struct lttng_consumer_channel *new_channel; | |
e43c41c5 | 470 | int ret_recv; |
d2956687 | 471 | const uint64_t chunk_id = msg.u.channel.chunk_id.value; |
3bd1e081 | 472 | |
9ce5646a MD |
473 | health_code_update(); |
474 | ||
f50f23d9 DG |
475 | /* First send a status message before receiving the fds. */ |
476 | ret = consumer_send_status_msg(sock, ret_code); | |
477 | if (ret < 0) { | |
478 | /* Somehow, the session daemon is not responding anymore. */ | |
1803a064 | 479 | goto error_fatal; |
f50f23d9 | 480 | } |
9ce5646a MD |
481 | |
482 | health_code_update(); | |
483 | ||
d88aee68 | 484 | DBG("consumer_add_channel %" PRIu64, msg.u.channel.channel_key); |
3bd1e081 | 485 | new_channel = consumer_allocate_channel(msg.u.channel.channel_key, |
d2956687 JG |
486 | msg.u.channel.session_id, |
487 | msg.u.channel.chunk_id.is_set ? | |
488 | &chunk_id : NULL, | |
489 | msg.u.channel.pathname, | |
490 | msg.u.channel.name, | |
1624d5b7 JD |
491 | msg.u.channel.relayd_id, msg.u.channel.output, |
492 | msg.u.channel.tracefile_size, | |
1950109e | 493 | msg.u.channel.tracefile_count, 0, |
ecc48a90 | 494 | msg.u.channel.monitor, |
d7ba1388 | 495 | msg.u.channel.live_timer_interval, |
3d071855 | 496 | NULL, NULL); |
3bd1e081 | 497 | if (new_channel == NULL) { |
f73fabfd | 498 | lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR); |
3bd1e081 MD |
499 | goto end_nosignal; |
500 | } | |
ffe60014 | 501 | new_channel->nb_init_stream_left = msg.u.channel.nb_init_streams; |
95a1109b JD |
502 | switch (msg.u.channel.output) { |
503 | case LTTNG_EVENT_SPLICE: | |
504 | new_channel->output = CONSUMER_CHANNEL_SPLICE; | |
505 | break; | |
506 | case LTTNG_EVENT_MMAP: | |
507 | new_channel->output = CONSUMER_CHANNEL_MMAP; | |
508 | break; | |
509 | default: | |
510 | ERR("Channel output unknown %d", msg.u.channel.output); | |
511 | goto end_nosignal; | |
512 | } | |
ffe60014 DG |
513 | |
514 | /* Translate and save channel type. */ | |
515 | switch (msg.u.channel.type) { | |
516 | case CONSUMER_CHANNEL_TYPE_DATA: | |
517 | case CONSUMER_CHANNEL_TYPE_METADATA: | |
518 | new_channel->type = msg.u.channel.type; | |
519 | break; | |
520 | default: | |
521 | assert(0); | |
522 | goto end_nosignal; | |
523 | }; | |
524 | ||
9ce5646a MD |
525 | health_code_update(); |
526 | ||
3bd1e081 | 527 | if (ctx->on_recv_channel != NULL) { |
e43c41c5 JD |
528 | ret_recv = ctx->on_recv_channel(new_channel); |
529 | if (ret_recv == 0) { | |
530 | ret = consumer_add_channel(new_channel, ctx); | |
531 | } else if (ret_recv < 0) { | |
3bd1e081 MD |
532 | goto end_nosignal; |
533 | } | |
534 | } else { | |
e43c41c5 | 535 | ret = consumer_add_channel(new_channel, ctx); |
3bd1e081 | 536 | } |
e9404c27 JG |
537 | if (msg.u.channel.type == CONSUMER_CHANNEL_TYPE_DATA && !ret) { |
538 | int monitor_start_ret; | |
539 | ||
540 | DBG("Consumer starting monitor timer"); | |
94d49140 JD |
541 | consumer_timer_live_start(new_channel, |
542 | msg.u.channel.live_timer_interval); | |
e9404c27 JG |
543 | monitor_start_ret = consumer_timer_monitor_start( |
544 | new_channel, | |
545 | msg.u.channel.monitor_timer_interval); | |
546 | if (monitor_start_ret < 0) { | |
547 | ERR("Starting channel monitoring timer failed"); | |
548 | goto end_nosignal; | |
549 | } | |
550 | ||
94d49140 | 551 | } |
e43c41c5 | 552 | |
9ce5646a MD |
553 | health_code_update(); |
554 | ||
e43c41c5 | 555 | /* If we received an error in add_channel, we need to report it. */ |
821fffb2 | 556 | if (ret < 0) { |
1803a064 MD |
557 | ret = consumer_send_status_msg(sock, ret); |
558 | if (ret < 0) { | |
559 | goto error_fatal; | |
560 | } | |
e43c41c5 JD |
561 | goto end_nosignal; |
562 | } | |
563 | ||
3bd1e081 MD |
564 | goto end_nosignal; |
565 | } | |
566 | case LTTNG_CONSUMER_ADD_STREAM: | |
567 | { | |
dae10966 DG |
568 | int fd; |
569 | struct lttng_pipe *stream_pipe; | |
00e2e675 | 570 | struct lttng_consumer_stream *new_stream; |
ffe60014 | 571 | struct lttng_consumer_channel *channel; |
c80048c6 | 572 | int alloc_ret = 0; |
3bd1e081 | 573 | |
ffe60014 DG |
574 | /* |
575 | * Get stream's channel reference. Needed when adding the stream to the | |
576 | * global hash table. | |
577 | */ | |
578 | channel = consumer_find_channel(msg.u.stream.channel_key); | |
579 | if (!channel) { | |
580 | /* | |
581 | * We could not find the channel. Can happen if cpu hotplug | |
582 | * happens while tearing down. | |
583 | */ | |
d88aee68 | 584 | ERR("Unable to find channel key %" PRIu64, msg.u.stream.channel_key); |
e462382a | 585 | ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND; |
ffe60014 DG |
586 | } |
587 | ||
9ce5646a MD |
588 | health_code_update(); |
589 | ||
f50f23d9 DG |
590 | /* First send a status message before receiving the fds. */ |
591 | ret = consumer_send_status_msg(sock, ret_code); | |
1803a064 | 592 | if (ret < 0) { |
d771f832 | 593 | /* Somehow, the session daemon is not responding anymore. */ |
c5c7998f | 594 | goto error_add_stream_fatal; |
1803a064 | 595 | } |
9ce5646a MD |
596 | |
597 | health_code_update(); | |
598 | ||
0c759fc9 | 599 | if (ret_code != LTTCOMM_CONSUMERD_SUCCESS) { |
d771f832 | 600 | /* Channel was not found. */ |
c5c7998f | 601 | goto error_add_stream_nosignal; |
f50f23d9 DG |
602 | } |
603 | ||
d771f832 | 604 | /* Blocking call */ |
9ce5646a MD |
605 | health_poll_entry(); |
606 | ret = lttng_consumer_poll_socket(consumer_sockpoll); | |
607 | health_poll_exit(); | |
84382d49 | 608 | if (ret) { |
c5c7998f | 609 | goto error_add_stream_fatal; |
3bd1e081 | 610 | } |
00e2e675 | 611 | |
9ce5646a MD |
612 | health_code_update(); |
613 | ||
00e2e675 | 614 | /* Get stream file descriptor from socket */ |
f2fc6720 MD |
615 | ret = lttcomm_recv_fds_unix_sock(sock, &fd, 1); |
616 | if (ret != sizeof(fd)) { | |
f73fabfd | 617 | lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_FD); |
c5c7998f | 618 | goto end; |
3bd1e081 | 619 | } |
3bd1e081 | 620 | |
9ce5646a MD |
621 | health_code_update(); |
622 | ||
f50f23d9 DG |
623 | /* |
624 | * Send status code to session daemon only if the recv works. If the | |
625 | * above recv() failed, the session daemon is notified through the | |
626 | * error socket and the teardown is eventually done. | |
627 | */ | |
628 | ret = consumer_send_status_msg(sock, ret_code); | |
629 | if (ret < 0) { | |
630 | /* Somehow, the session daemon is not responding anymore. */ | |
c5c7998f | 631 | goto error_add_stream_nosignal; |
f50f23d9 DG |
632 | } |
633 | ||
9ce5646a MD |
634 | health_code_update(); |
635 | ||
d2956687 | 636 | pthread_mutex_lock(&channel->lock); |
ffe60014 DG |
637 | new_stream = consumer_allocate_stream(channel->key, |
638 | fd, | |
ffe60014 | 639 | channel->name, |
ffe60014 DG |
640 | channel->relayd_id, |
641 | channel->session_id, | |
d2956687 | 642 | channel->trace_chunk, |
ffe60014 DG |
643 | msg.u.stream.cpu, |
644 | &alloc_ret, | |
4891ece8 | 645 | channel->type, |
d2956687 | 646 | channel->monitor); |
3bd1e081 | 647 | if (new_stream == NULL) { |
c80048c6 MD |
648 | switch (alloc_ret) { |
649 | case -ENOMEM: | |
650 | case -EINVAL: | |
651 | default: | |
652 | lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR); | |
653 | break; | |
c80048c6 | 654 | } |
d2956687 | 655 | pthread_mutex_unlock(&channel->lock); |
c5c7998f | 656 | goto error_add_stream_nosignal; |
3bd1e081 | 657 | } |
d771f832 | 658 | |
ffe60014 DG |
659 | new_stream->chan = channel; |
660 | new_stream->wait_fd = fd; | |
d05185fa JG |
661 | ret = kernctl_get_max_subbuf_size(new_stream->wait_fd, |
662 | &new_stream->max_sb_size); | |
663 | if (ret < 0) { | |
664 | pthread_mutex_unlock(&channel->lock); | |
665 | ERR("Failed to get kernel maximal subbuffer size"); | |
c5c7998f | 666 | goto error_add_stream_nosignal; |
d05185fa JG |
667 | } |
668 | ||
d9a2e16e JD |
669 | consumer_stream_update_channel_attributes(new_stream, |
670 | channel); | |
07b86b52 JD |
671 | switch (channel->output) { |
672 | case CONSUMER_CHANNEL_SPLICE: | |
673 | new_stream->output = LTTNG_EVENT_SPLICE; | |
a2361a61 JD |
674 | ret = utils_create_pipe(new_stream->splice_pipe); |
675 | if (ret < 0) { | |
d2956687 | 676 | pthread_mutex_unlock(&channel->lock); |
c5c7998f | 677 | goto error_add_stream_nosignal; |
a2361a61 | 678 | } |
07b86b52 JD |
679 | break; |
680 | case CONSUMER_CHANNEL_MMAP: | |
681 | new_stream->output = LTTNG_EVENT_MMAP; | |
682 | break; | |
683 | default: | |
684 | ERR("Stream output unknown %d", channel->output); | |
d2956687 | 685 | pthread_mutex_unlock(&channel->lock); |
c5c7998f | 686 | goto error_add_stream_nosignal; |
07b86b52 | 687 | } |
00e2e675 | 688 | |
a0c83db9 DG |
689 | /* |
690 | * We've just assigned the channel to the stream so increment the | |
07b86b52 JD |
691 | * refcount right now. We don't need to increment the refcount for |
692 | * streams in no monitor because we handle manually the cleanup of | |
693 | * those. It is very important to make sure there is NO prior | |
694 | * consumer_del_stream() calls or else the refcount will be unbalanced. | |
a0c83db9 | 695 | */ |
07b86b52 JD |
696 | if (channel->monitor) { |
697 | uatomic_inc(&new_stream->chan->refcount); | |
698 | } | |
9d9353f9 | 699 | |
fb3a43a9 DG |
700 | /* |
701 | * The buffer flush is done on the session daemon side for the kernel | |
702 | * so no need for the stream "hangup_flush_done" variable to be | |
703 | * tracked. This is important for a kernel stream since we don't rely | |
704 | * on the flush state of the stream to read data. It's not the case for | |
705 | * user space tracing. | |
706 | */ | |
707 | new_stream->hangup_flush_done = 0; | |
708 | ||
9ce5646a MD |
709 | health_code_update(); |
710 | ||
d2956687 | 711 | pthread_mutex_lock(&new_stream->lock); |
633d0084 DG |
712 | if (ctx->on_recv_stream) { |
713 | ret = ctx->on_recv_stream(new_stream); | |
714 | if (ret < 0) { | |
d2956687 JG |
715 | pthread_mutex_unlock(&new_stream->lock); |
716 | pthread_mutex_unlock(&channel->lock); | |
d771f832 | 717 | consumer_stream_free(new_stream); |
c5c7998f | 718 | goto error_add_stream_nosignal; |
fb3a43a9 | 719 | } |
633d0084 | 720 | } |
9ce5646a MD |
721 | health_code_update(); |
722 | ||
07b86b52 JD |
723 | if (new_stream->metadata_flag) { |
724 | channel->metadata_stream = new_stream; | |
725 | } | |
726 | ||
2bba9e53 DG |
727 | /* Do not monitor this stream. */ |
728 | if (!channel->monitor) { | |
5eecee74 | 729 | DBG("Kernel consumer add stream %s in no monitor mode with " |
6dc3064a | 730 | "relayd id %" PRIu64, new_stream->name, |
5eecee74 | 731 | new_stream->net_seq_idx); |
10a50311 | 732 | cds_list_add(&new_stream->send_node, &channel->streams.head); |
d2956687 JG |
733 | pthread_mutex_unlock(&new_stream->lock); |
734 | pthread_mutex_unlock(&channel->lock); | |
c5c7998f | 735 | goto end_add_stream; |
6dc3064a DG |
736 | } |
737 | ||
e1b71bdc DG |
738 | /* Send stream to relayd if the stream has an ID. */ |
739 | if (new_stream->net_seq_idx != (uint64_t) -1ULL) { | |
194ee077 DG |
740 | ret = consumer_send_relayd_stream(new_stream, |
741 | new_stream->chan->pathname); | |
e1b71bdc | 742 | if (ret < 0) { |
d2956687 JG |
743 | pthread_mutex_unlock(&new_stream->lock); |
744 | pthread_mutex_unlock(&channel->lock); | |
e1b71bdc | 745 | consumer_stream_free(new_stream); |
c5c7998f | 746 | goto error_add_stream_nosignal; |
e1b71bdc | 747 | } |
001b7e62 MD |
748 | |
749 | /* | |
750 | * If adding an extra stream to an already | |
751 | * existing channel (e.g. cpu hotplug), we need | |
752 | * to send the "streams_sent" command to relayd. | |
753 | */ | |
754 | if (channel->streams_sent_to_relayd) { | |
755 | ret = consumer_send_relayd_streams_sent( | |
756 | new_stream->net_seq_idx); | |
757 | if (ret < 0) { | |
d2956687 JG |
758 | pthread_mutex_unlock(&new_stream->lock); |
759 | pthread_mutex_unlock(&channel->lock); | |
c5c7998f | 760 | goto error_add_stream_nosignal; |
001b7e62 MD |
761 | } |
762 | } | |
e2039c7a | 763 | } |
d2956687 JG |
764 | pthread_mutex_unlock(&new_stream->lock); |
765 | pthread_mutex_unlock(&channel->lock); | |
e2039c7a | 766 | |
50f8ae69 | 767 | /* Get the right pipe where the stream will be sent. */ |
633d0084 | 768 | if (new_stream->metadata_flag) { |
66d583dc | 769 | consumer_add_metadata_stream(new_stream); |
dae10966 | 770 | stream_pipe = ctx->consumer_metadata_pipe; |
3bd1e081 | 771 | } else { |
66d583dc | 772 | consumer_add_data_stream(new_stream); |
dae10966 | 773 | stream_pipe = ctx->consumer_data_pipe; |
50f8ae69 DG |
774 | } |
775 | ||
66d583dc | 776 | /* Visible to other threads */ |
5ab66908 MD |
777 | new_stream->globally_visible = 1; |
778 | ||
9ce5646a MD |
779 | health_code_update(); |
780 | ||
dae10966 | 781 | ret = lttng_pipe_write(stream_pipe, &new_stream, sizeof(new_stream)); |
50f8ae69 | 782 | if (ret < 0) { |
dae10966 | 783 | ERR("Consumer write %s stream to pipe %d", |
50f8ae69 | 784 | new_stream->metadata_flag ? "metadata" : "data", |
dae10966 | 785 | lttng_pipe_get_writefd(stream_pipe)); |
5ab66908 MD |
786 | if (new_stream->metadata_flag) { |
787 | consumer_del_stream_for_metadata(new_stream); | |
788 | } else { | |
789 | consumer_del_stream_for_data(new_stream); | |
790 | } | |
c5c7998f | 791 | goto error_add_stream_nosignal; |
3bd1e081 | 792 | } |
00e2e675 | 793 | |
02d02e31 JD |
794 | DBG("Kernel consumer ADD_STREAM %s (fd: %d) %s with relayd id %" PRIu64, |
795 | new_stream->name, fd, new_stream->chan->pathname, new_stream->relayd_stream_id); | |
c5c7998f | 796 | end_add_stream: |
3bd1e081 | 797 | break; |
c5c7998f JG |
798 | error_add_stream_nosignal: |
799 | goto end_nosignal; | |
800 | error_add_stream_fatal: | |
801 | goto error_fatal; | |
3bd1e081 | 802 | } |
a4baae1b JD |
803 | case LTTNG_CONSUMER_STREAMS_SENT: |
804 | { | |
805 | struct lttng_consumer_channel *channel; | |
806 | ||
807 | /* | |
808 | * Get stream's channel reference. Needed when adding the stream to the | |
809 | * global hash table. | |
810 | */ | |
811 | channel = consumer_find_channel(msg.u.sent_streams.channel_key); | |
812 | if (!channel) { | |
813 | /* | |
814 | * We could not find the channel. Can happen if cpu hotplug | |
815 | * happens while tearing down. | |
816 | */ | |
817 | ERR("Unable to find channel key %" PRIu64, | |
818 | msg.u.sent_streams.channel_key); | |
e462382a | 819 | ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND; |
a4baae1b JD |
820 | } |
821 | ||
822 | health_code_update(); | |
823 | ||
824 | /* | |
825 | * Send status code to session daemon. | |
826 | */ | |
827 | ret = consumer_send_status_msg(sock, ret_code); | |
f261ad0a | 828 | if (ret < 0 || ret_code != LTTCOMM_CONSUMERD_SUCCESS) { |
a4baae1b | 829 | /* Somehow, the session daemon is not responding anymore. */ |
80d5a658 | 830 | goto error_streams_sent_nosignal; |
a4baae1b JD |
831 | } |
832 | ||
833 | health_code_update(); | |
834 | ||
835 | /* | |
836 | * We should not send this message if we don't monitor the | |
837 | * streams in this channel. | |
838 | */ | |
839 | if (!channel->monitor) { | |
80d5a658 | 840 | goto end_error_streams_sent; |
a4baae1b JD |
841 | } |
842 | ||
843 | health_code_update(); | |
844 | /* Send stream to relayd if the stream has an ID. */ | |
845 | if (msg.u.sent_streams.net_seq_idx != (uint64_t) -1ULL) { | |
846 | ret = consumer_send_relayd_streams_sent( | |
847 | msg.u.sent_streams.net_seq_idx); | |
848 | if (ret < 0) { | |
80d5a658 | 849 | goto error_streams_sent_nosignal; |
a4baae1b | 850 | } |
001b7e62 | 851 | channel->streams_sent_to_relayd = true; |
a4baae1b | 852 | } |
80d5a658 | 853 | end_error_streams_sent: |
a4baae1b | 854 | break; |
80d5a658 JG |
855 | error_streams_sent_nosignal: |
856 | goto end_nosignal; | |
a4baae1b | 857 | } |
3bd1e081 MD |
858 | case LTTNG_CONSUMER_UPDATE_STREAM: |
859 | { | |
3f8e211f DG |
860 | rcu_read_unlock(); |
861 | return -ENOSYS; | |
862 | } | |
863 | case LTTNG_CONSUMER_DESTROY_RELAYD: | |
864 | { | |
a6ba4fe1 | 865 | uint64_t index = msg.u.destroy_relayd.net_seq_idx; |
3f8e211f DG |
866 | struct consumer_relayd_sock_pair *relayd; |
867 | ||
a6ba4fe1 | 868 | DBG("Kernel consumer destroying relayd %" PRIu64, index); |
3f8e211f DG |
869 | |
870 | /* Get relayd reference if exists. */ | |
a6ba4fe1 | 871 | relayd = consumer_find_relayd(index); |
3f8e211f | 872 | if (relayd == NULL) { |
3448e266 | 873 | DBG("Unable to find relayd %" PRIu64, index); |
e462382a | 874 | ret_code = LTTCOMM_CONSUMERD_RELAYD_FAIL; |
3bd1e081 | 875 | } |
3f8e211f | 876 | |
a6ba4fe1 DG |
877 | /* |
878 | * Each relayd socket pair has a refcount of stream attached to it | |
879 | * which tells if the relayd is still active or not depending on the | |
880 | * refcount value. | |
881 | * | |
882 | * This will set the destroy flag of the relayd object and destroy it | |
883 | * if the refcount reaches zero when called. | |
884 | * | |
885 | * The destroy can happen either here or when a stream fd hangs up. | |
886 | */ | |
f50f23d9 DG |
887 | if (relayd) { |
888 | consumer_flag_relayd_for_destroy(relayd); | |
889 | } | |
890 | ||
9ce5646a MD |
891 | health_code_update(); |
892 | ||
f50f23d9 DG |
893 | ret = consumer_send_status_msg(sock, ret_code); |
894 | if (ret < 0) { | |
895 | /* Somehow, the session daemon is not responding anymore. */ | |
1803a064 | 896 | goto error_fatal; |
f50f23d9 | 897 | } |
3f8e211f | 898 | |
3f8e211f | 899 | goto end_nosignal; |
3bd1e081 | 900 | } |
6d805429 | 901 | case LTTNG_CONSUMER_DATA_PENDING: |
53632229 | 902 | { |
c8f59ee5 | 903 | int32_t ret; |
6d805429 | 904 | uint64_t id = msg.u.data_pending.session_id; |
c8f59ee5 | 905 | |
6d805429 | 906 | DBG("Kernel consumer data pending command for id %" PRIu64, id); |
c8f59ee5 | 907 | |
6d805429 | 908 | ret = consumer_data_pending(id); |
c8f59ee5 | 909 | |
9ce5646a MD |
910 | health_code_update(); |
911 | ||
c8f59ee5 DG |
912 | /* Send back returned value to session daemon */ |
913 | ret = lttcomm_send_unix_sock(sock, &ret, sizeof(ret)); | |
914 | if (ret < 0) { | |
6d805429 | 915 | PERROR("send data pending ret code"); |
1803a064 | 916 | goto error_fatal; |
c8f59ee5 | 917 | } |
f50f23d9 DG |
918 | |
919 | /* | |
920 | * No need to send back a status message since the data pending | |
921 | * returned value is the response. | |
922 | */ | |
c8f59ee5 | 923 | break; |
53632229 | 924 | } |
6dc3064a DG |
925 | case LTTNG_CONSUMER_SNAPSHOT_CHANNEL: |
926 | { | |
3eb928aa MD |
927 | struct lttng_consumer_channel *channel; |
928 | uint64_t key = msg.u.snapshot_channel.key; | |
929 | ||
930 | channel = consumer_find_channel(key); | |
931 | if (!channel) { | |
932 | ERR("Channel %" PRIu64 " not found", key); | |
933 | ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND; | |
07b86b52 | 934 | } else { |
d2956687 | 935 | pthread_mutex_lock(&channel->lock); |
3eb928aa MD |
936 | if (msg.u.snapshot_channel.metadata == 1) { |
937 | ret = lttng_kconsumer_snapshot_metadata(channel, key, | |
938 | msg.u.snapshot_channel.pathname, | |
939 | msg.u.snapshot_channel.relayd_id, ctx); | |
940 | if (ret < 0) { | |
941 | ERR("Snapshot metadata failed"); | |
942 | ret_code = LTTCOMM_CONSUMERD_SNAPSHOT_FAILED; | |
943 | } | |
944 | } else { | |
945 | ret = lttng_kconsumer_snapshot_channel(channel, key, | |
946 | msg.u.snapshot_channel.pathname, | |
947 | msg.u.snapshot_channel.relayd_id, | |
948 | msg.u.snapshot_channel.nb_packets_per_stream, | |
949 | ctx); | |
950 | if (ret < 0) { | |
951 | ERR("Snapshot channel failed"); | |
952 | ret_code = LTTCOMM_CONSUMERD_SNAPSHOT_FAILED; | |
953 | } | |
07b86b52 | 954 | } |
d2956687 | 955 | pthread_mutex_unlock(&channel->lock); |
07b86b52 | 956 | } |
9ce5646a MD |
957 | health_code_update(); |
958 | ||
6dc3064a DG |
959 | ret = consumer_send_status_msg(sock, ret_code); |
960 | if (ret < 0) { | |
961 | /* Somehow, the session daemon is not responding anymore. */ | |
962 | goto end_nosignal; | |
963 | } | |
964 | break; | |
965 | } | |
07b86b52 JD |
966 | case LTTNG_CONSUMER_DESTROY_CHANNEL: |
967 | { | |
968 | uint64_t key = msg.u.destroy_channel.key; | |
969 | struct lttng_consumer_channel *channel; | |
970 | ||
971 | channel = consumer_find_channel(key); | |
972 | if (!channel) { | |
973 | ERR("Kernel consumer destroy channel %" PRIu64 " not found", key); | |
e462382a | 974 | ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND; |
07b86b52 JD |
975 | } |
976 | ||
9ce5646a MD |
977 | health_code_update(); |
978 | ||
07b86b52 JD |
979 | ret = consumer_send_status_msg(sock, ret_code); |
980 | if (ret < 0) { | |
981 | /* Somehow, the session daemon is not responding anymore. */ | |
a9d36096 | 982 | goto end_destroy_channel; |
07b86b52 JD |
983 | } |
984 | ||
9ce5646a MD |
985 | health_code_update(); |
986 | ||
15dc512a DG |
987 | /* Stop right now if no channel was found. */ |
988 | if (!channel) { | |
a9d36096 | 989 | goto end_destroy_channel; |
15dc512a DG |
990 | } |
991 | ||
07b86b52 JD |
992 | /* |
993 | * This command should ONLY be issued for channel with streams set in | |
994 | * no monitor mode. | |
995 | */ | |
996 | assert(!channel->monitor); | |
997 | ||
998 | /* | |
999 | * The refcount should ALWAYS be 0 in the case of a channel in no | |
1000 | * monitor mode. | |
1001 | */ | |
1002 | assert(!uatomic_sub_return(&channel->refcount, 1)); | |
1003 | ||
1004 | consumer_del_channel(channel); | |
a9d36096 | 1005 | end_destroy_channel: |
07b86b52 JD |
1006 | goto end_nosignal; |
1007 | } | |
fb83fe64 JD |
1008 | case LTTNG_CONSUMER_DISCARDED_EVENTS: |
1009 | { | |
66ab32be JD |
1010 | ssize_t ret; |
1011 | uint64_t count; | |
fb83fe64 JD |
1012 | struct lttng_consumer_channel *channel; |
1013 | uint64_t id = msg.u.discarded_events.session_id; | |
1014 | uint64_t key = msg.u.discarded_events.channel_key; | |
1015 | ||
e5742757 MD |
1016 | DBG("Kernel consumer discarded events command for session id %" |
1017 | PRIu64 ", channel key %" PRIu64, id, key); | |
1018 | ||
fb83fe64 JD |
1019 | channel = consumer_find_channel(key); |
1020 | if (!channel) { | |
1021 | ERR("Kernel consumer discarded events channel %" | |
1022 | PRIu64 " not found", key); | |
66ab32be | 1023 | count = 0; |
e5742757 | 1024 | } else { |
66ab32be | 1025 | count = channel->discarded_events; |
fb83fe64 JD |
1026 | } |
1027 | ||
fb83fe64 JD |
1028 | health_code_update(); |
1029 | ||
1030 | /* Send back returned value to session daemon */ | |
66ab32be | 1031 | ret = lttcomm_send_unix_sock(sock, &count, sizeof(count)); |
fb83fe64 JD |
1032 | if (ret < 0) { |
1033 | PERROR("send discarded events"); | |
1034 | goto error_fatal; | |
1035 | } | |
1036 | ||
1037 | break; | |
1038 | } | |
1039 | case LTTNG_CONSUMER_LOST_PACKETS: | |
1040 | { | |
66ab32be JD |
1041 | ssize_t ret; |
1042 | uint64_t count; | |
fb83fe64 JD |
1043 | struct lttng_consumer_channel *channel; |
1044 | uint64_t id = msg.u.lost_packets.session_id; | |
1045 | uint64_t key = msg.u.lost_packets.channel_key; | |
1046 | ||
e5742757 MD |
1047 | DBG("Kernel consumer lost packets command for session id %" |
1048 | PRIu64 ", channel key %" PRIu64, id, key); | |
1049 | ||
fb83fe64 JD |
1050 | channel = consumer_find_channel(key); |
1051 | if (!channel) { | |
1052 | ERR("Kernel consumer lost packets channel %" | |
1053 | PRIu64 " not found", key); | |
66ab32be | 1054 | count = 0; |
e5742757 | 1055 | } else { |
66ab32be | 1056 | count = channel->lost_packets; |
fb83fe64 JD |
1057 | } |
1058 | ||
fb83fe64 JD |
1059 | health_code_update(); |
1060 | ||
1061 | /* Send back returned value to session daemon */ | |
66ab32be | 1062 | ret = lttcomm_send_unix_sock(sock, &count, sizeof(count)); |
fb83fe64 JD |
1063 | if (ret < 0) { |
1064 | PERROR("send lost packets"); | |
1065 | goto error_fatal; | |
1066 | } | |
1067 | ||
1068 | break; | |
1069 | } | |
b3530820 JG |
1070 | case LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE: |
1071 | { | |
1072 | int channel_monitor_pipe; | |
1073 | ||
1074 | ret_code = LTTCOMM_CONSUMERD_SUCCESS; | |
1075 | /* Successfully received the command's type. */ | |
1076 | ret = consumer_send_status_msg(sock, ret_code); | |
1077 | if (ret < 0) { | |
1078 | goto error_fatal; | |
1079 | } | |
1080 | ||
1081 | ret = lttcomm_recv_fds_unix_sock(sock, &channel_monitor_pipe, | |
1082 | 1); | |
1083 | if (ret != sizeof(channel_monitor_pipe)) { | |
1084 | ERR("Failed to receive channel monitor pipe"); | |
1085 | goto error_fatal; | |
1086 | } | |
1087 | ||
1088 | DBG("Received channel monitor pipe (%d)", channel_monitor_pipe); | |
1089 | ret = consumer_timer_thread_set_channel_monitor_pipe( | |
1090 | channel_monitor_pipe); | |
1091 | if (!ret) { | |
1092 | int flags; | |
1093 | ||
1094 | ret_code = LTTCOMM_CONSUMERD_SUCCESS; | |
1095 | /* Set the pipe as non-blocking. */ | |
1096 | ret = fcntl(channel_monitor_pipe, F_GETFL, 0); | |
1097 | if (ret == -1) { | |
1098 | PERROR("fcntl get flags of the channel monitoring pipe"); | |
1099 | goto error_fatal; | |
1100 | } | |
1101 | flags = ret; | |
1102 | ||
1103 | ret = fcntl(channel_monitor_pipe, F_SETFL, | |
1104 | flags | O_NONBLOCK); | |
1105 | if (ret == -1) { | |
1106 | PERROR("fcntl set O_NONBLOCK flag of the channel monitoring pipe"); | |
1107 | goto error_fatal; | |
1108 | } | |
1109 | DBG("Channel monitor pipe set as non-blocking"); | |
1110 | } else { | |
1111 | ret_code = LTTCOMM_CONSUMERD_ALREADY_SET; | |
1112 | } | |
1113 | ret = consumer_send_status_msg(sock, ret_code); | |
1114 | if (ret < 0) { | |
1115 | goto error_fatal; | |
1116 | } | |
1117 | break; | |
1118 | } | |
b99a8d42 JD |
1119 | case LTTNG_CONSUMER_ROTATE_CHANNEL: |
1120 | { | |
92b7a7f8 MD |
1121 | struct lttng_consumer_channel *channel; |
1122 | uint64_t key = msg.u.rotate_channel.key; | |
b99a8d42 | 1123 | |
92b7a7f8 | 1124 | DBG("Consumer rotate channel %" PRIu64, key); |
b99a8d42 | 1125 | |
92b7a7f8 MD |
1126 | channel = consumer_find_channel(key); |
1127 | if (!channel) { | |
1128 | ERR("Channel %" PRIu64 " not found", key); | |
1129 | ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND; | |
1130 | } else { | |
1131 | /* | |
1132 | * Sample the rotate position of all the streams in this channel. | |
1133 | */ | |
1134 | ret = lttng_consumer_rotate_channel(channel, key, | |
92b7a7f8 MD |
1135 | msg.u.rotate_channel.relayd_id, |
1136 | msg.u.rotate_channel.metadata, | |
92b7a7f8 MD |
1137 | ctx); |
1138 | if (ret < 0) { | |
1139 | ERR("Rotate channel failed"); | |
1140 | ret_code = LTTCOMM_CONSUMERD_ROTATION_FAIL; | |
1141 | } | |
b99a8d42 | 1142 | |
92b7a7f8 MD |
1143 | health_code_update(); |
1144 | } | |
b99a8d42 JD |
1145 | ret = consumer_send_status_msg(sock, ret_code); |
1146 | if (ret < 0) { | |
1147 | /* Somehow, the session daemon is not responding anymore. */ | |
713bdd26 | 1148 | goto error_rotate_channel; |
b99a8d42 | 1149 | } |
92b7a7f8 MD |
1150 | if (channel) { |
1151 | /* Rotate the streams that are ready right now. */ | |
1152 | ret = lttng_consumer_rotate_ready_streams( | |
1153 | channel, key, ctx); | |
1154 | if (ret < 0) { | |
1155 | ERR("Rotate ready streams failed"); | |
1156 | } | |
b99a8d42 | 1157 | } |
b99a8d42 | 1158 | break; |
713bdd26 JG |
1159 | error_rotate_channel: |
1160 | goto end_nosignal; | |
b99a8d42 | 1161 | } |
d2956687 | 1162 | case LTTNG_CONSUMER_INIT: |
00fb02ac | 1163 | { |
d2956687 JG |
1164 | ret_code = lttng_consumer_init_command(ctx, |
1165 | msg.u.init.sessiond_uuid); | |
00fb02ac | 1166 | health_code_update(); |
00fb02ac JD |
1167 | ret = consumer_send_status_msg(sock, ret_code); |
1168 | if (ret < 0) { | |
1169 | /* Somehow, the session daemon is not responding anymore. */ | |
1170 | goto end_nosignal; | |
1171 | } | |
1172 | break; | |
1173 | } | |
d2956687 | 1174 | case LTTNG_CONSUMER_CREATE_TRACE_CHUNK: |
d88744a4 | 1175 | { |
d2956687 | 1176 | const struct lttng_credentials credentials = { |
e5add6d0 JG |
1177 | .uid = msg.u.create_trace_chunk.credentials.value.uid, |
1178 | .gid = msg.u.create_trace_chunk.credentials.value.gid, | |
d2956687 JG |
1179 | }; |
1180 | const bool is_local_trace = | |
1181 | !msg.u.create_trace_chunk.relayd_id.is_set; | |
1182 | const uint64_t relayd_id = | |
1183 | msg.u.create_trace_chunk.relayd_id.value; | |
1184 | const char *chunk_override_name = | |
1185 | *msg.u.create_trace_chunk.override_name ? | |
1186 | msg.u.create_trace_chunk.override_name : | |
1187 | NULL; | |
cbf53d23 | 1188 | struct lttng_directory_handle *chunk_directory_handle = NULL; |
d88744a4 | 1189 | |
d2956687 JG |
1190 | /* |
1191 | * The session daemon will only provide a chunk directory file | |
1192 | * descriptor for local traces. | |
1193 | */ | |
1194 | if (is_local_trace) { | |
1195 | int chunk_dirfd; | |
19990ed5 | 1196 | |
d2956687 JG |
1197 | /* Acnowledge the reception of the command. */ |
1198 | ret = consumer_send_status_msg(sock, | |
1199 | LTTCOMM_CONSUMERD_SUCCESS); | |
1200 | if (ret < 0) { | |
1201 | /* Somehow, the session daemon is not responding anymore. */ | |
1202 | goto end_nosignal; | |
1203 | } | |
92816cc3 | 1204 | |
d2956687 JG |
1205 | ret = lttcomm_recv_fds_unix_sock(sock, &chunk_dirfd, 1); |
1206 | if (ret != sizeof(chunk_dirfd)) { | |
1207 | ERR("Failed to receive trace chunk directory file descriptor"); | |
1208 | goto error_fatal; | |
1209 | } | |
92816cc3 | 1210 | |
d2956687 JG |
1211 | DBG("Received trace chunk directory fd (%d)", |
1212 | chunk_dirfd); | |
cbf53d23 | 1213 | chunk_directory_handle = lttng_directory_handle_create_from_dirfd( |
d2956687 | 1214 | chunk_dirfd); |
cbf53d23 | 1215 | if (!chunk_directory_handle) { |
d2956687 JG |
1216 | ERR("Failed to initialize chunk directory handle from directory file descriptor"); |
1217 | if (close(chunk_dirfd)) { | |
1218 | PERROR("Failed to close chunk directory file descriptor"); | |
1219 | } | |
1220 | goto error_fatal; | |
1221 | } | |
92816cc3 JG |
1222 | } |
1223 | ||
d2956687 JG |
1224 | ret_code = lttng_consumer_create_trace_chunk( |
1225 | !is_local_trace ? &relayd_id : NULL, | |
1226 | msg.u.create_trace_chunk.session_id, | |
1227 | msg.u.create_trace_chunk.chunk_id, | |
e5add6d0 JG |
1228 | (time_t) msg.u.create_trace_chunk |
1229 | .creation_timestamp, | |
d2956687 | 1230 | chunk_override_name, |
e5add6d0 JG |
1231 | msg.u.create_trace_chunk.credentials.is_set ? |
1232 | &credentials : | |
1233 | NULL, | |
cbf53d23 JG |
1234 | chunk_directory_handle); |
1235 | lttng_directory_handle_put(chunk_directory_handle); | |
d2956687 | 1236 | goto end_msg_sessiond; |
d88744a4 | 1237 | } |
d2956687 | 1238 | case LTTNG_CONSUMER_CLOSE_TRACE_CHUNK: |
a1ae2ea5 | 1239 | { |
bbc4768c JG |
1240 | enum lttng_trace_chunk_command_type close_command = |
1241 | msg.u.close_trace_chunk.close_command.value; | |
d2956687 JG |
1242 | const uint64_t relayd_id = |
1243 | msg.u.close_trace_chunk.relayd_id.value; | |
ecd1a12f MD |
1244 | struct lttcomm_consumer_close_trace_chunk_reply reply; |
1245 | char path[LTTNG_PATH_MAX]; | |
d2956687 JG |
1246 | |
1247 | ret_code = lttng_consumer_close_trace_chunk( | |
1248 | msg.u.close_trace_chunk.relayd_id.is_set ? | |
bbc4768c JG |
1249 | &relayd_id : |
1250 | NULL, | |
d2956687 JG |
1251 | msg.u.close_trace_chunk.session_id, |
1252 | msg.u.close_trace_chunk.chunk_id, | |
bbc4768c JG |
1253 | (time_t) msg.u.close_trace_chunk.close_timestamp, |
1254 | msg.u.close_trace_chunk.close_command.is_set ? | |
1255 | &close_command : | |
ecd1a12f MD |
1256 | NULL, path); |
1257 | reply.ret_code = ret_code; | |
1258 | reply.path_length = strlen(path) + 1; | |
1259 | ret = lttcomm_send_unix_sock(sock, &reply, sizeof(reply)); | |
1260 | if (ret != sizeof(reply)) { | |
1261 | goto error_fatal; | |
1262 | } | |
1263 | ret = lttcomm_send_unix_sock(sock, path, reply.path_length); | |
1264 | if (ret != reply.path_length) { | |
1265 | goto error_fatal; | |
1266 | } | |
1267 | goto end_nosignal; | |
3654ed19 | 1268 | } |
d2956687 | 1269 | case LTTNG_CONSUMER_TRACE_CHUNK_EXISTS: |
3654ed19 | 1270 | { |
d2956687 JG |
1271 | const uint64_t relayd_id = |
1272 | msg.u.trace_chunk_exists.relayd_id.value; | |
1273 | ||
1274 | ret_code = lttng_consumer_trace_chunk_exists( | |
1275 | msg.u.trace_chunk_exists.relayd_id.is_set ? | |
1276 | &relayd_id : NULL, | |
1277 | msg.u.trace_chunk_exists.session_id, | |
1278 | msg.u.trace_chunk_exists.chunk_id); | |
1279 | goto end_msg_sessiond; | |
a1ae2ea5 | 1280 | } |
3bd1e081 | 1281 | default: |
3f8e211f | 1282 | goto end_nosignal; |
3bd1e081 | 1283 | } |
3f8e211f | 1284 | |
3bd1e081 | 1285 | end_nosignal: |
4cbc1a04 DG |
1286 | /* |
1287 | * Return 1 to indicate success since the 0 value can be a socket | |
1288 | * shutdown during the recv() or send() call. | |
1289 | */ | |
c5c7998f JG |
1290 | ret = 1; |
1291 | goto end; | |
1292 | error_fatal: | |
1293 | /* This will issue a consumer stop. */ | |
1294 | ret = -1; | |
1295 | goto end; | |
d2956687 JG |
1296 | end_msg_sessiond: |
1297 | /* | |
1298 | * The returned value here is not useful since either way we'll return 1 to | |
1299 | * the caller because the session daemon socket management is done | |
1300 | * elsewhere. Returning a negative code or 0 will shutdown the consumer. | |
1301 | */ | |
1302 | ret = consumer_send_status_msg(sock, ret_code); | |
1303 | if (ret < 0) { | |
1304 | goto error_fatal; | |
1305 | } | |
c5c7998f JG |
1306 | ret = 1; |
1307 | end: | |
d2956687 | 1308 | health_code_update(); |
1803a064 | 1309 | rcu_read_unlock(); |
c5c7998f | 1310 | return ret; |
3bd1e081 | 1311 | } |
d41f73b7 | 1312 | |
309167d2 JD |
1313 | /* |
1314 | * Populate index values of a kernel stream. Values are set in big endian order. | |
1315 | * | |
1316 | * Return 0 on success or else a negative value. | |
1317 | */ | |
50adc264 | 1318 | static int get_index_values(struct ctf_packet_index *index, int infd) |
309167d2 JD |
1319 | { |
1320 | int ret; | |
85d1db9f JG |
1321 | uint64_t packet_size, content_size, timestamp_begin, timestamp_end, |
1322 | events_discarded, stream_id, stream_instance_id, | |
1323 | packet_seq_num; | |
309167d2 | 1324 | |
85d1db9f | 1325 | ret = kernctl_get_timestamp_begin(infd, ×tamp_begin); |
309167d2 JD |
1326 | if (ret < 0) { |
1327 | PERROR("kernctl_get_timestamp_begin"); | |
1328 | goto error; | |
1329 | } | |
309167d2 | 1330 | |
85d1db9f | 1331 | ret = kernctl_get_timestamp_end(infd, ×tamp_end); |
309167d2 JD |
1332 | if (ret < 0) { |
1333 | PERROR("kernctl_get_timestamp_end"); | |
1334 | goto error; | |
1335 | } | |
309167d2 | 1336 | |
85d1db9f | 1337 | ret = kernctl_get_events_discarded(infd, &events_discarded); |
309167d2 JD |
1338 | if (ret < 0) { |
1339 | PERROR("kernctl_get_events_discarded"); | |
1340 | goto error; | |
1341 | } | |
309167d2 | 1342 | |
85d1db9f | 1343 | ret = kernctl_get_content_size(infd, &content_size); |
309167d2 JD |
1344 | if (ret < 0) { |
1345 | PERROR("kernctl_get_content_size"); | |
1346 | goto error; | |
1347 | } | |
309167d2 | 1348 | |
85d1db9f | 1349 | ret = kernctl_get_packet_size(infd, &packet_size); |
309167d2 JD |
1350 | if (ret < 0) { |
1351 | PERROR("kernctl_get_packet_size"); | |
1352 | goto error; | |
1353 | } | |
309167d2 | 1354 | |
85d1db9f | 1355 | ret = kernctl_get_stream_id(infd, &stream_id); |
309167d2 JD |
1356 | if (ret < 0) { |
1357 | PERROR("kernctl_get_stream_id"); | |
1358 | goto error; | |
1359 | } | |
309167d2 | 1360 | |
85d1db9f | 1361 | ret = kernctl_get_instance_id(infd, &stream_instance_id); |
234cd636 | 1362 | if (ret < 0) { |
f0b03c22 MD |
1363 | if (ret == -ENOTTY) { |
1364 | /* Command not implemented by lttng-modules. */ | |
85d1db9f | 1365 | stream_instance_id = -1ULL; |
f0b03c22 MD |
1366 | } else { |
1367 | PERROR("kernctl_get_instance_id"); | |
1368 | goto error; | |
1369 | } | |
234cd636 | 1370 | } |
234cd636 | 1371 | |
85d1db9f | 1372 | ret = kernctl_get_sequence_number(infd, &packet_seq_num); |
234cd636 | 1373 | if (ret < 0) { |
f0b03c22 MD |
1374 | if (ret == -ENOTTY) { |
1375 | /* Command not implemented by lttng-modules. */ | |
85d1db9f | 1376 | packet_seq_num = -1ULL; |
f0b03c22 MD |
1377 | ret = 0; |
1378 | } else { | |
1379 | PERROR("kernctl_get_sequence_number"); | |
1380 | goto error; | |
1381 | } | |
234cd636 JD |
1382 | } |
1383 | index->packet_seq_num = htobe64(index->packet_seq_num); | |
1384 | ||
85d1db9f JG |
1385 | *index = (typeof(*index)) { |
1386 | .offset = index->offset, | |
1387 | .packet_size = htobe64(packet_size), | |
1388 | .content_size = htobe64(content_size), | |
1389 | .timestamp_begin = htobe64(timestamp_begin), | |
1390 | .timestamp_end = htobe64(timestamp_end), | |
1391 | .events_discarded = htobe64(events_discarded), | |
1392 | .stream_id = htobe64(stream_id), | |
1393 | .stream_instance_id = htobe64(stream_instance_id), | |
1394 | .packet_seq_num = htobe64(packet_seq_num), | |
1395 | }; | |
1396 | ||
309167d2 JD |
1397 | error: |
1398 | return ret; | |
1399 | } | |
94d49140 JD |
1400 | /* |
1401 | * Sync metadata meaning request them to the session daemon and snapshot to the | |
1402 | * metadata thread can consumer them. | |
1403 | * | |
1404 | * Metadata stream lock MUST be acquired. | |
1405 | * | |
1406 | * Return 0 if new metadatda is available, EAGAIN if the metadata stream | |
1407 | * is empty or a negative value on error. | |
1408 | */ | |
1409 | int lttng_kconsumer_sync_metadata(struct lttng_consumer_stream *metadata) | |
1410 | { | |
1411 | int ret; | |
1412 | ||
1413 | assert(metadata); | |
1414 | ||
1415 | ret = kernctl_buffer_flush(metadata->wait_fd); | |
1416 | if (ret < 0) { | |
1417 | ERR("Failed to flush kernel stream"); | |
1418 | goto end; | |
1419 | } | |
1420 | ||
1421 | ret = kernctl_snapshot(metadata->wait_fd); | |
1422 | if (ret < 0) { | |
32af2c95 | 1423 | if (ret != -EAGAIN) { |
94d49140 JD |
1424 | ERR("Sync metadata, taking kernel snapshot failed."); |
1425 | goto end; | |
1426 | } | |
1427 | DBG("Sync metadata, no new kernel metadata"); | |
1428 | /* No new metadata, exit. */ | |
1429 | ret = ENODATA; | |
1430 | goto end; | |
1431 | } | |
1432 | ||
1433 | end: | |
1434 | return ret; | |
1435 | } | |
309167d2 | 1436 | |
fb83fe64 JD |
1437 | static |
1438 | int update_stream_stats(struct lttng_consumer_stream *stream) | |
1439 | { | |
1440 | int ret; | |
1441 | uint64_t seq, discarded; | |
1442 | ||
1443 | ret = kernctl_get_sequence_number(stream->wait_fd, &seq); | |
1444 | if (ret < 0) { | |
f0b03c22 MD |
1445 | if (ret == -ENOTTY) { |
1446 | /* Command not implemented by lttng-modules. */ | |
1447 | seq = -1ULL; | |
a40a503f | 1448 | stream->sequence_number_unavailable = true; |
f0b03c22 MD |
1449 | } else { |
1450 | PERROR("kernctl_get_sequence_number"); | |
1451 | goto end; | |
1452 | } | |
fb83fe64 JD |
1453 | } |
1454 | ||
1455 | /* | |
1456 | * Start the sequence when we extract the first packet in case we don't | |
1457 | * start at 0 (for example if a consumer is not connected to the | |
1458 | * session immediately after the beginning). | |
1459 | */ | |
1460 | if (stream->last_sequence_number == -1ULL) { | |
1461 | stream->last_sequence_number = seq; | |
1462 | } else if (seq > stream->last_sequence_number) { | |
1463 | stream->chan->lost_packets += seq - | |
1464 | stream->last_sequence_number - 1; | |
1465 | } else { | |
1466 | /* seq <= last_sequence_number */ | |
1467 | ERR("Sequence number inconsistent : prev = %" PRIu64 | |
1468 | ", current = %" PRIu64, | |
1469 | stream->last_sequence_number, seq); | |
1470 | ret = -1; | |
1471 | goto end; | |
1472 | } | |
1473 | stream->last_sequence_number = seq; | |
1474 | ||
1475 | ret = kernctl_get_events_discarded(stream->wait_fd, &discarded); | |
1476 | if (ret < 0) { | |
1477 | PERROR("kernctl_get_events_discarded"); | |
1478 | goto end; | |
1479 | } | |
1480 | if (discarded < stream->last_discarded_events) { | |
1481 | /* | |
83f4233d MJ |
1482 | * Overflow has occurred. We assume only one wrap-around |
1483 | * has occurred. | |
fb83fe64 JD |
1484 | */ |
1485 | stream->chan->discarded_events += (1ULL << (CAA_BITS_PER_LONG - 1)) - | |
1486 | stream->last_discarded_events + discarded; | |
1487 | } else { | |
1488 | stream->chan->discarded_events += discarded - | |
1489 | stream->last_discarded_events; | |
1490 | } | |
1491 | stream->last_discarded_events = discarded; | |
1492 | ret = 0; | |
1493 | ||
1494 | end: | |
1495 | return ret; | |
1496 | } | |
1497 | ||
93ec662e JD |
1498 | /* |
1499 | * Check if the local version of the metadata stream matches with the version | |
1500 | * of the metadata stream in the kernel. If it was updated, set the reset flag | |
1501 | * on the stream. | |
1502 | */ | |
1503 | static | |
1504 | int metadata_stream_check_version(int infd, struct lttng_consumer_stream *stream) | |
1505 | { | |
1506 | int ret; | |
1507 | uint64_t cur_version; | |
1508 | ||
1509 | ret = kernctl_get_metadata_version(infd, &cur_version); | |
1510 | if (ret < 0) { | |
f0b03c22 MD |
1511 | if (ret == -ENOTTY) { |
1512 | /* | |
1513 | * LTTng-modules does not implement this | |
1514 | * command. | |
1515 | */ | |
1516 | ret = 0; | |
1517 | goto end; | |
1518 | } | |
93ec662e JD |
1519 | ERR("Failed to get the metadata version"); |
1520 | goto end; | |
1521 | } | |
1522 | ||
1523 | if (stream->metadata_version == cur_version) { | |
1524 | ret = 0; | |
1525 | goto end; | |
1526 | } | |
1527 | ||
1528 | DBG("New metadata version detected"); | |
1529 | stream->metadata_version = cur_version; | |
1530 | stream->reset_metadata_flag = 1; | |
1531 | ret = 0; | |
1532 | ||
1533 | end: | |
1534 | return ret; | |
1535 | } | |
1536 | ||
d41f73b7 MD |
1537 | /* |
1538 | * Consume data on a file descriptor and write it on a trace file. | |
d2956687 | 1539 | * The stream and channel locks must be held by the caller. |
d41f73b7 | 1540 | */ |
4078b776 | 1541 | ssize_t lttng_kconsumer_read_subbuffer(struct lttng_consumer_stream *stream, |
d2956687 | 1542 | struct lttng_consumer_local_data *ctx) |
d41f73b7 | 1543 | { |
1d4dfdef | 1544 | unsigned long len, subbuf_size, padding; |
02d02e31 | 1545 | int err, write_index = 1, rotation_ret; |
4078b776 | 1546 | ssize_t ret = 0; |
d41f73b7 | 1547 | int infd = stream->wait_fd; |
d3faab47 | 1548 | struct ctf_packet_index index = {}; |
d41f73b7 MD |
1549 | |
1550 | DBG("In read_subbuffer (infd : %d)", infd); | |
309167d2 | 1551 | |
02d02e31 JD |
1552 | /* |
1553 | * If the stream was flagged to be ready for rotation before we extract the | |
1554 | * next packet, rotate it now. | |
1555 | */ | |
1556 | if (stream->rotate_ready) { | |
1557 | DBG("Rotate stream before extracting data"); | |
d2956687 | 1558 | rotation_ret = lttng_consumer_rotate_stream(ctx, stream); |
02d02e31 JD |
1559 | if (rotation_ret < 0) { |
1560 | ERR("Stream rotation error"); | |
1561 | ret = -1; | |
1562 | goto error; | |
1563 | } | |
1564 | } | |
1565 | ||
d41f73b7 MD |
1566 | /* Get the next subbuffer */ |
1567 | err = kernctl_get_next_subbuf(infd); | |
1568 | if (err != 0) { | |
d41f73b7 MD |
1569 | /* |
1570 | * This is a debug message even for single-threaded consumer, | |
1571 | * because poll() have more relaxed criterions than get subbuf, | |
1572 | * so get_subbuf may fail for short race windows where poll() | |
1573 | * would issue wakeups. | |
1574 | */ | |
1575 | DBG("Reserving sub buffer failed (everything is normal, " | |
1576 | "it is due to concurrency)"); | |
32af2c95 | 1577 | ret = err; |
02d02e31 | 1578 | goto error; |
d41f73b7 MD |
1579 | } |
1580 | ||
1d4dfdef DG |
1581 | /* Get the full subbuffer size including padding */ |
1582 | err = kernctl_get_padded_subbuf_size(infd, &len); | |
1583 | if (err != 0) { | |
5a510c9f | 1584 | PERROR("Getting sub-buffer len failed."); |
8265f19e MD |
1585 | err = kernctl_put_subbuf(infd); |
1586 | if (err != 0) { | |
32af2c95 | 1587 | if (err == -EFAULT) { |
5a510c9f | 1588 | PERROR("Error in unreserving sub buffer\n"); |
32af2c95 | 1589 | } else if (err == -EIO) { |
8265f19e | 1590 | /* Should never happen with newer LTTng versions */ |
5a510c9f | 1591 | PERROR("Reader has been pushed by the writer, last sub-buffer corrupted."); |
8265f19e | 1592 | } |
32af2c95 | 1593 | ret = err; |
02d02e31 | 1594 | goto error; |
8265f19e | 1595 | } |
32af2c95 | 1596 | ret = err; |
02d02e31 | 1597 | goto error; |
1d4dfdef DG |
1598 | } |
1599 | ||
1c20f0e2 | 1600 | if (!stream->metadata_flag) { |
309167d2 JD |
1601 | ret = get_index_values(&index, infd); |
1602 | if (ret < 0) { | |
8265f19e MD |
1603 | err = kernctl_put_subbuf(infd); |
1604 | if (err != 0) { | |
32af2c95 | 1605 | if (err == -EFAULT) { |
5a510c9f | 1606 | PERROR("Error in unreserving sub buffer\n"); |
32af2c95 | 1607 | } else if (err == -EIO) { |
8265f19e | 1608 | /* Should never happen with newer LTTng versions */ |
5a510c9f | 1609 | PERROR("Reader has been pushed by the writer, last sub-buffer corrupted."); |
8265f19e | 1610 | } |
32af2c95 | 1611 | ret = err; |
02d02e31 | 1612 | goto error; |
8265f19e | 1613 | } |
02d02e31 | 1614 | goto error; |
309167d2 | 1615 | } |
fb83fe64 JD |
1616 | ret = update_stream_stats(stream); |
1617 | if (ret < 0) { | |
7b87473d MD |
1618 | err = kernctl_put_subbuf(infd); |
1619 | if (err != 0) { | |
1620 | if (err == -EFAULT) { | |
1621 | PERROR("Error in unreserving sub buffer\n"); | |
1622 | } else if (err == -EIO) { | |
1623 | /* Should never happen with newer LTTng versions */ | |
1624 | PERROR("Reader has been pushed by the writer, last sub-buffer corrupted."); | |
1625 | } | |
1626 | ret = err; | |
02d02e31 | 1627 | goto error; |
7b87473d | 1628 | } |
02d02e31 | 1629 | goto error; |
fb83fe64 | 1630 | } |
1c20f0e2 JD |
1631 | } else { |
1632 | write_index = 0; | |
93ec662e JD |
1633 | ret = metadata_stream_check_version(infd, stream); |
1634 | if (ret < 0) { | |
7b87473d MD |
1635 | err = kernctl_put_subbuf(infd); |
1636 | if (err != 0) { | |
1637 | if (err == -EFAULT) { | |
1638 | PERROR("Error in unreserving sub buffer\n"); | |
1639 | } else if (err == -EIO) { | |
1640 | /* Should never happen with newer LTTng versions */ | |
1641 | PERROR("Reader has been pushed by the writer, last sub-buffer corrupted."); | |
1642 | } | |
1643 | ret = err; | |
02d02e31 | 1644 | goto error; |
7b87473d | 1645 | } |
02d02e31 | 1646 | goto error; |
93ec662e | 1647 | } |
309167d2 JD |
1648 | } |
1649 | ||
ffe60014 | 1650 | switch (stream->chan->output) { |
07b86b52 | 1651 | case CONSUMER_CHANNEL_SPLICE: |
1d4dfdef DG |
1652 | /* |
1653 | * XXX: The lttng-modules splice "actor" does not handle copying | |
1654 | * partial pages hence only using the subbuffer size without the | |
1655 | * padding makes the splice fail. | |
1656 | */ | |
1657 | subbuf_size = len; | |
1658 | padding = 0; | |
1659 | ||
1660 | /* splice the subbuffer to the tracefile */ | |
91dfef6e | 1661 | ret = lttng_consumer_on_read_subbuffer_splice(ctx, stream, subbuf_size, |
309167d2 | 1662 | padding, &index); |
91dfef6e DG |
1663 | /* |
1664 | * XXX: Splice does not support network streaming so the return value | |
1665 | * is simply checked against subbuf_size and not like the mmap() op. | |
1666 | */ | |
1d4dfdef DG |
1667 | if (ret != subbuf_size) { |
1668 | /* | |
1669 | * display the error but continue processing to try | |
1670 | * to release the subbuffer | |
1671 | */ | |
1672 | ERR("Error splicing to tracefile (ret: %zd != len: %lu)", | |
1673 | ret, subbuf_size); | |
309167d2 | 1674 | write_index = 0; |
1d4dfdef DG |
1675 | } |
1676 | break; | |
07b86b52 | 1677 | case CONSUMER_CHANNEL_MMAP: |
1d4dfdef DG |
1678 | /* Get subbuffer size without padding */ |
1679 | err = kernctl_get_subbuf_size(infd, &subbuf_size); | |
1680 | if (err != 0) { | |
5a510c9f | 1681 | PERROR("Getting sub-buffer len failed."); |
8265f19e MD |
1682 | err = kernctl_put_subbuf(infd); |
1683 | if (err != 0) { | |
32af2c95 | 1684 | if (err == -EFAULT) { |
5a510c9f | 1685 | PERROR("Error in unreserving sub buffer\n"); |
32af2c95 | 1686 | } else if (err == -EIO) { |
8265f19e | 1687 | /* Should never happen with newer LTTng versions */ |
5a510c9f | 1688 | PERROR("Reader has been pushed by the writer, last sub-buffer corrupted."); |
8265f19e | 1689 | } |
32af2c95 | 1690 | ret = err; |
02d02e31 | 1691 | goto error; |
8265f19e | 1692 | } |
32af2c95 | 1693 | ret = err; |
02d02e31 | 1694 | goto error; |
1d4dfdef | 1695 | } |
47e81c02 | 1696 | |
1d4dfdef DG |
1697 | /* Make sure the tracer is not gone mad on us! */ |
1698 | assert(len >= subbuf_size); | |
1699 | ||
1700 | padding = len - subbuf_size; | |
1701 | ||
1702 | /* write the subbuffer to the tracefile */ | |
91dfef6e | 1703 | ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, subbuf_size, |
309167d2 | 1704 | padding, &index); |
91dfef6e DG |
1705 | /* |
1706 | * The mmap operation should write subbuf_size amount of data when | |
1707 | * network streaming or the full padding (len) size when we are _not_ | |
1708 | * streaming. | |
1709 | */ | |
d88aee68 DG |
1710 | if ((ret != subbuf_size && stream->net_seq_idx != (uint64_t) -1ULL) || |
1711 | (ret != len && stream->net_seq_idx == (uint64_t) -1ULL)) { | |
1d4dfdef | 1712 | /* |
91dfef6e | 1713 | * Display the error but continue processing to try to release the |
2336629e DG |
1714 | * subbuffer. This is a DBG statement since this is possible to |
1715 | * happen without being a critical error. | |
1d4dfdef | 1716 | */ |
2336629e | 1717 | DBG("Error writing to tracefile " |
91dfef6e DG |
1718 | "(ret: %zd != len: %lu != subbuf_size: %lu)", |
1719 | ret, len, subbuf_size); | |
309167d2 | 1720 | write_index = 0; |
1d4dfdef DG |
1721 | } |
1722 | break; | |
1723 | default: | |
1724 | ERR("Unknown output method"); | |
56591bac | 1725 | ret = -EPERM; |
d41f73b7 MD |
1726 | } |
1727 | ||
1728 | err = kernctl_put_next_subbuf(infd); | |
1729 | if (err != 0) { | |
32af2c95 | 1730 | if (err == -EFAULT) { |
5a510c9f | 1731 | PERROR("Error in unreserving sub buffer\n"); |
32af2c95 | 1732 | } else if (err == -EIO) { |
d41f73b7 | 1733 | /* Should never happen with newer LTTng versions */ |
5a510c9f | 1734 | PERROR("Reader has been pushed by the writer, last sub-buffer corrupted."); |
d41f73b7 | 1735 | } |
32af2c95 | 1736 | ret = err; |
02d02e31 | 1737 | goto error; |
d41f73b7 MD |
1738 | } |
1739 | ||
309167d2 | 1740 | /* Write index if needed. */ |
1c20f0e2 | 1741 | if (!write_index) { |
02d02e31 | 1742 | goto rotate; |
1c20f0e2 JD |
1743 | } |
1744 | ||
94d49140 JD |
1745 | if (stream->chan->live_timer_interval && !stream->metadata_flag) { |
1746 | /* | |
1747 | * In live, block until all the metadata is sent. | |
1748 | */ | |
c585821b MD |
1749 | pthread_mutex_lock(&stream->metadata_timer_lock); |
1750 | assert(!stream->missed_metadata_flush); | |
1751 | stream->waiting_on_metadata = true; | |
1752 | pthread_mutex_unlock(&stream->metadata_timer_lock); | |
1753 | ||
94d49140 | 1754 | err = consumer_stream_sync_metadata(ctx, stream->session_id); |
c585821b MD |
1755 | |
1756 | pthread_mutex_lock(&stream->metadata_timer_lock); | |
1757 | stream->waiting_on_metadata = false; | |
1758 | if (stream->missed_metadata_flush) { | |
1759 | stream->missed_metadata_flush = false; | |
1760 | pthread_mutex_unlock(&stream->metadata_timer_lock); | |
1761 | (void) consumer_flush_kernel_index(stream); | |
1762 | } else { | |
1763 | pthread_mutex_unlock(&stream->metadata_timer_lock); | |
1764 | } | |
94d49140 | 1765 | if (err < 0) { |
02d02e31 | 1766 | goto error; |
94d49140 JD |
1767 | } |
1768 | } | |
1769 | ||
1c20f0e2 JD |
1770 | err = consumer_stream_write_index(stream, &index); |
1771 | if (err < 0) { | |
02d02e31 | 1772 | goto error; |
309167d2 JD |
1773 | } |
1774 | ||
02d02e31 JD |
1775 | rotate: |
1776 | /* | |
1777 | * After extracting the packet, we check if the stream is now ready to be | |
1778 | * rotated and perform the action immediately. | |
1779 | */ | |
1780 | rotation_ret = lttng_consumer_stream_is_rotate_ready(stream); | |
1781 | if (rotation_ret == 1) { | |
d2956687 | 1782 | rotation_ret = lttng_consumer_rotate_stream(ctx, stream); |
02d02e31 JD |
1783 | if (rotation_ret < 0) { |
1784 | ERR("Stream rotation error"); | |
1785 | ret = -1; | |
1786 | goto error; | |
1787 | } | |
1788 | } else if (rotation_ret < 0) { | |
1789 | ERR("Checking if stream is ready to rotate"); | |
1790 | ret = -1; | |
1791 | goto error; | |
1792 | } | |
1793 | ||
1794 | error: | |
d41f73b7 MD |
1795 | return ret; |
1796 | } | |
1797 | ||
1798 | int lttng_kconsumer_on_recv_stream(struct lttng_consumer_stream *stream) | |
1799 | { | |
1800 | int ret; | |
ffe60014 DG |
1801 | |
1802 | assert(stream); | |
1803 | ||
2bba9e53 | 1804 | /* |
d2956687 JG |
1805 | * Don't create anything if this is set for streaming or if there is |
1806 | * no current trace chunk on the parent channel. | |
2bba9e53 | 1807 | */ |
d2956687 JG |
1808 | if (stream->net_seq_idx == (uint64_t) -1ULL && stream->chan->monitor && |
1809 | stream->chan->trace_chunk) { | |
1810 | ret = consumer_stream_create_output_files(stream, true); | |
1811 | if (ret) { | |
fe4477ee JD |
1812 | goto error; |
1813 | } | |
ffe60014 | 1814 | } |
d41f73b7 | 1815 | |
d41f73b7 MD |
1816 | if (stream->output == LTTNG_EVENT_MMAP) { |
1817 | /* get the len of the mmap region */ | |
1818 | unsigned long mmap_len; | |
1819 | ||
1820 | ret = kernctl_get_mmap_len(stream->wait_fd, &mmap_len); | |
1821 | if (ret != 0) { | |
ffe60014 | 1822 | PERROR("kernctl_get_mmap_len"); |
d41f73b7 MD |
1823 | goto error_close_fd; |
1824 | } | |
1825 | stream->mmap_len = (size_t) mmap_len; | |
1826 | ||
ffe60014 DG |
1827 | stream->mmap_base = mmap(NULL, stream->mmap_len, PROT_READ, |
1828 | MAP_PRIVATE, stream->wait_fd, 0); | |
d41f73b7 | 1829 | if (stream->mmap_base == MAP_FAILED) { |
ffe60014 | 1830 | PERROR("Error mmaping"); |
d41f73b7 MD |
1831 | ret = -1; |
1832 | goto error_close_fd; | |
1833 | } | |
1834 | } | |
1835 | ||
1836 | /* we return 0 to let the library handle the FD internally */ | |
1837 | return 0; | |
1838 | ||
1839 | error_close_fd: | |
2f225ce2 | 1840 | if (stream->out_fd >= 0) { |
d41f73b7 MD |
1841 | int err; |
1842 | ||
1843 | err = close(stream->out_fd); | |
1844 | assert(!err); | |
2f225ce2 | 1845 | stream->out_fd = -1; |
d41f73b7 MD |
1846 | } |
1847 | error: | |
1848 | return ret; | |
1849 | } | |
1850 | ||
ca22feea DG |
1851 | /* |
1852 | * Check if data is still being extracted from the buffers for a specific | |
4e9a4686 DG |
1853 | * stream. Consumer data lock MUST be acquired before calling this function |
1854 | * and the stream lock. | |
ca22feea | 1855 | * |
6d805429 | 1856 | * Return 1 if the traced data are still getting read else 0 meaning that the |
ca22feea DG |
1857 | * data is available for trace viewer reading. |
1858 | */ | |
6d805429 | 1859 | int lttng_kconsumer_data_pending(struct lttng_consumer_stream *stream) |
ca22feea DG |
1860 | { |
1861 | int ret; | |
1862 | ||
1863 | assert(stream); | |
1864 | ||
873b9e9a MD |
1865 | if (stream->endpoint_status != CONSUMER_ENDPOINT_ACTIVE) { |
1866 | ret = 0; | |
1867 | goto end; | |
1868 | } | |
1869 | ||
ca22feea DG |
1870 | ret = kernctl_get_next_subbuf(stream->wait_fd); |
1871 | if (ret == 0) { | |
1872 | /* There is still data so let's put back this subbuffer. */ | |
1873 | ret = kernctl_put_subbuf(stream->wait_fd); | |
1874 | assert(ret == 0); | |
6d805429 | 1875 | ret = 1; /* Data is pending */ |
4e9a4686 | 1876 | goto end; |
ca22feea DG |
1877 | } |
1878 | ||
6d805429 DG |
1879 | /* Data is NOT pending and ready to be read. */ |
1880 | ret = 0; | |
ca22feea | 1881 | |
6efae65e DG |
1882 | end: |
1883 | return ret; | |
ca22feea | 1884 | } |