Build fix: consumer: aggregate initialization isn't supported
[lttng-tools.git] / src / common / consumer / consumer-stream.c
CommitLineData
51230d70 1/*
90c106c6 2 * Copyright (C) 2011 EfficiOS Inc.
ab5be9fa
MJ
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
51230d70 5 *
ab5be9fa 6 * SPDX-License-Identifier: GPL-2.0-only
51230d70 7 *
51230d70
DG
8 */
9
6c1c0768 10#define _LGPL_SOURCE
51230d70 11#include <assert.h>
10a50311 12#include <inttypes.h>
51230d70
DG
13#include <sys/mman.h>
14#include <unistd.h>
15
16#include <common/common.h>
a48ac75a
JR
17#include <common/consumer/consumer-timer.h>
18#include <common/consumer/consumer-timer.h>
19#include <common/consumer/consumer.h>
20#include <common/consumer/consumer.h>
21#include <common/consumer/metadata-bucket.h>
22#include <common/consumer/metadata-bucket.h>
1c20f0e2 23#include <common/index/index.h>
94d49140 24#include <common/kernel-consumer/kernel-consumer.h>
a48ac75a
JR
25#include <common/kernel-ctl/kernel-ctl.h>
26#include <common/macros.h>
51230d70
DG
27#include <common/relayd/relayd.h>
28#include <common/ust-consumer/ust-consumer.h>
a2361a61 29#include <common/utils.h>
51230d70
DG
30
31#include "consumer-stream.h"
32
33/*
34 * RCU call to free stream. MUST only be used with call_rcu().
35 */
36static void free_stream_rcu(struct rcu_head *head)
37{
38 struct lttng_ht_node_u64 *node =
39 caa_container_of(head, struct lttng_ht_node_u64, head);
40 struct lttng_consumer_stream *stream =
41 caa_container_of(node, struct lttng_consumer_stream, node);
42
43 pthread_mutex_destroy(&stream->lock);
44 free(stream);
45}
46
6f9449c2
JG
47static void consumer_stream_data_lock_all(struct lttng_consumer_stream *stream)
48{
49 pthread_mutex_lock(&stream->chan->lock);
50 pthread_mutex_lock(&stream->lock);
51}
52
53static void consumer_stream_data_unlock_all(struct lttng_consumer_stream *stream)
54{
55 pthread_mutex_unlock(&stream->lock);
56 pthread_mutex_unlock(&stream->chan->lock);
57}
58
a48ac75a
JR
59static void consumer_stream_data_assert_locked_all(struct lttng_consumer_stream *stream)
60{
61 ASSERT_LOCKED(stream->lock);
62 ASSERT_LOCKED(stream->chan->lock);
63}
64
6f9449c2
JG
65static void consumer_stream_metadata_lock_all(struct lttng_consumer_stream *stream)
66{
67 consumer_stream_data_lock_all(stream);
68 pthread_mutex_lock(&stream->metadata_rdv_lock);
69}
70
71static void consumer_stream_metadata_unlock_all(struct lttng_consumer_stream *stream)
72{
73 pthread_mutex_unlock(&stream->metadata_rdv_lock);
74 consumer_stream_data_unlock_all(stream);
75}
76
a48ac75a
JR
77static void consumer_stream_metadata_assert_locked_all(struct lttng_consumer_stream *stream)
78{
79 ASSERT_LOCKED(stream->metadata_rdv_lock);
80 consumer_stream_data_assert_locked_all(stream);
81}
82
6f9449c2
JG
83/* Only used for data streams. */
84static int consumer_stream_update_stats(struct lttng_consumer_stream *stream,
85 const struct stream_subbuffer *subbuf)
86{
87 int ret = 0;
88 uint64_t sequence_number;
d9b063d7 89 const uint64_t discarded_events = subbuf->info.data.events_discarded;
6f9449c2
JG
90
91 if (!subbuf->info.data.sequence_number.is_set) {
92 /* Command not supported by the tracer. */
93 sequence_number = -1ULL;
94 stream->sequence_number_unavailable = true;
95 } else {
96 sequence_number = subbuf->info.data.sequence_number.value;
97 }
98
99 /*
100 * Start the sequence when we extract the first packet in case we don't
101 * start at 0 (for example if a consumer is not connected to the
102 * session immediately after the beginning).
103 */
104 if (stream->last_sequence_number == -1ULL) {
105 stream->last_sequence_number = sequence_number;
106 } else if (sequence_number > stream->last_sequence_number) {
107 stream->chan->lost_packets += sequence_number -
108 stream->last_sequence_number - 1;
109 } else {
110 /* seq <= last_sequence_number */
111 ERR("Sequence number inconsistent : prev = %" PRIu64
112 ", current = %" PRIu64,
113 stream->last_sequence_number, sequence_number);
114 ret = -1;
115 goto end;
116 }
117 stream->last_sequence_number = sequence_number;
118
119 if (discarded_events < stream->last_discarded_events) {
120 /*
121 * Overflow has occurred. We assume only one wrap-around
122 * has occurred.
123 */
124 stream->chan->discarded_events +=
125 (1ULL << (CAA_BITS_PER_LONG - 1)) -
126 stream->last_discarded_events +
127 discarded_events;
128 } else {
129 stream->chan->discarded_events += discarded_events -
130 stream->last_discarded_events;
131 }
132 stream->last_discarded_events = discarded_events;
133 ret = 0;
134
135end:
136 return ret;
137}
138
139static
140void ctf_packet_index_populate(struct ctf_packet_index *index,
141 off_t offset, const struct stream_subbuffer *subbuffer)
142{
143 *index = (typeof(*index)){
144 .offset = htobe64(offset),
145 .packet_size = htobe64(subbuffer->info.data.packet_size),
146 .content_size = htobe64(subbuffer->info.data.content_size),
147 .timestamp_begin = htobe64(
148 subbuffer->info.data.timestamp_begin),
149 .timestamp_end = htobe64(
150 subbuffer->info.data.timestamp_end),
151 .events_discarded = htobe64(
152 subbuffer->info.data.events_discarded),
153 .stream_id = htobe64(subbuffer->info.data.stream_id),
154 .stream_instance_id = htobe64(
155 subbuffer->info.data.stream_instance_id.is_set ?
156 subbuffer->info.data.stream_instance_id.value : -1ULL),
157 .packet_seq_num = htobe64(
158 subbuffer->info.data.sequence_number.is_set ?
159 subbuffer->info.data.sequence_number.value : -1ULL),
160 };
161}
162
163static ssize_t consumer_stream_consume_mmap(
164 struct lttng_consumer_local_data *ctx,
165 struct lttng_consumer_stream *stream,
166 const struct stream_subbuffer *subbuffer)
167{
168 const unsigned long padding_size =
169 subbuffer->info.data.padded_subbuf_size -
170 subbuffer->info.data.subbuf_size;
514775d9 171 const ssize_t written_bytes = lttng_consumer_on_read_subbuffer_mmap(
f5ba75b4 172 stream, &subbuffer->buffer.buffer, padding_size);
514775d9
FD
173
174 if (stream->net_seq_idx == -1ULL) {
175 /*
176 * When writing on disk, check that only the subbuffer (no
177 * padding) was written to disk.
178 */
179 if (written_bytes != subbuffer->info.data.padded_subbuf_size) {
180 DBG("Failed to write the entire padded subbuffer on disk (written_bytes: %zd, padded subbuffer size %lu)",
181 written_bytes,
182 subbuffer->info.data.padded_subbuf_size);
183 }
184 } else {
185 /*
186 * When streaming over the network, check that the entire
187 * subbuffer including padding was successfully written.
188 */
189 if (written_bytes != subbuffer->info.data.subbuf_size) {
190 DBG("Failed to write only the subbuffer over the network (written_bytes: %zd, subbuffer size %lu)",
191 written_bytes,
192 subbuffer->info.data.subbuf_size);
193 }
194 }
195
196 /*
197 * If `lttng_consumer_on_read_subbuffer_mmap()` returned an error, pass
198 * it along to the caller, else return zero.
199 */
200 if (written_bytes < 0) {
201 ERR("Error reading mmap subbuffer: %zd", written_bytes);
202 }
203
204 return written_bytes;
6f9449c2
JG
205}
206
207static ssize_t consumer_stream_consume_splice(
208 struct lttng_consumer_local_data *ctx,
209 struct lttng_consumer_stream *stream,
210 const struct stream_subbuffer *subbuffer)
211{
514775d9
FD
212 const ssize_t written_bytes = lttng_consumer_on_read_subbuffer_splice(
213 ctx, stream, subbuffer->info.data.padded_subbuf_size, 0);
214
215 if (written_bytes != subbuffer->info.data.padded_subbuf_size) {
216 DBG("Failed to write the entire padded subbuffer (written_bytes: %zd, padded subbuffer size %lu)",
217 written_bytes,
218 subbuffer->info.data.padded_subbuf_size);
219 }
220
221 /*
222 * If `lttng_consumer_on_read_subbuffer_splice()` returned an error,
223 * pass it along to the caller, else return zero.
224 */
225 if (written_bytes < 0) {
226 ERR("Error reading splice subbuffer: %zd", written_bytes);
227 }
228
229 return written_bytes;
6f9449c2
JG
230}
231
232static int consumer_stream_send_index(
233 struct lttng_consumer_stream *stream,
234 const struct stream_subbuffer *subbuffer,
235 struct lttng_consumer_local_data *ctx)
236{
237 off_t packet_offset = 0;
238 struct ctf_packet_index index = {};
239
240 /*
241 * This is called after consuming the sub-buffer; substract the
242 * effect this sub-buffer from the offset.
243 */
244 if (stream->net_seq_idx == (uint64_t) -1ULL) {
245 packet_offset = stream->out_fd_offset -
246 subbuffer->info.data.padded_subbuf_size;
247 }
248
249 ctf_packet_index_populate(&index, packet_offset, subbuffer);
250 return consumer_stream_write_index(stream, &index);
251}
252
253/*
254 * Actually do the metadata sync using the given metadata stream.
255 *
256 * Return 0 on success else a negative value. ENODATA can be returned also
257 * indicating that there is no metadata available for that stream.
258 */
259static int do_sync_metadata(struct lttng_consumer_stream *metadata,
260 struct lttng_consumer_local_data *ctx)
261{
262 int ret;
577eea73 263 enum sync_metadata_status status;
6f9449c2
JG
264
265 assert(metadata);
266 assert(metadata->metadata_flag);
267 assert(ctx);
268
269 /*
270 * In UST, since we have to write the metadata from the cache packet
271 * by packet, we might need to start this procedure multiple times
272 * until all the metadata from the cache has been extracted.
273 */
274 do {
275 /*
276 * Steps :
277 * - Lock the metadata stream
278 * - Check if metadata stream node was deleted before locking.
279 * - if yes, release and return success
280 * - Check if new metadata is ready (flush + snapshot pos)
281 * - If nothing : release and return.
282 * - Lock the metadata_rdv_lock
283 * - Unlock the metadata stream
284 * - cond_wait on metadata_rdv to wait the wakeup from the
285 * metadata thread
286 * - Unlock the metadata_rdv_lock
287 */
288 pthread_mutex_lock(&metadata->lock);
289
290 /*
291 * There is a possibility that we were able to acquire a reference on the
292 * stream from the RCU hash table but between then and now, the node might
293 * have been deleted just before the lock is acquired. Thus, after locking,
294 * we make sure the metadata node has not been deleted which means that the
295 * buffers are closed.
296 *
297 * In that case, there is no need to sync the metadata hence returning a
298 * success return code.
299 */
300 ret = cds_lfht_is_node_deleted(&metadata->node.node);
301 if (ret) {
302 ret = 0;
303 goto end_unlock_mutex;
304 }
305
306 switch (ctx->type) {
307 case LTTNG_CONSUMER_KERNEL:
308 /*
309 * Empty the metadata cache and flush the current stream.
310 */
577eea73 311 status = lttng_kconsumer_sync_metadata(metadata);
6f9449c2
JG
312 break;
313 case LTTNG_CONSUMER32_UST:
314 case LTTNG_CONSUMER64_UST:
315 /*
316 * Ask the sessiond if we have new metadata waiting and update the
317 * consumer metadata cache.
318 */
577eea73 319 status = lttng_ustconsumer_sync_metadata(ctx, metadata);
6f9449c2
JG
320 break;
321 default:
577eea73 322 abort();
6f9449c2 323 }
577eea73
JG
324
325 switch (status) {
326 case SYNC_METADATA_STATUS_NEW_DATA:
327 break;
328 case SYNC_METADATA_STATUS_NO_DATA:
329 ret = 0;
6f9449c2 330 goto end_unlock_mutex;
577eea73
JG
331 case SYNC_METADATA_STATUS_ERROR:
332 ret = -1;
333 goto end_unlock_mutex;
334 default:
335 abort();
6f9449c2
JG
336 }
337
338 /*
339 * At this point, new metadata have been flushed, so we wait on the
340 * rendez-vous point for the metadata thread to wake us up when it
341 * finishes consuming the metadata and continue execution.
342 */
343
344 pthread_mutex_lock(&metadata->metadata_rdv_lock);
345
346 /*
347 * Release metadata stream lock so the metadata thread can process it.
348 */
349 pthread_mutex_unlock(&metadata->lock);
350
351 /*
352 * Wait on the rendez-vous point. Once woken up, it means the metadata was
353 * consumed and thus synchronization is achieved.
354 */
355 pthread_cond_wait(&metadata->metadata_rdv, &metadata->metadata_rdv_lock);
356 pthread_mutex_unlock(&metadata->metadata_rdv_lock);
577eea73 357 } while (status == SYNC_METADATA_STATUS_NEW_DATA);
6f9449c2
JG
358
359 /* Success */
360 return 0;
361
362end_unlock_mutex:
363 pthread_mutex_unlock(&metadata->lock);
364 return ret;
365}
366
367/*
368 * Synchronize the metadata using a given session ID. A successful acquisition
369 * of a metadata stream will trigger a request to the session daemon and a
370 * snapshot so the metadata thread can consume it.
371 *
372 * This function call is a rendez-vous point between the metadata thread and
373 * the data thread.
374 *
375 * Return 0 on success or else a negative value.
376 */
377int consumer_stream_sync_metadata(struct lttng_consumer_local_data *ctx,
378 uint64_t session_id)
379{
380 int ret;
381 struct lttng_consumer_stream *stream = NULL;
382 struct lttng_ht_iter iter;
383 struct lttng_ht *ht;
384
385 assert(ctx);
386
387 /* Ease our life a bit. */
fa29bfbf 388 ht = the_consumer_data.stream_list_ht;
6f9449c2
JG
389
390 rcu_read_lock();
391
392 /* Search the metadata associated with the session id of the given stream. */
393
394 cds_lfht_for_each_entry_duplicate(ht->ht,
395 ht->hash_fct(&session_id, lttng_ht_seed), ht->match_fct,
396 &session_id, &iter.iter, stream, node_session_id.node) {
397 if (!stream->metadata_flag) {
398 continue;
399 }
400
401 ret = do_sync_metadata(stream, ctx);
402 if (ret < 0) {
403 goto end;
404 }
405 }
406
407 /*
408 * Force return code to 0 (success) since ret might be ENODATA for instance
409 * which is not an error but rather that we should come back.
410 */
411 ret = 0;
412
413end:
414 rcu_read_unlock();
415 return ret;
416}
417
418static int consumer_stream_sync_metadata_index(
419 struct lttng_consumer_stream *stream,
420 const struct stream_subbuffer *subbuffer,
421 struct lttng_consumer_local_data *ctx)
422{
4828ba4c 423 bool missed_metadata_flush;
6f9449c2
JG
424 int ret;
425
426 /* Block until all the metadata is sent. */
427 pthread_mutex_lock(&stream->metadata_timer_lock);
428 assert(!stream->missed_metadata_flush);
429 stream->waiting_on_metadata = true;
430 pthread_mutex_unlock(&stream->metadata_timer_lock);
431
432 ret = consumer_stream_sync_metadata(ctx, stream->session_id);
433
434 pthread_mutex_lock(&stream->metadata_timer_lock);
435 stream->waiting_on_metadata = false;
4828ba4c
MD
436 missed_metadata_flush = stream->missed_metadata_flush;
437 if (missed_metadata_flush) {
6f9449c2 438 stream->missed_metadata_flush = false;
6f9449c2 439 }
4828ba4c 440 pthread_mutex_unlock(&stream->metadata_timer_lock);
6f9449c2
JG
441 if (ret < 0) {
442 goto end;
443 }
444
445 ret = consumer_stream_send_index(stream, subbuffer, ctx);
4828ba4c
MD
446 /*
447 * Send the live inactivity beacon to handle the situation where
448 * the live timer is prevented from sampling this stream
449 * because the stream lock was being held while this stream is
450 * waiting on metadata. This ensures live viewer progress in the
451 * unlikely scenario where a live timer would be prevented from
452 * locking a stream lock repeatedly due to a steady flow of
453 * incoming metadata, for a stream which is mostly inactive.
454 *
455 * It is important to send the inactivity beacon packet to
456 * relayd _after_ sending the index associated with the data
457 * that was just sent, otherwise this can cause live viewers to
458 * observe timestamps going backwards between an inactivity
459 * beacon and a following trace packet.
460 */
461 if (missed_metadata_flush) {
462 (void) stream->read_subbuffer_ops.send_live_beacon(stream);
463 }
6f9449c2
JG
464end:
465 return ret;
466}
467
468/*
469 * Check if the local version of the metadata stream matches with the version
470 * of the metadata stream in the kernel. If it was updated, set the reset flag
471 * on the stream.
472 */
473static
474int metadata_stream_check_version(struct lttng_consumer_stream *stream,
475 const struct stream_subbuffer *subbuffer)
476{
477 if (stream->metadata_version == subbuffer->info.metadata.version) {
478 goto end;
479 }
480
481 DBG("New metadata version detected");
55954e07
JG
482 consumer_stream_metadata_set_version(stream,
483 subbuffer->info.metadata.version);
f5ba75b4 484
6f9449c2
JG
485 if (stream->read_subbuffer_ops.reset_metadata) {
486 stream->read_subbuffer_ops.reset_metadata(stream);
487 }
488
489end:
490 return 0;
491}
492
503fefca
JG
493static
494bool stream_is_rotating_to_null_chunk(
495 const struct lttng_consumer_stream *stream)
496{
497 bool rotating_to_null_chunk = false;
498
499 if (stream->rotate_position == -1ULL) {
500 /* No rotation ongoing. */
501 goto end;
502 }
503
504 if (stream->trace_chunk == stream->chan->trace_chunk ||
505 !stream->chan->trace_chunk) {
506 rotating_to_null_chunk = true;
507 }
508end:
509 return rotating_to_null_chunk;
510}
511
512enum consumer_stream_open_packet_status consumer_stream_open_packet(
513 struct lttng_consumer_stream *stream)
514{
515 int ret;
516 enum consumer_stream_open_packet_status status;
517 unsigned long produced_pos_before, produced_pos_after;
518
519 ret = lttng_consumer_sample_snapshot_positions(stream);
520 if (ret < 0) {
521 ERR("Failed to snapshot positions before post-rotation empty packet flush: stream id = %" PRIu64
522 ", channel name = %s, session id = %" PRIu64,
523 stream->key, stream->chan->name,
524 stream->chan->session_id);
525 status = CONSUMER_STREAM_OPEN_PACKET_STATUS_ERROR;
526 goto end;
527 }
528
529 ret = lttng_consumer_get_produced_snapshot(
530 stream, &produced_pos_before);
531 if (ret < 0) {
532 ERR("Failed to read produced position before post-rotation empty packet flush: stream id = %" PRIu64
533 ", channel name = %s, session id = %" PRIu64,
534 stream->key, stream->chan->name,
535 stream->chan->session_id);
536 status = CONSUMER_STREAM_OPEN_PACKET_STATUS_ERROR;
537 goto end;
538 }
539
540 ret = consumer_stream_flush_buffer(stream, 0);
541 if (ret) {
542 ERR("Failed to flush an empty packet at rotation point: stream id = %" PRIu64
543 ", channel name = %s, session id = %" PRIu64,
544 stream->key, stream->chan->name,
545 stream->chan->session_id);
546 status = CONSUMER_STREAM_OPEN_PACKET_STATUS_ERROR;
547 goto end;
548 }
549
550 ret = lttng_consumer_sample_snapshot_positions(stream);
551 if (ret < 0) {
552 ERR("Failed to snapshot positions after post-rotation empty packet flush: stream id = %" PRIu64
553 ", channel name = %s, session id = %" PRIu64,
554 stream->key, stream->chan->name,
555 stream->chan->session_id);
556 status = CONSUMER_STREAM_OPEN_PACKET_STATUS_ERROR;
557 goto end;
558 }
559
560 ret = lttng_consumer_get_produced_snapshot(stream, &produced_pos_after);
561 if (ret < 0) {
562 ERR("Failed to read produced position after post-rotation empty packet flush: stream id = %" PRIu64
563 ", channel name = %s, session id = %" PRIu64,
564 stream->key, stream->chan->name,
565 stream->chan->session_id);
566 status = CONSUMER_STREAM_OPEN_PACKET_STATUS_ERROR;
567 goto end;
568 }
569
570 /*
571 * Determine if the flush had an effect by comparing the produced
572 * positons before and after the flush.
573 */
574 status = produced_pos_before != produced_pos_after ?
575 CONSUMER_STREAM_OPEN_PACKET_STATUS_OPENED :
576 CONSUMER_STREAM_OPEN_PACKET_STATUS_NO_SPACE;
577 if (status == CONSUMER_STREAM_OPEN_PACKET_STATUS_OPENED) {
578 stream->opened_packet_in_current_trace_chunk = true;
579 }
580
581end:
582 return status;
583}
584
585/*
586 * An attempt to open a new packet is performed after a rotation completes to
587 * get a begin timestamp as close as possible to the rotation point.
588 *
589 * However, that initial attempt at opening a packet can fail due to a full
590 * ring-buffer. In that case, a second attempt is performed after consuming
591 * a packet since that will have freed enough space in the ring-buffer.
592 */
593static
594int post_consume_open_new_packet(struct lttng_consumer_stream *stream,
595 const struct stream_subbuffer *subbuffer,
596 struct lttng_consumer_local_data *ctx)
597{
598 int ret = 0;
599
600 if (!stream->opened_packet_in_current_trace_chunk &&
601 stream->trace_chunk &&
602 !stream_is_rotating_to_null_chunk(stream)) {
603 const enum consumer_stream_open_packet_status status =
604 consumer_stream_open_packet(stream);
605
606 switch (status) {
607 case CONSUMER_STREAM_OPEN_PACKET_STATUS_OPENED:
608 DBG("Opened a packet after consuming a packet rotation: stream id = %" PRIu64
609 ", channel name = %s, session id = %" PRIu64,
610 stream->key, stream->chan->name,
611 stream->chan->session_id);
612 stream->opened_packet_in_current_trace_chunk = true;
613 break;
614 case CONSUMER_STREAM_OPEN_PACKET_STATUS_NO_SPACE:
615 /*
616 * Can't open a packet as there is no space left.
617 * This means that new events were produced, resulting
618 * in a packet being opened, which is what we want
619 * anyhow.
620 */
621 DBG("No space left to open a packet after consuming a packet: stream id = %" PRIu64
622 ", channel name = %s, session id = %" PRIu64,
623 stream->key, stream->chan->name,
624 stream->chan->session_id);
625 stream->opened_packet_in_current_trace_chunk = true;
626 break;
627 case CONSUMER_STREAM_OPEN_PACKET_STATUS_ERROR:
628 /* Logged by callee. */
629 ret = -1;
630 goto end;
631 default:
632 abort();
633 }
634
635 stream->opened_packet_in_current_trace_chunk = true;
636 }
637
638end:
639 return ret;
640}
641
6f9449c2
JG
642struct lttng_consumer_stream *consumer_stream_create(
643 struct lttng_consumer_channel *channel,
644 uint64_t channel_key,
645 uint64_t stream_key,
646 const char *channel_name,
647 uint64_t relayd_id,
648 uint64_t session_id,
649 struct lttng_trace_chunk *trace_chunk,
650 int cpu,
651 int *alloc_ret,
652 enum consumer_channel_type type,
653 unsigned int monitor)
654{
655 int ret;
656 struct lttng_consumer_stream *stream;
657
658 stream = zmalloc(sizeof(*stream));
659 if (stream == NULL) {
660 PERROR("malloc struct lttng_consumer_stream");
661 ret = -ENOMEM;
662 goto end;
663 }
664
bb3cce3f
MD
665 rcu_read_lock();
666
6f9449c2
JG
667 if (trace_chunk && !lttng_trace_chunk_get(trace_chunk)) {
668 ERR("Failed to acquire trace chunk reference during the creation of a stream");
669 ret = -1;
670 goto error;
671 }
672
2577e3ad
JG
673 stream->send_node = (typeof(stream->send_node))
674 CDS_LIST_HEAD_INIT(stream->send_node);
6f9449c2
JG
675 stream->chan = channel;
676 stream->key = stream_key;
677 stream->trace_chunk = trace_chunk;
678 stream->out_fd = -1;
679 stream->out_fd_offset = 0;
680 stream->output_written = 0;
681 stream->net_seq_idx = relayd_id;
682 stream->session_id = session_id;
683 stream->monitor = monitor;
684 stream->endpoint_status = CONSUMER_ENDPOINT_ACTIVE;
685 stream->index_file = NULL;
686 stream->last_sequence_number = -1ULL;
687 stream->rotate_position = -1ULL;
f96af312
JG
688 /* Buffer is created with an open packet. */
689 stream->opened_packet_in_current_trace_chunk = true;
6f9449c2
JG
690 pthread_mutex_init(&stream->lock, NULL);
691 pthread_mutex_init(&stream->metadata_timer_lock, NULL);
692
693 /* If channel is the metadata, flag this stream as metadata. */
694 if (type == CONSUMER_CHANNEL_TYPE_METADATA) {
695 stream->metadata_flag = 1;
696 /* Metadata is flat out. */
697 strncpy(stream->name, DEFAULT_METADATA_NAME, sizeof(stream->name));
698 /* Live rendez-vous point. */
699 pthread_cond_init(&stream->metadata_rdv, NULL);
700 pthread_mutex_init(&stream->metadata_rdv_lock, NULL);
701 } else {
702 /* Format stream name to <channel_name>_<cpu_number> */
703 ret = snprintf(stream->name, sizeof(stream->name), "%s_%d",
704 channel_name, cpu);
705 if (ret < 0) {
706 PERROR("snprintf stream name");
707 goto error;
708 }
709 }
710
711 switch (channel->output) {
712 case CONSUMER_CHANNEL_SPLICE:
713 stream->output = LTTNG_EVENT_SPLICE;
714 ret = utils_create_pipe(stream->splice_pipe);
715 if (ret < 0) {
716 goto error;
717 }
718 break;
719 case CONSUMER_CHANNEL_MMAP:
720 stream->output = LTTNG_EVENT_MMAP;
721 break;
722 default:
723 abort();
724 }
725
726 /* Key is always the wait_fd for streams. */
727 lttng_ht_node_init_u64(&stream->node, stream->key);
728
729 /* Init node per channel id key */
730 lttng_ht_node_init_u64(&stream->node_channel_id, channel_key);
731
732 /* Init session id node with the stream session id */
733 lttng_ht_node_init_u64(&stream->node_session_id, stream->session_id);
734
735 DBG3("Allocated stream %s (key %" PRIu64 ", chan_key %" PRIu64
736 " relayd_id %" PRIu64 ", session_id %" PRIu64,
737 stream->name, stream->key, channel_key,
738 stream->net_seq_idx, stream->session_id);
739
740 rcu_read_unlock();
741
503fefca
JG
742 lttng_dynamic_array_init(&stream->read_subbuffer_ops.post_consume_cbs,
743 sizeof(post_consume_cb), NULL);
744
6f9449c2
JG
745 if (type == CONSUMER_CHANNEL_TYPE_METADATA) {
746 stream->read_subbuffer_ops.lock =
747 consumer_stream_metadata_lock_all;
748 stream->read_subbuffer_ops.unlock =
749 consumer_stream_metadata_unlock_all;
a48ac75a
JR
750 stream->read_subbuffer_ops.assert_locked =
751 consumer_stream_metadata_assert_locked_all;
6f9449c2
JG
752 stream->read_subbuffer_ops.pre_consume_subbuffer =
753 metadata_stream_check_version;
754 } else {
503fefca
JG
755 const post_consume_cb post_consume_index_op = channel->is_live ?
756 consumer_stream_sync_metadata_index :
757 consumer_stream_send_index;
758
759 ret = lttng_dynamic_array_add_element(
760 &stream->read_subbuffer_ops.post_consume_cbs,
761 &post_consume_index_op);
762 if (ret) {
763 PERROR("Failed to add `send index` callback to stream's post consumption callbacks");
764 goto error;
765 }
766
767 ret = lttng_dynamic_array_add_element(
768 &stream->read_subbuffer_ops.post_consume_cbs,
769 &(post_consume_cb) { post_consume_open_new_packet });
770 if (ret) {
771 PERROR("Failed to add `open new packet` callback to stream's post consumption callbacks");
772 goto error;
773 }
774
6f9449c2
JG
775 stream->read_subbuffer_ops.lock = consumer_stream_data_lock_all;
776 stream->read_subbuffer_ops.unlock =
777 consumer_stream_data_unlock_all;
a48ac75a
JR
778 stream->read_subbuffer_ops.assert_locked =
779 consumer_stream_data_assert_locked_all;
6f9449c2
JG
780 stream->read_subbuffer_ops.pre_consume_subbuffer =
781 consumer_stream_update_stats;
6f9449c2
JG
782 }
783
784 if (channel->output == CONSUMER_CHANNEL_MMAP) {
785 stream->read_subbuffer_ops.consume_subbuffer =
786 consumer_stream_consume_mmap;
787 } else {
788 stream->read_subbuffer_ops.consume_subbuffer =
789 consumer_stream_consume_splice;
790 }
791
792 return stream;
793
794error:
795 rcu_read_unlock();
796 lttng_trace_chunk_put(stream->trace_chunk);
503fefca 797 lttng_dynamic_array_reset(&stream->read_subbuffer_ops.post_consume_cbs);
6f9449c2
JG
798 free(stream);
799end:
800 if (alloc_ret) {
801 *alloc_ret = ret;
802 }
803 return NULL;
804}
805
51230d70
DG
806/*
807 * Close stream on the relayd side. This call can destroy a relayd if the
808 * conditions are met.
809 *
810 * A RCU read side lock MUST be acquired if the relayd object was looked up in
811 * a hash table before calling this.
812 */
813void consumer_stream_relayd_close(struct lttng_consumer_stream *stream,
814 struct consumer_relayd_sock_pair *relayd)
815{
816 int ret;
817
818 assert(stream);
819 assert(relayd);
820
d01178b6
DG
821 if (stream->sent_to_relayd) {
822 uatomic_dec(&relayd->refcount);
823 assert(uatomic_read(&relayd->refcount) >= 0);
824 }
51230d70
DG
825
826 /* Closing streams requires to lock the control socket. */
827 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
828 ret = relayd_send_close_stream(&relayd->control_sock,
829 stream->relayd_stream_id,
830 stream->next_net_seq_num - 1);
831 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
832 if (ret < 0) {
9276e5c8
JR
833 ERR("Relayd send close stream failed. Cleaning up relayd %" PRIu64 ".", relayd->net_seq_idx);
834 lttng_consumer_cleanup_relayd(relayd);
51230d70
DG
835 }
836
837 /* Both conditions are met, we destroy the relayd. */
838 if (uatomic_read(&relayd->refcount) == 0 &&
839 uatomic_read(&relayd->destroy_flag)) {
840 consumer_destroy_relayd(relayd);
841 }
10a50311 842 stream->net_seq_idx = (uint64_t) -1ULL;
d01178b6 843 stream->sent_to_relayd = 0;
51230d70
DG
844}
845
846/*
847 * Close stream's file descriptors and, if needed, close stream also on the
848 * relayd side.
849 *
850 * The consumer data lock MUST be acquired.
851 * The stream lock MUST be acquired.
852 */
853void consumer_stream_close(struct lttng_consumer_stream *stream)
854{
855 int ret;
856 struct consumer_relayd_sock_pair *relayd;
857
858 assert(stream);
859
fa29bfbf 860 switch (the_consumer_data.type) {
51230d70
DG
861 case LTTNG_CONSUMER_KERNEL:
862 if (stream->mmap_base != NULL) {
863 ret = munmap(stream->mmap_base, stream->mmap_len);
864 if (ret != 0) {
865 PERROR("munmap");
866 }
867 }
868
869 if (stream->wait_fd >= 0) {
870 ret = close(stream->wait_fd);
871 if (ret) {
872 PERROR("close");
873 }
10a50311 874 stream->wait_fd = -1;
51230d70 875 }
a2361a61
JD
876 if (stream->chan->output == CONSUMER_CHANNEL_SPLICE) {
877 utils_close_pipe(stream->splice_pipe);
878 }
51230d70
DG
879 break;
880 case LTTNG_CONSUMER32_UST:
881 case LTTNG_CONSUMER64_UST:
6d574024
DG
882 {
883 /*
884 * Special case for the metadata since the wait fd is an internal pipe
885 * polled in the metadata thread.
886 */
887 if (stream->metadata_flag && stream->chan->monitor) {
888 int rpipe = stream->ust_metadata_poll_pipe[0];
889
890 /*
891 * This will stop the channel timer if one and close the write side
892 * of the metadata poll pipe.
893 */
894 lttng_ustconsumer_close_metadata(stream->chan);
895 if (rpipe >= 0) {
896 ret = close(rpipe);
897 if (ret < 0) {
b4a650f3 898 PERROR("closing metadata pipe read side");
6d574024
DG
899 }
900 stream->ust_metadata_poll_pipe[0] = -1;
901 }
902 }
51230d70 903 break;
6d574024 904 }
51230d70
DG
905 default:
906 ERR("Unknown consumer_data type");
907 assert(0);
908 }
909
910 /* Close output fd. Could be a socket or local file at this point. */
911 if (stream->out_fd >= 0) {
912 ret = close(stream->out_fd);
913 if (ret) {
914 PERROR("close");
915 }
10a50311 916 stream->out_fd = -1;
51230d70
DG
917 }
918
f8f3885c
MD
919 if (stream->index_file) {
920 lttng_index_file_put(stream->index_file);
921 stream->index_file = NULL;
309167d2
JD
922 }
923
d2956687
JG
924 lttng_trace_chunk_put(stream->trace_chunk);
925 stream->trace_chunk = NULL;
926
51230d70
DG
927 /* Check and cleanup relayd if needed. */
928 rcu_read_lock();
929 relayd = consumer_find_relayd(stream->net_seq_idx);
930 if (relayd != NULL) {
931 consumer_stream_relayd_close(stream, relayd);
932 }
933 rcu_read_unlock();
934}
935
936/*
937 * Delete the stream from all possible hash tables.
938 *
939 * The consumer data lock MUST be acquired.
940 * The stream lock MUST be acquired.
941 */
942void consumer_stream_delete(struct lttng_consumer_stream *stream,
943 struct lttng_ht *ht)
944{
945 int ret;
946 struct lttng_ht_iter iter;
947
948 assert(stream);
10a50311
JD
949 /* Should NEVER be called not in monitor mode. */
950 assert(stream->chan->monitor);
51230d70
DG
951
952 rcu_read_lock();
953
954 if (ht) {
955 iter.iter.node = &stream->node.node;
956 ret = lttng_ht_del(ht, &iter);
957 assert(!ret);
958 }
959
960 /* Delete from stream per channel ID hash table. */
961 iter.iter.node = &stream->node_channel_id.node;
962 /*
963 * The returned value is of no importance. Even if the node is NOT in the
964 * hash table, we continue since we may have been called by a code path
965 * that did not add the stream to a (all) hash table. Same goes for the
966 * next call ht del call.
967 */
fa29bfbf 968 (void) lttng_ht_del(the_consumer_data.stream_per_chan_id_ht, &iter);
51230d70
DG
969
970 /* Delete from the global stream list. */
971 iter.iter.node = &stream->node_session_id.node;
972 /* See the previous ht del on why we ignore the returned value. */
fa29bfbf 973 (void) lttng_ht_del(the_consumer_data.stream_list_ht, &iter);
51230d70
DG
974
975 rcu_read_unlock();
976
6d574024
DG
977 if (!stream->metadata_flag) {
978 /* Decrement the stream count of the global consumer data. */
fa29bfbf
SM
979 assert(the_consumer_data.stream_count > 0);
980 the_consumer_data.stream_count--;
6d574024 981 }
51230d70
DG
982}
983
984/*
985 * Free the given stream within a RCU call.
986 */
987void consumer_stream_free(struct lttng_consumer_stream *stream)
988{
989 assert(stream);
990
f5ba75b4 991 metadata_bucket_destroy(stream->metadata_bucket);
51230d70
DG
992 call_rcu(&stream->node.head, free_stream_rcu);
993}
994
995/*
10a50311 996 * Destroy the stream's buffers of the tracer.
51230d70 997 */
10a50311 998void consumer_stream_destroy_buffers(struct lttng_consumer_stream *stream)
51230d70 999{
10a50311
JD
1000 assert(stream);
1001
fa29bfbf 1002 switch (the_consumer_data.type) {
10a50311
JD
1003 case LTTNG_CONSUMER_KERNEL:
1004 break;
1005 case LTTNG_CONSUMER32_UST:
1006 case LTTNG_CONSUMER64_UST:
1007 lttng_ustconsumer_del_stream(stream);
1008 break;
1009 default:
1010 ERR("Unknown consumer_data type");
1011 assert(0);
1012 }
1013}
51230d70 1014
10a50311 1015/*
4891ece8 1016 * Destroy and close a already created stream.
10a50311 1017 */
4891ece8 1018static void destroy_close_stream(struct lttng_consumer_stream *stream)
10a50311 1019{
51230d70
DG
1020 assert(stream);
1021
4891ece8 1022 DBG("Consumer stream destroy monitored key: %" PRIu64, stream->key);
10a50311
JD
1023
1024 /* Destroy tracer buffers of the stream. */
1025 consumer_stream_destroy_buffers(stream);
1026 /* Close down everything including the relayd if one. */
1027 consumer_stream_close(stream);
1028}
51230d70 1029
10a50311 1030/*
4891ece8
DG
1031 * Decrement the stream's channel refcount and if down to 0, return the channel
1032 * pointer so it can be destroyed by the caller or NULL if not.
10a50311 1033 */
4891ece8
DG
1034static struct lttng_consumer_channel *unref_channel(
1035 struct lttng_consumer_stream *stream)
10a50311 1036{
4891ece8
DG
1037 struct lttng_consumer_channel *free_chan = NULL;
1038
10a50311 1039 assert(stream);
4891ece8 1040 assert(stream->chan);
10a50311 1041
4891ece8
DG
1042 /* Update refcount of channel and see if we need to destroy it. */
1043 if (!uatomic_sub_return(&stream->chan->refcount, 1)
1044 && !uatomic_read(&stream->chan->nb_init_stream_left)) {
1045 free_chan = stream->chan;
1046 }
51230d70 1047
4891ece8 1048 return free_chan;
10a50311 1049}
51230d70 1050
10a50311
JD
1051/*
1052 * Destroy a stream completely. This will delete, close and free the stream.
1053 * Once return, the stream is NO longer usable. Its channel may get destroyed
1054 * if conditions are met for a monitored stream.
1055 *
1056 * This MUST be called WITHOUT the consumer data and stream lock acquired if
1057 * the stream is in _monitor_ mode else it does not matter.
1058 */
1059void consumer_stream_destroy(struct lttng_consumer_stream *stream,
1060 struct lttng_ht *ht)
1061{
1062 assert(stream);
1063
18acc0a4
JG
1064 cds_list_del_init(&stream->send_node);
1065
10a50311 1066 /* Stream is in monitor mode. */
4891ece8 1067 if (stream->monitor) {
10a50311 1068 struct lttng_consumer_channel *free_chan = NULL;
51230d70 1069
4891ece8
DG
1070 /*
1071 * This means that the stream was successfully removed from the streams
1072 * list of the channel and sent to the right thread managing this
1073 * stream thus being globally visible.
1074 */
1075 if (stream->globally_visible) {
fa29bfbf 1076 pthread_mutex_lock(&the_consumer_data.lock);
a9838785 1077 pthread_mutex_lock(&stream->chan->lock);
4891ece8
DG
1078 pthread_mutex_lock(&stream->lock);
1079 /* Remove every reference of the stream in the consumer. */
1080 consumer_stream_delete(stream, ht);
1081
1082 destroy_close_stream(stream);
1083
1084 /* Update channel's refcount of the stream. */
1085 free_chan = unref_channel(stream);
1086
1087 /* Indicates that the consumer data state MUST be updated after this. */
fa29bfbf 1088 the_consumer_data.need_update = 1;
4891ece8
DG
1089
1090 pthread_mutex_unlock(&stream->lock);
a9838785 1091 pthread_mutex_unlock(&stream->chan->lock);
fa29bfbf 1092 pthread_mutex_unlock(&the_consumer_data.lock);
4891ece8
DG
1093 } else {
1094 /*
1095 * If the stream is not visible globally, this needs to be done
1096 * outside of the consumer data lock section.
1097 */
47287c8c 1098 destroy_close_stream(stream);
4891ece8 1099 free_chan = unref_channel(stream);
10a50311
JD
1100 }
1101
10a50311
JD
1102 if (free_chan) {
1103 consumer_del_channel(free_chan);
1104 }
1105 } else {
4891ece8 1106 destroy_close_stream(stream);
51230d70
DG
1107 }
1108
1109 /* Free stream within a RCU call. */
d2956687
JG
1110 lttng_trace_chunk_put(stream->trace_chunk);
1111 stream->trace_chunk = NULL;
503fefca 1112 lttng_dynamic_array_reset(&stream->read_subbuffer_ops.post_consume_cbs);
51230d70
DG
1113 consumer_stream_free(stream);
1114}
1c20f0e2
JD
1115
1116/*
1117 * Write index of a specific stream either on the relayd or local disk.
1118 *
1119 * Return 0 on success or else a negative value.
1120 */
1121int consumer_stream_write_index(struct lttng_consumer_stream *stream,
f8f3885c 1122 struct ctf_packet_index *element)
1c20f0e2
JD
1123{
1124 int ret;
1c20f0e2
JD
1125
1126 assert(stream);
f8f3885c 1127 assert(element);
1c20f0e2
JD
1128
1129 rcu_read_lock();
23c910e5
JR
1130 if (stream->net_seq_idx != (uint64_t) -1ULL) {
1131 struct consumer_relayd_sock_pair *relayd;
1132 relayd = consumer_find_relayd(stream->net_seq_idx);
1133 if (relayd) {
1134 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
1135 ret = relayd_send_index(&relayd->control_sock, element,
1c20f0e2 1136 stream->relayd_stream_id, stream->next_net_seq_num - 1);
9276e5c8
JR
1137 if (ret < 0) {
1138 /*
1139 * Communication error with lttng-relayd,
1140 * perform cleanup now
1141 */
1142 ERR("Relayd send index failed. Cleaning up relayd %" PRIu64 ".", relayd->net_seq_idx);
1143 lttng_consumer_cleanup_relayd(relayd);
1144 ret = -1;
1145 }
23c910e5
JR
1146 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
1147 } else {
1148 ERR("Stream %" PRIu64 " relayd ID %" PRIu64 " unknown. Can't write index.",
1149 stream->key, stream->net_seq_idx);
1150 ret = -1;
1151 }
1c20f0e2 1152 } else {
f8f3885c 1153 if (lttng_index_file_write(stream->index_file, element)) {
6cd525e8
MD
1154 ret = -1;
1155 } else {
1156 ret = 0;
1157 }
1c20f0e2
JD
1158 }
1159 if (ret < 0) {
1160 goto error;
1161 }
1162
1163error:
1164 rcu_read_unlock();
1165 return ret;
1166}
94d49140 1167
d2956687
JG
1168int consumer_stream_create_output_files(struct lttng_consumer_stream *stream,
1169 bool create_index)
1170{
1171 int ret;
1172 enum lttng_trace_chunk_status chunk_status;
1173 const int flags = O_WRONLY | O_CREAT | O_TRUNC;
1174 const mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP;
1175 char stream_path[LTTNG_PATH_MAX];
1176
1177 ASSERT_LOCKED(stream->lock);
1178 assert(stream->trace_chunk);
1179
1180 ret = utils_stream_file_path(stream->chan->pathname, stream->name,
1181 stream->chan->tracefile_size,
3b16476a 1182 stream->tracefile_count_current, NULL,
d2956687
JG
1183 stream_path, sizeof(stream_path));
1184 if (ret < 0) {
1185 goto end;
1186 }
1187
1188 if (stream->out_fd >= 0) {
1189 ret = close(stream->out_fd);
1190 if (ret < 0) {
1191 PERROR("Failed to close stream file \"%s\"",
1192 stream->name);
1193 goto end;
1194 }
1195 stream->out_fd = -1;
2932b393 1196 }
d2956687
JG
1197
1198 DBG("Opening stream output file \"%s\"", stream_path);
1199 chunk_status = lttng_trace_chunk_open_file(stream->trace_chunk, stream_path,
3ff5c5db 1200 flags, mode, &stream->out_fd, false);
2932b393 1201 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
d2956687
JG
1202 ERR("Failed to open stream file \"%s\"", stream->name);
1203 ret = -1;
1204 goto end;
2932b393 1205 }
d2956687
JG
1206
1207 if (!stream->metadata_flag && (create_index || stream->index_file)) {
1208 if (stream->index_file) {
1209 lttng_index_file_put(stream->index_file);
1210 }
3ff5c5db 1211 chunk_status = lttng_index_file_create_from_trace_chunk(
d2956687
JG
1212 stream->trace_chunk,
1213 stream->chan->pathname,
1214 stream->name,
1215 stream->chan->tracefile_size,
1216 stream->tracefile_count_current,
1217 CTF_INDEX_MAJOR, CTF_INDEX_MINOR,
3ff5c5db
MD
1218 false, &stream->index_file);
1219 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
d2956687
JG
1220 ret = -1;
1221 goto end;
1222 }
1223 }
1224
1225 /* Reset current size because we just perform a rotation. */
1226 stream->tracefile_size_current = 0;
1227 stream->out_fd_offset = 0;
1228end:
1229 return ret;
1230}
1231
1232int consumer_stream_rotate_output_files(struct lttng_consumer_stream *stream)
1233{
1234 int ret;
1235
1236 stream->tracefile_count_current++;
1237 if (stream->chan->tracefile_count > 0) {
1238 stream->tracefile_count_current %=
1239 stream->chan->tracefile_count;
1240 }
1241
1242 DBG("Rotating output files of stream \"%s\"", stream->name);
1243 ret = consumer_stream_create_output_files(stream, true);
1244 if (ret) {
1245 goto end;
1246 }
1247
1248end:
1249 return ret;
1250}
cdb72e4e
JG
1251
1252bool consumer_stream_is_deleted(struct lttng_consumer_stream *stream)
1253{
1254 /*
1255 * This function does not take a const stream since
1256 * cds_lfht_is_node_deleted was not const before liburcu 0.12.
1257 */
1258 assert(stream);
1259 return cds_lfht_is_node_deleted(&stream->node.node);
1260}
f5ba75b4
JG
1261
1262static ssize_t metadata_bucket_flush(
1263 const struct stream_subbuffer *buffer, void *data)
1264{
1265 ssize_t ret;
1266 struct lttng_consumer_stream *stream = data;
1267
1268 ret = consumer_stream_consume_mmap(NULL, stream, buffer);
1269 if (ret < 0) {
1270 goto end;
1271 }
1272end:
1273 return ret;
1274}
1275
1276static ssize_t metadata_bucket_consume(
1277 struct lttng_consumer_local_data *unused,
1278 struct lttng_consumer_stream *stream,
1279 const struct stream_subbuffer *subbuffer)
1280{
1281 ssize_t ret;
1282 enum metadata_bucket_status status;
1283
1284 status = metadata_bucket_fill(stream->metadata_bucket, subbuffer);
1285 switch (status) {
1286 case METADATA_BUCKET_STATUS_OK:
1287 /* Return consumed size. */
1288 ret = subbuffer->buffer.buffer.size;
1289 break;
1290 default:
1291 ret = -1;
1292 }
1293
1294 return ret;
1295}
1296
1297int consumer_stream_enable_metadata_bucketization(
1298 struct lttng_consumer_stream *stream)
1299{
1300 int ret = 0;
1301
1302 assert(stream->metadata_flag);
1303 assert(!stream->metadata_bucket);
1304 assert(stream->chan->output == CONSUMER_CHANNEL_MMAP);
1305
1306 stream->metadata_bucket = metadata_bucket_create(
1307 metadata_bucket_flush, stream);
1308 if (!stream->metadata_bucket) {
1309 ret = -1;
1310 goto end;
1311 }
1312
1313 stream->read_subbuffer_ops.consume_subbuffer = metadata_bucket_consume;
1314end:
1315 return ret;
1316}
55954e07
JG
1317
1318void consumer_stream_metadata_set_version(
1319 struct lttng_consumer_stream *stream, uint64_t new_version)
1320{
1321 assert(new_version > stream->metadata_version);
1322 stream->metadata_version = new_version;
1323 stream->reset_metadata_flag = 1;
1324
1325 if (stream->metadata_bucket) {
1326 metadata_bucket_reset(stream->metadata_bucket);
1327 }
1328}
503fefca
JG
1329
1330int consumer_stream_flush_buffer(struct lttng_consumer_stream *stream,
1331 bool producer_active)
1332{
1333 int ret = 0;
1334
fa29bfbf 1335 switch (the_consumer_data.type) {
503fefca
JG
1336 case LTTNG_CONSUMER_KERNEL:
1337 if (producer_active) {
1338 ret = kernctl_buffer_flush(stream->wait_fd);
1339 if (ret < 0) {
1340 ERR("Failed to flush kernel stream");
1341 goto end;
1342 }
1343 } else {
1344 ret = kernctl_buffer_flush_empty(stream->wait_fd);
1345 if (ret < 0) {
1346 /*
1347 * Doing a buffer flush which does not take into
1348 * account empty packets. This is not perfect,
1349 * but required as a fall-back when
1350 * "flush_empty" is not implemented by
1351 * lttng-modules.
1352 */
1353 ret = kernctl_buffer_flush(stream->wait_fd);
1354 if (ret < 0) {
1355 ERR("Failed to flush kernel stream");
1356 goto end;
1357 }
1358 }
1359 }
1360 break;
1361 case LTTNG_CONSUMER32_UST:
1362 case LTTNG_CONSUMER64_UST:
d85707b0 1363 ret = lttng_ustconsumer_flush_buffer(stream, (int) producer_active);
503fefca
JG
1364 break;
1365 default:
1366 ERR("Unknown consumer_data type");
1367 abort();
1368 }
1369
1370end:
1371 return ret;
1372}
This page took 0.113619 seconds and 4 git commands to generate.