Fix: consumerd: live client receives incomplete metadata
[lttng-tools.git] / src / common / kernel-consumer / kernel-consumer.c
CommitLineData
3bd1e081
MD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
d14d33bf
AM
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
3bd1e081
MD
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
d14d33bf
AM
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3bd1e081
MD
17 */
18
6c1c0768 19#define _LGPL_SOURCE
3bd1e081 20#include <assert.h>
3bd1e081
MD
21#include <poll.h>
22#include <pthread.h>
23#include <stdlib.h>
24#include <string.h>
25#include <sys/mman.h>
26#include <sys/socket.h>
27#include <sys/types.h>
77c7c900 28#include <inttypes.h>
3bd1e081 29#include <unistd.h>
dbb5dfe6 30#include <sys/stat.h>
d6ef77b3 31#include <stdint.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>
29d1a7ae
JG
46#include <common/optional.h>
47#include <common/buffer-view.h>
48#include <common/consumer/consumer.h>
d6ef77b3 49#include <common/consumer/metadata-bucket.h>
0857097f 50
10a8a223 51#include "kernel-consumer.h"
3bd1e081
MD
52
53extern struct lttng_consumer_global_data consumer_data;
54extern int consumer_poll_timeout;
55extern volatile int consumer_quit;
56
3bd1e081
MD
57/*
58 * Take a snapshot for a specific fd
59 *
60 * Returns 0 on success, < 0 on error
61 */
ffe60014 62int lttng_kconsumer_take_snapshot(struct lttng_consumer_stream *stream)
3bd1e081
MD
63{
64 int ret = 0;
65 int infd = stream->wait_fd;
66
67 ret = kernctl_snapshot(infd);
ee6bb36a
JD
68 /*
69 * -EAGAIN is not an error, it just means that there is no data to
70 * be read.
71 */
72 if (ret != 0 && ret != -EAGAIN) {
5a510c9f 73 PERROR("Getting sub-buffer snapshot.");
3bd1e081
MD
74 }
75
76 return ret;
77}
78
79/*
80 * Get the produced position
81 *
82 * Returns 0 on success, < 0 on error
83 */
ffe60014 84int lttng_kconsumer_get_produced_snapshot(struct lttng_consumer_stream *stream,
3bd1e081
MD
85 unsigned long *pos)
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 */
103int lttng_kconsumer_get_consumed_snapshot(struct lttng_consumer_stream *stream,
104 unsigned long *pos)
105{
106 int ret;
107 int infd = stream->wait_fd;
108
109 ret = kernctl_snapshot_get_consumed(infd, pos);
110 if (ret != 0) {
5a510c9f 111 PERROR("kernctl_snapshot_get_consumed");
07b86b52
JD
112 }
113
114 return ret;
115}
116
1fdb9a78
JG
117static
118int get_current_subbuf_addr(struct lttng_consumer_stream *stream,
119 const char **addr)
120{
121 int ret;
122 unsigned long mmap_offset;
123 const char *mmap_base = stream->mmap_base;
124
125 ret = kernctl_get_mmap_read_offset(stream->wait_fd, &mmap_offset);
126 if (ret < 0) {
127 PERROR("Failed to get mmap read offset");
128 goto error;
129 }
130
131 *addr = mmap_base + mmap_offset;
132error:
133 return ret;
134}
135
07b86b52
JD
136/*
137 * Take a snapshot of all the stream of a channel
138 *
139 * Returns 0 on success, < 0 on error
140 */
141int lttng_kconsumer_snapshot_channel(uint64_t key, char *path,
d07ceecd 142 uint64_t relayd_id, uint64_t nb_packets_per_stream,
5c786ded 143 struct lttng_consumer_local_data *ctx)
07b86b52
JD
144{
145 int ret;
07b86b52
JD
146 struct lttng_consumer_channel *channel;
147 struct lttng_consumer_stream *stream;
148
6a00837f 149 DBG("Kernel consumer snapshot channel %" PRIu64, key);
07b86b52
JD
150
151 rcu_read_lock();
152
153 channel = consumer_find_channel(key);
154 if (!channel) {
6a00837f 155 ERR("No channel found for key %" PRIu64, key);
07b86b52
JD
156 ret = -1;
157 goto end;
158 }
159
160 /* Splice is not supported yet for channel snapshot. */
161 if (channel->output != CONSUMER_CHANNEL_MMAP) {
162 ERR("Unsupported output %d", channel->output);
163 ret = -1;
164 goto end;
165 }
166
10a50311 167 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
923333cd 168 unsigned long consumed_pos, produced_pos;
9ce5646a
MD
169
170 health_code_update();
171
07b86b52
JD
172 /*
173 * Lock stream because we are about to change its state.
174 */
175 pthread_mutex_lock(&stream->lock);
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 */
6d40f8fa 181 stream->relayd_id = relayd_id;
07b86b52
JD
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
JD
189 } else {
190 ret = utils_create_stream_file(path, stream->name,
10a50311
JD
191 stream->chan->tracefile_size,
192 stream->tracefile_count_current,
309167d2 193 stream->uid, stream->gid, NULL);
07b86b52
JD
194 if (ret < 0) {
195 ERR("utils_create_stream_file");
196 goto end_unlock;
197 }
198
199 stream->out_fd = ret;
200 stream->tracefile_size_current = 0;
201
81ea21bf
MD
202 DBG("Kernel consumer snapshot stream %s/%s (%" PRIu64 ")",
203 path, stream->name, stream->key);
07b86b52 204 }
601262d6
JD
205 if (relayd_id != -1ULL) {
206 ret = consumer_send_relayd_streams_sent(relayd_id);
207 if (ret < 0) {
208 ERR("sending streams sent to relayd");
209 goto end_unlock;
210 }
b7fa98e6 211 channel->streams_sent_to_relayd = true;
a4baae1b 212 }
07b86b52 213
612b8ed8 214 ret = kernctl_buffer_flush_empty(stream->wait_fd);
07b86b52 215 if (ret < 0) {
612b8ed8
MD
216 /*
217 * Doing a buffer flush which does not take into
218 * account empty packets. This is not perfect
219 * for stream intersection, but required as a
220 * fall-back when "flush_empty" is not
221 * implemented by lttng-modules.
222 */
223 ret = kernctl_buffer_flush(stream->wait_fd);
224 if (ret < 0) {
225 ERR("Failed to flush kernel stream");
226 goto end_unlock;
227 }
07b86b52
JD
228 goto end_unlock;
229 }
230
231 ret = lttng_kconsumer_take_snapshot(stream);
232 if (ret < 0) {
233 ERR("Taking kernel snapshot");
234 goto end_unlock;
235 }
236
237 ret = lttng_kconsumer_get_produced_snapshot(stream, &produced_pos);
238 if (ret < 0) {
239 ERR("Produced kernel snapshot position");
240 goto end_unlock;
241 }
242
243 ret = lttng_kconsumer_get_consumed_snapshot(stream, &consumed_pos);
244 if (ret < 0) {
245 ERR("Consumerd kernel snapshot position");
246 goto end_unlock;
247 }
248
249 if (stream->max_sb_size == 0) {
250 ret = kernctl_get_max_subbuf_size(stream->wait_fd,
251 &stream->max_sb_size);
252 if (ret < 0) {
253 ERR("Getting kernel max_sb_size");
254 goto end_unlock;
255 }
256 }
257
d07ceecd
MD
258 consumed_pos = consumer_get_consume_start_pos(consumed_pos,
259 produced_pos, nb_packets_per_stream,
260 stream->max_sb_size);
5c786ded 261
07b86b52
JD
262 while (consumed_pos < produced_pos) {
263 ssize_t read_len;
264 unsigned long len, padded_len;
1fdb9a78 265 const char *subbuf_addr;
ace0e591 266 struct lttng_buffer_view subbuf_view;
07b86b52 267
9ce5646a 268 health_code_update();
07b86b52
JD
269 DBG("Kernel consumer taking snapshot at pos %lu", consumed_pos);
270
271 ret = kernctl_get_subbuf(stream->wait_fd, &consumed_pos);
272 if (ret < 0) {
32af2c95 273 if (ret != -EAGAIN) {
07b86b52
JD
274 PERROR("kernctl_get_subbuf snapshot");
275 goto end_unlock;
276 }
277 DBG("Kernel consumer get subbuf failed. Skipping it.");
278 consumed_pos += stream->max_sb_size;
6e1f2e92 279 stream->chan->lost_packets++;
07b86b52
JD
280 continue;
281 }
282
283 ret = kernctl_get_subbuf_size(stream->wait_fd, &len);
284 if (ret < 0) {
285 ERR("Snapshot kernctl_get_subbuf_size");
29decac3 286 goto error_put_subbuf;
07b86b52
JD
287 }
288
289 ret = kernctl_get_padded_subbuf_size(stream->wait_fd, &padded_len);
290 if (ret < 0) {
291 ERR("Snapshot kernctl_get_padded_subbuf_size");
29decac3 292 goto error_put_subbuf;
07b86b52
JD
293 }
294
1fdb9a78
JG
295 ret = get_current_subbuf_addr(stream, &subbuf_addr);
296 if (ret) {
297 goto error_put_subbuf;
298 }
299
ace0e591
JG
300 subbuf_view = lttng_buffer_view_init(
301 subbuf_addr, 0, padded_len);
d6ef77b3 302 read_len = lttng_consumer_on_read_subbuffer_mmap(
ace0e591 303 stream, &subbuf_view,
29d1a7ae 304 padded_len - len);
07b86b52 305 /*
29decac3
DG
306 * We write the padded len in local tracefiles but the data len
307 * when using a relay. Display the error but continue processing
308 * to try to release the subbuffer.
07b86b52
JD
309 */
310 if (relayd_id != (uint64_t) -1ULL) {
311 if (read_len != len) {
312 ERR("Error sending to the relay (ret: %zd != len: %lu)",
313 read_len, len);
314 }
315 } else {
316 if (read_len != padded_len) {
317 ERR("Error writing to tracefile (ret: %zd != len: %lu)",
318 read_len, padded_len);
319 }
320 }
321
322 ret = kernctl_put_subbuf(stream->wait_fd);
323 if (ret < 0) {
324 ERR("Snapshot kernctl_put_subbuf");
325 goto end_unlock;
326 }
327 consumed_pos += stream->max_sb_size;
328 }
329
330 if (relayd_id == (uint64_t) -1ULL) {
fdf9986c
MD
331 if (stream->out_fd >= 0) {
332 ret = close(stream->out_fd);
333 if (ret < 0) {
334 PERROR("Kernel consumer snapshot close out_fd");
335 goto end_unlock;
336 }
337 stream->out_fd = -1;
07b86b52 338 }
07b86b52
JD
339 } else {
340 close_relayd_stream(stream);
6d40f8fa 341 stream->relayd_id = (uint64_t) -1ULL;
07b86b52
JD
342 }
343 pthread_mutex_unlock(&stream->lock);
344 }
345
346 /* All good! */
347 ret = 0;
348 goto end;
349
29decac3
DG
350error_put_subbuf:
351 ret = kernctl_put_subbuf(stream->wait_fd);
352 if (ret < 0) {
353 ERR("Snapshot kernctl_put_subbuf error path");
354 }
07b86b52
JD
355end_unlock:
356 pthread_mutex_unlock(&stream->lock);
357end:
358 rcu_read_unlock();
359 return ret;
360}
361
362/*
363 * Read the whole metadata available for a snapshot.
364 *
365 * Returns 0 on success, < 0 on error
366 */
a34de389 367static int lttng_kconsumer_snapshot_metadata(uint64_t key, char *path,
e2039c7a 368 uint64_t relayd_id, struct lttng_consumer_local_data *ctx)
07b86b52 369{
d771f832
DG
370 int ret, use_relayd = 0;
371 ssize_t ret_read;
07b86b52
JD
372 struct lttng_consumer_channel *metadata_channel;
373 struct lttng_consumer_stream *metadata_stream;
d771f832
DG
374
375 assert(ctx);
07b86b52
JD
376
377 DBG("Kernel consumer snapshot metadata with key %" PRIu64 " at path %s",
378 key, path);
379
380 rcu_read_lock();
381
382 metadata_channel = consumer_find_channel(key);
383 if (!metadata_channel) {
d771f832 384 ERR("Kernel snapshot metadata not found for key %" PRIu64, key);
07b86b52 385 ret = -1;
a34de389 386 goto error_no_channel;
07b86b52
JD
387 }
388
389 metadata_stream = metadata_channel->metadata_stream;
390 assert(metadata_stream);
a34de389 391 pthread_mutex_lock(&metadata_stream->lock);
07b86b52 392
d771f832 393 /* Flag once that we have a valid relayd for the stream. */
e2039c7a 394 if (relayd_id != (uint64_t) -1ULL) {
d771f832
DG
395 use_relayd = 1;
396 }
397
398 if (use_relayd) {
10a50311 399 ret = consumer_send_relayd_stream(metadata_stream, path);
e2039c7a 400 if (ret < 0) {
a34de389 401 goto error_snapshot;
e2039c7a 402 }
e2039c7a
JD
403 } else {
404 ret = utils_create_stream_file(path, metadata_stream->name,
405 metadata_stream->chan->tracefile_size,
406 metadata_stream->tracefile_count_current,
309167d2 407 metadata_stream->uid, metadata_stream->gid, NULL);
e2039c7a 408 if (ret < 0) {
a34de389 409 goto error_snapshot;
e2039c7a
JD
410 }
411 metadata_stream->out_fd = ret;
07b86b52 412 }
07b86b52 413
d771f832 414 do {
9ce5646a
MD
415 health_code_update();
416
29d1a7ae 417 ret_read = lttng_consumer_read_subbuffer(metadata_stream, ctx, true);
d771f832 418 if (ret_read < 0) {
56591bac 419 if (ret_read != -EAGAIN) {
6a00837f 420 ERR("Kernel snapshot reading metadata subbuffer (ret: %zd)",
d771f832 421 ret_read);
a34de389
JG
422 ret = ret_read;
423 goto error_snapshot;
07b86b52 424 }
d771f832 425 /* ret_read is negative at this point so we will exit the loop. */
07b86b52
JD
426 continue;
427 }
d771f832 428 } while (ret_read >= 0);
07b86b52 429
d771f832
DG
430 if (use_relayd) {
431 close_relayd_stream(metadata_stream);
6d40f8fa 432 metadata_stream->relayd_id = (uint64_t) -1ULL;
d771f832 433 } else {
fdf9986c
MD
434 if (metadata_stream->out_fd >= 0) {
435 ret = close(metadata_stream->out_fd);
436 if (ret < 0) {
437 PERROR("Kernel consumer snapshot metadata close out_fd");
438 /*
439 * Don't go on error here since the snapshot was successful at this
440 * point but somehow the close failed.
441 */
442 }
443 metadata_stream->out_fd = -1;
e2039c7a 444 }
e2039c7a
JD
445 }
446
07b86b52 447 ret = 0;
a34de389
JG
448error_snapshot:
449 pthread_mutex_unlock(&metadata_stream->lock);
cf53a8a6
JD
450 cds_list_del(&metadata_stream->send_node);
451 consumer_stream_destroy(metadata_stream, NULL);
452 metadata_channel->metadata_stream = NULL;
a34de389 453error_no_channel:
07b86b52
JD
454 rcu_read_unlock();
455 return ret;
456}
457
1803a064
MD
458/*
459 * Receive command from session daemon and process it.
460 *
461 * Return 1 on success else a negative value or 0.
462 */
3bd1e081
MD
463int lttng_kconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
464 int sock, struct pollfd *consumer_sockpoll)
465{
466 ssize_t ret;
0c759fc9 467 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
3bd1e081
MD
468 struct lttcomm_consumer_msg msg;
469
9ce5646a
MD
470 health_code_update();
471
3bd1e081
MD
472 ret = lttcomm_recv_unix_sock(sock, &msg, sizeof(msg));
473 if (ret != sizeof(msg)) {
1803a064 474 if (ret > 0) {
c6857fcf 475 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
1803a064
MD
476 ret = -1;
477 }
3bd1e081
MD
478 return ret;
479 }
9ce5646a
MD
480
481 health_code_update();
482
84382d49
MD
483 /* Deprecated command */
484 assert(msg.cmd_type != LTTNG_CONSUMER_STOP);
3bd1e081 485
9ce5646a
MD
486 health_code_update();
487
b0b335c8
MD
488 /* relayd needs RCU read-side protection */
489 rcu_read_lock();
490
3bd1e081 491 switch (msg.cmd_type) {
00e2e675
DG
492 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET:
493 {
f50f23d9 494 /* Session daemon status message are handled in the following call. */
028ba707 495 consumer_add_relayd_socket(msg.u.relayd_sock.net_index,
7735ef9e 496 msg.u.relayd_sock.type, ctx, sock, consumer_sockpoll,
d3e2ba59 497 &msg.u.relayd_sock.sock, msg.u.relayd_sock.session_id,
028ba707 498 msg.u.relayd_sock.relayd_session_id);
00e2e675
DG
499 goto end_nosignal;
500 }
3bd1e081
MD
501 case LTTNG_CONSUMER_ADD_CHANNEL:
502 {
503 struct lttng_consumer_channel *new_channel;
e43c41c5 504 int ret_recv;
3bd1e081 505
9ce5646a
MD
506 health_code_update();
507
f50f23d9
DG
508 /* First send a status message before receiving the fds. */
509 ret = consumer_send_status_msg(sock, ret_code);
510 if (ret < 0) {
511 /* Somehow, the session daemon is not responding anymore. */
1803a064 512 goto error_fatal;
f50f23d9 513 }
9ce5646a
MD
514
515 health_code_update();
516
d88aee68 517 DBG("consumer_add_channel %" PRIu64, msg.u.channel.channel_key);
3bd1e081 518 new_channel = consumer_allocate_channel(msg.u.channel.channel_key,
ffe60014
DG
519 msg.u.channel.session_id, msg.u.channel.pathname,
520 msg.u.channel.name, msg.u.channel.uid, msg.u.channel.gid,
1624d5b7
JD
521 msg.u.channel.relayd_id, msg.u.channel.output,
522 msg.u.channel.tracefile_size,
1950109e 523 msg.u.channel.tracefile_count, 0,
ecc48a90 524 msg.u.channel.monitor,
d7ba1388 525 msg.u.channel.live_timer_interval,
11785f65 526 msg.u.channel.is_live,
3d071855 527 NULL, NULL);
3bd1e081 528 if (new_channel == NULL) {
f73fabfd 529 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
3bd1e081
MD
530 goto end_nosignal;
531 }
ffe60014 532 new_channel->nb_init_stream_left = msg.u.channel.nb_init_streams;
95a1109b
JD
533 switch (msg.u.channel.output) {
534 case LTTNG_EVENT_SPLICE:
535 new_channel->output = CONSUMER_CHANNEL_SPLICE;
536 break;
537 case LTTNG_EVENT_MMAP:
538 new_channel->output = CONSUMER_CHANNEL_MMAP;
539 break;
540 default:
541 ERR("Channel output unknown %d", msg.u.channel.output);
542 goto end_nosignal;
543 }
ffe60014
DG
544
545 /* Translate and save channel type. */
546 switch (msg.u.channel.type) {
547 case CONSUMER_CHANNEL_TYPE_DATA:
548 case CONSUMER_CHANNEL_TYPE_METADATA:
549 new_channel->type = msg.u.channel.type;
550 break;
551 default:
552 assert(0);
553 goto end_nosignal;
554 };
555
9ce5646a
MD
556 health_code_update();
557
3bd1e081 558 if (ctx->on_recv_channel != NULL) {
e43c41c5
JD
559 ret_recv = ctx->on_recv_channel(new_channel);
560 if (ret_recv == 0) {
561 ret = consumer_add_channel(new_channel, ctx);
562 } else if (ret_recv < 0) {
3bd1e081
MD
563 goto end_nosignal;
564 }
565 } else {
e43c41c5 566 ret = consumer_add_channel(new_channel, ctx);
3bd1e081 567 }
94d49140
JD
568 if (CONSUMER_CHANNEL_TYPE_DATA) {
569 consumer_timer_live_start(new_channel,
570 msg.u.channel.live_timer_interval);
571 }
e43c41c5 572
9ce5646a
MD
573 health_code_update();
574
e43c41c5 575 /* If we received an error in add_channel, we need to report it. */
821fffb2 576 if (ret < 0) {
1803a064
MD
577 ret = consumer_send_status_msg(sock, ret);
578 if (ret < 0) {
579 goto error_fatal;
580 }
e43c41c5
JD
581 goto end_nosignal;
582 }
583
3bd1e081
MD
584 goto end_nosignal;
585 }
586 case LTTNG_CONSUMER_ADD_STREAM:
587 {
dae10966
DG
588 int fd;
589 struct lttng_pipe *stream_pipe;
00e2e675 590 struct lttng_consumer_stream *new_stream;
ffe60014 591 struct lttng_consumer_channel *channel;
c80048c6 592 int alloc_ret = 0;
3bd1e081 593
ffe60014
DG
594 /*
595 * Get stream's channel reference. Needed when adding the stream to the
596 * global hash table.
597 */
598 channel = consumer_find_channel(msg.u.stream.channel_key);
599 if (!channel) {
600 /*
601 * We could not find the channel. Can happen if cpu hotplug
602 * happens while tearing down.
603 */
d88aee68 604 ERR("Unable to find channel key %" PRIu64, msg.u.stream.channel_key);
e462382a 605 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
ffe60014
DG
606 }
607
9ce5646a
MD
608 health_code_update();
609
f50f23d9
DG
610 /* First send a status message before receiving the fds. */
611 ret = consumer_send_status_msg(sock, ret_code);
1803a064 612 if (ret < 0) {
d771f832 613 /* Somehow, the session daemon is not responding anymore. */
1803a064
MD
614 goto error_fatal;
615 }
9ce5646a
MD
616
617 health_code_update();
618
0c759fc9 619 if (ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
d771f832 620 /* Channel was not found. */
f50f23d9
DG
621 goto end_nosignal;
622 }
623
d771f832 624 /* Blocking call */
9ce5646a
MD
625 health_poll_entry();
626 ret = lttng_consumer_poll_socket(consumer_sockpoll);
627 health_poll_exit();
84382d49
MD
628 if (ret) {
629 goto error_fatal;
3bd1e081 630 }
00e2e675 631
9ce5646a
MD
632 health_code_update();
633
00e2e675 634 /* Get stream file descriptor from socket */
f2fc6720
MD
635 ret = lttcomm_recv_fds_unix_sock(sock, &fd, 1);
636 if (ret != sizeof(fd)) {
f73fabfd 637 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_FD);
3f8e211f 638 rcu_read_unlock();
3bd1e081
MD
639 return ret;
640 }
3bd1e081 641
9ce5646a
MD
642 health_code_update();
643
f50f23d9
DG
644 /*
645 * Send status code to session daemon only if the recv works. If the
646 * above recv() failed, the session daemon is notified through the
647 * error socket and the teardown is eventually done.
648 */
649 ret = consumer_send_status_msg(sock, ret_code);
650 if (ret < 0) {
651 /* Somehow, the session daemon is not responding anymore. */
652 goto end_nosignal;
653 }
654
9ce5646a
MD
655 health_code_update();
656
59db0d42 657 pthread_mutex_lock(&channel->lock);
29d1a7ae 658 new_stream = consumer_stream_create(
59db0d42
JG
659 channel,
660 channel->key,
ffe60014
DG
661 fd,
662 LTTNG_CONSUMER_ACTIVE_STREAM,
663 channel->name,
664 channel->uid,
665 channel->gid,
666 channel->relayd_id,
667 channel->session_id,
668 msg.u.stream.cpu,
669 &alloc_ret,
4891ece8
DG
670 channel->type,
671 channel->monitor);
3bd1e081 672 if (new_stream == NULL) {
c80048c6
MD
673 switch (alloc_ret) {
674 case -ENOMEM:
675 case -EINVAL:
676 default:
677 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
678 break;
c80048c6 679 }
59db0d42 680 pthread_mutex_unlock(&channel->lock);
3f8e211f 681 goto end_nosignal;
3bd1e081 682 }
d771f832 683
ffe60014 684 new_stream->wait_fd = fd;
29d1a7ae
JG
685 ret = kernctl_get_max_subbuf_size(new_stream->wait_fd,
686 &new_stream->max_sb_size);
687 if (ret < 0) {
688 pthread_mutex_unlock(&channel->lock);
689 ERR("Failed to get kernel maximal subbuffer size");
07b86b52
JD
690 goto end_nosignal;
691 }
00e2e675 692
a0c83db9
DG
693 /*
694 * We've just assigned the channel to the stream so increment the
07b86b52
JD
695 * refcount right now. We don't need to increment the refcount for
696 * streams in no monitor because we handle manually the cleanup of
697 * those. It is very important to make sure there is NO prior
698 * consumer_del_stream() calls or else the refcount will be unbalanced.
a0c83db9 699 */
07b86b52
JD
700 if (channel->monitor) {
701 uatomic_inc(&new_stream->chan->refcount);
702 }
9d9353f9 703
fb3a43a9
DG
704 /*
705 * The buffer flush is done on the session daemon side for the kernel
706 * so no need for the stream "hangup_flush_done" variable to be
707 * tracked. This is important for a kernel stream since we don't rely
708 * on the flush state of the stream to read data. It's not the case for
709 * user space tracing.
710 */
711 new_stream->hangup_flush_done = 0;
712
9ce5646a
MD
713 health_code_update();
714
633d0084
DG
715 if (ctx->on_recv_stream) {
716 ret = ctx->on_recv_stream(new_stream);
717 if (ret < 0) {
d771f832 718 consumer_stream_free(new_stream);
633d0084 719 goto end_nosignal;
fb3a43a9 720 }
633d0084 721 }
fb3a43a9 722
9ce5646a
MD
723 health_code_update();
724
07b86b52
JD
725 if (new_stream->metadata_flag) {
726 channel->metadata_stream = new_stream;
727 }
728
2bba9e53
DG
729 /* Do not monitor this stream. */
730 if (!channel->monitor) {
5eecee74 731 DBG("Kernel consumer add stream %s in no monitor mode with "
6dc3064a 732 "relayd id %" PRIu64, new_stream->name,
6d40f8fa 733 new_stream->relayd_id);
10a50311 734 cds_list_add(&new_stream->send_node, &channel->streams.head);
59db0d42 735 pthread_mutex_unlock(&channel->lock);
6dc3064a
DG
736 break;
737 }
738
e1b71bdc 739 /* Send stream to relayd if the stream has an ID. */
6d40f8fa 740 if (new_stream->relayd_id != (uint64_t) -1ULL) {
194ee077
DG
741 ret = consumer_send_relayd_stream(new_stream,
742 new_stream->chan->pathname);
e1b71bdc 743 if (ret < 0) {
59db0d42 744 pthread_mutex_unlock(&channel->lock);
e1b71bdc
DG
745 consumer_stream_free(new_stream);
746 goto end_nosignal;
747 }
b7fa98e6
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(
6d40f8fa 756 new_stream->relayd_id);
b7fa98e6 757 if (ret < 0) {
59db0d42 758 pthread_mutex_unlock(&channel->lock);
b7fa98e6
MD
759 goto end_nosignal;
760 }
761 }
e2039c7a 762 }
59db0d42 763 pthread_mutex_unlock(&channel->lock);
e2039c7a 764
50f8ae69 765 /* Get the right pipe where the stream will be sent. */
633d0084 766 if (new_stream->metadata_flag) {
5ab66908
MD
767 ret = consumer_add_metadata_stream(new_stream);
768 if (ret) {
769 ERR("Consumer add metadata stream %" PRIu64 " failed. Continuing",
770 new_stream->key);
771 consumer_stream_free(new_stream);
772 goto end_nosignal;
773 }
dae10966 774 stream_pipe = ctx->consumer_metadata_pipe;
3bd1e081 775 } else {
5ab66908
MD
776 ret = consumer_add_data_stream(new_stream);
777 if (ret) {
778 ERR("Consumer add stream %" PRIu64 " failed. Continuing",
779 new_stream->key);
780 consumer_stream_free(new_stream);
781 goto end_nosignal;
782 }
dae10966 783 stream_pipe = ctx->consumer_data_pipe;
50f8ae69
DG
784 }
785
5ab66908
MD
786 /* Vitible to other threads */
787 new_stream->globally_visible = 1;
788
9ce5646a
MD
789 health_code_update();
790
dae10966 791 ret = lttng_pipe_write(stream_pipe, &new_stream, sizeof(new_stream));
50f8ae69 792 if (ret < 0) {
dae10966 793 ERR("Consumer write %s stream to pipe %d",
50f8ae69 794 new_stream->metadata_flag ? "metadata" : "data",
dae10966 795 lttng_pipe_get_writefd(stream_pipe));
5ab66908
MD
796 if (new_stream->metadata_flag) {
797 consumer_del_stream_for_metadata(new_stream);
798 } else {
799 consumer_del_stream_for_data(new_stream);
800 }
50f8ae69 801 goto end_nosignal;
3bd1e081 802 }
00e2e675 803
50f8ae69 804 DBG("Kernel consumer ADD_STREAM %s (fd: %d) with relayd id %" PRIu64,
ffe60014 805 new_stream->name, fd, new_stream->relayd_stream_id);
3bd1e081
MD
806 break;
807 }
a4baae1b
JD
808 case LTTNG_CONSUMER_STREAMS_SENT:
809 {
810 struct lttng_consumer_channel *channel;
811
812 /*
813 * Get stream's channel reference. Needed when adding the stream to the
814 * global hash table.
815 */
816 channel = consumer_find_channel(msg.u.sent_streams.channel_key);
817 if (!channel) {
818 /*
819 * We could not find the channel. Can happen if cpu hotplug
820 * happens while tearing down.
821 */
822 ERR("Unable to find channel key %" PRIu64,
823 msg.u.sent_streams.channel_key);
e462382a 824 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
a4baae1b
JD
825 }
826
827 health_code_update();
828
829 /*
830 * Send status code to session daemon.
831 */
832 ret = consumer_send_status_msg(sock, ret_code);
f261ad0a 833 if (ret < 0 || ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
a4baae1b
JD
834 /* Somehow, the session daemon is not responding anymore. */
835 goto end_nosignal;
836 }
837
838 health_code_update();
839
840 /*
841 * We should not send this message if we don't monitor the
842 * streams in this channel.
843 */
844 if (!channel->monitor) {
845 break;
846 }
847
848 health_code_update();
849 /* Send stream to relayd if the stream has an ID. */
850 if (msg.u.sent_streams.net_seq_idx != (uint64_t) -1ULL) {
851 ret = consumer_send_relayd_streams_sent(
852 msg.u.sent_streams.net_seq_idx);
853 if (ret < 0) {
854 goto end_nosignal;
855 }
b7fa98e6 856 channel->streams_sent_to_relayd = true;
a4baae1b
JD
857 }
858 break;
859 }
3bd1e081
MD
860 case LTTNG_CONSUMER_UPDATE_STREAM:
861 {
3f8e211f
DG
862 rcu_read_unlock();
863 return -ENOSYS;
864 }
865 case LTTNG_CONSUMER_DESTROY_RELAYD:
866 {
a6ba4fe1 867 uint64_t index = msg.u.destroy_relayd.net_seq_idx;
3f8e211f
DG
868 struct consumer_relayd_sock_pair *relayd;
869
a6ba4fe1 870 DBG("Kernel consumer destroying relayd %" PRIu64, index);
3f8e211f
DG
871
872 /* Get relayd reference if exists. */
a6ba4fe1 873 relayd = consumer_find_relayd(index);
3f8e211f 874 if (relayd == NULL) {
3448e266 875 DBG("Unable to find relayd %" PRIu64, index);
e462382a 876 ret_code = LTTCOMM_CONSUMERD_RELAYD_FAIL;
3bd1e081 877 }
3f8e211f 878
a6ba4fe1
DG
879 /*
880 * Each relayd socket pair has a refcount of stream attached to it
881 * which tells if the relayd is still active or not depending on the
882 * refcount value.
883 *
884 * This will set the destroy flag of the relayd object and destroy it
885 * if the refcount reaches zero when called.
886 *
887 * The destroy can happen either here or when a stream fd hangs up.
888 */
f50f23d9
DG
889 if (relayd) {
890 consumer_flag_relayd_for_destroy(relayd);
891 }
892
9ce5646a
MD
893 health_code_update();
894
f50f23d9
DG
895 ret = consumer_send_status_msg(sock, ret_code);
896 if (ret < 0) {
897 /* Somehow, the session daemon is not responding anymore. */
1803a064 898 goto error_fatal;
f50f23d9 899 }
3f8e211f 900
3f8e211f 901 goto end_nosignal;
3bd1e081 902 }
6d805429 903 case LTTNG_CONSUMER_DATA_PENDING:
53632229 904 {
c8f59ee5 905 int32_t ret;
6d805429 906 uint64_t id = msg.u.data_pending.session_id;
c8f59ee5 907
6d805429 908 DBG("Kernel consumer data pending command for id %" PRIu64, id);
c8f59ee5 909
6d805429 910 ret = consumer_data_pending(id);
c8f59ee5 911
9ce5646a
MD
912 health_code_update();
913
c8f59ee5
DG
914 /* Send back returned value to session daemon */
915 ret = lttcomm_send_unix_sock(sock, &ret, sizeof(ret));
916 if (ret < 0) {
6d805429 917 PERROR("send data pending ret code");
1803a064 918 goto error_fatal;
c8f59ee5 919 }
f50f23d9
DG
920
921 /*
922 * No need to send back a status message since the data pending
923 * returned value is the response.
924 */
c8f59ee5 925 break;
53632229 926 }
6dc3064a
DG
927 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL:
928 {
07b86b52
JD
929 if (msg.u.snapshot_channel.metadata == 1) {
930 ret = lttng_kconsumer_snapshot_metadata(msg.u.snapshot_channel.key,
e2039c7a
JD
931 msg.u.snapshot_channel.pathname,
932 msg.u.snapshot_channel.relayd_id, ctx);
07b86b52
JD
933 if (ret < 0) {
934 ERR("Snapshot metadata failed");
e462382a 935 ret_code = LTTCOMM_CONSUMERD_ERROR_METADATA;
07b86b52
JD
936 }
937 } else {
938 ret = lttng_kconsumer_snapshot_channel(msg.u.snapshot_channel.key,
939 msg.u.snapshot_channel.pathname,
5c786ded 940 msg.u.snapshot_channel.relayd_id,
d07ceecd 941 msg.u.snapshot_channel.nb_packets_per_stream,
5c786ded 942 ctx);
07b86b52
JD
943 if (ret < 0) {
944 ERR("Snapshot channel failed");
e462382a 945 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
07b86b52
JD
946 }
947 }
948
9ce5646a
MD
949 health_code_update();
950
6dc3064a
DG
951 ret = consumer_send_status_msg(sock, ret_code);
952 if (ret < 0) {
953 /* Somehow, the session daemon is not responding anymore. */
954 goto end_nosignal;
955 }
956 break;
957 }
07b86b52
JD
958 case LTTNG_CONSUMER_DESTROY_CHANNEL:
959 {
960 uint64_t key = msg.u.destroy_channel.key;
961 struct lttng_consumer_channel *channel;
962
963 channel = consumer_find_channel(key);
964 if (!channel) {
965 ERR("Kernel consumer destroy channel %" PRIu64 " not found", key);
e462382a 966 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
07b86b52
JD
967 }
968
9ce5646a
MD
969 health_code_update();
970
07b86b52
JD
971 ret = consumer_send_status_msg(sock, ret_code);
972 if (ret < 0) {
973 /* Somehow, the session daemon is not responding anymore. */
974 goto end_nosignal;
975 }
976
9ce5646a
MD
977 health_code_update();
978
15dc512a
DG
979 /* Stop right now if no channel was found. */
980 if (!channel) {
981 goto end_nosignal;
982 }
983
07b86b52
JD
984 /*
985 * This command should ONLY be issued for channel with streams set in
986 * no monitor mode.
987 */
988 assert(!channel->monitor);
989
990 /*
991 * The refcount should ALWAYS be 0 in the case of a channel in no
992 * monitor mode.
993 */
994 assert(!uatomic_sub_return(&channel->refcount, 1));
995
996 consumer_del_channel(channel);
997
998 goto end_nosignal;
999 }
fb83fe64
JD
1000 case LTTNG_CONSUMER_DISCARDED_EVENTS:
1001 {
1002 uint64_t ret;
1003 struct lttng_consumer_channel *channel;
1004 uint64_t id = msg.u.discarded_events.session_id;
1005 uint64_t key = msg.u.discarded_events.channel_key;
1006
e5742757
MD
1007 DBG("Kernel consumer discarded events command for session id %"
1008 PRIu64 ", channel key %" PRIu64, id, key);
1009
fb83fe64
JD
1010 channel = consumer_find_channel(key);
1011 if (!channel) {
1012 ERR("Kernel consumer discarded events channel %"
1013 PRIu64 " not found", key);
e5742757
MD
1014 ret = 0;
1015 } else {
1016 ret = channel->discarded_events;
fb83fe64
JD
1017 }
1018
fb83fe64
JD
1019 health_code_update();
1020
1021 /* Send back returned value to session daemon */
1022 ret = lttcomm_send_unix_sock(sock, &ret, sizeof(ret));
1023 if (ret < 0) {
1024 PERROR("send discarded events");
1025 goto error_fatal;
1026 }
1027
1028 break;
1029 }
1030 case LTTNG_CONSUMER_LOST_PACKETS:
1031 {
1032 uint64_t ret;
1033 struct lttng_consumer_channel *channel;
1034 uint64_t id = msg.u.lost_packets.session_id;
1035 uint64_t key = msg.u.lost_packets.channel_key;
1036
e5742757
MD
1037 DBG("Kernel consumer lost packets command for session id %"
1038 PRIu64 ", channel key %" PRIu64, id, key);
1039
fb83fe64
JD
1040 channel = consumer_find_channel(key);
1041 if (!channel) {
1042 ERR("Kernel consumer lost packets channel %"
1043 PRIu64 " not found", key);
e5742757
MD
1044 ret = 0;
1045 } else {
1046 ret = channel->lost_packets;
fb83fe64
JD
1047 }
1048
fb83fe64
JD
1049 health_code_update();
1050
1051 /* Send back returned value to session daemon */
1052 ret = lttcomm_send_unix_sock(sock, &ret, sizeof(ret));
1053 if (ret < 0) {
1054 PERROR("send lost packets");
1055 goto error_fatal;
1056 }
1057
1058 break;
1059 }
3bd1e081 1060 default:
3f8e211f 1061 goto end_nosignal;
3bd1e081 1062 }
3f8e211f 1063
3bd1e081 1064end_nosignal:
b0b335c8 1065 rcu_read_unlock();
4cbc1a04
DG
1066
1067 /*
1068 * Return 1 to indicate success since the 0 value can be a socket
1069 * shutdown during the recv() or send() call.
1070 */
9ce5646a 1071 health_code_update();
4cbc1a04 1072 return 1;
1803a064
MD
1073
1074error_fatal:
1075 rcu_read_unlock();
1076 /* This will issue a consumer stop. */
1077 return -1;
3bd1e081 1078}
d41f73b7 1079
94d49140
JD
1080/*
1081 * Sync metadata meaning request them to the session daemon and snapshot to the
1082 * metadata thread can consumer them.
1083 *
1084 * Metadata stream lock MUST be acquired.
1085 *
1086 * Return 0 if new metadatda is available, EAGAIN if the metadata stream
1087 * is empty or a negative value on error.
1088 */
1089int lttng_kconsumer_sync_metadata(struct lttng_consumer_stream *metadata)
1090{
1091 int ret;
1092
1093 assert(metadata);
1094
1095 ret = kernctl_buffer_flush(metadata->wait_fd);
1096 if (ret < 0) {
1097 ERR("Failed to flush kernel stream");
1098 goto end;
1099 }
1100
1101 ret = kernctl_snapshot(metadata->wait_fd);
1102 if (ret < 0) {
32af2c95 1103 if (ret != -EAGAIN) {
94d49140
JD
1104 ERR("Sync metadata, taking kernel snapshot failed.");
1105 goto end;
1106 }
1107 DBG("Sync metadata, no new kernel metadata");
1108 /* No new metadata, exit. */
1109 ret = ENODATA;
1110 goto end;
1111 }
1112
1113end:
1114 return ret;
1115}
309167d2 1116
fb83fe64 1117static
29d1a7ae
JG
1118int extract_common_subbuffer_info(struct lttng_consumer_stream *stream,
1119 struct stream_subbuffer *subbuf)
fb83fe64
JD
1120{
1121 int ret;
fb83fe64 1122
29d1a7ae
JG
1123 ret = kernctl_get_subbuf_size(
1124 stream->wait_fd, &subbuf->info.data.subbuf_size);
1125 if (ret) {
fb83fe64
JD
1126 goto end;
1127 }
fb83fe64 1128
29d1a7ae
JG
1129 ret = kernctl_get_padded_subbuf_size(
1130 stream->wait_fd, &subbuf->info.data.padded_subbuf_size);
1131 if (ret) {
fb83fe64
JD
1132 goto end;
1133 }
fb83fe64
JD
1134
1135end:
1136 return ret;
1137}
1138
93ec662e 1139static
29d1a7ae
JG
1140int extract_metadata_subbuffer_info(struct lttng_consumer_stream *stream,
1141 struct stream_subbuffer *subbuf)
93ec662e
JD
1142{
1143 int ret;
93ec662e 1144
29d1a7ae
JG
1145 ret = extract_common_subbuffer_info(stream, subbuf);
1146 if (ret) {
93ec662e
JD
1147 goto end;
1148 }
1149
29d1a7ae
JG
1150 ret = kernctl_get_metadata_version(
1151 stream->wait_fd, &subbuf->info.metadata.version);
1152 if (ret) {
93ec662e
JD
1153 goto end;
1154 }
1155
93ec662e
JD
1156end:
1157 return ret;
1158}
1159
29d1a7ae
JG
1160static
1161int extract_data_subbuffer_info(struct lttng_consumer_stream *stream,
1162 struct stream_subbuffer *subbuf)
d41f73b7 1163{
29d1a7ae 1164 int ret;
d41f73b7 1165
29d1a7ae
JG
1166 ret = extract_common_subbuffer_info(stream, subbuf);
1167 if (ret) {
1168 goto end;
1169 }
309167d2 1170
29d1a7ae
JG
1171 ret = kernctl_get_packet_size(
1172 stream->wait_fd, &subbuf->info.data.packet_size);
1173 if (ret < 0) {
1174 PERROR("Failed to get sub-buffer packet size");
d41f73b7
MD
1175 goto end;
1176 }
1177
29d1a7ae
JG
1178 ret = kernctl_get_content_size(
1179 stream->wait_fd, &subbuf->info.data.content_size);
1180 if (ret < 0) {
1181 PERROR("Failed to get sub-buffer content size");
1d4dfdef
DG
1182 goto end;
1183 }
1184
29d1a7ae
JG
1185 ret = kernctl_get_timestamp_begin(
1186 stream->wait_fd, &subbuf->info.data.timestamp_begin);
1187 if (ret < 0) {
1188 PERROR("Failed to get sub-buffer begin timestamp");
1189 goto end;
1190 }
1191
1192 ret = kernctl_get_timestamp_end(
1193 stream->wait_fd, &subbuf->info.data.timestamp_end);
1194 if (ret < 0) {
1195 PERROR("Failed to get sub-buffer end timestamp");
1196 goto end;
1197 }
1198
1199 ret = kernctl_get_events_discarded(
1200 stream->wait_fd, &subbuf->info.data.events_discarded);
1201 if (ret) {
1202 PERROR("Failed to get sub-buffer events discarded count");
1203 goto end;
1204 }
1205
1206 ret = kernctl_get_sequence_number(stream->wait_fd,
1207 &subbuf->info.data.sequence_number.value);
1208 if (ret) {
1209 /* May not be supported by older LTTng-modules. */
1210 if (ret != -ENOTTY) {
1211 PERROR("Failed to get sub-buffer sequence number");
fb83fe64
JD
1212 goto end;
1213 }
1c20f0e2 1214 } else {
29d1a7ae 1215 subbuf->info.data.sequence_number.is_set = true;
309167d2
JD
1216 }
1217
29d1a7ae
JG
1218 ret = kernctl_get_stream_id(
1219 stream->wait_fd, &subbuf->info.data.stream_id);
1220 if (ret < 0) {
1221 PERROR("Failed to get stream id");
1222 goto end;
1223 }
1d4dfdef 1224
29d1a7ae
JG
1225 ret = kernctl_get_instance_id(stream->wait_fd,
1226 &subbuf->info.data.stream_instance_id.value);
1227 if (ret) {
1228 /* May not be supported by older LTTng-modules. */
1229 if (ret != -ENOTTY) {
1230 PERROR("Failed to get stream instance id");
1d4dfdef
DG
1231 goto end;
1232 }
29d1a7ae
JG
1233 } else {
1234 subbuf->info.data.stream_instance_id.is_set = true;
1235 }
1236end:
1237 return ret;
1238}
47e81c02 1239
29d1a7ae
JG
1240static
1241int get_subbuffer_common(struct lttng_consumer_stream *stream,
1242 struct stream_subbuffer *subbuffer)
1243{
1244 int ret;
1fdb9a78 1245
29d1a7ae
JG
1246 ret = kernctl_get_next_subbuf(stream->wait_fd);
1247 if (ret) {
1248 goto end;
1249 }
1d4dfdef 1250
29d1a7ae
JG
1251 ret = stream->read_subbuffer_ops.extract_subbuffer_info(
1252 stream, subbuffer);
1253end:
1254 return ret;
1255}
1d4dfdef 1256
29d1a7ae
JG
1257static
1258int get_next_subbuffer_splice(struct lttng_consumer_stream *stream,
1259 struct stream_subbuffer *subbuffer)
1260{
1261 int ret;
ace0e591 1262
29d1a7ae
JG
1263 ret = get_subbuffer_common(stream, subbuffer);
1264 if (ret) {
1265 goto end;
d41f73b7 1266 }
29d1a7ae
JG
1267
1268 subbuffer->buffer.fd = stream->wait_fd;
1269end:
1270 return ret;
1271}
1272
1273static
1274int get_next_subbuffer_mmap(struct lttng_consumer_stream *stream,
1275 struct stream_subbuffer *subbuffer)
1276{
1277 int ret;
1278 const char *addr;
1279
1280 ret = get_subbuffer_common(stream, subbuffer);
1281 if (ret) {
d41f73b7
MD
1282 goto end;
1283 }
1284
29d1a7ae
JG
1285 ret = get_current_subbuf_addr(stream, &addr);
1286 if (ret) {
1c20f0e2
JD
1287 goto end;
1288 }
1289
29d1a7ae
JG
1290 subbuffer->buffer.buffer = lttng_buffer_view_init(
1291 addr, 0, subbuffer->info.data.padded_subbuf_size);
1292end:
1293 return ret;
1294}
1295
d6ef77b3
JG
1296static
1297int get_next_subbuffer_metadata_check(struct lttng_consumer_stream *stream,
1298 struct stream_subbuffer *subbuffer)
1299{
1300 int ret;
1301 const char *addr;
1302 bool coherent;
1303
1304 ret = kernctl_get_next_subbuf_metadata_check(stream->wait_fd,
1305 &coherent);
1306 if (ret) {
1307 goto end;
1308 }
1309
1310 ret = stream->read_subbuffer_ops.extract_subbuffer_info(
1311 stream, subbuffer);
1312 if (ret) {
1313 goto end;
1314 }
1315
1316 LTTNG_OPTIONAL_SET(&subbuffer->info.metadata.coherent, coherent);
1317
1318 ret = get_current_subbuf_addr(stream, &addr);
1319 if (ret) {
1320 goto end;
1321 }
1322
1323 subbuffer->buffer.buffer = lttng_buffer_view_init(
1324 addr, 0, subbuffer->info.data.padded_subbuf_size);
1325 DBG("Got metadata packet with padded_subbuf_size = %lu, coherent = %s",
1326 subbuffer->info.metadata.padded_subbuf_size,
1327 coherent ? "true" : "false");
1328end:
1329 return ret;
1330}
1331
29d1a7ae
JG
1332static
1333int put_next_subbuffer(struct lttng_consumer_stream *stream,
1334 struct stream_subbuffer *subbuffer)
1335{
1336 const int ret = kernctl_put_next_subbuf(stream->wait_fd);
1337
1338 if (ret) {
1339 if (ret == -EFAULT) {
1340 PERROR("Error in unreserving sub buffer");
1341 } else if (ret == -EIO) {
1342 /* Should never happen with newer LTTng versions */
1343 PERROR("Reader has been pushed by the writer, last sub-buffer corrupted");
94d49140
JD
1344 }
1345 }
1346
29d1a7ae
JG
1347 return ret;
1348}
1349
d6ef77b3
JG
1350static
1351bool is_get_next_check_metadata_available(int tracer_fd)
1352{
1353 return kernctl_get_next_subbuf_metadata_check(tracer_fd, NULL) !=
1354 -ENOTTY;
1355}
1356
1357static
1358int lttng_kconsumer_set_stream_ops(
29d1a7ae
JG
1359 struct lttng_consumer_stream *stream)
1360{
d6ef77b3
JG
1361 int ret = 0;
1362
1363 if (stream->metadata_flag && stream->chan->is_live) {
1364 DBG("Attempting to enable metadata bucketization for live consumers");
1365 if (is_get_next_check_metadata_available(stream->wait_fd)) {
1366 DBG("Kernel tracer supports get_next_subbuffer_metadata_check, metadata will be accumulated until a coherent state is reached");
1367 stream->read_subbuffer_ops.get_next_subbuffer =
1368 get_next_subbuffer_metadata_check;
1369 ret = consumer_stream_enable_metadata_bucketization(
1370 stream);
1371 if (ret) {
1372 goto end;
1373 }
1374 } else {
1375 /*
1376 * The kernel tracer version is too old to indicate
1377 * when the metadata stream has reached a "coherent"
1378 * (parseable) point.
1379 *
1380 * This means that a live viewer may see an incoherent
1381 * sequence of metadata and fail to parse it.
1382 */
1383 WARN("Kernel tracer does not support get_next_subbuffer_metadata_check which may cause live clients to fail to parse the metadata stream");
1384 metadata_bucket_destroy(stream->metadata_bucket);
1385 stream->metadata_bucket = NULL;
1386 }
1387 }
1388
1389 if (!stream->read_subbuffer_ops.get_next_subbuffer) {
1390 if (stream->chan->output == CONSUMER_CHANNEL_MMAP) {
1391 stream->read_subbuffer_ops.get_next_subbuffer =
1392 get_next_subbuffer_mmap;
1393 } else {
1394 stream->read_subbuffer_ops.get_next_subbuffer =
1395 get_next_subbuffer_splice;
1396 }
309167d2
JD
1397 }
1398
29d1a7ae
JG
1399 if (stream->metadata_flag) {
1400 stream->read_subbuffer_ops.extract_subbuffer_info =
1401 extract_metadata_subbuffer_info;
1402 } else {
1403 stream->read_subbuffer_ops.extract_subbuffer_info =
1404 extract_data_subbuffer_info;
1405 if (stream->chan->is_live) {
1406 stream->read_subbuffer_ops.send_live_beacon =
1407 consumer_flush_kernel_index;
1408 }
1409 }
1410
1411 stream->read_subbuffer_ops.put_next_subbuffer = put_next_subbuffer;
d6ef77b3
JG
1412end:
1413 return ret;
d41f73b7
MD
1414}
1415
1416int lttng_kconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
1417{
1418 int ret;
ffe60014
DG
1419
1420 assert(stream);
1421
2bba9e53
DG
1422 /*
1423 * Don't create anything if this is set for streaming or should not be
1424 * monitored.
1425 */
6d40f8fa 1426 if (stream->relayd_id == (uint64_t) -1ULL && stream->chan->monitor) {
fe4477ee
JD
1427 ret = utils_create_stream_file(stream->chan->pathname, stream->name,
1428 stream->chan->tracefile_size, stream->tracefile_count_current,
309167d2 1429 stream->uid, stream->gid, NULL);
fe4477ee
JD
1430 if (ret < 0) {
1431 goto error;
1432 }
1433 stream->out_fd = ret;
1434 stream->tracefile_size_current = 0;
309167d2
JD
1435
1436 if (!stream->metadata_flag) {
e0547b83
MD
1437 struct lttng_index_file *index_file;
1438
1439 index_file = lttng_index_file_create(stream->chan->pathname,
309167d2
JD
1440 stream->name, stream->uid, stream->gid,
1441 stream->chan->tracefile_size,
e0547b83
MD
1442 stream->tracefile_count_current,
1443 CTF_INDEX_MAJOR, CTF_INDEX_MINOR);
1444 if (!index_file) {
309167d2
JD
1445 goto error;
1446 }
e0547b83 1447 stream->index_file = index_file;
309167d2 1448 }
ffe60014 1449 }
d41f73b7 1450
d41f73b7
MD
1451 if (stream->output == LTTNG_EVENT_MMAP) {
1452 /* get the len of the mmap region */
1453 unsigned long mmap_len;
1454
1455 ret = kernctl_get_mmap_len(stream->wait_fd, &mmap_len);
1456 if (ret != 0) {
ffe60014 1457 PERROR("kernctl_get_mmap_len");
d41f73b7
MD
1458 goto error_close_fd;
1459 }
1460 stream->mmap_len = (size_t) mmap_len;
1461
ffe60014
DG
1462 stream->mmap_base = mmap(NULL, stream->mmap_len, PROT_READ,
1463 MAP_PRIVATE, stream->wait_fd, 0);
d41f73b7 1464 if (stream->mmap_base == MAP_FAILED) {
ffe60014 1465 PERROR("Error mmaping");
d41f73b7
MD
1466 ret = -1;
1467 goto error_close_fd;
1468 }
1469 }
1470
d6ef77b3
JG
1471 ret = lttng_kconsumer_set_stream_ops(stream);
1472 if (ret) {
1473 goto error_close_fd;
1474 }
29d1a7ae 1475
d41f73b7
MD
1476 /* we return 0 to let the library handle the FD internally */
1477 return 0;
1478
1479error_close_fd:
2f225ce2 1480 if (stream->out_fd >= 0) {
d41f73b7
MD
1481 int err;
1482
1483 err = close(stream->out_fd);
1484 assert(!err);
2f225ce2 1485 stream->out_fd = -1;
d41f73b7
MD
1486 }
1487error:
1488 return ret;
1489}
1490
ca22feea
DG
1491/*
1492 * Check if data is still being extracted from the buffers for a specific
4e9a4686
DG
1493 * stream. Consumer data lock MUST be acquired before calling this function
1494 * and the stream lock.
ca22feea 1495 *
6d805429 1496 * Return 1 if the traced data are still getting read else 0 meaning that the
ca22feea
DG
1497 * data is available for trace viewer reading.
1498 */
6d805429 1499int lttng_kconsumer_data_pending(struct lttng_consumer_stream *stream)
ca22feea
DG
1500{
1501 int ret;
1502
1503 assert(stream);
1504
873b9e9a
MD
1505 if (stream->endpoint_status != CONSUMER_ENDPOINT_ACTIVE) {
1506 ret = 0;
1507 goto end;
1508 }
1509
ca22feea
DG
1510 ret = kernctl_get_next_subbuf(stream->wait_fd);
1511 if (ret == 0) {
1512 /* There is still data so let's put back this subbuffer. */
1513 ret = kernctl_put_subbuf(stream->wait_fd);
1514 assert(ret == 0);
6d805429 1515 ret = 1; /* Data is pending */
4e9a4686 1516 goto end;
ca22feea
DG
1517 }
1518
6d805429
DG
1519 /* Data is NOT pending and ready to be read. */
1520 ret = 0;
ca22feea 1521
6efae65e
DG
1522end:
1523 return ret;
ca22feea 1524}
This page took 0.187397 seconds and 5 git commands to generate.