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