consumerd: move rotation logic to domain-agnostic read path
[lttng-tools.git] / src / common / consumer / consumer.c
CommitLineData
3bd1e081
MD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
00e2e675 4 * 2012 - David Goulet <dgoulet@efficios.com>
3bd1e081 5 *
d14d33bf
AM
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
3bd1e081 9 *
d14d33bf
AM
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
3bd1e081 14 *
d14d33bf
AM
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3bd1e081
MD
18 */
19
6c1c0768 20#define _LGPL_SOURCE
3bd1e081 21#include <assert.h>
3bd1e081
MD
22#include <poll.h>
23#include <pthread.h>
24#include <stdlib.h>
25#include <string.h>
26#include <sys/mman.h>
27#include <sys/socket.h>
28#include <sys/types.h>
29#include <unistd.h>
77c7c900 30#include <inttypes.h>
331744e3 31#include <signal.h>
3bd1e081 32
51a9e1c7 33#include <bin/lttng-consumerd/health-consumerd.h>
990570ed 34#include <common/common.h>
fb3a43a9 35#include <common/utils.h>
e5148e25 36#include <common/time.h>
fb3a43a9 37#include <common/compat/poll.h>
f263b7fd 38#include <common/compat/endian.h>
309167d2 39#include <common/index/index.h>
10a8a223 40#include <common/kernel-ctl/kernel-ctl.h>
00e2e675 41#include <common/sessiond-comm/relayd.h>
10a8a223
DG
42#include <common/sessiond-comm/sessiond-comm.h>
43#include <common/kernel-consumer/kernel-consumer.h>
00e2e675 44#include <common/relayd/relayd.h>
10a8a223 45#include <common/ust-consumer/ust-consumer.h>
c8fea79c
JR
46#include <common/consumer/consumer-timer.h>
47#include <common/consumer/consumer.h>
48#include <common/consumer/consumer-stream.h>
49#include <common/consumer/consumer-testpoint.h>
50#include <common/align.h>
5feafd41 51#include <common/consumer/consumer-metadata-cache.h>
e5148e25
JG
52#include <common/trace-chunk.h>
53#include <common/trace-chunk-registry.h>
54#include <common/string-utils/format.h>
84a93c08 55#include <common/dynamic-array.h>
3bd1e081
MD
56
57struct lttng_consumer_global_data consumer_data = {
3bd1e081
MD
58 .stream_count = 0,
59 .need_update = 1,
60 .type = LTTNG_CONSUMER_UNKNOWN,
61};
62
d8ef542d
MD
63enum consumer_channel_action {
64 CONSUMER_CHANNEL_ADD,
a0cbdd2e 65 CONSUMER_CHANNEL_DEL,
d8ef542d
MD
66 CONSUMER_CHANNEL_QUIT,
67};
68
69struct consumer_channel_msg {
70 enum consumer_channel_action action;
a0cbdd2e
MD
71 struct lttng_consumer_channel *chan; /* add */
72 uint64_t key; /* del */
d8ef542d
MD
73};
74
80957876 75/* Flag used to temporarily pause data consumption from testpoints. */
cf0bcb51
JG
76int data_consumption_paused;
77
3bd1e081
MD
78/*
79 * Flag to inform the polling thread to quit when all fd hung up. Updated by
80 * the consumer_thread_receive_fds when it notices that all fds has hung up.
81 * Also updated by the signal handler (consumer_should_exit()). Read by the
82 * polling threads.
83 */
10211f5c 84int consumer_quit;
3bd1e081 85
43c34bc3 86/*
43c34bc3
DG
87 * Global hash table containing respectively metadata and data streams. The
88 * stream element in this ht should only be updated by the metadata poll thread
89 * for the metadata and the data poll thread for the data.
90 */
40dc48e0
DG
91static struct lttng_ht *metadata_ht;
92static struct lttng_ht *data_ht;
43c34bc3 93
acdb9057
DG
94/*
95 * Notify a thread lttng pipe to poll back again. This usually means that some
96 * global state has changed so we just send back the thread in a poll wait
97 * call.
98 */
99static void notify_thread_lttng_pipe(struct lttng_pipe *pipe)
100{
101 struct lttng_consumer_stream *null_stream = NULL;
102
103 assert(pipe);
104
105 (void) lttng_pipe_write(pipe, &null_stream, sizeof(null_stream));
106}
107
5c635c72
MD
108static void notify_health_quit_pipe(int *pipe)
109{
6cd525e8 110 ssize_t ret;
5c635c72 111
6cd525e8
MD
112 ret = lttng_write(pipe[1], "4", 1);
113 if (ret < 1) {
5c635c72
MD
114 PERROR("write consumer health quit");
115 }
116}
117
d8ef542d
MD
118static void notify_channel_pipe(struct lttng_consumer_local_data *ctx,
119 struct lttng_consumer_channel *chan,
a0cbdd2e 120 uint64_t key,
d8ef542d
MD
121 enum consumer_channel_action action)
122{
123 struct consumer_channel_msg msg;
6cd525e8 124 ssize_t ret;
d8ef542d 125
e56251fc
DG
126 memset(&msg, 0, sizeof(msg));
127
d8ef542d
MD
128 msg.action = action;
129 msg.chan = chan;
f21dae48 130 msg.key = key;
6cd525e8
MD
131 ret = lttng_write(ctx->consumer_channel_pipe[1], &msg, sizeof(msg));
132 if (ret < sizeof(msg)) {
133 PERROR("notify_channel_pipe write error");
134 }
d8ef542d
MD
135}
136
a0cbdd2e
MD
137void notify_thread_del_channel(struct lttng_consumer_local_data *ctx,
138 uint64_t key)
139{
140 notify_channel_pipe(ctx, NULL, key, CONSUMER_CHANNEL_DEL);
141}
142
d8ef542d
MD
143static int read_channel_pipe(struct lttng_consumer_local_data *ctx,
144 struct lttng_consumer_channel **chan,
a0cbdd2e 145 uint64_t *key,
d8ef542d
MD
146 enum consumer_channel_action *action)
147{
148 struct consumer_channel_msg msg;
6cd525e8 149 ssize_t ret;
d8ef542d 150
6cd525e8
MD
151 ret = lttng_read(ctx->consumer_channel_pipe[0], &msg, sizeof(msg));
152 if (ret < sizeof(msg)) {
153 ret = -1;
154 goto error;
d8ef542d 155 }
6cd525e8
MD
156 *action = msg.action;
157 *chan = msg.chan;
158 *key = msg.key;
159error:
160 return (int) ret;
d8ef542d
MD
161}
162
212d67a2
DG
163/*
164 * Cleanup the stream list of a channel. Those streams are not yet globally
165 * visible
166 */
167static void clean_channel_stream_list(struct lttng_consumer_channel *channel)
168{
169 struct lttng_consumer_stream *stream, *stmp;
170
171 assert(channel);
172
173 /* Delete streams that might have been left in the stream list. */
174 cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head,
175 send_node) {
176 cds_list_del(&stream->send_node);
177 /*
178 * Once a stream is added to this list, the buffers were created so we
179 * have a guarantee that this call will succeed. Setting the monitor
180 * mode to 0 so we don't lock nor try to delete the stream from the
181 * global hash table.
182 */
183 stream->monitor = 0;
184 consumer_stream_destroy(stream, NULL);
185 }
186}
187
3bd1e081
MD
188/*
189 * Find a stream. The consumer_data.lock must be locked during this
190 * call.
191 */
d88aee68 192static struct lttng_consumer_stream *find_stream(uint64_t key,
8389e4f8 193 struct lttng_ht *ht)
3bd1e081 194{
e4421fec 195 struct lttng_ht_iter iter;
d88aee68 196 struct lttng_ht_node_u64 *node;
e4421fec 197 struct lttng_consumer_stream *stream = NULL;
3bd1e081 198
8389e4f8
DG
199 assert(ht);
200
d88aee68
DG
201 /* -1ULL keys are lookup failures */
202 if (key == (uint64_t) -1ULL) {
7ad0a0cb 203 return NULL;
7a57cf92 204 }
e4421fec 205
6065ceec
DG
206 rcu_read_lock();
207
d88aee68
DG
208 lttng_ht_lookup(ht, &key, &iter);
209 node = lttng_ht_iter_get_node_u64(&iter);
e4421fec
DG
210 if (node != NULL) {
211 stream = caa_container_of(node, struct lttng_consumer_stream, node);
3bd1e081 212 }
e4421fec 213
6065ceec
DG
214 rcu_read_unlock();
215
e4421fec 216 return stream;
3bd1e081
MD
217}
218
da009f2c 219static void steal_stream_key(uint64_t key, struct lttng_ht *ht)
7ad0a0cb
MD
220{
221 struct lttng_consumer_stream *stream;
222
04253271 223 rcu_read_lock();
ffe60014 224 stream = find_stream(key, ht);
04253271 225 if (stream) {
da009f2c 226 stream->key = (uint64_t) -1ULL;
04253271
MD
227 /*
228 * We don't want the lookup to match, but we still need
229 * to iterate on this stream when iterating over the hash table. Just
230 * change the node key.
231 */
da009f2c 232 stream->node.key = (uint64_t) -1ULL;
04253271
MD
233 }
234 rcu_read_unlock();
7ad0a0cb
MD
235}
236
d56db448
DG
237/*
238 * Return a channel object for the given key.
239 *
240 * RCU read side lock MUST be acquired before calling this function and
241 * protects the channel ptr.
242 */
d88aee68 243struct lttng_consumer_channel *consumer_find_channel(uint64_t key)
3bd1e081 244{
e4421fec 245 struct lttng_ht_iter iter;
d88aee68 246 struct lttng_ht_node_u64 *node;
e4421fec 247 struct lttng_consumer_channel *channel = NULL;
3bd1e081 248
d88aee68
DG
249 /* -1ULL keys are lookup failures */
250 if (key == (uint64_t) -1ULL) {
7ad0a0cb 251 return NULL;
7a57cf92 252 }
e4421fec 253
d88aee68
DG
254 lttng_ht_lookup(consumer_data.channel_ht, &key, &iter);
255 node = lttng_ht_iter_get_node_u64(&iter);
e4421fec
DG
256 if (node != NULL) {
257 channel = caa_container_of(node, struct lttng_consumer_channel, node);
3bd1e081 258 }
e4421fec
DG
259
260 return channel;
3bd1e081
MD
261}
262
b5a6470f
DG
263/*
264 * There is a possibility that the consumer does not have enough time between
265 * the close of the channel on the session daemon and the cleanup in here thus
266 * once we have a channel add with an existing key, we know for sure that this
267 * channel will eventually get cleaned up by all streams being closed.
268 *
269 * This function just nullifies the already existing channel key.
270 */
271static void steal_channel_key(uint64_t key)
272{
273 struct lttng_consumer_channel *channel;
274
275 rcu_read_lock();
276 channel = consumer_find_channel(key);
277 if (channel) {
278 channel->key = (uint64_t) -1ULL;
279 /*
280 * We don't want the lookup to match, but we still need to iterate on
281 * this channel when iterating over the hash table. Just change the
282 * node key.
283 */
284 channel->node.key = (uint64_t) -1ULL;
285 }
286 rcu_read_unlock();
287}
288
ffe60014 289static void free_channel_rcu(struct rcu_head *head)
702b1ea4 290{
d88aee68
DG
291 struct lttng_ht_node_u64 *node =
292 caa_container_of(head, struct lttng_ht_node_u64, head);
ffe60014
DG
293 struct lttng_consumer_channel *channel =
294 caa_container_of(node, struct lttng_consumer_channel, node);
702b1ea4 295
b83e03c4
MD
296 switch (consumer_data.type) {
297 case LTTNG_CONSUMER_KERNEL:
298 break;
299 case LTTNG_CONSUMER32_UST:
300 case LTTNG_CONSUMER64_UST:
301 lttng_ustconsumer_free_channel(channel);
302 break;
303 default:
304 ERR("Unknown consumer_data type");
305 abort();
306 }
ffe60014 307 free(channel);
702b1ea4
MD
308}
309
00e2e675
DG
310/*
311 * RCU protected relayd socket pair free.
312 */
ffe60014 313static void free_relayd_rcu(struct rcu_head *head)
00e2e675 314{
d88aee68
DG
315 struct lttng_ht_node_u64 *node =
316 caa_container_of(head, struct lttng_ht_node_u64, head);
00e2e675
DG
317 struct consumer_relayd_sock_pair *relayd =
318 caa_container_of(node, struct consumer_relayd_sock_pair, node);
319
8994307f
DG
320 /*
321 * Close all sockets. This is done in the call RCU since we don't want the
322 * socket fds to be reassigned thus potentially creating bad state of the
323 * relayd object.
324 *
325 * We do not have to lock the control socket mutex here since at this stage
326 * there is no one referencing to this relayd object.
327 */
328 (void) relayd_close(&relayd->control_sock);
329 (void) relayd_close(&relayd->data_sock);
330
70053766 331 pthread_mutex_destroy(&relayd->ctrl_sock_mutex);
00e2e675
DG
332 free(relayd);
333}
334
335/*
336 * Destroy and free relayd socket pair object.
00e2e675 337 */
51230d70 338void consumer_destroy_relayd(struct consumer_relayd_sock_pair *relayd)
00e2e675
DG
339{
340 int ret;
341 struct lttng_ht_iter iter;
342
173af62f
DG
343 if (relayd == NULL) {
344 return;
345 }
346
00e2e675
DG
347 DBG("Consumer destroy and close relayd socket pair");
348
349 iter.iter.node = &relayd->node.node;
350 ret = lttng_ht_del(consumer_data.relayd_ht, &iter);
173af62f 351 if (ret != 0) {
8994307f 352 /* We assume the relayd is being or is destroyed */
173af62f
DG
353 return;
354 }
00e2e675 355
00e2e675 356 /* RCU free() call */
ffe60014
DG
357 call_rcu(&relayd->node.head, free_relayd_rcu);
358}
359
360/*
361 * Remove a channel from the global list protected by a mutex. This function is
362 * also responsible for freeing its data structures.
363 */
364void consumer_del_channel(struct lttng_consumer_channel *channel)
365{
ffe60014
DG
366 struct lttng_ht_iter iter;
367
d88aee68 368 DBG("Consumer delete channel key %" PRIu64, channel->key);
ffe60014
DG
369
370 pthread_mutex_lock(&consumer_data.lock);
a9838785 371 pthread_mutex_lock(&channel->lock);
ffe60014 372
212d67a2
DG
373 /* Destroy streams that might have been left in the stream list. */
374 clean_channel_stream_list(channel);
51e762e5 375
d3e2ba59
JD
376 if (channel->live_timer_enabled == 1) {
377 consumer_timer_live_stop(channel);
378 }
e9404c27
JG
379 if (channel->monitor_timer_enabled == 1) {
380 consumer_timer_monitor_stop(channel);
381 }
d3e2ba59 382
ffe60014
DG
383 switch (consumer_data.type) {
384 case LTTNG_CONSUMER_KERNEL:
385 break;
386 case LTTNG_CONSUMER32_UST:
387 case LTTNG_CONSUMER64_UST:
388 lttng_ustconsumer_del_channel(channel);
389 break;
390 default:
391 ERR("Unknown consumer_data type");
392 assert(0);
393 goto end;
394 }
395
e5148e25
JG
396 lttng_trace_chunk_put(channel->trace_chunk);
397 channel->trace_chunk = NULL;
0fc67d9b 398
e5148e25
JG
399 if (channel->is_published) {
400 int ret;
401
402 rcu_read_lock();
403 iter.iter.node = &channel->node.node;
404 ret = lttng_ht_del(consumer_data.channel_ht, &iter);
405 assert(!ret);
ffe60014 406
e5148e25
JG
407 iter.iter.node = &channel->channels_by_session_id_ht_node.node;
408 ret = lttng_ht_del(consumer_data.channels_by_session_id_ht,
409 &iter);
410 assert(!ret);
411 rcu_read_unlock();
412 }
413
3206380a
JG
414 channel->is_deleted = true;
415 call_rcu(&channel->node.head, free_channel_rcu);
ffe60014 416end:
a9838785 417 pthread_mutex_unlock(&channel->lock);
ffe60014 418 pthread_mutex_unlock(&consumer_data.lock);
00e2e675
DG
419}
420
228b5bf7
DG
421/*
422 * Iterate over the relayd hash table and destroy each element. Finally,
423 * destroy the whole hash table.
424 */
425static void cleanup_relayd_ht(void)
426{
427 struct lttng_ht_iter iter;
428 struct consumer_relayd_sock_pair *relayd;
429
430 rcu_read_lock();
431
432 cds_lfht_for_each_entry(consumer_data.relayd_ht->ht, &iter.iter, relayd,
433 node.node) {
51230d70 434 consumer_destroy_relayd(relayd);
228b5bf7
DG
435 }
436
228b5bf7 437 rcu_read_unlock();
36b588ed
MD
438
439 lttng_ht_destroy(consumer_data.relayd_ht);
228b5bf7
DG
440}
441
8994307f
DG
442/*
443 * Update the end point status of all streams having the given network sequence
444 * index (relayd index).
445 *
446 * It's atomically set without having the stream mutex locked which is fine
447 * because we handle the write/read race with a pipe wakeup for each thread.
448 */
da009f2c 449static void update_endpoint_status_by_netidx(uint64_t net_seq_idx,
8994307f
DG
450 enum consumer_endpoint_status status)
451{
452 struct lttng_ht_iter iter;
453 struct lttng_consumer_stream *stream;
454
da009f2c 455 DBG("Consumer set delete flag on stream by idx %" PRIu64, net_seq_idx);
8994307f
DG
456
457 rcu_read_lock();
458
459 /* Let's begin with metadata */
460 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream, node.node) {
461 if (stream->net_seq_idx == net_seq_idx) {
462 uatomic_set(&stream->endpoint_status, status);
463 DBG("Delete flag set to metadata stream %d", stream->wait_fd);
464 }
465 }
466
467 /* Follow up by the data streams */
468 cds_lfht_for_each_entry(data_ht->ht, &iter.iter, stream, node.node) {
469 if (stream->net_seq_idx == net_seq_idx) {
470 uatomic_set(&stream->endpoint_status, status);
471 DBG("Delete flag set to data stream %d", stream->wait_fd);
472 }
473 }
474 rcu_read_unlock();
475}
476
477/*
478 * Cleanup a relayd object by flagging every associated streams for deletion,
479 * destroying the object meaning removing it from the relayd hash table,
480 * closing the sockets and freeing the memory in a RCU call.
481 *
482 * If a local data context is available, notify the threads that the streams'
483 * state have changed.
484 */
11413bb9 485void lttng_consumer_cleanup_relayd(struct consumer_relayd_sock_pair *relayd)
8994307f 486{
da009f2c 487 uint64_t netidx;
8994307f
DG
488
489 assert(relayd);
490
11413bb9 491 DBG("Cleaning up relayd object ID %"PRIu64, relayd->net_seq_idx);
9617607b 492
8994307f
DG
493 /* Save the net sequence index before destroying the object */
494 netidx = relayd->net_seq_idx;
495
496 /*
497 * Delete the relayd from the relayd hash table, close the sockets and free
498 * the object in a RCU call.
499 */
51230d70 500 consumer_destroy_relayd(relayd);
8994307f
DG
501
502 /* Set inactive endpoint to all streams */
503 update_endpoint_status_by_netidx(netidx, CONSUMER_ENDPOINT_INACTIVE);
504
505 /*
506 * With a local data context, notify the threads that the streams' state
507 * have changed. The write() action on the pipe acts as an "implicit"
508 * memory barrier ordering the updates of the end point status from the
509 * read of this status which happens AFTER receiving this notify.
510 */
11413bb9
JR
511 notify_thread_lttng_pipe(relayd->ctx->consumer_data_pipe);
512 notify_thread_lttng_pipe(relayd->ctx->consumer_metadata_pipe);
8994307f
DG
513}
514
a6ba4fe1
DG
515/*
516 * Flag a relayd socket pair for destruction. Destroy it if the refcount
517 * reaches zero.
518 *
519 * RCU read side lock MUST be aquired before calling this function.
520 */
521void consumer_flag_relayd_for_destroy(struct consumer_relayd_sock_pair *relayd)
522{
523 assert(relayd);
524
525 /* Set destroy flag for this object */
526 uatomic_set(&relayd->destroy_flag, 1);
527
528 /* Destroy the relayd if refcount is 0 */
529 if (uatomic_read(&relayd->refcount) == 0) {
51230d70 530 consumer_destroy_relayd(relayd);
a6ba4fe1
DG
531 }
532}
533
3bd1e081 534/*
1d1a276c
DG
535 * Completly destroy stream from every visiable data structure and the given
536 * hash table if one.
537 *
538 * One this call returns, the stream object is not longer usable nor visible.
3bd1e081 539 */
e316aad5
DG
540void consumer_del_stream(struct lttng_consumer_stream *stream,
541 struct lttng_ht *ht)
3bd1e081 542{
1d1a276c 543 consumer_stream_destroy(stream, ht);
3bd1e081
MD
544}
545
5ab66908
MD
546/*
547 * XXX naming of del vs destroy is all mixed up.
548 */
549void consumer_del_stream_for_data(struct lttng_consumer_stream *stream)
550{
551 consumer_stream_destroy(stream, data_ht);
552}
553
554void consumer_del_stream_for_metadata(struct lttng_consumer_stream *stream)
555{
556 consumer_stream_destroy(stream, metadata_ht);
557}
558
d9a2e16e
JD
559void consumer_stream_update_channel_attributes(
560 struct lttng_consumer_stream *stream,
561 struct lttng_consumer_channel *channel)
562{
563 stream->channel_read_only_attributes.tracefile_size =
564 channel->tracefile_size;
d9a2e16e
JD
565}
566
c0c85e4f
JG
567struct lttng_consumer_stream *consumer_allocate_stream(
568 struct lttng_consumer_channel *channel,
569 uint64_t channel_key,
d88aee68 570 uint64_t stream_key,
ffe60014 571 const char *channel_name,
57a269f2 572 uint64_t relayd_id,
53632229 573 uint64_t session_id,
e5148e25 574 struct lttng_trace_chunk *trace_chunk,
ffe60014
DG
575 int cpu,
576 int *alloc_ret,
4891ece8 577 enum consumer_channel_type type,
e5148e25 578 unsigned int monitor)
3bd1e081 579{
ffe60014 580 int ret;
3bd1e081 581 struct lttng_consumer_stream *stream;
3bd1e081 582
effcf122 583 stream = zmalloc(sizeof(*stream));
3bd1e081 584 if (stream == NULL) {
7a57cf92 585 PERROR("malloc struct lttng_consumer_stream");
ffe60014 586 ret = -ENOMEM;
7a57cf92 587 goto end;
3bd1e081 588 }
7a57cf92 589
e5148e25
JG
590 if (trace_chunk && !lttng_trace_chunk_get(trace_chunk)) {
591 ERR("Failed to acquire trace chunk reference during the creation of a stream");
592 ret = -1;
593 goto error;
594 }
d56db448 595
e5148e25 596 rcu_read_lock();
c0c85e4f 597 stream->chan = channel;
3bd1e081 598 stream->key = stream_key;
e5148e25 599 stream->trace_chunk = trace_chunk;
3bd1e081
MD
600 stream->out_fd = -1;
601 stream->out_fd_offset = 0;
e5d1a9b3 602 stream->output_written = 0;
ffe60014 603 stream->net_seq_idx = relayd_id;
53632229 604 stream->session_id = session_id;
4891ece8 605 stream->monitor = monitor;
774d490c 606 stream->endpoint_status = CONSUMER_ENDPOINT_ACTIVE;
f8f3885c 607 stream->index_file = NULL;
fb83fe64 608 stream->last_sequence_number = -1ULL;
c8eabe73 609 stream->rotate_position = -1ULL;
53632229 610 pthread_mutex_init(&stream->lock, NULL);
c585821b 611 pthread_mutex_init(&stream->metadata_timer_lock, NULL);
58b1f425 612
ffe60014
DG
613 /* If channel is the metadata, flag this stream as metadata. */
614 if (type == CONSUMER_CHANNEL_TYPE_METADATA) {
615 stream->metadata_flag = 1;
616 /* Metadata is flat out. */
617 strncpy(stream->name, DEFAULT_METADATA_NAME, sizeof(stream->name));
94d49140
JD
618 /* Live rendez-vous point. */
619 pthread_cond_init(&stream->metadata_rdv, NULL);
620 pthread_mutex_init(&stream->metadata_rdv_lock, NULL);
58b1f425 621 } else {
ffe60014
DG
622 /* Format stream name to <channel_name>_<cpu_number> */
623 ret = snprintf(stream->name, sizeof(stream->name), "%s_%d",
624 channel_name, cpu);
625 if (ret < 0) {
626 PERROR("snprintf stream name");
627 goto error;
628 }
58b1f425 629 }
c30aaa51 630
ffe60014 631 /* Key is always the wait_fd for streams. */
d88aee68 632 lttng_ht_node_init_u64(&stream->node, stream->key);
ffe60014 633
d8ef542d
MD
634 /* Init node per channel id key */
635 lttng_ht_node_init_u64(&stream->node_channel_id, channel_key);
636
53632229 637 /* Init session id node with the stream session id */
d88aee68 638 lttng_ht_node_init_u64(&stream->node_session_id, stream->session_id);
53632229 639
07b86b52
JD
640 DBG3("Allocated stream %s (key %" PRIu64 ", chan_key %" PRIu64
641 " relayd_id %" PRIu64 ", session_id %" PRIu64,
642 stream->name, stream->key, channel_key,
643 stream->net_seq_idx, stream->session_id);
d56db448
DG
644
645 rcu_read_unlock();
3bd1e081 646 return stream;
c80048c6
MD
647
648error:
d56db448 649 rcu_read_unlock();
e5148e25 650 lttng_trace_chunk_put(stream->trace_chunk);
c80048c6 651 free(stream);
7a57cf92 652end:
ffe60014
DG
653 if (alloc_ret) {
654 *alloc_ret = ret;
655 }
c80048c6 656 return NULL;
3bd1e081
MD
657}
658
659/*
660 * Add a stream to the global list protected by a mutex.
661 */
66d583dc 662void consumer_add_data_stream(struct lttng_consumer_stream *stream)
3bd1e081 663{
5ab66908 664 struct lttng_ht *ht = data_ht;
3bd1e081 665
e316aad5 666 assert(stream);
43c34bc3 667 assert(ht);
c77fc10a 668
d88aee68 669 DBG3("Adding consumer stream %" PRIu64, stream->key);
e316aad5
DG
670
671 pthread_mutex_lock(&consumer_data.lock);
a9838785 672 pthread_mutex_lock(&stream->chan->lock);
ec6ea7d0 673 pthread_mutex_lock(&stream->chan->timer_lock);
2e818a6a 674 pthread_mutex_lock(&stream->lock);
b0b335c8 675 rcu_read_lock();
e316aad5 676
43c34bc3 677 /* Steal stream identifier to avoid having streams with the same key */
ffe60014 678 steal_stream_key(stream->key, ht);
43c34bc3 679
d88aee68 680 lttng_ht_add_unique_u64(ht, &stream->node);
00e2e675 681
d8ef542d
MD
682 lttng_ht_add_u64(consumer_data.stream_per_chan_id_ht,
683 &stream->node_channel_id);
684
ca22feea
DG
685 /*
686 * Add stream to the stream_list_ht of the consumer data. No need to steal
687 * the key since the HT does not use it and we allow to add redundant keys
688 * into this table.
689 */
d88aee68 690 lttng_ht_add_u64(consumer_data.stream_list_ht, &stream->node_session_id);
ca22feea 691
e316aad5 692 /*
ffe60014
DG
693 * When nb_init_stream_left reaches 0, we don't need to trigger any action
694 * in terms of destroying the associated channel, because the action that
e316aad5
DG
695 * causes the count to become 0 also causes a stream to be added. The
696 * channel deletion will thus be triggered by the following removal of this
697 * stream.
698 */
ffe60014 699 if (uatomic_read(&stream->chan->nb_init_stream_left) > 0) {
f2ad556d
MD
700 /* Increment refcount before decrementing nb_init_stream_left */
701 cmm_smp_wmb();
ffe60014 702 uatomic_dec(&stream->chan->nb_init_stream_left);
e316aad5
DG
703 }
704
705 /* Update consumer data once the node is inserted. */
3bd1e081
MD
706 consumer_data.stream_count++;
707 consumer_data.need_update = 1;
708
e316aad5 709 rcu_read_unlock();
2e818a6a 710 pthread_mutex_unlock(&stream->lock);
ec6ea7d0 711 pthread_mutex_unlock(&stream->chan->timer_lock);
a9838785 712 pthread_mutex_unlock(&stream->chan->lock);
3bd1e081 713 pthread_mutex_unlock(&consumer_data.lock);
3bd1e081
MD
714}
715
5ab66908
MD
716void consumer_del_data_stream(struct lttng_consumer_stream *stream)
717{
718 consumer_del_stream(stream, data_ht);
719}
720
00e2e675 721/*
3f8e211f
DG
722 * Add relayd socket to global consumer data hashtable. RCU read side lock MUST
723 * be acquired before calling this.
00e2e675 724 */
d09e1200 725static int add_relayd(struct consumer_relayd_sock_pair *relayd)
00e2e675
DG
726{
727 int ret = 0;
d88aee68 728 struct lttng_ht_node_u64 *node;
00e2e675
DG
729 struct lttng_ht_iter iter;
730
ffe60014 731 assert(relayd);
00e2e675 732
00e2e675 733 lttng_ht_lookup(consumer_data.relayd_ht,
d88aee68
DG
734 &relayd->net_seq_idx, &iter);
735 node = lttng_ht_iter_get_node_u64(&iter);
00e2e675 736 if (node != NULL) {
00e2e675
DG
737 goto end;
738 }
d88aee68 739 lttng_ht_add_unique_u64(consumer_data.relayd_ht, &relayd->node);
00e2e675 740
00e2e675
DG
741end:
742 return ret;
743}
744
745/*
746 * Allocate and return a consumer relayd socket.
747 */
027a694f 748static struct consumer_relayd_sock_pair *consumer_allocate_relayd_sock_pair(
da009f2c 749 uint64_t net_seq_idx)
00e2e675
DG
750{
751 struct consumer_relayd_sock_pair *obj = NULL;
752
da009f2c
MD
753 /* net sequence index of -1 is a failure */
754 if (net_seq_idx == (uint64_t) -1ULL) {
00e2e675
DG
755 goto error;
756 }
757
758 obj = zmalloc(sizeof(struct consumer_relayd_sock_pair));
759 if (obj == NULL) {
760 PERROR("zmalloc relayd sock");
761 goto error;
762 }
763
764 obj->net_seq_idx = net_seq_idx;
765 obj->refcount = 0;
173af62f 766 obj->destroy_flag = 0;
f96e4545
MD
767 obj->control_sock.sock.fd = -1;
768 obj->data_sock.sock.fd = -1;
d88aee68 769 lttng_ht_node_init_u64(&obj->node, obj->net_seq_idx);
00e2e675
DG
770 pthread_mutex_init(&obj->ctrl_sock_mutex, NULL);
771
772error:
773 return obj;
774}
775
776/*
777 * Find a relayd socket pair in the global consumer data.
778 *
779 * Return the object if found else NULL.
b0b335c8
MD
780 * RCU read-side lock must be held across this call and while using the
781 * returned object.
00e2e675 782 */
d88aee68 783struct consumer_relayd_sock_pair *consumer_find_relayd(uint64_t key)
00e2e675
DG
784{
785 struct lttng_ht_iter iter;
d88aee68 786 struct lttng_ht_node_u64 *node;
00e2e675
DG
787 struct consumer_relayd_sock_pair *relayd = NULL;
788
789 /* Negative keys are lookup failures */
d88aee68 790 if (key == (uint64_t) -1ULL) {
00e2e675
DG
791 goto error;
792 }
793
d88aee68 794 lttng_ht_lookup(consumer_data.relayd_ht, &key,
00e2e675 795 &iter);
d88aee68 796 node = lttng_ht_iter_get_node_u64(&iter);
00e2e675
DG
797 if (node != NULL) {
798 relayd = caa_container_of(node, struct consumer_relayd_sock_pair, node);
799 }
800
00e2e675
DG
801error:
802 return relayd;
803}
804
10a50311
JD
805/*
806 * Find a relayd and send the stream
807 *
808 * Returns 0 on success, < 0 on error
809 */
810int consumer_send_relayd_stream(struct lttng_consumer_stream *stream,
811 char *path)
812{
813 int ret = 0;
814 struct consumer_relayd_sock_pair *relayd;
815
816 assert(stream);
817 assert(stream->net_seq_idx != -1ULL);
818 assert(path);
819
820 /* The stream is not metadata. Get relayd reference if exists. */
821 rcu_read_lock();
822 relayd = consumer_find_relayd(stream->net_seq_idx);
823 if (relayd != NULL) {
824 /* Add stream on the relayd */
825 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
826 ret = relayd_add_stream(&relayd->control_sock, stream->name,
827 path, &stream->relayd_stream_id,
e5148e25
JG
828 stream->chan->tracefile_size,
829 stream->chan->tracefile_count,
830 stream->trace_chunk);
10a50311
JD
831 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
832 if (ret < 0) {
11413bb9
JR
833 ERR("Relayd add stream failed. Cleaning up relayd %" PRIu64".", relayd->net_seq_idx);
834 lttng_consumer_cleanup_relayd(relayd);
10a50311
JD
835 goto end;
836 }
1c20f0e2 837
10a50311 838 uatomic_inc(&relayd->refcount);
d01178b6 839 stream->sent_to_relayd = 1;
10a50311
JD
840 } else {
841 ERR("Stream %" PRIu64 " relayd ID %" PRIu64 " unknown. Can't send it.",
842 stream->key, stream->net_seq_idx);
843 ret = -1;
844 goto end;
845 }
846
847 DBG("Stream %s with key %" PRIu64 " sent to relayd id %" PRIu64,
848 stream->name, stream->key, stream->net_seq_idx);
849
850end:
851 rcu_read_unlock();
852 return ret;
853}
854
a4baae1b
JD
855/*
856 * Find a relayd and send the streams sent message
857 *
858 * Returns 0 on success, < 0 on error
859 */
860int consumer_send_relayd_streams_sent(uint64_t net_seq_idx)
861{
862 int ret = 0;
863 struct consumer_relayd_sock_pair *relayd;
864
865 assert(net_seq_idx != -1ULL);
866
867 /* The stream is not metadata. Get relayd reference if exists. */
868 rcu_read_lock();
869 relayd = consumer_find_relayd(net_seq_idx);
870 if (relayd != NULL) {
871 /* Add stream on the relayd */
872 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
873 ret = relayd_streams_sent(&relayd->control_sock);
874 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
875 if (ret < 0) {
11413bb9
JR
876 ERR("Relayd streams sent failed. Cleaning up relayd %" PRIu64".", relayd->net_seq_idx);
877 lttng_consumer_cleanup_relayd(relayd);
a4baae1b
JD
878 goto end;
879 }
880 } else {
881 ERR("Relayd ID %" PRIu64 " unknown. Can't send streams_sent.",
882 net_seq_idx);
883 ret = -1;
884 goto end;
885 }
886
887 ret = 0;
888 DBG("All streams sent relayd id %" PRIu64, net_seq_idx);
889
890end:
891 rcu_read_unlock();
892 return ret;
893}
894
10a50311
JD
895/*
896 * Find a relayd and close the stream
897 */
898void close_relayd_stream(struct lttng_consumer_stream *stream)
899{
900 struct consumer_relayd_sock_pair *relayd;
901
902 /* The stream is not metadata. Get relayd reference if exists. */
903 rcu_read_lock();
904 relayd = consumer_find_relayd(stream->net_seq_idx);
905 if (relayd) {
906 consumer_stream_relayd_close(stream, relayd);
907 }
908 rcu_read_unlock();
909}
910
00e2e675
DG
911/*
912 * Handle stream for relayd transmission if the stream applies for network
913 * streaming where the net sequence index is set.
914 *
915 * Return destination file descriptor or negative value on error.
916 */
6197aea7 917static int write_relayd_stream_header(struct lttng_consumer_stream *stream,
1d4dfdef
DG
918 size_t data_size, unsigned long padding,
919 struct consumer_relayd_sock_pair *relayd)
00e2e675
DG
920{
921 int outfd = -1, ret;
00e2e675
DG
922 struct lttcomm_relayd_data_hdr data_hdr;
923
924 /* Safety net */
925 assert(stream);
6197aea7 926 assert(relayd);
00e2e675
DG
927
928 /* Reset data header */
929 memset(&data_hdr, 0, sizeof(data_hdr));
930
00e2e675
DG
931 if (stream->metadata_flag) {
932 /* Caller MUST acquire the relayd control socket lock */
933 ret = relayd_send_metadata(&relayd->control_sock, data_size);
934 if (ret < 0) {
935 goto error;
936 }
937
938 /* Metadata are always sent on the control socket. */
6151a90f 939 outfd = relayd->control_sock.sock.fd;
00e2e675
DG
940 } else {
941 /* Set header with stream information */
942 data_hdr.stream_id = htobe64(stream->relayd_stream_id);
943 data_hdr.data_size = htobe32(data_size);
1d4dfdef 944 data_hdr.padding_size = htobe32(padding);
84a93c08 945
39df6d9f
DG
946 /*
947 * Note that net_seq_num below is assigned with the *current* value of
948 * next_net_seq_num and only after that the next_net_seq_num will be
949 * increment. This is why when issuing a command on the relayd using
950 * this next value, 1 should always be substracted in order to compare
951 * the last seen sequence number on the relayd side to the last sent.
952 */
3604f373 953 data_hdr.net_seq_num = htobe64(stream->next_net_seq_num);
00e2e675
DG
954 /* Other fields are zeroed previously */
955
956 ret = relayd_send_data_hdr(&relayd->data_sock, &data_hdr,
957 sizeof(data_hdr));
958 if (ret < 0) {
959 goto error;
960 }
961
3604f373
DG
962 ++stream->next_net_seq_num;
963
00e2e675 964 /* Set to go on data socket */
6151a90f 965 outfd = relayd->data_sock.sock.fd;
00e2e675
DG
966 }
967
968error:
969 return outfd;
970}
971
e5148e25
JG
972/*
973 * Trigger a dump of the metadata content. Following/during the succesful
974 * completion of this call, the metadata poll thread will start receiving
975 * metadata packets to consume.
976 *
977 * The caller must hold the channel and stream locks.
978 */
979static
980int consumer_metadata_stream_dump(struct lttng_consumer_stream *stream)
981{
982 int ret;
983
984 ASSERT_LOCKED(stream->chan->lock);
985 ASSERT_LOCKED(stream->lock);
986 assert(stream->metadata_flag);
987 assert(stream->chan->trace_chunk);
988
989 switch (consumer_data.type) {
990 case LTTNG_CONSUMER_KERNEL:
991 /*
992 * Reset the position of what has been read from the
993 * metadata cache to 0 so we can dump it again.
994 */
995 ret = kernctl_metadata_cache_dump(stream->wait_fd);
996 break;
997 case LTTNG_CONSUMER32_UST:
998 case LTTNG_CONSUMER64_UST:
999 /*
1000 * Reset the position pushed from the metadata cache so it
1001 * will write from the beginning on the next push.
1002 */
1003 stream->ust_metadata_pushed = 0;
1004 ret = consumer_metadata_wakeup_pipe(stream->chan);
1005 break;
1006 default:
1007 ERR("Unknown consumer_data type");
1008 abort();
1009 }
1010 if (ret < 0) {
1011 ERR("Failed to dump the metadata cache");
1012 }
1013 return ret;
1014}
1015
1016static
1017int lttng_consumer_channel_set_trace_chunk(
1018 struct lttng_consumer_channel *channel,
1019 struct lttng_trace_chunk *new_trace_chunk)
1020{
e5148e25 1021 pthread_mutex_lock(&channel->lock);
3206380a
JG
1022 if (channel->is_deleted) {
1023 /*
1024 * The channel has been logically deleted and should no longer
1025 * be used. It has released its reference to its current trace
1026 * chunk and should not acquire a new one.
1027 *
1028 * Return success as there is nothing for the caller to do.
1029 */
1030 goto end;
1031 }
e5148e25
JG
1032
1033 /*
1034 * The acquisition of the reference cannot fail (barring
1035 * a severe internal error) since a reference to the published
1036 * chunk is already held by the caller.
1037 */
1038 if (new_trace_chunk) {
1039 const bool acquired_reference = lttng_trace_chunk_get(
1040 new_trace_chunk);
1041
1042 assert(acquired_reference);
1043 }
1044
1045 lttng_trace_chunk_put(channel->trace_chunk);
1046 channel->trace_chunk = new_trace_chunk;
e5148e25
JG
1047end:
1048 pthread_mutex_unlock(&channel->lock);
54cb058d 1049 return 0;
e5148e25
JG
1050}
1051
3bd1e081 1052/*
ffe60014
DG
1053 * Allocate and return a new lttng_consumer_channel object using the given key
1054 * to initialize the hash table node.
1055 *
1056 * On error, return NULL.
3bd1e081 1057 */
886224ff 1058struct lttng_consumer_channel *consumer_allocate_channel(uint64_t key,
ffe60014 1059 uint64_t session_id,
e5148e25 1060 const uint64_t *chunk_id,
ffe60014
DG
1061 const char *pathname,
1062 const char *name,
57a269f2 1063 uint64_t relayd_id,
1624d5b7
JD
1064 enum lttng_event_output output,
1065 uint64_t tracefile_size,
2bba9e53 1066 uint64_t tracefile_count,
1950109e 1067 uint64_t session_id_per_pid,
ecc48a90 1068 unsigned int monitor,
d7ba1388 1069 unsigned int live_timer_interval,
3ef395a9 1070 bool is_in_live_session,
3d071855 1071 const char *root_shm_path,
d7ba1388 1072 const char *shm_path)
3bd1e081 1073{
e5148e25
JG
1074 struct lttng_consumer_channel *channel = NULL;
1075 struct lttng_trace_chunk *trace_chunk = NULL;
1076
1077 if (chunk_id) {
1078 trace_chunk = lttng_trace_chunk_registry_find_chunk(
1079 consumer_data.chunk_registry, session_id,
1080 *chunk_id);
1081 if (!trace_chunk) {
1082 ERR("Failed to find trace chunk reference during creation of channel");
1083 goto end;
1084 }
1085 }
3bd1e081 1086
276b26d1 1087 channel = zmalloc(sizeof(*channel));
3bd1e081 1088 if (channel == NULL) {
7a57cf92 1089 PERROR("malloc struct lttng_consumer_channel");
3bd1e081
MD
1090 goto end;
1091 }
ffe60014
DG
1092
1093 channel->key = key;
3bd1e081 1094 channel->refcount = 0;
ffe60014 1095 channel->session_id = session_id;
1950109e 1096 channel->session_id_per_pid = session_id_per_pid;
ffe60014 1097 channel->relayd_id = relayd_id;
1624d5b7
JD
1098 channel->tracefile_size = tracefile_size;
1099 channel->tracefile_count = tracefile_count;
2bba9e53 1100 channel->monitor = monitor;
ecc48a90 1101 channel->live_timer_interval = live_timer_interval;
3ef395a9 1102 channel->is_live = is_in_live_session;
a9838785 1103 pthread_mutex_init(&channel->lock, NULL);
ec6ea7d0 1104 pthread_mutex_init(&channel->timer_lock, NULL);
ffe60014 1105
0c759fc9
DG
1106 switch (output) {
1107 case LTTNG_EVENT_SPLICE:
1108 channel->output = CONSUMER_CHANNEL_SPLICE;
1109 break;
1110 case LTTNG_EVENT_MMAP:
1111 channel->output = CONSUMER_CHANNEL_MMAP;
1112 break;
1113 default:
1114 assert(0);
1115 free(channel);
1116 channel = NULL;
1117 goto end;
1118 }
1119
07b86b52
JD
1120 /*
1121 * In monitor mode, the streams associated with the channel will be put in
1122 * a special list ONLY owned by this channel. So, the refcount is set to 1
1123 * here meaning that the channel itself has streams that are referenced.
1124 *
1125 * On a channel deletion, once the channel is no longer visible, the
1126 * refcount is decremented and checked for a zero value to delete it. With
1127 * streams in no monitor mode, it will now be safe to destroy the channel.
1128 */
1129 if (!channel->monitor) {
1130 channel->refcount = 1;
1131 }
1132
ffe60014
DG
1133 strncpy(channel->pathname, pathname, sizeof(channel->pathname));
1134 channel->pathname[sizeof(channel->pathname) - 1] = '\0';
1135
1136 strncpy(channel->name, name, sizeof(channel->name));
1137 channel->name[sizeof(channel->name) - 1] = '\0';
1138
3d071855
MD
1139 if (root_shm_path) {
1140 strncpy(channel->root_shm_path, root_shm_path, sizeof(channel->root_shm_path));
1141 channel->root_shm_path[sizeof(channel->root_shm_path) - 1] = '\0';
1142 }
d7ba1388
MD
1143 if (shm_path) {
1144 strncpy(channel->shm_path, shm_path, sizeof(channel->shm_path));
1145 channel->shm_path[sizeof(channel->shm_path) - 1] = '\0';
1146 }
1147
d88aee68 1148 lttng_ht_node_init_u64(&channel->node, channel->key);
0fc67d9b
JG
1149 lttng_ht_node_init_u64(&channel->channels_by_session_id_ht_node,
1150 channel->session_id);
d8ef542d
MD
1151
1152 channel->wait_fd = -1;
ffe60014
DG
1153 CDS_INIT_LIST_HEAD(&channel->streams.head);
1154
e5148e25
JG
1155 if (trace_chunk) {
1156 int ret = lttng_consumer_channel_set_trace_chunk(channel,
1157 trace_chunk);
1158 if (ret) {
1159 goto error;
1160 }
1161 }
1162
62a7b8ed 1163 DBG("Allocated channel (key %" PRIu64 ")", channel->key);
3bd1e081 1164
3bd1e081 1165end:
e5148e25 1166 lttng_trace_chunk_put(trace_chunk);
3bd1e081 1167 return channel;
e5148e25
JG
1168error:
1169 consumer_del_channel(channel);
1170 channel = NULL;
1171 goto end;
3bd1e081
MD
1172}
1173
1174/*
1175 * Add a channel to the global list protected by a mutex.
821fffb2 1176 *
b5a6470f 1177 * Always return 0 indicating success.
3bd1e081 1178 */
d8ef542d
MD
1179int consumer_add_channel(struct lttng_consumer_channel *channel,
1180 struct lttng_consumer_local_data *ctx)
3bd1e081 1181{
3bd1e081 1182 pthread_mutex_lock(&consumer_data.lock);
a9838785 1183 pthread_mutex_lock(&channel->lock);
ec6ea7d0 1184 pthread_mutex_lock(&channel->timer_lock);
c77fc10a 1185
b5a6470f
DG
1186 /*
1187 * This gives us a guarantee that the channel we are about to add to the
1188 * channel hash table will be unique. See this function comment on the why
1189 * we need to steel the channel key at this stage.
1190 */
1191 steal_channel_key(channel->key);
c77fc10a 1192
b5a6470f 1193 rcu_read_lock();
d88aee68 1194 lttng_ht_add_unique_u64(consumer_data.channel_ht, &channel->node);
0fc67d9b
JG
1195 lttng_ht_add_u64(consumer_data.channels_by_session_id_ht,
1196 &channel->channels_by_session_id_ht_node);
6065ceec 1197 rcu_read_unlock();
e5148e25 1198 channel->is_published = true;
b5a6470f 1199
ec6ea7d0 1200 pthread_mutex_unlock(&channel->timer_lock);
a9838785 1201 pthread_mutex_unlock(&channel->lock);
3bd1e081 1202 pthread_mutex_unlock(&consumer_data.lock);
702b1ea4 1203
b5a6470f 1204 if (channel->wait_fd != -1 && channel->type == CONSUMER_CHANNEL_TYPE_DATA) {
a0cbdd2e 1205 notify_channel_pipe(ctx, channel, -1, CONSUMER_CHANNEL_ADD);
d8ef542d 1206 }
b5a6470f
DG
1207
1208 return 0;
3bd1e081
MD
1209}
1210
1211/*
1212 * Allocate the pollfd structure and the local view of the out fds to avoid
1213 * doing a lookup in the linked list and concurrency issues when writing is
1214 * needed. Called with consumer_data.lock held.
1215 *
1216 * Returns the number of fds in the structures.
1217 */
ffe60014
DG
1218static int update_poll_array(struct lttng_consumer_local_data *ctx,
1219 struct pollfd **pollfd, struct lttng_consumer_stream **local_stream,
9a2fcf78 1220 struct lttng_ht *ht, int *nb_inactive_fd)
3bd1e081 1221{
3bd1e081 1222 int i = 0;
e4421fec
DG
1223 struct lttng_ht_iter iter;
1224 struct lttng_consumer_stream *stream;
3bd1e081 1225
ffe60014
DG
1226 assert(ctx);
1227 assert(ht);
1228 assert(pollfd);
1229 assert(local_stream);
1230
3bd1e081 1231 DBG("Updating poll fd array");
9a2fcf78 1232 *nb_inactive_fd = 0;
481d6c57 1233 rcu_read_lock();
43c34bc3 1234 cds_lfht_for_each_entry(ht->ht, &iter.iter, stream, node.node) {
8994307f
DG
1235 /*
1236 * Only active streams with an active end point can be added to the
1237 * poll set and local stream storage of the thread.
1238 *
1239 * There is a potential race here for endpoint_status to be updated
1240 * just after the check. However, this is OK since the stream(s) will
1241 * be deleted once the thread is notified that the end point state has
1242 * changed where this function will be called back again.
9a2fcf78
JD
1243 *
1244 * We track the number of inactive FDs because they still need to be
1245 * closed by the polling thread after a wakeup on the data_pipe or
1246 * metadata_pipe.
8994307f 1247 */
e5148e25 1248 if (stream->endpoint_status == CONSUMER_ENDPOINT_INACTIVE) {
9a2fcf78 1249 (*nb_inactive_fd)++;
3bd1e081
MD
1250 continue;
1251 }
7972aab2
DG
1252 /*
1253 * This clobbers way too much the debug output. Uncomment that if you
1254 * need it for debugging purposes.
7972aab2 1255 */
e4421fec 1256 (*pollfd)[i].fd = stream->wait_fd;
3bd1e081 1257 (*pollfd)[i].events = POLLIN | POLLPRI;
e4421fec 1258 local_stream[i] = stream;
3bd1e081
MD
1259 i++;
1260 }
481d6c57 1261 rcu_read_unlock();
3bd1e081
MD
1262
1263 /*
50f8ae69 1264 * Insert the consumer_data_pipe at the end of the array and don't
3bd1e081
MD
1265 * increment i so nb_fd is the number of real FD.
1266 */
acdb9057 1267 (*pollfd)[i].fd = lttng_pipe_get_readfd(ctx->consumer_data_pipe);
509bb1cf 1268 (*pollfd)[i].events = POLLIN | POLLPRI;
02b3d176
DG
1269
1270 (*pollfd)[i + 1].fd = lttng_pipe_get_readfd(ctx->consumer_wakeup_pipe);
1271 (*pollfd)[i + 1].events = POLLIN | POLLPRI;
3bd1e081
MD
1272 return i;
1273}
1274
1275/*
84382d49
MD
1276 * Poll on the should_quit pipe and the command socket return -1 on
1277 * error, 1 if should exit, 0 if data is available on the command socket
3bd1e081
MD
1278 */
1279int lttng_consumer_poll_socket(struct pollfd *consumer_sockpoll)
1280{
1281 int num_rdy;
1282
88f2b785 1283restart:
3bd1e081
MD
1284 num_rdy = poll(consumer_sockpoll, 2, -1);
1285 if (num_rdy == -1) {
88f2b785
MD
1286 /*
1287 * Restart interrupted system call.
1288 */
1289 if (errno == EINTR) {
1290 goto restart;
1291 }
7a57cf92 1292 PERROR("Poll error");
84382d49 1293 return -1;
3bd1e081 1294 }
509bb1cf 1295 if (consumer_sockpoll[0].revents & (POLLIN | POLLPRI)) {
3bd1e081 1296 DBG("consumer_should_quit wake up");
84382d49 1297 return 1;
3bd1e081
MD
1298 }
1299 return 0;
3bd1e081
MD
1300}
1301
1302/*
1303 * Set the error socket.
1304 */
ffe60014
DG
1305void lttng_consumer_set_error_sock(struct lttng_consumer_local_data *ctx,
1306 int sock)
3bd1e081
MD
1307{
1308 ctx->consumer_error_socket = sock;
1309}
1310
1311/*
1312 * Set the command socket path.
1313 */
3bd1e081
MD
1314void lttng_consumer_set_command_sock_path(
1315 struct lttng_consumer_local_data *ctx, char *sock)
1316{
1317 ctx->consumer_command_sock_path = sock;
1318}
1319
1320/*
1321 * Send return code to the session daemon.
1322 * If the socket is not defined, we return 0, it is not a fatal error
1323 */
ffe60014 1324int lttng_consumer_send_error(struct lttng_consumer_local_data *ctx, int cmd)
3bd1e081
MD
1325{
1326 if (ctx->consumer_error_socket > 0) {
1327 return lttcomm_send_unix_sock(ctx->consumer_error_socket, &cmd,
1328 sizeof(enum lttcomm_sessiond_command));
1329 }
1330
1331 return 0;
1332}
1333
1334/*
228b5bf7
DG
1335 * Close all the tracefiles and stream fds and MUST be called when all
1336 * instances are destroyed i.e. when all threads were joined and are ended.
3bd1e081
MD
1337 */
1338void lttng_consumer_cleanup(void)
1339{
e4421fec 1340 struct lttng_ht_iter iter;
ffe60014 1341 struct lttng_consumer_channel *channel;
bd284ac8 1342 unsigned int trace_chunks_left;
6065ceec
DG
1343
1344 rcu_read_lock();
3bd1e081 1345
ffe60014
DG
1346 cds_lfht_for_each_entry(consumer_data.channel_ht->ht, &iter.iter, channel,
1347 node.node) {
702b1ea4 1348 consumer_del_channel(channel);
3bd1e081 1349 }
6065ceec
DG
1350
1351 rcu_read_unlock();
d6ce1df2 1352
d6ce1df2 1353 lttng_ht_destroy(consumer_data.channel_ht);
0fc67d9b 1354 lttng_ht_destroy(consumer_data.channels_by_session_id_ht);
228b5bf7
DG
1355
1356 cleanup_relayd_ht();
1357
d8ef542d
MD
1358 lttng_ht_destroy(consumer_data.stream_per_chan_id_ht);
1359
228b5bf7
DG
1360 /*
1361 * This HT contains streams that are freed by either the metadata thread or
1362 * the data thread so we do *nothing* on the hash table and simply destroy
1363 * it.
1364 */
1365 lttng_ht_destroy(consumer_data.stream_list_ht);
a335e585 1366
bd284ac8
MD
1367 /*
1368 * Trace chunks in the registry may still exist if the session
1369 * daemon has encountered an internal error and could not
1370 * tear down its sessions and/or trace chunks properly.
1371 *
1372 * Release the session daemon's implicit reference to any remaining
1373 * trace chunk and print an error if any trace chunk was found. Note
1374 * that there are _no_ legitimate cases for trace chunks to be left,
1375 * it is a leak. However, it can happen following a crash of the
1376 * session daemon and not emptying the registry would cause an assertion
1377 * to hit.
1378 */
1379 trace_chunks_left = lttng_trace_chunk_registry_put_each_chunk(
1380 consumer_data.chunk_registry);
1381 if (trace_chunks_left) {
1382 ERR("%u trace chunks are leaked by lttng-consumerd. "
1383 "This can be caused by an internal error of the session daemon.",
1384 trace_chunks_left);
1385 }
1386 /* Run all callbacks freeing each chunk. */
1387 rcu_barrier();
a335e585 1388 lttng_trace_chunk_registry_destroy(consumer_data.chunk_registry);
3bd1e081
MD
1389}
1390
1391/*
1392 * Called from signal handler.
1393 */
1394void lttng_consumer_should_exit(struct lttng_consumer_local_data *ctx)
1395{
6cd525e8
MD
1396 ssize_t ret;
1397
10211f5c 1398 CMM_STORE_SHARED(consumer_quit, 1);
6cd525e8
MD
1399 ret = lttng_write(ctx->consumer_should_quit[1], "4", 1);
1400 if (ret < 1) {
7a57cf92 1401 PERROR("write consumer quit");
3bd1e081 1402 }
ab1027f4
DG
1403
1404 DBG("Consumer flag that it should quit");
3bd1e081
MD
1405}
1406
5199ffc4
JG
1407
1408/*
1409 * Flush pending writes to trace output disk file.
1410 */
1411static
00e2e675
DG
1412void lttng_consumer_sync_trace_file(struct lttng_consumer_stream *stream,
1413 off_t orig_offset)
3bd1e081 1414{
c7a78aab 1415 int ret;
3bd1e081
MD
1416 int outfd = stream->out_fd;
1417
1418 /*
1419 * This does a blocking write-and-wait on any page that belongs to the
1420 * subbuffer prior to the one we just wrote.
1421 * Don't care about error values, as these are just hints and ways to
1422 * limit the amount of page cache used.
1423 */
ffe60014 1424 if (orig_offset < stream->max_sb_size) {
3bd1e081
MD
1425 return;
1426 }
ffe60014
DG
1427 lttng_sync_file_range(outfd, orig_offset - stream->max_sb_size,
1428 stream->max_sb_size,
3bd1e081
MD
1429 SYNC_FILE_RANGE_WAIT_BEFORE
1430 | SYNC_FILE_RANGE_WRITE
1431 | SYNC_FILE_RANGE_WAIT_AFTER);
1432 /*
1433 * Give hints to the kernel about how we access the file:
1434 * POSIX_FADV_DONTNEED : we won't re-access data in a near future after
1435 * we write it.
1436 *
1437 * We need to call fadvise again after the file grows because the
1438 * kernel does not seem to apply fadvise to non-existing parts of the
1439 * file.
1440 *
1441 * Call fadvise _after_ having waited for the page writeback to
1442 * complete because the dirty page writeback semantic is not well
1443 * defined. So it can be expected to lead to lower throughput in
1444 * streaming.
1445 */
c7a78aab 1446 ret = posix_fadvise(outfd, orig_offset - stream->max_sb_size,
ffe60014 1447 stream->max_sb_size, POSIX_FADV_DONTNEED);
a0d0e127 1448 if (ret && ret != -ENOSYS) {
a74a5f4a
JG
1449 errno = ret;
1450 PERROR("posix_fadvise on fd %i", outfd);
c7a78aab 1451 }
3bd1e081
MD
1452}
1453
1454/*
1455 * Initialise the necessary environnement :
1456 * - create a new context
1457 * - create the poll_pipe
1458 * - create the should_quit pipe (for signal handler)
1459 * - create the thread pipe (for splice)
1460 *
1461 * Takes a function pointer as argument, this function is called when data is
1462 * available on a buffer. This function is responsible to do the
1463 * kernctl_get_next_subbuf, read the data with mmap or splice depending on the
1464 * buffer configuration and then kernctl_put_next_subbuf at the end.
1465 *
1466 * Returns a pointer to the new context or NULL on error.
1467 */
1468struct lttng_consumer_local_data *lttng_consumer_create(
1469 enum lttng_consumer_type type,
4078b776 1470 ssize_t (*buffer_ready)(struct lttng_consumer_stream *stream,
d41f73b7 1471 struct lttng_consumer_local_data *ctx),
3bd1e081
MD
1472 int (*recv_channel)(struct lttng_consumer_channel *channel),
1473 int (*recv_stream)(struct lttng_consumer_stream *stream),
30319bcb 1474 int (*update_stream)(uint64_t stream_key, uint32_t state))
3bd1e081 1475{
d8ef542d 1476 int ret;
3bd1e081
MD
1477 struct lttng_consumer_local_data *ctx;
1478
1479 assert(consumer_data.type == LTTNG_CONSUMER_UNKNOWN ||
1480 consumer_data.type == type);
1481 consumer_data.type = type;
1482
effcf122 1483 ctx = zmalloc(sizeof(struct lttng_consumer_local_data));
3bd1e081 1484 if (ctx == NULL) {
7a57cf92 1485 PERROR("allocating context");
3bd1e081
MD
1486 goto error;
1487 }
1488
1489 ctx->consumer_error_socket = -1;
331744e3 1490 ctx->consumer_metadata_socket = -1;
75d83e50 1491 pthread_mutex_init(&ctx->metadata_socket_lock, NULL);
3bd1e081
MD
1492 /* assign the callbacks */
1493 ctx->on_buffer_ready = buffer_ready;
1494 ctx->on_recv_channel = recv_channel;
1495 ctx->on_recv_stream = recv_stream;
1496 ctx->on_update_stream = update_stream;
1497
acdb9057
DG
1498 ctx->consumer_data_pipe = lttng_pipe_open(0);
1499 if (!ctx->consumer_data_pipe) {
3bd1e081
MD
1500 goto error_poll_pipe;
1501 }
1502
02b3d176
DG
1503 ctx->consumer_wakeup_pipe = lttng_pipe_open(0);
1504 if (!ctx->consumer_wakeup_pipe) {
1505 goto error_wakeup_pipe;
1506 }
1507
3bd1e081
MD
1508 ret = pipe(ctx->consumer_should_quit);
1509 if (ret < 0) {
7a57cf92 1510 PERROR("Error creating recv pipe");
3bd1e081
MD
1511 goto error_quit_pipe;
1512 }
1513
d8ef542d
MD
1514 ret = pipe(ctx->consumer_channel_pipe);
1515 if (ret < 0) {
1516 PERROR("Error creating channel pipe");
1517 goto error_channel_pipe;
1518 }
1519
13886d2d
DG
1520 ctx->consumer_metadata_pipe = lttng_pipe_open(0);
1521 if (!ctx->consumer_metadata_pipe) {
fb3a43a9
DG
1522 goto error_metadata_pipe;
1523 }
3bd1e081 1524
e9404c27
JG
1525 ctx->channel_monitor_pipe = -1;
1526
fb3a43a9 1527 return ctx;
3bd1e081 1528
fb3a43a9 1529error_metadata_pipe:
d8ef542d
MD
1530 utils_close_pipe(ctx->consumer_channel_pipe);
1531error_channel_pipe:
d8ef542d 1532 utils_close_pipe(ctx->consumer_should_quit);
3bd1e081 1533error_quit_pipe:
02b3d176
DG
1534 lttng_pipe_destroy(ctx->consumer_wakeup_pipe);
1535error_wakeup_pipe:
acdb9057 1536 lttng_pipe_destroy(ctx->consumer_data_pipe);
3bd1e081
MD
1537error_poll_pipe:
1538 free(ctx);
1539error:
1540 return NULL;
1541}
1542
282dadbc
MD
1543/*
1544 * Iterate over all streams of the hashtable and free them properly.
1545 */
1546static void destroy_data_stream_ht(struct lttng_ht *ht)
1547{
1548 struct lttng_ht_iter iter;
1549 struct lttng_consumer_stream *stream;
1550
1551 if (ht == NULL) {
1552 return;
1553 }
1554
1555 rcu_read_lock();
1556 cds_lfht_for_each_entry(ht->ht, &iter.iter, stream, node.node) {
1557 /*
1558 * Ignore return value since we are currently cleaning up so any error
1559 * can't be handled.
1560 */
1561 (void) consumer_del_stream(stream, ht);
1562 }
1563 rcu_read_unlock();
1564
1565 lttng_ht_destroy(ht);
1566}
1567
1568/*
1569 * Iterate over all streams of the metadata hashtable and free them
1570 * properly.
1571 */
1572static void destroy_metadata_stream_ht(struct lttng_ht *ht)
1573{
1574 struct lttng_ht_iter iter;
1575 struct lttng_consumer_stream *stream;
1576
1577 if (ht == NULL) {
1578 return;
1579 }
1580
1581 rcu_read_lock();
1582 cds_lfht_for_each_entry(ht->ht, &iter.iter, stream, node.node) {
1583 /*
1584 * Ignore return value since we are currently cleaning up so any error
1585 * can't be handled.
1586 */
1587 (void) consumer_del_metadata_stream(stream, ht);
1588 }
1589 rcu_read_unlock();
1590
1591 lttng_ht_destroy(ht);
1592}
1593
3bd1e081
MD
1594/*
1595 * Close all fds associated with the instance and free the context.
1596 */
1597void lttng_consumer_destroy(struct lttng_consumer_local_data *ctx)
1598{
4c462e79
MD
1599 int ret;
1600
ab1027f4
DG
1601 DBG("Consumer destroying it. Closing everything.");
1602
4f2e75b9
DG
1603 if (!ctx) {
1604 return;
1605 }
1606
282dadbc
MD
1607 destroy_data_stream_ht(data_ht);
1608 destroy_metadata_stream_ht(metadata_ht);
1609
4c462e79
MD
1610 ret = close(ctx->consumer_error_socket);
1611 if (ret) {
1612 PERROR("close");
1613 }
331744e3
JD
1614 ret = close(ctx->consumer_metadata_socket);
1615 if (ret) {
1616 PERROR("close");
1617 }
d8ef542d 1618 utils_close_pipe(ctx->consumer_channel_pipe);
acdb9057 1619 lttng_pipe_destroy(ctx->consumer_data_pipe);
13886d2d 1620 lttng_pipe_destroy(ctx->consumer_metadata_pipe);
02b3d176 1621 lttng_pipe_destroy(ctx->consumer_wakeup_pipe);
d8ef542d 1622 utils_close_pipe(ctx->consumer_should_quit);
fb3a43a9 1623
3bd1e081
MD
1624 unlink(ctx->consumer_command_sock_path);
1625 free(ctx);
1626}
1627
6197aea7
DG
1628/*
1629 * Write the metadata stream id on the specified file descriptor.
1630 */
1631static int write_relayd_metadata_id(int fd,
1632 struct lttng_consumer_stream *stream,
239f61af 1633 unsigned long padding)
6197aea7 1634{
6cd525e8 1635 ssize_t ret;
1d4dfdef 1636 struct lttcomm_relayd_metadata_payload hdr;
6197aea7 1637
1d4dfdef
DG
1638 hdr.stream_id = htobe64(stream->relayd_stream_id);
1639 hdr.padding_size = htobe32(padding);
6cd525e8
MD
1640 ret = lttng_write(fd, (void *) &hdr, sizeof(hdr));
1641 if (ret < sizeof(hdr)) {
d7b75ec8 1642 /*
6f04ed72 1643 * This error means that the fd's end is closed so ignore the PERROR
d7b75ec8
DG
1644 * not to clubber the error output since this can happen in a normal
1645 * code path.
1646 */
1647 if (errno != EPIPE) {
1648 PERROR("write metadata stream id");
1649 }
1650 DBG3("Consumer failed to write relayd metadata id (errno: %d)", errno);
534d2592
DG
1651 /*
1652 * Set ret to a negative value because if ret != sizeof(hdr), we don't
1653 * handle writting the missing part so report that as an error and
1654 * don't lie to the caller.
1655 */
1656 ret = -1;
6197aea7
DG
1657 goto end;
1658 }
1d4dfdef
DG
1659 DBG("Metadata stream id %" PRIu64 " with padding %lu written before data",
1660 stream->relayd_stream_id, padding);
6197aea7
DG
1661
1662end:
6cd525e8 1663 return (int) ret;
6197aea7
DG
1664}
1665
3bd1e081 1666/*
09e26845
DG
1667 * Mmap the ring buffer, read it and write the data to the tracefile. This is a
1668 * core function for writing trace buffers to either the local filesystem or
1669 * the network.
1670 *
e5148e25 1671 * It must be called with the stream and the channel lock held.
79d4ffb7 1672 *
09e26845 1673 * Careful review MUST be put if any changes occur!
3bd1e081
MD
1674 *
1675 * Returns the number of bytes written
1676 */
4078b776 1677ssize_t lttng_consumer_on_read_subbuffer_mmap(
3bd1e081 1678 struct lttng_consumer_local_data *ctx,
7775df52 1679 struct lttng_consumer_stream *stream,
b770aa7f 1680 const struct lttng_buffer_view *buffer,
309167d2 1681 unsigned long padding,
50adc264 1682 struct ctf_packet_index *index)
3bd1e081 1683{
994ab360 1684 ssize_t ret = 0;
f02e1e8a
DG
1685 off_t orig_offset = stream->out_fd_offset;
1686 /* Default is on the disk */
1687 int outfd = stream->out_fd;
f02e1e8a 1688 struct consumer_relayd_sock_pair *relayd = NULL;
8994307f 1689 unsigned int relayd_hang_up = 0;
b770aa7f
JG
1690 const size_t subbuf_content_size = buffer->size - padding;
1691 size_t write_len;
f02e1e8a
DG
1692
1693 /* RCU lock for the relayd pointer */
1694 rcu_read_lock();
2238ee81 1695 assert(stream->net_seq_idx != (uint64_t) -1ULL ||
cd91c17d 1696 stream->trace_chunk);
e5148e25 1697
f02e1e8a 1698 /* Flag that the current stream if set for network streaming. */
da009f2c 1699 if (stream->net_seq_idx != (uint64_t) -1ULL) {
f02e1e8a
DG
1700 relayd = consumer_find_relayd(stream->net_seq_idx);
1701 if (relayd == NULL) {
56591bac 1702 ret = -EPIPE;
f02e1e8a
DG
1703 goto end;
1704 }
1705 }
1706
f02e1e8a
DG
1707 /* Handle stream on the relayd if the output is on the network */
1708 if (relayd) {
b770aa7f 1709 unsigned long netlen = subbuf_content_size;
f02e1e8a
DG
1710
1711 /*
1712 * Lock the control socket for the complete duration of the function
1713 * since from this point on we will use the socket.
1714 */
1715 if (stream->metadata_flag) {
1716 /* Metadata requires the control socket. */
1717 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
93ec662e
JD
1718 if (stream->reset_metadata_flag) {
1719 ret = relayd_reset_metadata(&relayd->control_sock,
1720 stream->relayd_stream_id,
1721 stream->metadata_version);
1722 if (ret < 0) {
1723 relayd_hang_up = 1;
1724 goto write_error;
1725 }
1726 stream->reset_metadata_flag = 0;
1727 }
1d4dfdef 1728 netlen += sizeof(struct lttcomm_relayd_metadata_payload);
f02e1e8a
DG
1729 }
1730
1d4dfdef 1731 ret = write_relayd_stream_header(stream, netlen, padding, relayd);
994ab360
DG
1732 if (ret < 0) {
1733 relayd_hang_up = 1;
1734 goto write_error;
1735 }
1736 /* Use the returned socket. */
1737 outfd = ret;
f02e1e8a 1738
994ab360
DG
1739 /* Write metadata stream id before payload */
1740 if (stream->metadata_flag) {
239f61af 1741 ret = write_relayd_metadata_id(outfd, stream, padding);
994ab360 1742 if (ret < 0) {
8994307f
DG
1743 relayd_hang_up = 1;
1744 goto write_error;
1745 }
f02e1e8a 1746 }
1624d5b7 1747
b770aa7f
JG
1748 write_len = subbuf_content_size;
1749 } else {
1750 /* No streaming; we have to write the full padding. */
93ec662e
JD
1751 if (stream->metadata_flag && stream->reset_metadata_flag) {
1752 ret = utils_truncate_stream_file(stream->out_fd, 0);
1753 if (ret < 0) {
1754 ERR("Reset metadata file");
1755 goto end;
1756 }
1757 stream->reset_metadata_flag = 0;
1758 }
1759
1624d5b7
JD
1760 /*
1761 * Check if we need to change the tracefile before writing the packet.
1762 */
1763 if (stream->chan->tracefile_size > 0 &&
b770aa7f 1764 (stream->tracefile_size_current + buffer->size) >
1624d5b7 1765 stream->chan->tracefile_size) {
e5148e25
JG
1766 ret = consumer_stream_rotate_output_files(stream);
1767 if (ret) {
1624d5b7
JD
1768 goto end;
1769 }
309167d2 1770 outfd = stream->out_fd;
a1ae300f 1771 orig_offset = 0;
1624d5b7 1772 }
b770aa7f 1773 stream->tracefile_size_current += buffer->size;
309167d2
JD
1774 if (index) {
1775 index->offset = htobe64(stream->out_fd_offset);
1776 }
b770aa7f
JG
1777
1778 write_len = buffer->size;
f02e1e8a
DG
1779 }
1780
d02b8372
DG
1781 /*
1782 * This call guarantee that len or less is returned. It's impossible to
1783 * receive a ret value that is bigger than len.
1784 */
b770aa7f
JG
1785 ret = lttng_write(outfd, buffer->data, write_len);
1786 DBG("Consumer mmap write() ret %zd (len %lu)", ret, write_len);
1787 if (ret < 0 || ((size_t) ret != write_len)) {
d02b8372
DG
1788 /*
1789 * Report error to caller if nothing was written else at least send the
1790 * amount written.
1791 */
1792 if (ret < 0) {
994ab360 1793 ret = -errno;
f02e1e8a 1794 }
994ab360 1795 relayd_hang_up = 1;
f02e1e8a 1796
d02b8372 1797 /* Socket operation failed. We consider the relayd dead */
a68f7ab3 1798 if (errno == EPIPE) {
d02b8372
DG
1799 /*
1800 * This is possible if the fd is closed on the other side
1801 * (outfd) or any write problem. It can be verbose a bit for a
1802 * normal execution if for instance the relayd is stopped
1803 * abruptly. This can happen so set this to a DBG statement.
1804 */
1805 DBG("Consumer mmap write detected relayd hang up");
994ab360
DG
1806 } else {
1807 /* Unhandled error, print it and stop function right now. */
b770aa7f
JG
1808 PERROR("Error in write mmap (ret %zd != write_len %zu)", ret,
1809 write_len);
f02e1e8a 1810 }
994ab360 1811 goto write_error;
d02b8372
DG
1812 }
1813 stream->output_written += ret;
d02b8372
DG
1814
1815 /* This call is useless on a socket so better save a syscall. */
1816 if (!relayd) {
1817 /* This won't block, but will start writeout asynchronously */
b770aa7f 1818 lttng_sync_file_range(outfd, stream->out_fd_offset, write_len,
d02b8372 1819 SYNC_FILE_RANGE_WRITE);
b770aa7f 1820 stream->out_fd_offset += write_len;
f5dbe415 1821 lttng_consumer_sync_trace_file(stream, orig_offset);
f02e1e8a 1822 }
f02e1e8a 1823
8994307f
DG
1824write_error:
1825 /*
1826 * This is a special case that the relayd has closed its socket. Let's
1827 * cleanup the relayd object and all associated streams.
1828 */
1829 if (relayd && relayd_hang_up) {
11413bb9
JR
1830 ERR("Relayd hangup. Cleaning up relayd %" PRIu64".", relayd->net_seq_idx);
1831 lttng_consumer_cleanup_relayd(relayd);
8994307f
DG
1832 }
1833
f02e1e8a
DG
1834end:
1835 /* Unlock only if ctrl socket used */
1836 if (relayd && stream->metadata_flag) {
1837 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
1838 }
1839
1840 rcu_read_unlock();
994ab360 1841 return ret;
3bd1e081
MD
1842}
1843
1844/*
1845 * Splice the data from the ring buffer to the tracefile.
1846 *
79d4ffb7
DG
1847 * It must be called with the stream lock held.
1848 *
3bd1e081
MD
1849 * Returns the number of bytes spliced.
1850 */
4078b776 1851ssize_t lttng_consumer_on_read_subbuffer_splice(
3bd1e081 1852 struct lttng_consumer_local_data *ctx,
1d4dfdef 1853 struct lttng_consumer_stream *stream, unsigned long len,
309167d2 1854 unsigned long padding,
50adc264 1855 struct ctf_packet_index *index)
3bd1e081 1856{
f02e1e8a
DG
1857 ssize_t ret = 0, written = 0, ret_splice = 0;
1858 loff_t offset = 0;
1859 off_t orig_offset = stream->out_fd_offset;
1860 int fd = stream->wait_fd;
1861 /* Default is on the disk */
1862 int outfd = stream->out_fd;
f02e1e8a 1863 struct consumer_relayd_sock_pair *relayd = NULL;
fb3a43a9 1864 int *splice_pipe;
8994307f 1865 unsigned int relayd_hang_up = 0;
f02e1e8a 1866
3bd1e081
MD
1867 switch (consumer_data.type) {
1868 case LTTNG_CONSUMER_KERNEL:
f02e1e8a 1869 break;
7753dea8
MD
1870 case LTTNG_CONSUMER32_UST:
1871 case LTTNG_CONSUMER64_UST:
f02e1e8a 1872 /* Not supported for user space tracing */
3bd1e081
MD
1873 return -ENOSYS;
1874 default:
1875 ERR("Unknown consumer_data type");
1876 assert(0);
3bd1e081
MD
1877 }
1878
f02e1e8a
DG
1879 /* RCU lock for the relayd pointer */
1880 rcu_read_lock();
1881
1882 /* Flag that the current stream if set for network streaming. */
da009f2c 1883 if (stream->net_seq_idx != (uint64_t) -1ULL) {
f02e1e8a
DG
1884 relayd = consumer_find_relayd(stream->net_seq_idx);
1885 if (relayd == NULL) {
ad0b0d23 1886 written = -ret;
f02e1e8a
DG
1887 goto end;
1888 }
1889 }
a2361a61 1890 splice_pipe = stream->splice_pipe;
fb3a43a9 1891
f02e1e8a 1892 /* Write metadata stream id before payload */
1d4dfdef 1893 if (relayd) {
ad0b0d23 1894 unsigned long total_len = len;
f02e1e8a 1895
1d4dfdef
DG
1896 if (stream->metadata_flag) {
1897 /*
1898 * Lock the control socket for the complete duration of the function
1899 * since from this point on we will use the socket.
1900 */
1901 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
1902
93ec662e
JD
1903 if (stream->reset_metadata_flag) {
1904 ret = relayd_reset_metadata(&relayd->control_sock,
1905 stream->relayd_stream_id,
1906 stream->metadata_version);
1907 if (ret < 0) {
1908 relayd_hang_up = 1;
1909 goto write_error;
1910 }
1911 stream->reset_metadata_flag = 0;
1912 }
239f61af 1913 ret = write_relayd_metadata_id(splice_pipe[1], stream,
1d4dfdef
DG
1914 padding);
1915 if (ret < 0) {
1916 written = ret;
ad0b0d23
DG
1917 relayd_hang_up = 1;
1918 goto write_error;
1d4dfdef
DG
1919 }
1920
1921 total_len += sizeof(struct lttcomm_relayd_metadata_payload);
1922 }
1923
1924 ret = write_relayd_stream_header(stream, total_len, padding, relayd);
ad0b0d23
DG
1925 if (ret < 0) {
1926 written = ret;
1927 relayd_hang_up = 1;
1928 goto write_error;
f02e1e8a 1929 }
ad0b0d23
DG
1930 /* Use the returned socket. */
1931 outfd = ret;
1d4dfdef
DG
1932 } else {
1933 /* No streaming, we have to set the len with the full padding */
1934 len += padding;
1624d5b7 1935
93ec662e
JD
1936 if (stream->metadata_flag && stream->reset_metadata_flag) {
1937 ret = utils_truncate_stream_file(stream->out_fd, 0);
1938 if (ret < 0) {
1939 ERR("Reset metadata file");
1940 goto end;
1941 }
1942 stream->reset_metadata_flag = 0;
1943 }
1624d5b7
JD
1944 /*
1945 * Check if we need to change the tracefile before writing the packet.
1946 */
1947 if (stream->chan->tracefile_size > 0 &&
1948 (stream->tracefile_size_current + len) >
1949 stream->chan->tracefile_size) {
e5148e25 1950 ret = consumer_stream_rotate_output_files(stream);
1624d5b7 1951 if (ret < 0) {
ad0b0d23 1952 written = ret;
1624d5b7
JD
1953 goto end;
1954 }
309167d2 1955 outfd = stream->out_fd;
a1ae300f 1956 orig_offset = 0;
1624d5b7
JD
1957 }
1958 stream->tracefile_size_current += len;
309167d2 1959 index->offset = htobe64(stream->out_fd_offset);
f02e1e8a
DG
1960 }
1961
1962 while (len > 0) {
1d4dfdef
DG
1963 DBG("splice chan to pipe offset %lu of len %lu (fd : %d, pipe: %d)",
1964 (unsigned long)offset, len, fd, splice_pipe[1]);
fb3a43a9 1965 ret_splice = splice(fd, &offset, splice_pipe[1], NULL, len,
f02e1e8a
DG
1966 SPLICE_F_MOVE | SPLICE_F_MORE);
1967 DBG("splice chan to pipe, ret %zd", ret_splice);
1968 if (ret_splice < 0) {
d02b8372 1969 ret = errno;
ad0b0d23 1970 written = -ret;
d02b8372 1971 PERROR("Error in relay splice");
f02e1e8a
DG
1972 goto splice_error;
1973 }
1974
1975 /* Handle stream on the relayd if the output is on the network */
ad0b0d23
DG
1976 if (relayd && stream->metadata_flag) {
1977 size_t metadata_payload_size =
1978 sizeof(struct lttcomm_relayd_metadata_payload);
1979
1980 /* Update counter to fit the spliced data */
1981 ret_splice += metadata_payload_size;
1982 len += metadata_payload_size;
1983 /*
1984 * We do this so the return value can match the len passed as
1985 * argument to this function.
1986 */
1987 written -= metadata_payload_size;
f02e1e8a
DG
1988 }
1989
1990 /* Splice data out */
fb3a43a9 1991 ret_splice = splice(splice_pipe[0], NULL, outfd, NULL,
f02e1e8a 1992 ret_splice, SPLICE_F_MOVE | SPLICE_F_MORE);
a2361a61
JD
1993 DBG("Consumer splice pipe to file (out_fd: %d), ret %zd",
1994 outfd, ret_splice);
f02e1e8a 1995 if (ret_splice < 0) {
d02b8372 1996 ret = errno;
ad0b0d23
DG
1997 written = -ret;
1998 relayd_hang_up = 1;
1999 goto write_error;
f02e1e8a 2000 } else if (ret_splice > len) {
d02b8372
DG
2001 /*
2002 * We don't expect this code path to be executed but you never know
2003 * so this is an extra protection agains a buggy splice().
2004 */
f02e1e8a 2005 ret = errno;
ad0b0d23 2006 written += ret_splice;
d02b8372
DG
2007 PERROR("Wrote more data than requested %zd (len: %lu)", ret_splice,
2008 len);
f02e1e8a 2009 goto splice_error;
d02b8372
DG
2010 } else {
2011 /* All good, update current len and continue. */
2012 len -= ret_splice;
f02e1e8a 2013 }
f02e1e8a
DG
2014
2015 /* This call is useless on a socket so better save a syscall. */
2016 if (!relayd) {
2017 /* This won't block, but will start writeout asynchronously */
2018 lttng_sync_file_range(outfd, stream->out_fd_offset, ret_splice,
2019 SYNC_FILE_RANGE_WRITE);
2020 stream->out_fd_offset += ret_splice;
2021 }
e5d1a9b3 2022 stream->output_written += ret_splice;
f02e1e8a
DG
2023 written += ret_splice;
2024 }
f5dbe415
JG
2025 if (!relayd) {
2026 lttng_consumer_sync_trace_file(stream, orig_offset);
2027 }
f02e1e8a
DG
2028 goto end;
2029
8994307f
DG
2030write_error:
2031 /*
2032 * This is a special case that the relayd has closed its socket. Let's
2033 * cleanup the relayd object and all associated streams.
2034 */
2035 if (relayd && relayd_hang_up) {
11413bb9
JR
2036 ERR("Relayd hangup. Cleaning up relayd %" PRIu64".", relayd->net_seq_idx);
2037 lttng_consumer_cleanup_relayd(relayd);
8994307f
DG
2038 /* Skip splice error so the consumer does not fail */
2039 goto end;
2040 }
2041
f02e1e8a
DG
2042splice_error:
2043 /* send the appropriate error description to sessiond */
2044 switch (ret) {
f02e1e8a 2045 case EINVAL:
f73fabfd 2046 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_SPLICE_EINVAL);
f02e1e8a
DG
2047 break;
2048 case ENOMEM:
f73fabfd 2049 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_SPLICE_ENOMEM);
f02e1e8a
DG
2050 break;
2051 case ESPIPE:
f73fabfd 2052 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_SPLICE_ESPIPE);
f02e1e8a
DG
2053 break;
2054 }
2055
2056end:
2057 if (relayd && stream->metadata_flag) {
2058 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
2059 }
2060
2061 rcu_read_unlock();
2062 return written;
3bd1e081
MD
2063}
2064
15055ce5
JD
2065/*
2066 * Sample the snapshot positions for a specific fd
2067 *
2068 * Returns 0 on success, < 0 on error
2069 */
2070int lttng_consumer_sample_snapshot_positions(struct lttng_consumer_stream *stream)
2071{
2072 switch (consumer_data.type) {
2073 case LTTNG_CONSUMER_KERNEL:
2074 return lttng_kconsumer_sample_snapshot_positions(stream);
2075 case LTTNG_CONSUMER32_UST:
2076 case LTTNG_CONSUMER64_UST:
2077 return lttng_ustconsumer_sample_snapshot_positions(stream);
2078 default:
2079 ERR("Unknown consumer_data type");
2080 assert(0);
2081 return -ENOSYS;
2082 }
2083}
3bd1e081
MD
2084/*
2085 * Take a snapshot for a specific fd
2086 *
2087 * Returns 0 on success, < 0 on error
2088 */
ffe60014 2089int lttng_consumer_take_snapshot(struct lttng_consumer_stream *stream)
3bd1e081
MD
2090{
2091 switch (consumer_data.type) {
2092 case LTTNG_CONSUMER_KERNEL:
ffe60014 2093 return lttng_kconsumer_take_snapshot(stream);
7753dea8
MD
2094 case LTTNG_CONSUMER32_UST:
2095 case LTTNG_CONSUMER64_UST:
ffe60014 2096 return lttng_ustconsumer_take_snapshot(stream);
3bd1e081
MD
2097 default:
2098 ERR("Unknown consumer_data type");
2099 assert(0);
2100 return -ENOSYS;
2101 }
3bd1e081
MD
2102}
2103
2104/*
2105 * Get the produced position
2106 *
2107 * Returns 0 on success, < 0 on error
2108 */
ffe60014 2109int lttng_consumer_get_produced_snapshot(struct lttng_consumer_stream *stream,
3bd1e081
MD
2110 unsigned long *pos)
2111{
2112 switch (consumer_data.type) {
2113 case LTTNG_CONSUMER_KERNEL:
ffe60014 2114 return lttng_kconsumer_get_produced_snapshot(stream, pos);
7753dea8
MD
2115 case LTTNG_CONSUMER32_UST:
2116 case LTTNG_CONSUMER64_UST:
ffe60014 2117 return lttng_ustconsumer_get_produced_snapshot(stream, pos);
3bd1e081
MD
2118 default:
2119 ERR("Unknown consumer_data type");
2120 assert(0);
2121 return -ENOSYS;
2122 }
2123}
2124
15055ce5
JD
2125/*
2126 * Get the consumed position (free-running counter position in bytes).
2127 *
2128 * Returns 0 on success, < 0 on error
2129 */
2130int lttng_consumer_get_consumed_snapshot(struct lttng_consumer_stream *stream,
2131 unsigned long *pos)
2132{
2133 switch (consumer_data.type) {
2134 case LTTNG_CONSUMER_KERNEL:
2135 return lttng_kconsumer_get_consumed_snapshot(stream, pos);
2136 case LTTNG_CONSUMER32_UST:
2137 case LTTNG_CONSUMER64_UST:
2138 return lttng_ustconsumer_get_consumed_snapshot(stream, pos);
2139 default:
2140 ERR("Unknown consumer_data type");
2141 assert(0);
2142 return -ENOSYS;
2143 }
2144}
2145
3bd1e081
MD
2146int lttng_consumer_recv_cmd(struct lttng_consumer_local_data *ctx,
2147 int sock, struct pollfd *consumer_sockpoll)
2148{
2149 switch (consumer_data.type) {
2150 case LTTNG_CONSUMER_KERNEL:
2151 return lttng_kconsumer_recv_cmd(ctx, sock, consumer_sockpoll);
7753dea8
MD
2152 case LTTNG_CONSUMER32_UST:
2153 case LTTNG_CONSUMER64_UST:
3bd1e081
MD
2154 return lttng_ustconsumer_recv_cmd(ctx, sock, consumer_sockpoll);
2155 default:
2156 ERR("Unknown consumer_data type");
2157 assert(0);
2158 return -ENOSYS;
2159 }
2160}
2161
6d574024 2162void lttng_consumer_close_all_metadata(void)
d88aee68
DG
2163{
2164 switch (consumer_data.type) {
2165 case LTTNG_CONSUMER_KERNEL:
2166 /*
2167 * The Kernel consumer has a different metadata scheme so we don't
2168 * close anything because the stream will be closed by the session
2169 * daemon.
2170 */
2171 break;
2172 case LTTNG_CONSUMER32_UST:
2173 case LTTNG_CONSUMER64_UST:
2174 /*
2175 * Close all metadata streams. The metadata hash table is passed and
2176 * this call iterates over it by closing all wakeup fd. This is safe
2177 * because at this point we are sure that the metadata producer is
2178 * either dead or blocked.
2179 */
6d574024 2180 lttng_ustconsumer_close_all_metadata(metadata_ht);
d88aee68
DG
2181 break;
2182 default:
2183 ERR("Unknown consumer_data type");
2184 assert(0);
2185 }
2186}
2187
fb3a43a9
DG
2188/*
2189 * Clean up a metadata stream and free its memory.
2190 */
e316aad5
DG
2191void consumer_del_metadata_stream(struct lttng_consumer_stream *stream,
2192 struct lttng_ht *ht)
fb3a43a9 2193{
a0f2df60
JG
2194 struct lttng_consumer_channel *channel = NULL;
2195 bool free_channel = false;
fb3a43a9
DG
2196
2197 assert(stream);
2198 /*
2199 * This call should NEVER receive regular stream. It must always be
2200 * metadata stream and this is crucial for data structure synchronization.
2201 */
2202 assert(stream->metadata_flag);
2203
e316aad5
DG
2204 DBG3("Consumer delete metadata stream %d", stream->wait_fd);
2205
74251bb8 2206 pthread_mutex_lock(&consumer_data.lock);
a0f2df60
JG
2207 /*
2208 * Note that this assumes that a stream's channel is never changed and
2209 * that the stream's lock doesn't need to be taken to sample its
2210 * channel.
2211 */
2212 channel = stream->chan;
2213 pthread_mutex_lock(&channel->lock);
3dad2c0f 2214 pthread_mutex_lock(&stream->lock);
a0f2df60 2215 if (channel->metadata_cache) {
081424af 2216 /* Only applicable to userspace consumers. */
a0f2df60 2217 pthread_mutex_lock(&channel->metadata_cache->lock);
081424af 2218 }
8994307f 2219
6d574024
DG
2220 /* Remove any reference to that stream. */
2221 consumer_stream_delete(stream, ht);
ca22feea 2222
6d574024
DG
2223 /* Close down everything including the relayd if one. */
2224 consumer_stream_close(stream);
2225 /* Destroy tracer buffers of the stream. */
2226 consumer_stream_destroy_buffers(stream);
fb3a43a9
DG
2227
2228 /* Atomically decrement channel refcount since other threads can use it. */
a0f2df60
JG
2229 if (!uatomic_sub_return(&channel->refcount, 1)
2230 && !uatomic_read(&channel->nb_init_stream_left)) {
c30aaa51 2231 /* Go for channel deletion! */
a0f2df60 2232 free_channel = true;
fb3a43a9 2233 }
a0f2df60 2234 stream->chan = NULL;
fb3a43a9 2235
73811ecc
DG
2236 /*
2237 * Nullify the stream reference so it is not used after deletion. The
6d574024
DG
2238 * channel lock MUST be acquired before being able to check for a NULL
2239 * pointer value.
73811ecc 2240 */
a0f2df60 2241 channel->metadata_stream = NULL;
73811ecc 2242
a0f2df60
JG
2243 if (channel->metadata_cache) {
2244 pthread_mutex_unlock(&channel->metadata_cache->lock);
081424af 2245 }
3dad2c0f 2246 pthread_mutex_unlock(&stream->lock);
a0f2df60 2247 pthread_mutex_unlock(&channel->lock);
74251bb8 2248 pthread_mutex_unlock(&consumer_data.lock);
e316aad5 2249
a0f2df60
JG
2250 if (free_channel) {
2251 consumer_del_channel(channel);
e316aad5
DG
2252 }
2253
e5148e25
JG
2254 lttng_trace_chunk_put(stream->trace_chunk);
2255 stream->trace_chunk = NULL;
6d574024 2256 consumer_stream_free(stream);
fb3a43a9
DG
2257}
2258
2259/*
2260 * Action done with the metadata stream when adding it to the consumer internal
2261 * data structures to handle it.
2262 */
66d583dc 2263void consumer_add_metadata_stream(struct lttng_consumer_stream *stream)
fb3a43a9 2264{
5ab66908 2265 struct lttng_ht *ht = metadata_ht;
76082088 2266 struct lttng_ht_iter iter;
d88aee68 2267 struct lttng_ht_node_u64 *node;
fb3a43a9 2268
e316aad5
DG
2269 assert(stream);
2270 assert(ht);
2271
d88aee68 2272 DBG3("Adding metadata stream %" PRIu64 " to hash table", stream->key);
e316aad5
DG
2273
2274 pthread_mutex_lock(&consumer_data.lock);
a9838785 2275 pthread_mutex_lock(&stream->chan->lock);
ec6ea7d0 2276 pthread_mutex_lock(&stream->chan->timer_lock);
2e818a6a 2277 pthread_mutex_lock(&stream->lock);
e316aad5 2278
e316aad5
DG
2279 /*
2280 * From here, refcounts are updated so be _careful_ when returning an error
2281 * after this point.
2282 */
2283
fb3a43a9 2284 rcu_read_lock();
76082088
DG
2285
2286 /*
2287 * Lookup the stream just to make sure it does not exist in our internal
2288 * state. This should NEVER happen.
2289 */
d88aee68
DG
2290 lttng_ht_lookup(ht, &stream->key, &iter);
2291 node = lttng_ht_iter_get_node_u64(&iter);
76082088
DG
2292 assert(!node);
2293
e316aad5 2294 /*
ffe60014
DG
2295 * When nb_init_stream_left reaches 0, we don't need to trigger any action
2296 * in terms of destroying the associated channel, because the action that
e316aad5
DG
2297 * causes the count to become 0 also causes a stream to be added. The
2298 * channel deletion will thus be triggered by the following removal of this
2299 * stream.
2300 */
ffe60014 2301 if (uatomic_read(&stream->chan->nb_init_stream_left) > 0) {
f2ad556d
MD
2302 /* Increment refcount before decrementing nb_init_stream_left */
2303 cmm_smp_wmb();
ffe60014 2304 uatomic_dec(&stream->chan->nb_init_stream_left);
e316aad5
DG
2305 }
2306
d88aee68 2307 lttng_ht_add_unique_u64(ht, &stream->node);
ca22feea 2308
446156b4 2309 lttng_ht_add_u64(consumer_data.stream_per_chan_id_ht,
d8ef542d
MD
2310 &stream->node_channel_id);
2311
ca22feea
DG
2312 /*
2313 * Add stream to the stream_list_ht of the consumer data. No need to steal
2314 * the key since the HT does not use it and we allow to add redundant keys
2315 * into this table.
2316 */
d88aee68 2317 lttng_ht_add_u64(consumer_data.stream_list_ht, &stream->node_session_id);
ca22feea 2318
fb3a43a9 2319 rcu_read_unlock();
e316aad5 2320
2e818a6a 2321 pthread_mutex_unlock(&stream->lock);
a9838785 2322 pthread_mutex_unlock(&stream->chan->lock);
ec6ea7d0 2323 pthread_mutex_unlock(&stream->chan->timer_lock);
e316aad5 2324 pthread_mutex_unlock(&consumer_data.lock);
fb3a43a9
DG
2325}
2326
8994307f
DG
2327/*
2328 * Delete data stream that are flagged for deletion (endpoint_status).
2329 */
2330static void validate_endpoint_status_data_stream(void)
2331{
2332 struct lttng_ht_iter iter;
2333 struct lttng_consumer_stream *stream;
2334
2335 DBG("Consumer delete flagged data stream");
2336
2337 rcu_read_lock();
2338 cds_lfht_for_each_entry(data_ht->ht, &iter.iter, stream, node.node) {
2339 /* Validate delete flag of the stream */
79d4ffb7 2340 if (stream->endpoint_status == CONSUMER_ENDPOINT_ACTIVE) {
8994307f
DG
2341 continue;
2342 }
2343 /* Delete it right now */
2344 consumer_del_stream(stream, data_ht);
2345 }
2346 rcu_read_unlock();
2347}
2348
2349/*
2350 * Delete metadata stream that are flagged for deletion (endpoint_status).
2351 */
2352static void validate_endpoint_status_metadata_stream(
2353 struct lttng_poll_event *pollset)
2354{
2355 struct lttng_ht_iter iter;
2356 struct lttng_consumer_stream *stream;
2357
2358 DBG("Consumer delete flagged metadata stream");
2359
2360 assert(pollset);
2361
2362 rcu_read_lock();
2363 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream, node.node) {
2364 /* Validate delete flag of the stream */
79d4ffb7 2365 if (stream->endpoint_status == CONSUMER_ENDPOINT_ACTIVE) {
8994307f
DG
2366 continue;
2367 }
2368 /*
2369 * Remove from pollset so the metadata thread can continue without
2370 * blocking on a deleted stream.
2371 */
2372 lttng_poll_del(pollset, stream->wait_fd);
2373
2374 /* Delete it right now */
2375 consumer_del_metadata_stream(stream, metadata_ht);
2376 }
2377 rcu_read_unlock();
2378}
2379
fb3a43a9
DG
2380/*
2381 * Thread polls on metadata file descriptor and write them on disk or on the
2382 * network.
2383 */
7d980def 2384void *consumer_thread_metadata_poll(void *data)
fb3a43a9 2385{
1fc79fb4 2386 int ret, i, pollfd, err = -1;
fb3a43a9 2387 uint32_t revents, nb_fd;
e316aad5 2388 struct lttng_consumer_stream *stream = NULL;
fb3a43a9 2389 struct lttng_ht_iter iter;
d88aee68 2390 struct lttng_ht_node_u64 *node;
fb3a43a9
DG
2391 struct lttng_poll_event events;
2392 struct lttng_consumer_local_data *ctx = data;
2393 ssize_t len;
2394
2395 rcu_register_thread();
2396
1fc79fb4
MD
2397 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_METADATA);
2398
2d57de81
MD
2399 if (testpoint(consumerd_thread_metadata)) {
2400 goto error_testpoint;
2401 }
2402
9ce5646a
MD
2403 health_code_update();
2404
fb3a43a9
DG
2405 DBG("Thread metadata poll started");
2406
fb3a43a9
DG
2407 /* Size is set to 1 for the consumer_metadata pipe */
2408 ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC);
2409 if (ret < 0) {
2410 ERR("Poll set creation failed");
d8ef542d 2411 goto end_poll;
fb3a43a9
DG
2412 }
2413
13886d2d
DG
2414 ret = lttng_poll_add(&events,
2415 lttng_pipe_get_readfd(ctx->consumer_metadata_pipe), LPOLLIN);
fb3a43a9
DG
2416 if (ret < 0) {
2417 goto end;
2418 }
2419
2420 /* Main loop */
2421 DBG("Metadata main loop started");
2422
2423 while (1) {
fb3a43a9 2424restart:
7fa2082e 2425 health_code_update();
9ce5646a 2426 health_poll_entry();
7fa2082e 2427 DBG("Metadata poll wait");
fb3a43a9 2428 ret = lttng_poll_wait(&events, -1);
7fa2082e
MD
2429 DBG("Metadata poll return from wait with %d fd(s)",
2430 LTTNG_POLL_GETNB(&events));
9ce5646a 2431 health_poll_exit();
40063ead 2432 DBG("Metadata event caught in thread");
fb3a43a9
DG
2433 if (ret < 0) {
2434 if (errno == EINTR) {
40063ead 2435 ERR("Poll EINTR caught");
fb3a43a9
DG
2436 goto restart;
2437 }
d9607cd7
MD
2438 if (LTTNG_POLL_GETNB(&events) == 0) {
2439 err = 0; /* All is OK */
2440 }
2441 goto end;
fb3a43a9
DG
2442 }
2443
0d9c5d77
DG
2444 nb_fd = ret;
2445
e316aad5 2446 /* From here, the event is a metadata wait fd */
fb3a43a9 2447 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2448 health_code_update();
2449
fb3a43a9
DG
2450 revents = LTTNG_POLL_GETEV(&events, i);
2451 pollfd = LTTNG_POLL_GETFD(&events, i);
2452
13886d2d 2453 if (pollfd == lttng_pipe_get_readfd(ctx->consumer_metadata_pipe)) {
03e43155 2454 if (revents & LPOLLIN) {
13886d2d
DG
2455 ssize_t pipe_len;
2456
2457 pipe_len = lttng_pipe_read(ctx->consumer_metadata_pipe,
2458 &stream, sizeof(stream));
6cd525e8 2459 if (pipe_len < sizeof(stream)) {
03e43155
MD
2460 if (pipe_len < 0) {
2461 PERROR("read metadata stream");
2462 }
fb3a43a9 2463 /*
03e43155
MD
2464 * Remove the pipe from the poll set and continue the loop
2465 * since their might be data to consume.
fb3a43a9 2466 */
03e43155
MD
2467 lttng_poll_del(&events,
2468 lttng_pipe_get_readfd(ctx->consumer_metadata_pipe));
2469 lttng_pipe_read_close(ctx->consumer_metadata_pipe);
fb3a43a9
DG
2470 continue;
2471 }
2472
8994307f
DG
2473 /* A NULL stream means that the state has changed. */
2474 if (stream == NULL) {
2475 /* Check for deleted streams. */
2476 validate_endpoint_status_metadata_stream(&events);
3714380f 2477 goto restart;
8994307f
DG
2478 }
2479
fb3a43a9
DG
2480 DBG("Adding metadata stream %d to poll set",
2481 stream->wait_fd);
2482
fb3a43a9
DG
2483 /* Add metadata stream to the global poll events list */
2484 lttng_poll_add(&events, stream->wait_fd,
6d574024 2485 LPOLLIN | LPOLLPRI | LPOLLHUP);
03e43155
MD
2486 } else if (revents & (LPOLLERR | LPOLLHUP)) {
2487 DBG("Metadata thread pipe hung up");
2488 /*
2489 * Remove the pipe from the poll set and continue the loop
2490 * since their might be data to consume.
2491 */
2492 lttng_poll_del(&events,
2493 lttng_pipe_get_readfd(ctx->consumer_metadata_pipe));
2494 lttng_pipe_read_close(ctx->consumer_metadata_pipe);
2495 continue;
2496 } else {
2497 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
2498 goto end;
fb3a43a9
DG
2499 }
2500
e316aad5 2501 /* Handle other stream */
fb3a43a9
DG
2502 continue;
2503 }
2504
d09e1200 2505 rcu_read_lock();
d88aee68
DG
2506 {
2507 uint64_t tmp_id = (uint64_t) pollfd;
2508
2509 lttng_ht_lookup(metadata_ht, &tmp_id, &iter);
2510 }
2511 node = lttng_ht_iter_get_node_u64(&iter);
e316aad5 2512 assert(node);
fb3a43a9
DG
2513
2514 stream = caa_container_of(node, struct lttng_consumer_stream,
58b1f425 2515 node);
fb3a43a9 2516
03e43155
MD
2517 if (revents & (LPOLLIN | LPOLLPRI)) {
2518 /* Get the data out of the metadata file descriptor */
2519 DBG("Metadata available on fd %d", pollfd);
2520 assert(stream->wait_fd == pollfd);
2521
2522 do {
2523 health_code_update();
2524
2525 len = ctx->on_buffer_ready(stream, ctx);
2526 /*
2527 * We don't check the return value here since if we get
83f4233d 2528 * a negative len, it means an error occurred thus we
03e43155
MD
2529 * simply remove it from the poll set and free the
2530 * stream.
2531 */
2532 } while (len > 0);
2533
2534 /* It's ok to have an unavailable sub-buffer */
2535 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
2536 /* Clean up stream from consumer and free it. */
2537 lttng_poll_del(&events, stream->wait_fd);
2538 consumer_del_metadata_stream(stream, metadata_ht);
2539 }
2540 } else if (revents & (LPOLLERR | LPOLLHUP)) {
e316aad5 2541 DBG("Metadata fd %d is hup|err.", pollfd);
fb3a43a9
DG
2542 if (!stream->hangup_flush_done
2543 && (consumer_data.type == LTTNG_CONSUMER32_UST
2544 || consumer_data.type == LTTNG_CONSUMER64_UST)) {
2545 DBG("Attempting to flush and consume the UST buffers");
2546 lttng_ustconsumer_on_stream_hangup(stream);
2547
2548 /* We just flushed the stream now read it. */
4bb94b75 2549 do {
9ce5646a
MD
2550 health_code_update();
2551
4bb94b75
DG
2552 len = ctx->on_buffer_ready(stream, ctx);
2553 /*
2554 * We don't check the return value here since if we get
83f4233d 2555 * a negative len, it means an error occurred thus we
4bb94b75
DG
2556 * simply remove it from the poll set and free the
2557 * stream.
2558 */
2559 } while (len > 0);
fb3a43a9
DG
2560 }
2561
fb3a43a9 2562 lttng_poll_del(&events, stream->wait_fd);
e316aad5
DG
2563 /*
2564 * This call update the channel states, closes file descriptors
2565 * and securely free the stream.
2566 */
2567 consumer_del_metadata_stream(stream, metadata_ht);
03e43155
MD
2568 } else {
2569 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
6f2f1a70 2570 rcu_read_unlock();
03e43155 2571 goto end;
fb3a43a9 2572 }
e316aad5 2573 /* Release RCU lock for the stream looked up */
d09e1200 2574 rcu_read_unlock();
fb3a43a9
DG
2575 }
2576 }
2577
1fc79fb4
MD
2578 /* All is OK */
2579 err = 0;
fb3a43a9
DG
2580end:
2581 DBG("Metadata poll thread exiting");
fb3a43a9 2582
d8ef542d
MD
2583 lttng_poll_clean(&events);
2584end_poll:
2d57de81 2585error_testpoint:
1fc79fb4
MD
2586 if (err) {
2587 health_error();
2588 ERR("Health error occurred in %s", __func__);
2589 }
2590 health_unregister(health_consumerd);
fb3a43a9
DG
2591 rcu_unregister_thread();
2592 return NULL;
2593}
2594
3bd1e081 2595/*
e4421fec 2596 * This thread polls the fds in the set to consume the data and write
3bd1e081
MD
2597 * it to tracefile if necessary.
2598 */
7d980def 2599void *consumer_thread_data_poll(void *data)
3bd1e081 2600{
1fc79fb4 2601 int num_rdy, num_hup, high_prio, ret, i, err = -1;
3bd1e081
MD
2602 struct pollfd *pollfd = NULL;
2603 /* local view of the streams */
c869f647 2604 struct lttng_consumer_stream **local_stream = NULL, *new_stream = NULL;
3bd1e081 2605 /* local view of consumer_data.fds_count */
8bdcc002
JG
2606 int nb_fd = 0;
2607 /* 2 for the consumer_data_pipe and wake up pipe */
2608 const int nb_pipes_fd = 2;
9a2fcf78
JD
2609 /* Number of FDs with CONSUMER_ENDPOINT_INACTIVE but still open. */
2610 int nb_inactive_fd = 0;
3bd1e081 2611 struct lttng_consumer_local_data *ctx = data;
00e2e675 2612 ssize_t len;
3bd1e081 2613
e7b994a3
DG
2614 rcu_register_thread();
2615
1fc79fb4
MD
2616 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_DATA);
2617
2d57de81
MD
2618 if (testpoint(consumerd_thread_data)) {
2619 goto error_testpoint;
2620 }
2621
9ce5646a
MD
2622 health_code_update();
2623
4df6c8cb
MD
2624 local_stream = zmalloc(sizeof(struct lttng_consumer_stream *));
2625 if (local_stream == NULL) {
2626 PERROR("local_stream malloc");
2627 goto end;
2628 }
3bd1e081
MD
2629
2630 while (1) {
9ce5646a
MD
2631 health_code_update();
2632
3bd1e081
MD
2633 high_prio = 0;
2634 num_hup = 0;
2635
2636 /*
e4421fec 2637 * the fds set has been updated, we need to update our
3bd1e081
MD
2638 * local array as well
2639 */
2640 pthread_mutex_lock(&consumer_data.lock);
2641 if (consumer_data.need_update) {
0e428499
DG
2642 free(pollfd);
2643 pollfd = NULL;
2644
2645 free(local_stream);
2646 local_stream = NULL;
3bd1e081 2647
8bdcc002 2648 /* Allocate for all fds */
261de637 2649 pollfd = zmalloc((consumer_data.stream_count + nb_pipes_fd) * sizeof(struct pollfd));
3bd1e081 2650 if (pollfd == NULL) {
7a57cf92 2651 PERROR("pollfd malloc");
3bd1e081
MD
2652 pthread_mutex_unlock(&consumer_data.lock);
2653 goto end;
2654 }
2655
261de637 2656 local_stream = zmalloc((consumer_data.stream_count + nb_pipes_fd) *
747f8642 2657 sizeof(struct lttng_consumer_stream *));
3bd1e081 2658 if (local_stream == NULL) {
7a57cf92 2659 PERROR("local_stream malloc");
3bd1e081
MD
2660 pthread_mutex_unlock(&consumer_data.lock);
2661 goto end;
2662 }
ffe60014 2663 ret = update_poll_array(ctx, &pollfd, local_stream,
9a2fcf78 2664 data_ht, &nb_inactive_fd);
3bd1e081
MD
2665 if (ret < 0) {
2666 ERR("Error in allocating pollfd or local_outfds");
f73fabfd 2667 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_POLL_ERROR);
3bd1e081
MD
2668 pthread_mutex_unlock(&consumer_data.lock);
2669 goto end;
2670 }
2671 nb_fd = ret;
2672 consumer_data.need_update = 0;
2673 }
2674 pthread_mutex_unlock(&consumer_data.lock);
2675
4078b776 2676 /* No FDs and consumer_quit, consumer_cleanup the thread */
9a2fcf78
JD
2677 if (nb_fd == 0 && nb_inactive_fd == 0 &&
2678 CMM_LOAD_SHARED(consumer_quit) == 1) {
1fc79fb4 2679 err = 0; /* All is OK */
4078b776
MD
2680 goto end;
2681 }
3bd1e081 2682 /* poll on the array of fds */
88f2b785 2683 restart:
261de637 2684 DBG("polling on %d fd", nb_fd + nb_pipes_fd);
cf0bcb51
JG
2685 if (testpoint(consumerd_thread_data_poll)) {
2686 goto end;
2687 }
9ce5646a 2688 health_poll_entry();
261de637 2689 num_rdy = poll(pollfd, nb_fd + nb_pipes_fd, -1);
9ce5646a 2690 health_poll_exit();
3bd1e081
MD
2691 DBG("poll num_rdy : %d", num_rdy);
2692 if (num_rdy == -1) {
88f2b785
MD
2693 /*
2694 * Restart interrupted system call.
2695 */
2696 if (errno == EINTR) {
2697 goto restart;
2698 }
7a57cf92 2699 PERROR("Poll error");
f73fabfd 2700 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_POLL_ERROR);
3bd1e081
MD
2701 goto end;
2702 } else if (num_rdy == 0) {
2703 DBG("Polling thread timed out");
2704 goto end;
2705 }
2706
80957876
JG
2707 if (caa_unlikely(data_consumption_paused)) {
2708 DBG("Data consumption paused, sleeping...");
2709 sleep(1);
2710 goto restart;
2711 }
2712
3bd1e081 2713 /*
50f8ae69 2714 * If the consumer_data_pipe triggered poll go directly to the
00e2e675
DG
2715 * beginning of the loop to update the array. We want to prioritize
2716 * array update over low-priority reads.
3bd1e081 2717 */
509bb1cf 2718 if (pollfd[nb_fd].revents & (POLLIN | POLLPRI)) {
ab30f567 2719 ssize_t pipe_readlen;
04fdd819 2720
50f8ae69 2721 DBG("consumer_data_pipe wake up");
acdb9057
DG
2722 pipe_readlen = lttng_pipe_read(ctx->consumer_data_pipe,
2723 &new_stream, sizeof(new_stream));
6cd525e8
MD
2724 if (pipe_readlen < sizeof(new_stream)) {
2725 PERROR("Consumer data pipe");
23f5f35d
DG
2726 /* Continue so we can at least handle the current stream(s). */
2727 continue;
2728 }
c869f647
DG
2729
2730 /*
2731 * If the stream is NULL, just ignore it. It's also possible that
2732 * the sessiond poll thread changed the consumer_quit state and is
2733 * waking us up to test it.
2734 */
2735 if (new_stream == NULL) {
8994307f 2736 validate_endpoint_status_data_stream();
c869f647
DG
2737 continue;
2738 }
2739
c869f647 2740 /* Continue to update the local streams and handle prio ones */
3bd1e081
MD
2741 continue;
2742 }
2743
02b3d176
DG
2744 /* Handle wakeup pipe. */
2745 if (pollfd[nb_fd + 1].revents & (POLLIN | POLLPRI)) {
2746 char dummy;
2747 ssize_t pipe_readlen;
2748
2749 pipe_readlen = lttng_pipe_read(ctx->consumer_wakeup_pipe, &dummy,
2750 sizeof(dummy));
2751 if (pipe_readlen < 0) {
2752 PERROR("Consumer data wakeup pipe");
2753 }
2754 /* We've been awakened to handle stream(s). */
2755 ctx->has_wakeup = 0;
2756 }
2757
3bd1e081
MD
2758 /* Take care of high priority channels first. */
2759 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2760 health_code_update();
2761
9617607b
DG
2762 if (local_stream[i] == NULL) {
2763 continue;
2764 }
fb3a43a9 2765 if (pollfd[i].revents & POLLPRI) {
d41f73b7
MD
2766 DBG("Urgent read on fd %d", pollfd[i].fd);
2767 high_prio = 1;
4078b776 2768 len = ctx->on_buffer_ready(local_stream[i], ctx);
d41f73b7 2769 /* it's ok to have an unavailable sub-buffer */
b64403e3 2770 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
ab1027f4
DG
2771 /* Clean the stream and free it. */
2772 consumer_del_stream(local_stream[i], data_ht);
9617607b 2773 local_stream[i] = NULL;
4078b776
MD
2774 } else if (len > 0) {
2775 local_stream[i]->data_read = 1;
d41f73b7 2776 }
3bd1e081
MD
2777 }
2778 }
2779
4078b776
MD
2780 /*
2781 * If we read high prio channel in this loop, try again
2782 * for more high prio data.
2783 */
2784 if (high_prio) {
3bd1e081
MD
2785 continue;
2786 }
2787
2788 /* Take care of low priority channels. */
4078b776 2789 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2790 health_code_update();
2791
9617607b
DG
2792 if (local_stream[i] == NULL) {
2793 continue;
2794 }
4078b776 2795 if ((pollfd[i].revents & POLLIN) ||
02b3d176
DG
2796 local_stream[i]->hangup_flush_done ||
2797 local_stream[i]->has_data) {
4078b776
MD
2798 DBG("Normal read on fd %d", pollfd[i].fd);
2799 len = ctx->on_buffer_ready(local_stream[i], ctx);
2800 /* it's ok to have an unavailable sub-buffer */
b64403e3 2801 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
ab1027f4
DG
2802 /* Clean the stream and free it. */
2803 consumer_del_stream(local_stream[i], data_ht);
9617607b 2804 local_stream[i] = NULL;
4078b776
MD
2805 } else if (len > 0) {
2806 local_stream[i]->data_read = 1;
2807 }
2808 }
2809 }
2810
2811 /* Handle hangup and errors */
2812 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2813 health_code_update();
2814
9617607b
DG
2815 if (local_stream[i] == NULL) {
2816 continue;
2817 }
4078b776
MD
2818 if (!local_stream[i]->hangup_flush_done
2819 && (pollfd[i].revents & (POLLHUP | POLLERR | POLLNVAL))
2820 && (consumer_data.type == LTTNG_CONSUMER32_UST
2821 || consumer_data.type == LTTNG_CONSUMER64_UST)) {
2822 DBG("fd %d is hup|err|nval. Attempting flush and read.",
9617607b 2823 pollfd[i].fd);
4078b776
MD
2824 lttng_ustconsumer_on_stream_hangup(local_stream[i]);
2825 /* Attempt read again, for the data we just flushed. */
2826 local_stream[i]->data_read = 1;
2827 }
2828 /*
2829 * If the poll flag is HUP/ERR/NVAL and we have
2830 * read no data in this pass, we can remove the
2831 * stream from its hash table.
2832 */
2833 if ((pollfd[i].revents & POLLHUP)) {
2834 DBG("Polling fd %d tells it has hung up.", pollfd[i].fd);
2835 if (!local_stream[i]->data_read) {
43c34bc3 2836 consumer_del_stream(local_stream[i], data_ht);
9617607b 2837 local_stream[i] = NULL;
4078b776
MD
2838 num_hup++;
2839 }
2840 } else if (pollfd[i].revents & POLLERR) {
2841 ERR("Error returned in polling fd %d.", pollfd[i].fd);
2842 if (!local_stream[i]->data_read) {
43c34bc3 2843 consumer_del_stream(local_stream[i], data_ht);
9617607b 2844 local_stream[i] = NULL;
4078b776
MD
2845 num_hup++;
2846 }
2847 } else if (pollfd[i].revents & POLLNVAL) {
2848 ERR("Polling fd %d tells fd is not open.", pollfd[i].fd);
2849 if (!local_stream[i]->data_read) {
43c34bc3 2850 consumer_del_stream(local_stream[i], data_ht);
9617607b 2851 local_stream[i] = NULL;
4078b776 2852 num_hup++;
3bd1e081
MD
2853 }
2854 }
9617607b
DG
2855 if (local_stream[i] != NULL) {
2856 local_stream[i]->data_read = 0;
2857 }
3bd1e081
MD
2858 }
2859 }
1fc79fb4
MD
2860 /* All is OK */
2861 err = 0;
3bd1e081
MD
2862end:
2863 DBG("polling thread exiting");
0e428499
DG
2864 free(pollfd);
2865 free(local_stream);
fb3a43a9
DG
2866
2867 /*
2868 * Close the write side of the pipe so epoll_wait() in
7d980def
DG
2869 * consumer_thread_metadata_poll can catch it. The thread is monitoring the
2870 * read side of the pipe. If we close them both, epoll_wait strangely does
2871 * not return and could create a endless wait period if the pipe is the
2872 * only tracked fd in the poll set. The thread will take care of closing
2873 * the read side.
fb3a43a9 2874 */
13886d2d 2875 (void) lttng_pipe_write_close(ctx->consumer_metadata_pipe);
fb3a43a9 2876
2d57de81 2877error_testpoint:
1fc79fb4
MD
2878 if (err) {
2879 health_error();
2880 ERR("Health error occurred in %s", __func__);
2881 }
2882 health_unregister(health_consumerd);
2883
e7b994a3 2884 rcu_unregister_thread();
3bd1e081
MD
2885 return NULL;
2886}
2887
d8ef542d
MD
2888/*
2889 * Close wake-up end of each stream belonging to the channel. This will
2890 * allow the poll() on the stream read-side to detect when the
2891 * write-side (application) finally closes them.
2892 */
2893static
2894void consumer_close_channel_streams(struct lttng_consumer_channel *channel)
2895{
2896 struct lttng_ht *ht;
2897 struct lttng_consumer_stream *stream;
2898 struct lttng_ht_iter iter;
2899
2900 ht = consumer_data.stream_per_chan_id_ht;
2901
2902 rcu_read_lock();
2903 cds_lfht_for_each_entry_duplicate(ht->ht,
2904 ht->hash_fct(&channel->key, lttng_ht_seed),
2905 ht->match_fct, &channel->key,
2906 &iter.iter, stream, node_channel_id.node) {
f2ad556d
MD
2907 /*
2908 * Protect against teardown with mutex.
2909 */
2910 pthread_mutex_lock(&stream->lock);
2911 if (cds_lfht_is_node_deleted(&stream->node.node)) {
2912 goto next;
2913 }
d8ef542d
MD
2914 switch (consumer_data.type) {
2915 case LTTNG_CONSUMER_KERNEL:
2916 break;
2917 case LTTNG_CONSUMER32_UST:
2918 case LTTNG_CONSUMER64_UST:
b4a650f3
DG
2919 if (stream->metadata_flag) {
2920 /* Safe and protected by the stream lock. */
2921 lttng_ustconsumer_close_metadata(stream->chan);
2922 } else {
2923 /*
2924 * Note: a mutex is taken internally within
2925 * liblttng-ust-ctl to protect timer wakeup_fd
2926 * use from concurrent close.
2927 */
2928 lttng_ustconsumer_close_stream_wakeup(stream);
2929 }
d8ef542d
MD
2930 break;
2931 default:
2932 ERR("Unknown consumer_data type");
2933 assert(0);
2934 }
f2ad556d
MD
2935 next:
2936 pthread_mutex_unlock(&stream->lock);
d8ef542d
MD
2937 }
2938 rcu_read_unlock();
2939}
2940
2941static void destroy_channel_ht(struct lttng_ht *ht)
2942{
2943 struct lttng_ht_iter iter;
2944 struct lttng_consumer_channel *channel;
2945 int ret;
2946
2947 if (ht == NULL) {
2948 return;
2949 }
2950
2951 rcu_read_lock();
2952 cds_lfht_for_each_entry(ht->ht, &iter.iter, channel, wait_fd_node.node) {
2953 ret = lttng_ht_del(ht, &iter);
2954 assert(ret != 0);
2955 }
2956 rcu_read_unlock();
2957
2958 lttng_ht_destroy(ht);
2959}
2960
2961/*
2962 * This thread polls the channel fds to detect when they are being
2963 * closed. It closes all related streams if the channel is detected as
2964 * closed. It is currently only used as a shim layer for UST because the
2965 * consumerd needs to keep the per-stream wakeup end of pipes open for
2966 * periodical flush.
2967 */
2968void *consumer_thread_channel_poll(void *data)
2969{
1fc79fb4 2970 int ret, i, pollfd, err = -1;
d8ef542d
MD
2971 uint32_t revents, nb_fd;
2972 struct lttng_consumer_channel *chan = NULL;
2973 struct lttng_ht_iter iter;
2974 struct lttng_ht_node_u64 *node;
2975 struct lttng_poll_event events;
2976 struct lttng_consumer_local_data *ctx = data;
2977 struct lttng_ht *channel_ht;
2978
2979 rcu_register_thread();
2980
1fc79fb4
MD
2981 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_CHANNEL);
2982
2d57de81
MD
2983 if (testpoint(consumerd_thread_channel)) {
2984 goto error_testpoint;
2985 }
2986
9ce5646a
MD
2987 health_code_update();
2988
d8ef542d
MD
2989 channel_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
2990 if (!channel_ht) {
2991 /* ENOMEM at this point. Better to bail out. */
2992 goto end_ht;
2993 }
2994
2995 DBG("Thread channel poll started");
2996
2997 /* Size is set to 1 for the consumer_channel pipe */
2998 ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC);
2999 if (ret < 0) {
3000 ERR("Poll set creation failed");
3001 goto end_poll;
3002 }
3003
3004 ret = lttng_poll_add(&events, ctx->consumer_channel_pipe[0], LPOLLIN);
3005 if (ret < 0) {
3006 goto end;
3007 }
3008
3009 /* Main loop */
3010 DBG("Channel main loop started");
3011
3012 while (1) {
d8ef542d 3013restart:
7fa2082e
MD
3014 health_code_update();
3015 DBG("Channel poll wait");
9ce5646a 3016 health_poll_entry();
d8ef542d 3017 ret = lttng_poll_wait(&events, -1);
7fa2082e
MD
3018 DBG("Channel poll return from wait with %d fd(s)",
3019 LTTNG_POLL_GETNB(&events));
9ce5646a 3020 health_poll_exit();
40063ead 3021 DBG("Channel event caught in thread");
d8ef542d
MD
3022 if (ret < 0) {
3023 if (errno == EINTR) {
40063ead 3024 ERR("Poll EINTR caught");
d8ef542d
MD
3025 goto restart;
3026 }
d9607cd7
MD
3027 if (LTTNG_POLL_GETNB(&events) == 0) {
3028 err = 0; /* All is OK */
3029 }
d8ef542d
MD
3030 goto end;
3031 }
3032
3033 nb_fd = ret;
3034
3035 /* From here, the event is a channel wait fd */
3036 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
3037 health_code_update();
3038
d8ef542d
MD
3039 revents = LTTNG_POLL_GETEV(&events, i);
3040 pollfd = LTTNG_POLL_GETFD(&events, i);
3041
d8ef542d 3042 if (pollfd == ctx->consumer_channel_pipe[0]) {
03e43155 3043 if (revents & LPOLLIN) {
d8ef542d 3044 enum consumer_channel_action action;
a0cbdd2e 3045 uint64_t key;
d8ef542d 3046
a0cbdd2e 3047 ret = read_channel_pipe(ctx, &chan, &key, &action);
d8ef542d 3048 if (ret <= 0) {
03e43155
MD
3049 if (ret < 0) {
3050 ERR("Error reading channel pipe");
3051 }
3052 lttng_poll_del(&events, ctx->consumer_channel_pipe[0]);
d8ef542d
MD
3053 continue;
3054 }
3055
3056 switch (action) {
3057 case CONSUMER_CHANNEL_ADD:
3058 DBG("Adding channel %d to poll set",
3059 chan->wait_fd);
3060
3061 lttng_ht_node_init_u64(&chan->wait_fd_node,
3062 chan->wait_fd);
c7260a81 3063 rcu_read_lock();
d8ef542d
MD
3064 lttng_ht_add_unique_u64(channel_ht,
3065 &chan->wait_fd_node);
c7260a81 3066 rcu_read_unlock();
d8ef542d
MD
3067 /* Add channel to the global poll events list */
3068 lttng_poll_add(&events, chan->wait_fd,
03e43155 3069 LPOLLERR | LPOLLHUP);
d8ef542d 3070 break;
a0cbdd2e
MD
3071 case CONSUMER_CHANNEL_DEL:
3072 {
b4a650f3
DG
3073 /*
3074 * This command should never be called if the channel
3075 * has streams monitored by either the data or metadata
3076 * thread. The consumer only notify this thread with a
3077 * channel del. command if it receives a destroy
3078 * channel command from the session daemon that send it
3079 * if a command prior to the GET_CHANNEL failed.
3080 */
3081
c7260a81 3082 rcu_read_lock();
a0cbdd2e
MD
3083 chan = consumer_find_channel(key);
3084 if (!chan) {
c7260a81 3085 rcu_read_unlock();
a0cbdd2e
MD
3086 ERR("UST consumer get channel key %" PRIu64 " not found for del channel", key);
3087 break;
3088 }
3089 lttng_poll_del(&events, chan->wait_fd);
f623cc0b 3090 iter.iter.node = &chan->wait_fd_node.node;
a0cbdd2e
MD
3091 ret = lttng_ht_del(channel_ht, &iter);
3092 assert(ret == 0);
a0cbdd2e 3093
f2a444f1
DG
3094 switch (consumer_data.type) {
3095 case LTTNG_CONSUMER_KERNEL:
3096 break;
3097 case LTTNG_CONSUMER32_UST:
3098 case LTTNG_CONSUMER64_UST:
212d67a2
DG
3099 health_code_update();
3100 /* Destroy streams that might have been left in the stream list. */
3101 clean_channel_stream_list(chan);
f2a444f1
DG
3102 break;
3103 default:
3104 ERR("Unknown consumer_data type");
3105 assert(0);
3106 }
3107
a0cbdd2e
MD
3108 /*
3109 * Release our own refcount. Force channel deletion even if
3110 * streams were not initialized.
3111 */
3112 if (!uatomic_sub_return(&chan->refcount, 1)) {
3113 consumer_del_channel(chan);
3114 }
c7260a81 3115 rcu_read_unlock();
a0cbdd2e
MD
3116 goto restart;
3117 }
d8ef542d
MD
3118 case CONSUMER_CHANNEL_QUIT:
3119 /*
3120 * Remove the pipe from the poll set and continue the loop
3121 * since their might be data to consume.
3122 */
3123 lttng_poll_del(&events, ctx->consumer_channel_pipe[0]);
3124 continue;
3125 default:
3126 ERR("Unknown action");
3127 break;
3128 }
03e43155
MD
3129 } else if (revents & (LPOLLERR | LPOLLHUP)) {
3130 DBG("Channel thread pipe hung up");
3131 /*
3132 * Remove the pipe from the poll set and continue the loop
3133 * since their might be data to consume.
3134 */
3135 lttng_poll_del(&events, ctx->consumer_channel_pipe[0]);
3136 continue;
3137 } else {
3138 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
3139 goto end;
d8ef542d
MD
3140 }
3141
3142 /* Handle other stream */
3143 continue;
3144 }
3145
3146 rcu_read_lock();
3147 {
3148 uint64_t tmp_id = (uint64_t) pollfd;
3149
3150 lttng_ht_lookup(channel_ht, &tmp_id, &iter);
3151 }
3152 node = lttng_ht_iter_get_node_u64(&iter);
3153 assert(node);
3154
3155 chan = caa_container_of(node, struct lttng_consumer_channel,
3156 wait_fd_node);
3157
3158 /* Check for error event */
3159 if (revents & (LPOLLERR | LPOLLHUP)) {
3160 DBG("Channel fd %d is hup|err.", pollfd);
3161
3162 lttng_poll_del(&events, chan->wait_fd);
3163 ret = lttng_ht_del(channel_ht, &iter);
3164 assert(ret == 0);
b4a650f3
DG
3165
3166 /*
3167 * This will close the wait fd for each stream associated to
3168 * this channel AND monitored by the data/metadata thread thus
3169 * will be clean by the right thread.
3170 */
d8ef542d 3171 consumer_close_channel_streams(chan);
f2ad556d
MD
3172
3173 /* Release our own refcount */
3174 if (!uatomic_sub_return(&chan->refcount, 1)
3175 && !uatomic_read(&chan->nb_init_stream_left)) {
3176 consumer_del_channel(chan);
3177 }
03e43155
MD
3178 } else {
3179 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
3180 rcu_read_unlock();
3181 goto end;
d8ef542d
MD
3182 }
3183
3184 /* Release RCU lock for the channel looked up */
3185 rcu_read_unlock();
3186 }
3187 }
3188
1fc79fb4
MD
3189 /* All is OK */
3190 err = 0;
d8ef542d
MD
3191end:
3192 lttng_poll_clean(&events);
3193end_poll:
3194 destroy_channel_ht(channel_ht);
3195end_ht:
2d57de81 3196error_testpoint:
d8ef542d 3197 DBG("Channel poll thread exiting");
1fc79fb4
MD
3198 if (err) {
3199 health_error();
3200 ERR("Health error occurred in %s", __func__);
3201 }
3202 health_unregister(health_consumerd);
d8ef542d
MD
3203 rcu_unregister_thread();
3204 return NULL;
3205}
3206
331744e3
JD
3207static int set_metadata_socket(struct lttng_consumer_local_data *ctx,
3208 struct pollfd *sockpoll, int client_socket)
3209{
3210 int ret;
3211
3212 assert(ctx);
3213 assert(sockpoll);
3214
84382d49
MD
3215 ret = lttng_consumer_poll_socket(sockpoll);
3216 if (ret) {
331744e3
JD
3217 goto error;
3218 }
3219 DBG("Metadata connection on client_socket");
3220
3221 /* Blocking call, waiting for transmission */
3222 ctx->consumer_metadata_socket = lttcomm_accept_unix_sock(client_socket);
3223 if (ctx->consumer_metadata_socket < 0) {
3224 WARN("On accept metadata");
3225 ret = -1;
3226 goto error;
3227 }
3228 ret = 0;
3229
3230error:
3231 return ret;
3232}
3233
3bd1e081
MD
3234/*
3235 * This thread listens on the consumerd socket and receives the file
3236 * descriptors from the session daemon.
3237 */
7d980def 3238void *consumer_thread_sessiond_poll(void *data)
3bd1e081 3239{
1fc79fb4 3240 int sock = -1, client_socket, ret, err = -1;
3bd1e081
MD
3241 /*
3242 * structure to poll for incoming data on communication socket avoids
3243 * making blocking sockets.
3244 */
3245 struct pollfd consumer_sockpoll[2];
3246 struct lttng_consumer_local_data *ctx = data;
3247
e7b994a3
DG
3248 rcu_register_thread();
3249
1fc79fb4
MD
3250 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_SESSIOND);
3251
2d57de81
MD
3252 if (testpoint(consumerd_thread_sessiond)) {
3253 goto error_testpoint;
3254 }
3255
9ce5646a
MD
3256 health_code_update();
3257
3bd1e081
MD
3258 DBG("Creating command socket %s", ctx->consumer_command_sock_path);
3259 unlink(ctx->consumer_command_sock_path);
3260 client_socket = lttcomm_create_unix_sock(ctx->consumer_command_sock_path);
3261 if (client_socket < 0) {
3262 ERR("Cannot create command socket");
3263 goto end;
3264 }
3265
3266 ret = lttcomm_listen_unix_sock(client_socket);
3267 if (ret < 0) {
3268 goto end;
3269 }
3270
32258573 3271 DBG("Sending ready command to lttng-sessiond");
f73fabfd 3272 ret = lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_COMMAND_SOCK_READY);
3bd1e081
MD
3273 /* return < 0 on error, but == 0 is not fatal */
3274 if (ret < 0) {
32258573 3275 ERR("Error sending ready command to lttng-sessiond");
3bd1e081
MD
3276 goto end;
3277 }
3278
3bd1e081
MD
3279 /* prepare the FDs to poll : to client socket and the should_quit pipe */
3280 consumer_sockpoll[0].fd = ctx->consumer_should_quit[0];
3281 consumer_sockpoll[0].events = POLLIN | POLLPRI;
3282 consumer_sockpoll[1].fd = client_socket;
3283 consumer_sockpoll[1].events = POLLIN | POLLPRI;
3284
84382d49
MD
3285 ret = lttng_consumer_poll_socket(consumer_sockpoll);
3286 if (ret) {
3287 if (ret > 0) {
3288 /* should exit */
3289 err = 0;
3290 }
3bd1e081
MD
3291 goto end;
3292 }
3293 DBG("Connection on client_socket");
3294
3295 /* Blocking call, waiting for transmission */
3296 sock = lttcomm_accept_unix_sock(client_socket);
534d2592 3297 if (sock < 0) {
3bd1e081
MD
3298 WARN("On accept");
3299 goto end;
3300 }
3bd1e081 3301
331744e3
JD
3302 /*
3303 * Setup metadata socket which is the second socket connection on the
3304 * command unix socket.
3305 */
3306 ret = set_metadata_socket(ctx, consumer_sockpoll, client_socket);
84382d49
MD
3307 if (ret) {
3308 if (ret > 0) {
3309 /* should exit */
3310 err = 0;
3311 }
331744e3
JD
3312 goto end;
3313 }
3314
d96f09c6
DG
3315 /* This socket is not useful anymore. */
3316 ret = close(client_socket);
3317 if (ret < 0) {
3318 PERROR("close client_socket");
3319 }
3320 client_socket = -1;
3321
3bd1e081
MD
3322 /* update the polling structure to poll on the established socket */
3323 consumer_sockpoll[1].fd = sock;
3324 consumer_sockpoll[1].events = POLLIN | POLLPRI;
3325
3326 while (1) {
9ce5646a
MD
3327 health_code_update();
3328
3329 health_poll_entry();
3330 ret = lttng_consumer_poll_socket(consumer_sockpoll);
3331 health_poll_exit();
84382d49
MD
3332 if (ret) {
3333 if (ret > 0) {
3334 /* should exit */
3335 err = 0;
3336 }
3bd1e081
MD
3337 goto end;
3338 }
3339 DBG("Incoming command on sock");
3340 ret = lttng_consumer_recv_cmd(ctx, sock, consumer_sockpoll);
4cbc1a04
DG
3341 if (ret <= 0) {
3342 /*
3343 * This could simply be a session daemon quitting. Don't output
3344 * ERR() here.
3345 */
3346 DBG("Communication interrupted on command socket");
41ba6035 3347 err = 0;
3bd1e081
MD
3348 goto end;
3349 }
10211f5c 3350 if (CMM_LOAD_SHARED(consumer_quit)) {
3bd1e081 3351 DBG("consumer_thread_receive_fds received quit from signal");
1fc79fb4 3352 err = 0; /* All is OK */
3bd1e081
MD
3353 goto end;
3354 }
ffe60014 3355 DBG("received command on sock");
3bd1e081 3356 }
1fc79fb4
MD
3357 /* All is OK */
3358 err = 0;
3359
3bd1e081 3360end:
ffe60014 3361 DBG("Consumer thread sessiond poll exiting");
3bd1e081 3362
d88aee68
DG
3363 /*
3364 * Close metadata streams since the producer is the session daemon which
3365 * just died.
3366 *
3367 * NOTE: for now, this only applies to the UST tracer.
3368 */
6d574024 3369 lttng_consumer_close_all_metadata();
d88aee68 3370
3bd1e081
MD
3371 /*
3372 * when all fds have hung up, the polling thread
3373 * can exit cleanly
3374 */
10211f5c 3375 CMM_STORE_SHARED(consumer_quit, 1);
3bd1e081 3376
04fdd819 3377 /*
c869f647 3378 * Notify the data poll thread to poll back again and test the
8994307f 3379 * consumer_quit state that we just set so to quit gracefully.
04fdd819 3380 */
acdb9057 3381 notify_thread_lttng_pipe(ctx->consumer_data_pipe);
c869f647 3382
a0cbdd2e 3383 notify_channel_pipe(ctx, NULL, -1, CONSUMER_CHANNEL_QUIT);
d8ef542d 3384
5c635c72
MD
3385 notify_health_quit_pipe(health_quit_pipe);
3386
d96f09c6
DG
3387 /* Cleaning up possibly open sockets. */
3388 if (sock >= 0) {
3389 ret = close(sock);
3390 if (ret < 0) {
3391 PERROR("close sock sessiond poll");
3392 }
3393 }
3394 if (client_socket >= 0) {
38476d24 3395 ret = close(client_socket);
d96f09c6
DG
3396 if (ret < 0) {
3397 PERROR("close client_socket sessiond poll");
3398 }
3399 }
3400
2d57de81 3401error_testpoint:
1fc79fb4
MD
3402 if (err) {
3403 health_error();
3404 ERR("Health error occurred in %s", __func__);
3405 }
3406 health_unregister(health_consumerd);
3407
e7b994a3 3408 rcu_unregister_thread();
3bd1e081
MD
3409 return NULL;
3410}
d41f73b7 3411
4078b776 3412ssize_t lttng_consumer_read_subbuffer(struct lttng_consumer_stream *stream,
d41f73b7
MD
3413 struct lttng_consumer_local_data *ctx)
3414{
74251bb8 3415 ssize_t ret;
ab1f27f2 3416 int rotation_ret;
74251bb8 3417
e5148e25 3418 pthread_mutex_lock(&stream->chan->lock);
74251bb8 3419 pthread_mutex_lock(&stream->lock);
94d49140
JD
3420 if (stream->metadata_flag) {
3421 pthread_mutex_lock(&stream->metadata_rdv_lock);
3422 }
74251bb8 3423
ab1f27f2
JG
3424 /*
3425 * If the stream was flagged to be ready for rotation before we extract
3426 * the next packet, rotate it now.
3427 */
3428 if (stream->rotate_ready) {
3429 DBG("Rotate stream before consuming data");
3430 ret = lttng_consumer_rotate_stream(ctx, stream);
3431 if (ret < 0) {
3432 ERR("Stream rotation error before consuming data");
3433 goto end;
3434 }
3435 }
3436
d41f73b7
MD
3437 switch (consumer_data.type) {
3438 case LTTNG_CONSUMER_KERNEL:
e5148e25 3439 ret = lttng_kconsumer_read_subbuffer(stream, ctx);
74251bb8 3440 break;
7753dea8
MD
3441 case LTTNG_CONSUMER32_UST:
3442 case LTTNG_CONSUMER64_UST:
e5148e25 3443 ret = lttng_ustconsumer_read_subbuffer(stream, ctx);
74251bb8 3444 break;
d41f73b7
MD
3445 default:
3446 ERR("Unknown consumer_data type");
3447 assert(0);
74251bb8
DG
3448 ret = -ENOSYS;
3449 break;
d41f73b7 3450 }
74251bb8 3451
ab1f27f2
JG
3452 if (ret < 0) {
3453 goto end;
3454 }
3455
3456 /*
3457 * After extracting the packet, we check if the stream is now ready to
3458 * be rotated and perform the action immediately.
3459 *
3460 * Don't overwrite `ret` as callers expect the number of bytes
3461 * consumed to be returned on success.
3462 */
3463 rotation_ret = lttng_consumer_stream_is_rotate_ready(stream);
3464 if (rotation_ret == 1) {
3465 rotation_ret = lttng_consumer_rotate_stream(ctx, stream);
3466 if (rotation_ret < 0) {
3467 ret = rotation_ret;
3468 ERR("Stream rotation error after consuming data");
3469 goto end;
3470 }
3471 } else if (rotation_ret < 0) {
3472 ret = rotation_ret;
3473 ERR("Failed to check if stream was ready to rotate after consuming data");
3474 goto end;
3475 }
3476
3477end:
94d49140
JD
3478 if (stream->metadata_flag) {
3479 pthread_cond_broadcast(&stream->metadata_rdv);
3480 pthread_mutex_unlock(&stream->metadata_rdv_lock);
3481 }
74251bb8 3482 pthread_mutex_unlock(&stream->lock);
e5148e25 3483 pthread_mutex_unlock(&stream->chan->lock);
74251bb8 3484 return ret;
d41f73b7
MD
3485}
3486
3487int lttng_consumer_on_recv_stream(struct lttng_consumer_stream *stream)
3488{
3489 switch (consumer_data.type) {
3490 case LTTNG_CONSUMER_KERNEL:
3491 return lttng_kconsumer_on_recv_stream(stream);
7753dea8
MD
3492 case LTTNG_CONSUMER32_UST:
3493 case LTTNG_CONSUMER64_UST:
d41f73b7
MD
3494 return lttng_ustconsumer_on_recv_stream(stream);
3495 default:
3496 ERR("Unknown consumer_data type");
3497 assert(0);
3498 return -ENOSYS;
3499 }
3500}
e4421fec
DG
3501
3502/*
3503 * Allocate and set consumer data hash tables.
3504 */
282dadbc 3505int lttng_consumer_init(void)
e4421fec 3506{
d88aee68 3507 consumer_data.channel_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3508 if (!consumer_data.channel_ht) {
3509 goto error;
3510 }
3511
0fc67d9b
JG
3512 consumer_data.channels_by_session_id_ht =
3513 lttng_ht_new(0, LTTNG_HT_TYPE_U64);
3514 if (!consumer_data.channels_by_session_id_ht) {
3515 goto error;
3516 }
3517
d88aee68 3518 consumer_data.relayd_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3519 if (!consumer_data.relayd_ht) {
3520 goto error;
3521 }
3522
d88aee68 3523 consumer_data.stream_list_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3524 if (!consumer_data.stream_list_ht) {
3525 goto error;
3526 }
3527
d8ef542d 3528 consumer_data.stream_per_chan_id_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3529 if (!consumer_data.stream_per_chan_id_ht) {
3530 goto error;
3531 }
3532
3533 data_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
3534 if (!data_ht) {
3535 goto error;
3536 }
3537
3538 metadata_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
3539 if (!metadata_ht) {
3540 goto error;
3541 }
3542
a335e585
JG
3543 consumer_data.chunk_registry = lttng_trace_chunk_registry_create();
3544 if (!consumer_data.chunk_registry) {
3545 goto error;
3546 }
3547
282dadbc
MD
3548 return 0;
3549
3550error:
3551 return -1;
e4421fec 3552}
7735ef9e
DG
3553
3554/*
3555 * Process the ADD_RELAYD command receive by a consumer.
3556 *
3557 * This will create a relayd socket pair and add it to the relayd hash table.
3558 * The caller MUST acquire a RCU read side lock before calling it.
3559 */
2527bf85 3560 void consumer_add_relayd_socket(uint64_t net_seq_idx, int sock_type,
7735ef9e 3561 struct lttng_consumer_local_data *ctx, int sock,
6151a90f 3562 struct pollfd *consumer_sockpoll,
d3e2ba59
JD
3563 struct lttcomm_relayd_sock *relayd_sock, uint64_t sessiond_id,
3564 uint64_t relayd_session_id)
7735ef9e 3565{
cd2b09ed 3566 int fd = -1, ret = -1, relayd_created = 0;
0c759fc9 3567 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
d4298c99 3568 struct consumer_relayd_sock_pair *relayd = NULL;
7735ef9e 3569
6151a90f
JD
3570 assert(ctx);
3571 assert(relayd_sock);
3572
da009f2c 3573 DBG("Consumer adding relayd socket (idx: %" PRIu64 ")", net_seq_idx);
7735ef9e
DG
3574
3575 /* Get relayd reference if exists. */
3576 relayd = consumer_find_relayd(net_seq_idx);
3577 if (relayd == NULL) {
da009f2c 3578 assert(sock_type == LTTNG_STREAM_CONTROL);
7735ef9e
DG
3579 /* Not found. Allocate one. */
3580 relayd = consumer_allocate_relayd_sock_pair(net_seq_idx);
3581 if (relayd == NULL) {
618a6a28
MD
3582 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
3583 goto error;
0d08d75e 3584 } else {
30319bcb 3585 relayd->sessiond_session_id = sessiond_id;
0d08d75e 3586 relayd_created = 1;
7735ef9e 3587 }
0d08d75e
DG
3588
3589 /*
3590 * This code path MUST continue to the consumer send status message to
3591 * we can notify the session daemon and continue our work without
3592 * killing everything.
3593 */
da009f2c
MD
3594 } else {
3595 /*
3596 * relayd key should never be found for control socket.
3597 */
3598 assert(sock_type != LTTNG_STREAM_CONTROL);
0d08d75e
DG
3599 }
3600
3601 /* First send a status message before receiving the fds. */
0c759fc9 3602 ret = consumer_send_status_msg(sock, LTTCOMM_CONSUMERD_SUCCESS);
618a6a28 3603 if (ret < 0) {
0d08d75e 3604 /* Somehow, the session daemon is not responding anymore. */
618a6a28
MD
3605 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_FATAL);
3606 goto error_nosignal;
7735ef9e
DG
3607 }
3608
3609 /* Poll on consumer socket. */
84382d49
MD
3610 ret = lttng_consumer_poll_socket(consumer_sockpoll);
3611 if (ret) {
3612 /* Needing to exit in the middle of a command: error. */
0d08d75e 3613 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_POLL_ERROR);
618a6a28 3614 goto error_nosignal;
7735ef9e
DG
3615 }
3616
3617 /* Get relayd socket from session daemon */
3618 ret = lttcomm_recv_fds_unix_sock(sock, &fd, 1);
3619 if (ret != sizeof(fd)) {
4028eeb9 3620 fd = -1; /* Just in case it gets set with an invalid value. */
0d08d75e
DG
3621
3622 /*
3623 * Failing to receive FDs might indicate a major problem such as
3624 * reaching a fd limit during the receive where the kernel returns a
3625 * MSG_CTRUNC and fails to cleanup the fd in the queue. Any case, we
3626 * don't take any chances and stop everything.
3627 *
3628 * XXX: Feature request #558 will fix that and avoid this possible
3629 * issue when reaching the fd limit.
3630 */
3631 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_FD);
618a6a28 3632 ret_code = LTTCOMM_CONSUMERD_ERROR_RECV_FD;
f50f23d9
DG
3633 goto error;
3634 }
3635
7735ef9e
DG
3636 /* Copy socket information and received FD */
3637 switch (sock_type) {
3638 case LTTNG_STREAM_CONTROL:
3639 /* Copy received lttcomm socket */
6151a90f
JD
3640 lttcomm_copy_sock(&relayd->control_sock.sock, &relayd_sock->sock);
3641 ret = lttcomm_create_sock(&relayd->control_sock.sock);
4028eeb9 3642 /* Handle create_sock error. */
f66c074c 3643 if (ret < 0) {
618a6a28 3644 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
4028eeb9 3645 goto error;
f66c074c 3646 }
da009f2c
MD
3647 /*
3648 * Close the socket created internally by
3649 * lttcomm_create_sock, so we can replace it by the one
3650 * received from sessiond.
3651 */
3652 if (close(relayd->control_sock.sock.fd)) {
3653 PERROR("close");
3654 }
7735ef9e
DG
3655
3656 /* Assign new file descriptor */
6151a90f
JD
3657 relayd->control_sock.sock.fd = fd;
3658 /* Assign version values. */
3659 relayd->control_sock.major = relayd_sock->major;
3660 relayd->control_sock.minor = relayd_sock->minor;
c5b6f4f0 3661
d3e2ba59 3662 relayd->relayd_session_id = relayd_session_id;
c5b6f4f0 3663
7735ef9e
DG
3664 break;
3665 case LTTNG_STREAM_DATA:
3666 /* Copy received lttcomm socket */
6151a90f
JD
3667 lttcomm_copy_sock(&relayd->data_sock.sock, &relayd_sock->sock);
3668 ret = lttcomm_create_sock(&relayd->data_sock.sock);
4028eeb9 3669 /* Handle create_sock error. */
f66c074c 3670 if (ret < 0) {
618a6a28 3671 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
4028eeb9 3672 goto error;
f66c074c 3673 }
da009f2c
MD
3674 /*
3675 * Close the socket created internally by
3676 * lttcomm_create_sock, so we can replace it by the one
3677 * received from sessiond.
3678 */
3679 if (close(relayd->data_sock.sock.fd)) {
3680 PERROR("close");
3681 }
7735ef9e
DG
3682
3683 /* Assign new file descriptor */
6151a90f
JD
3684 relayd->data_sock.sock.fd = fd;
3685 /* Assign version values. */
3686 relayd->data_sock.major = relayd_sock->major;
3687 relayd->data_sock.minor = relayd_sock->minor;
7735ef9e
DG
3688 break;
3689 default:
3690 ERR("Unknown relayd socket type (%d)", sock_type);
618a6a28 3691 ret_code = LTTCOMM_CONSUMERD_FATAL;
7735ef9e
DG
3692 goto error;
3693 }
3694
d88aee68 3695 DBG("Consumer %s socket created successfully with net idx %" PRIu64 " (fd: %d)",
7735ef9e
DG
3696 sock_type == LTTNG_STREAM_CONTROL ? "control" : "data",
3697 relayd->net_seq_idx, fd);
e303e76b
FD
3698 /*
3699 * We gave the ownership of the fd to the relayd structure. Set the
3700 * fd to -1 so we don't call close() on it in the error path below.
3701 */
3702 fd = -1;
7735ef9e 3703
618a6a28
MD
3704 /* We successfully added the socket. Send status back. */
3705 ret = consumer_send_status_msg(sock, ret_code);
3706 if (ret < 0) {
3707 /* Somehow, the session daemon is not responding anymore. */
3708 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_FATAL);
3709 goto error_nosignal;
3710 }
3711
7735ef9e
DG
3712 /*
3713 * Add relayd socket pair to consumer data hashtable. If object already
3714 * exists or on error, the function gracefully returns.
3715 */
11413bb9 3716 relayd->ctx = ctx;
d09e1200 3717 add_relayd(relayd);
7735ef9e
DG
3718
3719 /* All good! */
2527bf85 3720 return;
7735ef9e
DG
3721
3722error:
618a6a28
MD
3723 if (consumer_send_status_msg(sock, ret_code) < 0) {
3724 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_FATAL);
3725 }
3726
3727error_nosignal:
4028eeb9
DG
3728 /* Close received socket if valid. */
3729 if (fd >= 0) {
3730 if (close(fd)) {
3731 PERROR("close received socket");
3732 }
3733 }
cd2b09ed
DG
3734
3735 if (relayd_created) {
cd2b09ed
DG
3736 free(relayd);
3737 }
7735ef9e 3738}
ca22feea 3739
f7079f67
DG
3740/*
3741 * Search for a relayd associated to the session id and return the reference.
3742 *
3743 * A rcu read side lock MUST be acquire before calling this function and locked
3744 * until the relayd object is no longer necessary.
3745 */
3746static struct consumer_relayd_sock_pair *find_relayd_by_session_id(uint64_t id)
3747{
3748 struct lttng_ht_iter iter;
f7079f67 3749 struct consumer_relayd_sock_pair *relayd = NULL;
f7079f67
DG
3750
3751 /* Iterate over all relayd since they are indexed by net_seq_idx. */
3752 cds_lfht_for_each_entry(consumer_data.relayd_ht->ht, &iter.iter, relayd,
3753 node.node) {
18261bd1
DG
3754 /*
3755 * Check by sessiond id which is unique here where the relayd session
3756 * id might not be when having multiple relayd.
3757 */
3758 if (relayd->sessiond_session_id == id) {
f7079f67 3759 /* Found the relayd. There can be only one per id. */
18261bd1 3760 goto found;
f7079f67
DG
3761 }
3762 }
3763
18261bd1
DG
3764 return NULL;
3765
3766found:
f7079f67
DG
3767 return relayd;
3768}
3769
ca22feea
DG
3770/*
3771 * Check if for a given session id there is still data needed to be extract
3772 * from the buffers.
3773 *
6d805429 3774 * Return 1 if data is pending or else 0 meaning ready to be read.
ca22feea 3775 */
6d805429 3776int consumer_data_pending(uint64_t id)
ca22feea
DG
3777{
3778 int ret;
3779 struct lttng_ht_iter iter;
3780 struct lttng_ht *ht;
3781 struct lttng_consumer_stream *stream;
f7079f67 3782 struct consumer_relayd_sock_pair *relayd = NULL;
6d805429 3783 int (*data_pending)(struct lttng_consumer_stream *);
ca22feea 3784
6d805429 3785 DBG("Consumer data pending command on session id %" PRIu64, id);
ca22feea 3786
6f6eda74 3787 rcu_read_lock();
ca22feea
DG
3788 pthread_mutex_lock(&consumer_data.lock);
3789
3790 switch (consumer_data.type) {
3791 case LTTNG_CONSUMER_KERNEL:
6d805429 3792 data_pending = lttng_kconsumer_data_pending;
ca22feea
DG
3793 break;
3794 case LTTNG_CONSUMER32_UST:
3795 case LTTNG_CONSUMER64_UST:
6d805429 3796 data_pending = lttng_ustconsumer_data_pending;
ca22feea
DG
3797 break;
3798 default:
3799 ERR("Unknown consumer data type");
3800 assert(0);
3801 }
3802
3803 /* Ease our life a bit */
3804 ht = consumer_data.stream_list_ht;
3805
c8f59ee5 3806 cds_lfht_for_each_entry_duplicate(ht->ht,
d88aee68
DG
3807 ht->hash_fct(&id, lttng_ht_seed),
3808 ht->match_fct, &id,
ca22feea 3809 &iter.iter, stream, node_session_id.node) {
7c87fb16 3810 pthread_mutex_lock(&stream->lock);
ca22feea 3811
4e9a4686
DG
3812 /*
3813 * A removed node from the hash table indicates that the stream has
3814 * been deleted thus having a guarantee that the buffers are closed
3815 * on the consumer side. However, data can still be transmitted
3816 * over the network so don't skip the relayd check.
3817 */
3818 ret = cds_lfht_is_node_deleted(&stream->node.node);
3819 if (!ret) {
3820 /* Check the stream if there is data in the buffers. */
6d805429
DG
3821 ret = data_pending(stream);
3822 if (ret == 1) {
4e9a4686 3823 pthread_mutex_unlock(&stream->lock);
f7079f67 3824 goto data_pending;
4e9a4686
DG
3825 }
3826 }
3827
78f18a75
JR
3828 pthread_mutex_unlock(&stream->lock);
3829 }
3830
3831 relayd = find_relayd_by_session_id(id);
3832 if (relayd) {
3833 unsigned int is_data_inflight = 0;
3834
3835 /* Send init command for data pending. */
3836 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
3837 ret = relayd_begin_data_pending(&relayd->control_sock,
3838 relayd->relayd_session_id);
3839 if (ret < 0) {
3840 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
3841 /* Communication error thus the relayd so no data pending. */
3842 goto data_not_pending;
3843 }
3844
3845 cds_lfht_for_each_entry_duplicate(ht->ht,
3846 ht->hash_fct(&id, lttng_ht_seed),
3847 ht->match_fct, &id,
3848 &iter.iter, stream, node_session_id.node) {
c8f59ee5 3849 if (stream->metadata_flag) {
ad7051c0
DG
3850 ret = relayd_quiescent_control(&relayd->control_sock,
3851 stream->relayd_stream_id);
c8f59ee5 3852 } else {
6d805429 3853 ret = relayd_data_pending(&relayd->control_sock,
39df6d9f
DG
3854 stream->relayd_stream_id,
3855 stream->next_net_seq_num - 1);
c8f59ee5 3856 }
78f18a75
JR
3857
3858 if (ret == 1) {
3859 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
3860 goto data_pending;
3861 } else if (ret < 0) {
11413bb9
JR
3862 ERR("Relayd data pending failed. Cleaning up relayd %" PRIu64".", relayd->net_seq_idx);
3863 lttng_consumer_cleanup_relayd(relayd);
3864 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
11413bb9
JR
3865 goto data_not_pending;
3866 }
c8f59ee5 3867 }
f7079f67 3868
78f18a75 3869 /* Send end command for data pending. */
f7079f67
DG
3870 ret = relayd_end_data_pending(&relayd->control_sock,
3871 relayd->relayd_session_id, &is_data_inflight);
3872 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
bdd88757 3873 if (ret < 0) {
11413bb9
JR
3874 ERR("Relayd end data pending failed. Cleaning up relayd %" PRIu64".", relayd->net_seq_idx);
3875 lttng_consumer_cleanup_relayd(relayd);
f7079f67
DG
3876 goto data_not_pending;
3877 }
bdd88757
DG
3878 if (is_data_inflight) {
3879 goto data_pending;
3880 }
f7079f67
DG
3881 }
3882
ca22feea 3883 /*
f7079f67
DG
3884 * Finding _no_ node in the hash table and no inflight data means that the
3885 * stream(s) have been removed thus data is guaranteed to be available for
3886 * analysis from the trace files.
ca22feea
DG
3887 */
3888
f7079f67 3889data_not_pending:
ca22feea
DG
3890 /* Data is available to be read by a viewer. */
3891 pthread_mutex_unlock(&consumer_data.lock);
c8f59ee5 3892 rcu_read_unlock();
6d805429 3893 return 0;
ca22feea 3894
f7079f67 3895data_pending:
ca22feea
DG
3896 /* Data is still being extracted from buffers. */
3897 pthread_mutex_unlock(&consumer_data.lock);
c8f59ee5 3898 rcu_read_unlock();
6d805429 3899 return 1;
ca22feea 3900}
f50f23d9
DG
3901
3902/*
3903 * Send a ret code status message to the sessiond daemon.
3904 *
3905 * Return the sendmsg() return value.
3906 */
3907int consumer_send_status_msg(int sock, int ret_code)
3908{
3909 struct lttcomm_consumer_status_msg msg;
3910
53efb85a 3911 memset(&msg, 0, sizeof(msg));
f50f23d9
DG
3912 msg.ret_code = ret_code;
3913
3914 return lttcomm_send_unix_sock(sock, &msg, sizeof(msg));
3915}
ffe60014
DG
3916
3917/*
3918 * Send a channel status message to the sessiond daemon.
3919 *
3920 * Return the sendmsg() return value.
3921 */
3922int consumer_send_status_channel(int sock,
3923 struct lttng_consumer_channel *channel)
3924{
3925 struct lttcomm_consumer_status_channel msg;
3926
3927 assert(sock >= 0);
3928
53efb85a 3929 memset(&msg, 0, sizeof(msg));
ffe60014 3930 if (!channel) {
0c759fc9 3931 msg.ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL;
ffe60014 3932 } else {
0c759fc9 3933 msg.ret_code = LTTCOMM_CONSUMERD_SUCCESS;
ffe60014
DG
3934 msg.key = channel->key;
3935 msg.stream_count = channel->streams.count;
3936 }
3937
3938 return lttcomm_send_unix_sock(sock, &msg, sizeof(msg));
3939}
5c786ded 3940
d07ceecd
MD
3941unsigned long consumer_get_consume_start_pos(unsigned long consumed_pos,
3942 unsigned long produced_pos, uint64_t nb_packets_per_stream,
3943 uint64_t max_sb_size)
5c786ded 3944{
d07ceecd 3945 unsigned long start_pos;
5c786ded 3946
d07ceecd
MD
3947 if (!nb_packets_per_stream) {
3948 return consumed_pos; /* Grab everything */
3949 }
3950 start_pos = produced_pos - offset_align_floor(produced_pos, max_sb_size);
3951 start_pos -= max_sb_size * nb_packets_per_stream;
3952 if ((long) (start_pos - consumed_pos) < 0) {
3953 return consumed_pos; /* Grab everything */
3954 }
3955 return start_pos;
5c786ded 3956}
a1ae2ea5 3957
b99a8d42
JD
3958static
3959int consumer_flush_buffer(struct lttng_consumer_stream *stream, int producer_active)
3960{
3961 int ret = 0;
3962
3963 switch (consumer_data.type) {
3964 case LTTNG_CONSUMER_KERNEL:
68272f36
MD
3965 if (producer_active) {
3966 ret = kernctl_buffer_flush(stream->wait_fd);
3967 if (ret < 0) {
3968 ERR("Failed to flush kernel stream");
3969 goto end;
3970 }
3971 } else {
3972 ret = kernctl_buffer_flush_empty(stream->wait_fd);
3973 if (ret < 0) {
3974 ERR("Failed to flush kernel stream");
3975 goto end;
3976 }
b99a8d42
JD
3977 }
3978 break;
3979 case LTTNG_CONSUMER32_UST:
3980 case LTTNG_CONSUMER64_UST:
68272f36 3981 lttng_ustconsumer_flush_buffer(stream, producer_active);
b99a8d42
JD
3982 break;
3983 default:
3984 ERR("Unknown consumer_data type");
3985 abort();
3986 }
3987
3988end:
3989 return ret;
3990}
3991
3992/*
3993 * Sample the rotate position for all the streams of a channel. If a stream
3994 * is already at the rotate position (produced == consumed), we flag it as
3995 * ready for rotation. The rotation of ready streams occurs after we have
3996 * replied to the session daemon that we have finished sampling the positions.
e96d66b4 3997 * Must be called with RCU read-side lock held to ensure existence of channel.
b99a8d42
JD
3998 *
3999 * Returns 0 on success, < 0 on error
4000 */
e96d66b4 4001int lttng_consumer_rotate_channel(struct lttng_consumer_channel *channel,
e5148e25 4002 uint64_t key, uint64_t relayd_id, uint32_t metadata,
b99a8d42
JD
4003 struct lttng_consumer_local_data *ctx)
4004{
4005 int ret;
b99a8d42
JD
4006 struct lttng_consumer_stream *stream;
4007 struct lttng_ht_iter iter;
4008 struct lttng_ht *ht = consumer_data.stream_per_chan_id_ht;
84a93c08
JG
4009 struct lttng_dynamic_array stream_rotation_positions;
4010 uint64_t next_chunk_id, stream_count = 0;
4011 enum lttng_trace_chunk_status chunk_status;
4012 const bool is_local_trace = relayd_id == -1ULL;
4013 struct consumer_relayd_sock_pair *relayd = NULL;
4014 bool rotating_to_new_chunk = true;
b99a8d42
JD
4015
4016 DBG("Consumer sample rotate position for channel %" PRIu64, key);
4017
84a93c08
JG
4018 lttng_dynamic_array_init(&stream_rotation_positions,
4019 sizeof(struct relayd_stream_rotation_position), NULL);
4020
b99a8d42
JD
4021 rcu_read_lock();
4022
b99a8d42 4023 pthread_mutex_lock(&channel->lock);
84a93c08
JG
4024 assert(channel->trace_chunk);
4025 chunk_status = lttng_trace_chunk_get_id(channel->trace_chunk,
4026 &next_chunk_id);
4027 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
4028 ret = -1;
4029 goto end_unlock_channel;
4030 }
b99a8d42
JD
4031
4032 cds_lfht_for_each_entry_duplicate(ht->ht,
4033 ht->hash_fct(&channel->key, lttng_ht_seed),
4034 ht->match_fct, &channel->key, &iter.iter,
4035 stream, node_channel_id.node) {
c8eabe73 4036 unsigned long produced_pos = 0, consumed_pos = 0;
b99a8d42
JD
4037
4038 health_code_update();
4039
4040 /*
4041 * Lock stream because we are about to change its state.
4042 */
4043 pthread_mutex_lock(&stream->lock);
4044
84a93c08
JG
4045 if (stream->trace_chunk == stream->chan->trace_chunk) {
4046 rotating_to_new_chunk = false;
4047 }
4048
c8eabe73 4049 /*
1eeffca8
MD
4050 * Do not flush an empty packet when rotating from a NULL trace
4051 * chunk. The stream has no means to output data, and the prior
4052 * rotation which rotated to NULL performed that side-effect already.
c8eabe73 4053 */
1eeffca8
MD
4054 if (stream->trace_chunk) {
4055 /*
4056 * For metadata stream, do an active flush, which does not
4057 * produce empty packets. For data streams, empty-flush;
4058 * ensures we have at least one packet in each stream per trace
4059 * chunk, even if no data was produced.
4060 */
4061 ret = consumer_flush_buffer(stream, stream->metadata_flag ? 1 : 0);
4062 if (ret < 0) {
4063 ERR("Failed to flush stream %" PRIu64 " during channel rotation",
4064 stream->key);
4065 goto end_unlock_stream;
4066 }
b99a8d42
JD
4067 }
4068
c8eabe73
MD
4069 ret = lttng_consumer_take_snapshot(stream);
4070 if (ret < 0 && ret != -ENODATA && ret != -EAGAIN) {
4071 ERR("Failed to sample snapshot position during channel rotation");
b99a8d42
JD
4072 goto end_unlock_stream;
4073 }
c8eabe73
MD
4074 if (!ret) {
4075 ret = lttng_consumer_get_produced_snapshot(stream,
4076 &produced_pos);
4077 if (ret < 0) {
4078 ERR("Failed to sample produced position during channel rotation");
4079 goto end_unlock_stream;
4080 }
b99a8d42 4081
c8eabe73
MD
4082 ret = lttng_consumer_get_consumed_snapshot(stream,
4083 &consumed_pos);
4084 if (ret < 0) {
4085 ERR("Failed to sample consumed position during channel rotation");
4086 goto end_unlock_stream;
4087 }
4088 }
4089 /*
4090 * Align produced position on the start-of-packet boundary of the first
4091 * packet going into the next trace chunk.
4092 */
4093 produced_pos = ALIGN_FLOOR(produced_pos, stream->max_sb_size);
4094 if (consumed_pos == produced_pos) {
b99a8d42
JD
4095 stream->rotate_ready = true;
4096 }
63b2fe48 4097 /*
c8eabe73
MD
4098 * The rotation position is based on the packet_seq_num of the
4099 * packet following the last packet that was consumed for this
4100 * stream, incremented by the offset between produced and
4101 * consumed positions. This rotation position is a lower bound
4102 * (inclusive) at which the next trace chunk starts. Since it
4103 * is a lower bound, it is OK if the packet_seq_num does not
4104 * correspond exactly to the same packet identified by the
4105 * consumed_pos, which can happen in overwrite mode.
63b2fe48 4106 */
c8eabe73
MD
4107 if (stream->sequence_number_unavailable) {
4108 /*
4109 * Rotation should never be performed on a session which
4110 * interacts with a pre-2.8 lttng-modules, which does
4111 * not implement packet sequence number.
4112 */
4113 ERR("Failure to rotate stream %" PRIu64 ": sequence number unavailable",
b99a8d42 4114 stream->key);
c8eabe73 4115 ret = -1;
b99a8d42
JD
4116 goto end_unlock_stream;
4117 }
c8eabe73
MD
4118 stream->rotate_position = stream->last_sequence_number + 1 +
4119 ((produced_pos - consumed_pos) / stream->max_sb_size);
b99a8d42 4120
84a93c08 4121 if (!is_local_trace) {
63b2fe48
JG
4122 /*
4123 * The relay daemon control protocol expects a rotation
4124 * position as "the sequence number of the first packet
c8eabe73 4125 * _after_ the current trace chunk".
63b2fe48 4126 */
84a93c08
JG
4127 const struct relayd_stream_rotation_position position = {
4128 .stream_id = stream->relayd_stream_id,
c8eabe73 4129 .rotate_at_seq_num = stream->rotate_position,
84a93c08
JG
4130 };
4131
4132 ret = lttng_dynamic_array_add_element(
4133 &stream_rotation_positions,
4134 &position);
4135 if (ret) {
4136 ERR("Failed to allocate stream rotation position");
4137 goto end_unlock_stream;
4138 }
4139 stream_count++;
4140 }
b99a8d42
JD
4141 pthread_mutex_unlock(&stream->lock);
4142 }
84a93c08 4143 stream = NULL;
b99a8d42
JD
4144 pthread_mutex_unlock(&channel->lock);
4145
84a93c08
JG
4146 if (is_local_trace) {
4147 ret = 0;
4148 goto end;
4149 }
4150
4151 relayd = consumer_find_relayd(relayd_id);
4152 if (!relayd) {
4153 ERR("Failed to find relayd %" PRIu64, relayd_id);
4154 ret = -1;
4155 goto end;
4156 }
4157
4158 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
4159 ret = relayd_rotate_streams(&relayd->control_sock, stream_count,
4160 rotating_to_new_chunk ? &next_chunk_id : NULL,
4161 (const struct relayd_stream_rotation_position *)
4162 stream_rotation_positions.buffer.data);
4163 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
4164 if (ret < 0) {
4165 ERR("Relayd rotate stream failed. Cleaning up relayd %" PRIu64,
4166 relayd->net_seq_idx);
4167 lttng_consumer_cleanup_relayd(relayd);
4168 goto end;
4169 }
4170
b99a8d42
JD
4171 ret = 0;
4172 goto end;
4173
4174end_unlock_stream:
4175 pthread_mutex_unlock(&stream->lock);
84a93c08 4176end_unlock_channel:
b99a8d42
JD
4177 pthread_mutex_unlock(&channel->lock);
4178end:
4179 rcu_read_unlock();
84a93c08 4180 lttng_dynamic_array_reset(&stream_rotation_positions);
b99a8d42
JD
4181 return ret;
4182}
4183
02d02e31
JD
4184/*
4185 * Check if a stream is ready to be rotated after extracting it.
4186 *
4187 * Return 1 if it is ready for rotation, 0 if it is not, a negative value on
4188 * error. Stream lock must be held.
4189 */
4190int lttng_consumer_stream_is_rotate_ready(struct lttng_consumer_stream *stream)
4191{
02d02e31 4192 if (stream->rotate_ready) {
c8eabe73 4193 return 1;
02d02e31
JD
4194 }
4195
4196 /*
c8eabe73
MD
4197 * If packet seq num is unavailable, it means we are interacting
4198 * with a pre-2.8 lttng-modules which does not implement the
4199 * sequence number. Rotation should never be used by sessiond in this
4200 * scenario.
02d02e31 4201 */
c8eabe73
MD
4202 if (stream->sequence_number_unavailable) {
4203 ERR("Internal error: rotation used on stream %" PRIu64
4204 " with unavailable sequence number",
4205 stream->key);
4206 return -1;
02d02e31
JD
4207 }
4208
c8eabe73
MD
4209 if (stream->rotate_position == -1ULL ||
4210 stream->last_sequence_number == -1ULL) {
4211 return 0;
02d02e31
JD
4212 }
4213
c8eabe73
MD
4214 /*
4215 * Rotate position not reached yet. The stream rotate position is
4216 * the position of the next packet belonging to the next trace chunk,
4217 * but consumerd considers rotation ready when reaching the last
4218 * packet of the current chunk, hence the "rotate_position - 1".
4219 */
4220 if (stream->last_sequence_number >= stream->rotate_position - 1) {
4221 return 1;
02d02e31 4222 }
02d02e31 4223
c8eabe73 4224 return 0;
02d02e31
JD
4225}
4226
d73bf3d7
JD
4227/*
4228 * Reset the state for a stream after a rotation occurred.
4229 */
4230void lttng_consumer_reset_stream_rotate_state(struct lttng_consumer_stream *stream)
4231{
c8eabe73 4232 stream->rotate_position = -1ULL;
d73bf3d7
JD
4233 stream->rotate_ready = false;
4234}
4235
4236/*
4237 * Perform the rotation a local stream file.
4238 */
e5148e25 4239static
d73bf3d7
JD
4240int rotate_local_stream(struct lttng_consumer_local_data *ctx,
4241 struct lttng_consumer_stream *stream)
4242{
e5148e25 4243 int ret = 0;
d73bf3d7 4244
e5148e25 4245 DBG("Rotate local stream: stream key %" PRIu64 ", channel key %" PRIu64,
d73bf3d7 4246 stream->key,
e5148e25 4247 stream->chan->key);
d73bf3d7 4248 stream->tracefile_size_current = 0;
e5148e25 4249 stream->tracefile_count_current = 0;
d73bf3d7 4250
e5148e25
JG
4251 if (stream->out_fd >= 0) {
4252 ret = close(stream->out_fd);
4253 if (ret) {
4254 PERROR("Failed to close stream out_fd of channel \"%s\"",
4255 stream->chan->name);
4256 }
4257 stream->out_fd = -1;
4258 }
d73bf3d7 4259
e5148e25 4260 if (stream->index_file) {
d73bf3d7 4261 lttng_index_file_put(stream->index_file);
e5148e25 4262 stream->index_file = NULL;
d73bf3d7
JD
4263 }
4264
e5148e25
JG
4265 if (!stream->trace_chunk) {
4266 goto end;
4267 }
d73bf3d7 4268
e5148e25 4269 ret = consumer_stream_create_output_files(stream, true);
d73bf3d7
JD
4270end:
4271 return ret;
d73bf3d7
JD
4272}
4273
d73bf3d7
JD
4274/*
4275 * Performs the stream rotation for the rotate session feature if needed.
e5148e25 4276 * It must be called with the channel and stream locks held.
d73bf3d7
JD
4277 *
4278 * Return 0 on success, a negative number of error.
4279 */
4280int lttng_consumer_rotate_stream(struct lttng_consumer_local_data *ctx,
e5148e25 4281 struct lttng_consumer_stream *stream)
d73bf3d7
JD
4282{
4283 int ret;
4284
4285 DBG("Consumer rotate stream %" PRIu64, stream->key);
4286
e5148e25
JG
4287 /*
4288 * Update the stream's 'current' chunk to the session's (channel)
4289 * now-current chunk.
4290 */
4291 lttng_trace_chunk_put(stream->trace_chunk);
4292 if (stream->chan->trace_chunk == stream->trace_chunk) {
4293 /*
4294 * A channel can be rotated and not have a "next" chunk
4295 * to transition to. In that case, the channel's "current chunk"
4296 * has not been closed yet, but it has not been updated to
4297 * a "next" trace chunk either. Hence, the stream, like its
4298 * parent channel, becomes part of no chunk and can't output
4299 * anything until a new trace chunk is created.
4300 */
4301 stream->trace_chunk = NULL;
4302 } else if (stream->chan->trace_chunk &&
4303 !lttng_trace_chunk_get(stream->chan->trace_chunk)) {
4304 ERR("Failed to acquire a reference to channel's trace chunk during stream rotation");
4305 ret = -1;
4306 goto error;
4307 } else {
4308 /*
4309 * Update the stream's trace chunk to its parent channel's
4310 * current trace chunk.
4311 */
4312 stream->trace_chunk = stream->chan->trace_chunk;
4313 }
4314
84a93c08 4315 if (stream->net_seq_idx == (uint64_t) -1ULL) {
d73bf3d7 4316 ret = rotate_local_stream(ctx, stream);
84a93c08
JG
4317 if (ret < 0) {
4318 ERR("Failed to rotate stream, ret = %i", ret);
4319 goto error;
4320 }
d73bf3d7
JD
4321 }
4322
e5148e25
JG
4323 if (stream->metadata_flag && stream->trace_chunk) {
4324 /*
4325 * If the stream has transitioned to a new trace
4326 * chunk, the metadata should be re-dumped to the
4327 * newest chunk.
4328 *
4329 * However, it is possible for a stream to transition to
4330 * a "no-chunk" state. This can happen if a rotation
4331 * occurs on an inactive session. In such cases, the metadata
4332 * regeneration will happen when the next trace chunk is
4333 * created.
4334 */
4335 ret = consumer_metadata_stream_dump(stream);
4336 if (ret) {
4337 goto error;
d73bf3d7
JD
4338 }
4339 }
4340 lttng_consumer_reset_stream_rotate_state(stream);
4341
4342 ret = 0;
4343
4344error:
4345 return ret;
4346}
4347
b99a8d42
JD
4348/*
4349 * Rotate all the ready streams now.
4350 *
4351 * This is especially important for low throughput streams that have already
4352 * been consumed, we cannot wait for their next packet to perform the
4353 * rotation.
e96d66b4
MD
4354 * Need to be called with RCU read-side lock held to ensure existence of
4355 * channel.
b99a8d42
JD
4356 *
4357 * Returns 0 on success, < 0 on error
4358 */
e96d66b4
MD
4359int lttng_consumer_rotate_ready_streams(struct lttng_consumer_channel *channel,
4360 uint64_t key, struct lttng_consumer_local_data *ctx)
b99a8d42
JD
4361{
4362 int ret;
b99a8d42
JD
4363 struct lttng_consumer_stream *stream;
4364 struct lttng_ht_iter iter;
4365 struct lttng_ht *ht = consumer_data.stream_per_chan_id_ht;
4366
4367 rcu_read_lock();
4368
4369 DBG("Consumer rotate ready streams in channel %" PRIu64, key);
4370
b99a8d42
JD
4371 cds_lfht_for_each_entry_duplicate(ht->ht,
4372 ht->hash_fct(&channel->key, lttng_ht_seed),
4373 ht->match_fct, &channel->key, &iter.iter,
4374 stream, node_channel_id.node) {
4375 health_code_update();
4376
e5148e25 4377 pthread_mutex_lock(&stream->chan->lock);
b99a8d42
JD
4378 pthread_mutex_lock(&stream->lock);
4379
4380 if (!stream->rotate_ready) {
4381 pthread_mutex_unlock(&stream->lock);
e5148e25 4382 pthread_mutex_unlock(&stream->chan->lock);
b99a8d42
JD
4383 continue;
4384 }
4385 DBG("Consumer rotate ready stream %" PRIu64, stream->key);
4386
e5148e25 4387 ret = lttng_consumer_rotate_stream(ctx, stream);
b99a8d42 4388 pthread_mutex_unlock(&stream->lock);
e5148e25 4389 pthread_mutex_unlock(&stream->chan->lock);
b99a8d42
JD
4390 if (ret) {
4391 goto end;
4392 }
4393 }
4394
4395 ret = 0;
4396
4397end:
4398 rcu_read_unlock();
4399 return ret;
4400}
4401
e5148e25
JG
4402enum lttcomm_return_code lttng_consumer_init_command(
4403 struct lttng_consumer_local_data *ctx,
4404 const lttng_uuid sessiond_uuid)
00fb02ac 4405{
e5148e25
JG
4406 enum lttcomm_return_code ret;
4407 char uuid_str[UUID_STR_LEN];
00fb02ac 4408
e5148e25
JG
4409 if (ctx->sessiond_uuid.is_set) {
4410 ret = LTTCOMM_CONSUMERD_ALREADY_SET;
00fb02ac
JD
4411 goto end;
4412 }
4413
e5148e25
JG
4414 ctx->sessiond_uuid.is_set = true;
4415 memcpy(ctx->sessiond_uuid.value, sessiond_uuid, sizeof(lttng_uuid));
4416 ret = LTTCOMM_CONSUMERD_SUCCESS;
4417 lttng_uuid_to_str(sessiond_uuid, uuid_str);
4418 DBG("Received session daemon UUID: %s", uuid_str);
00fb02ac
JD
4419end:
4420 return ret;
4421}
4422
e5148e25
JG
4423enum lttcomm_return_code lttng_consumer_create_trace_chunk(
4424 const uint64_t *relayd_id, uint64_t session_id,
4425 uint64_t chunk_id,
4426 time_t chunk_creation_timestamp,
4427 const char *chunk_override_name,
4428 const struct lttng_credentials *credentials,
4429 struct lttng_directory_handle *chunk_directory_handle)
00fb02ac
JD
4430{
4431 int ret;
e5148e25 4432 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
d45a350f 4433 struct lttng_trace_chunk *created_chunk = NULL, *published_chunk = NULL;
e5148e25
JG
4434 enum lttng_trace_chunk_status chunk_status;
4435 char relayd_id_buffer[MAX_INT_DEC_LEN(*relayd_id)];
4436 char creation_timestamp_buffer[ISO8601_STR_LEN];
4437 const char *relayd_id_str = "(none)";
4438 const char *creation_timestamp_str;
4439 struct lttng_ht_iter iter;
4440 struct lttng_consumer_channel *channel;
82528808 4441
e5148e25
JG
4442 if (relayd_id) {
4443 /* Only used for logging purposes. */
4444 ret = snprintf(relayd_id_buffer, sizeof(relayd_id_buffer),
4445 "%" PRIu64, *relayd_id);
4446 if (ret > 0 && ret < sizeof(relayd_id_buffer)) {
4447 relayd_id_str = relayd_id_buffer;
4448 } else {
4449 relayd_id_str = "(formatting error)";
4450 }
4451 }
4452
4453 /* Local protocol error. */
4454 assert(chunk_creation_timestamp);
4455 ret = time_to_iso8601_str(chunk_creation_timestamp,
4456 creation_timestamp_buffer,
4457 sizeof(creation_timestamp_buffer));
4458 creation_timestamp_str = !ret ? creation_timestamp_buffer :
4459 "(formatting error)";
4460
4461 DBG("Consumer create trace chunk command: relay_id = %s"
4462 ", session_id = %" PRIu64 ", chunk_id = %" PRIu64
4463 ", chunk_override_name = %s"
4464 ", chunk_creation_timestamp = %s",
4465 relayd_id_str, session_id, chunk_id,
4466 chunk_override_name ? : "(none)",
4467 creation_timestamp_str);
82528808
JG
4468
4469 /*
e5148e25
JG
4470 * The trace chunk registry, as used by the consumer daemon, implicitly
4471 * owns the trace chunks. This is only needed in the consumer since
4472 * the consumer has no notion of a session beyond session IDs being
4473 * used to identify other objects.
4474 *
4475 * The lttng_trace_chunk_registry_publish() call below provides a
4476 * reference which is not released; it implicitly becomes the session
4477 * daemon's reference to the chunk in the consumer daemon.
4478 *
4479 * The lifetime of trace chunks in the consumer daemon is managed by
4480 * the session daemon through the LTTNG_CONSUMER_CREATE_TRACE_CHUNK
4481 * and LTTNG_CONSUMER_DESTROY_TRACE_CHUNK commands.
82528808 4482 */
e5148e25
JG
4483 created_chunk = lttng_trace_chunk_create(chunk_id,
4484 chunk_creation_timestamp);
4485 if (!created_chunk) {
4486 ERR("Failed to create trace chunk");
4487 ret_code = LTTCOMM_CONSUMERD_CREATE_TRACE_CHUNK_FAILED;
d45a350f 4488 goto error;
e5148e25 4489 }
82528808 4490
e5148e25
JG
4491 if (chunk_override_name) {
4492 chunk_status = lttng_trace_chunk_override_name(created_chunk,
4493 chunk_override_name);
4494 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
4495 ret_code = LTTCOMM_CONSUMERD_CREATE_TRACE_CHUNK_FAILED;
d45a350f 4496 goto error;
82528808
JG
4497 }
4498 }
4499
e5148e25
JG
4500 if (chunk_directory_handle) {
4501 chunk_status = lttng_trace_chunk_set_credentials(created_chunk,
4502 credentials);
4503 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
4504 ERR("Failed to set trace chunk credentials");
4505 ret_code = LTTCOMM_CONSUMERD_CREATE_TRACE_CHUNK_FAILED;
d45a350f 4506 goto error;
e5148e25
JG
4507 }
4508 /*
4509 * The consumer daemon has no ownership of the chunk output
4510 * directory.
4511 */
4512 chunk_status = lttng_trace_chunk_set_as_user(created_chunk,
4513 chunk_directory_handle);
4514 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
4515 ERR("Failed to set trace chunk's directory handle");
4516 ret_code = LTTCOMM_CONSUMERD_CREATE_TRACE_CHUNK_FAILED;
d45a350f 4517 goto error;
82528808
JG
4518 }
4519 }
4520
e5148e25
JG
4521 published_chunk = lttng_trace_chunk_registry_publish_chunk(
4522 consumer_data.chunk_registry, session_id,
4523 created_chunk);
4524 lttng_trace_chunk_put(created_chunk);
4525 created_chunk = NULL;
4526 if (!published_chunk) {
4527 ERR("Failed to publish trace chunk");
4528 ret_code = LTTCOMM_CONSUMERD_CREATE_TRACE_CHUNK_FAILED;
d45a350f 4529 goto error;
d88744a4
JD
4530 }
4531
e5148e25
JG
4532 rcu_read_lock();
4533 cds_lfht_for_each_entry_duplicate(consumer_data.channels_by_session_id_ht->ht,
4534 consumer_data.channels_by_session_id_ht->hash_fct(
4535 &session_id, lttng_ht_seed),
4536 consumer_data.channels_by_session_id_ht->match_fct,
4537 &session_id, &iter.iter, channel,
4538 channels_by_session_id_ht_node.node) {
4539 ret = lttng_consumer_channel_set_trace_chunk(channel,
4540 published_chunk);
4541 if (ret) {
4542 /*
4543 * Roll-back the creation of this chunk.
4544 *
4545 * This is important since the session daemon will
4546 * assume that the creation of this chunk failed and
4547 * will never ask for it to be closed, resulting
4548 * in a leak and an inconsistent state for some
4549 * channels.
4550 */
4551 enum lttcomm_return_code close_ret;
41b23598 4552 char path[LTTNG_PATH_MAX];
e5148e25
JG
4553
4554 DBG("Failed to set new trace chunk on existing channels, rolling back");
4555 close_ret = lttng_consumer_close_trace_chunk(relayd_id,
4556 session_id, chunk_id,
41b23598
MD
4557 chunk_creation_timestamp, NULL,
4558 path);
e5148e25
JG
4559 if (close_ret != LTTCOMM_CONSUMERD_SUCCESS) {
4560 ERR("Failed to roll-back the creation of new chunk: session_id = %" PRIu64 ", chunk_id = %" PRIu64,
4561 session_id, chunk_id);
4562 }
a1ae2ea5 4563
e5148e25
JG
4564 ret_code = LTTCOMM_CONSUMERD_CREATE_TRACE_CHUNK_FAILED;
4565 break;
4566 }
a1ae2ea5
JD
4567 }
4568
0ebdafe0
JG
4569 if (relayd_id) {
4570 struct consumer_relayd_sock_pair *relayd;
4571
4572 relayd = consumer_find_relayd(*relayd_id);
4573 if (relayd) {
4574 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
4575 ret = relayd_create_trace_chunk(
4576 &relayd->control_sock, published_chunk);
4577 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
4578 } else {
4579 ERR("Failed to find relay daemon socket: relayd_id = %" PRIu64, *relayd_id);
4580 }
4581
4582 if (!relayd || ret) {
4583 enum lttcomm_return_code close_ret;
41b23598 4584 char path[LTTNG_PATH_MAX];
0ebdafe0
JG
4585
4586 close_ret = lttng_consumer_close_trace_chunk(relayd_id,
4587 session_id,
4588 chunk_id,
6bbcff33 4589 chunk_creation_timestamp,
41b23598 4590 NULL, path);
0ebdafe0
JG
4591 if (close_ret != LTTCOMM_CONSUMERD_SUCCESS) {
4592 ERR("Failed to roll-back the creation of new chunk: session_id = %" PRIu64 ", chunk_id = %" PRIu64,
4593 session_id,
4594 chunk_id);
4595 }
4596
4597 ret_code = LTTCOMM_CONSUMERD_CREATE_TRACE_CHUNK_FAILED;
d45a350f 4598 goto error_unlock;
0ebdafe0
JG
4599 }
4600 }
d45a350f 4601error_unlock:
0ebdafe0 4602 rcu_read_unlock();
d45a350f 4603error:
e5148e25
JG
4604 /* Release the reference returned by the "publish" operation. */
4605 lttng_trace_chunk_put(published_chunk);
2519ef55 4606 lttng_trace_chunk_put(created_chunk);
e5148e25 4607 return ret_code;
a1ae2ea5
JD
4608}
4609
e5148e25
JG
4610enum lttcomm_return_code lttng_consumer_close_trace_chunk(
4611 const uint64_t *relayd_id, uint64_t session_id,
6bbcff33 4612 uint64_t chunk_id, time_t chunk_close_timestamp,
41b23598
MD
4613 const enum lttng_trace_chunk_command_type *close_command,
4614 char *path)
a1ae2ea5 4615{
e5148e25
JG
4616 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
4617 struct lttng_trace_chunk *chunk;
4618 char relayd_id_buffer[MAX_INT_DEC_LEN(*relayd_id)];
4619 const char *relayd_id_str = "(none)";
6bbcff33 4620 const char *close_command_name = "none";
e5148e25
JG
4621 struct lttng_ht_iter iter;
4622 struct lttng_consumer_channel *channel;
4623 enum lttng_trace_chunk_status chunk_status;
a1ae2ea5 4624
e5148e25
JG
4625 if (relayd_id) {
4626 int ret;
4627
4628 /* Only used for logging purposes. */
4629 ret = snprintf(relayd_id_buffer, sizeof(relayd_id_buffer),
4630 "%" PRIu64, *relayd_id);
4631 if (ret > 0 && ret < sizeof(relayd_id_buffer)) {
4632 relayd_id_str = relayd_id_buffer;
4633 } else {
4634 relayd_id_str = "(formatting error)";
4635 }
6bbcff33
JG
4636 }
4637 if (close_command) {
4638 close_command_name = lttng_trace_chunk_command_type_get_name(
4639 *close_command);
4640 }
e5148e25
JG
4641
4642 DBG("Consumer close trace chunk command: relayd_id = %s"
6bbcff33
JG
4643 ", session_id = %" PRIu64 ", chunk_id = %" PRIu64
4644 ", close command = %s",
4645 relayd_id_str, session_id, chunk_id,
4646 close_command_name);
4647
e5148e25 4648 chunk = lttng_trace_chunk_registry_find_chunk(
6bbcff33
JG
4649 consumer_data.chunk_registry, session_id, chunk_id);
4650 if (!chunk) {
e5148e25
JG
4651 ERR("Failed to find chunk: session_id = %" PRIu64
4652 ", chunk_id = %" PRIu64,
4653 session_id, chunk_id);
4654 ret_code = LTTCOMM_CONSUMERD_UNKNOWN_TRACE_CHUNK;
a1ae2ea5
JD
4655 goto end;
4656 }
4657
e5148e25
JG
4658 chunk_status = lttng_trace_chunk_set_close_timestamp(chunk,
4659 chunk_close_timestamp);
4660 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
4661 ret_code = LTTCOMM_CONSUMERD_CLOSE_TRACE_CHUNK_FAILED;
4662 goto end;
768f6a48 4663 }
6bbcff33
JG
4664
4665 if (close_command) {
4666 chunk_status = lttng_trace_chunk_set_close_command(
4667 chunk, *close_command);
4668 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
4669 ret_code = LTTCOMM_CONSUMERD_CLOSE_TRACE_CHUNK_FAILED;
4670 goto end;
4671 }
4672 }
a1ae2ea5 4673
e5148e25
JG
4674 /*
4675 * chunk is now invalid to access as we no longer hold a reference to
4676 * it; it is only kept around to compare it (by address) to the
4677 * current chunk found in the session's channels.
4678 */
4679 rcu_read_lock();
4680 cds_lfht_for_each_entry(consumer_data.channel_ht->ht, &iter.iter,
4681 channel, node.node) {
4682 int ret;
a1ae2ea5 4683
e5148e25
JG
4684 /*
4685 * Only change the channel's chunk to NULL if it still
4686 * references the chunk being closed. The channel may
4687 * reference a newer channel in the case of a session
4688 * rotation. When a session rotation occurs, the "next"
4689 * chunk is created before the "current" chunk is closed.
4690 */
4691 if (channel->trace_chunk != chunk) {
4692 continue;
4693 }
4694 ret = lttng_consumer_channel_set_trace_chunk(channel, NULL);
4695 if (ret) {
4696 /*
4697 * Attempt to close the chunk on as many channels as
4698 * possible.
4699 */
4700 ret_code = LTTCOMM_CONSUMERD_CLOSE_TRACE_CHUNK_FAILED;
4701 }
a1ae2ea5 4702 }
6bbcff33
JG
4703
4704 if (relayd_id) {
4705 int ret;
4706 struct consumer_relayd_sock_pair *relayd;
4707
4708 relayd = consumer_find_relayd(*relayd_id);
4709 if (relayd) {
4710 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
4711 ret = relayd_close_trace_chunk(
41b23598
MD
4712 &relayd->control_sock, chunk,
4713 path);
6bbcff33
JG
4714 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
4715 } else {
4716 ERR("Failed to find relay daemon socket: relayd_id = %" PRIu64,
4717 *relayd_id);
4718 }
4719
4720 if (!relayd || ret) {
4721 ret_code = LTTCOMM_CONSUMERD_CLOSE_TRACE_CHUNK_FAILED;
4722 goto error_unlock;
4723 }
4724 }
4725error_unlock:
e5148e25
JG
4726 rcu_read_unlock();
4727end:
6bbcff33
JG
4728 /*
4729 * Release the reference returned by the "find" operation and
4730 * the session daemon's implicit reference to the chunk.
4731 */
4732 lttng_trace_chunk_put(chunk);
4733 lttng_trace_chunk_put(chunk);
4734
e5148e25 4735 return ret_code;
a1ae2ea5 4736}
fc181d72 4737
e5148e25
JG
4738enum lttcomm_return_code lttng_consumer_trace_chunk_exists(
4739 const uint64_t *relayd_id, uint64_t session_id,
4740 uint64_t chunk_id)
fc181d72 4741{
84a93c08 4742 int ret;
e5148e25 4743 enum lttcomm_return_code ret_code;
e5148e25
JG
4744 char relayd_id_buffer[MAX_INT_DEC_LEN(*relayd_id)];
4745 const char *relayd_id_str = "(none)";
84a93c08
JG
4746 const bool is_local_trace = !relayd_id;
4747 struct consumer_relayd_sock_pair *relayd = NULL;
95245d44 4748 bool chunk_exists_local, chunk_exists_remote;
e5148e25
JG
4749
4750 if (relayd_id) {
4751 int ret;
4752
4753 /* Only used for logging purposes. */
4754 ret = snprintf(relayd_id_buffer, sizeof(relayd_id_buffer),
4755 "%" PRIu64, *relayd_id);
4756 if (ret > 0 && ret < sizeof(relayd_id_buffer)) {
4757 relayd_id_str = relayd_id_buffer;
4758 } else {
4759 relayd_id_str = "(formatting error)";
4760 }
4761 }
4762
4763 DBG("Consumer trace chunk exists command: relayd_id = %s"
e5148e25 4764 ", chunk_id = %" PRIu64, relayd_id_str,
84a93c08 4765 chunk_id);
95245d44 4766 ret = lttng_trace_chunk_registry_chunk_exists(
e5148e25 4767 consumer_data.chunk_registry, session_id,
95245d44
JG
4768 chunk_id, &chunk_exists_local);
4769 if (ret) {
4770 /* Internal error. */
4771 ERR("Failed to query the existence of a trace chunk");
4772 ret_code = LTTCOMM_CONSUMERD_FATAL;
03304e37 4773 goto end;
95245d44
JG
4774 }
4775 DBG("Trace chunk %s locally",
4776 chunk_exists_local ? "exists" : "does not exist");
4777 if (chunk_exists_local) {
84a93c08 4778 ret_code = LTTCOMM_CONSUMERD_TRACE_CHUNK_EXISTS_LOCAL;
84a93c08
JG
4779 goto end;
4780 } else if (is_local_trace) {
4781 ret_code = LTTCOMM_CONSUMERD_UNKNOWN_TRACE_CHUNK;
4782 goto end;
4783 }
4784
4785 rcu_read_lock();
4786 relayd = consumer_find_relayd(*relayd_id);
4787 if (!relayd) {
4788 ERR("Failed to find relayd %" PRIu64, *relayd_id);
4789 ret_code = LTTCOMM_CONSUMERD_INVALID_PARAMETERS;
4790 goto end_rcu_unlock;
4791 }
4792 DBG("Looking up existence of trace chunk on relay daemon");
4793 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
4794 ret = relayd_trace_chunk_exists(&relayd->control_sock, chunk_id,
4795 &chunk_exists_remote);
4796 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
4797 if (ret < 0) {
4798 ERR("Failed to look-up the existence of trace chunk on relay daemon");
4799 ret_code = LTTCOMM_CONSUMERD_RELAYD_FAIL;
4800 goto end_rcu_unlock;
4801 }
4802
4803 ret_code = chunk_exists_remote ?
4804 LTTCOMM_CONSUMERD_TRACE_CHUNK_EXISTS_REMOTE :
e5148e25 4805 LTTCOMM_CONSUMERD_UNKNOWN_TRACE_CHUNK;
84a93c08
JG
4806 DBG("Trace chunk %s on relay daemon",
4807 chunk_exists_remote ? "exists" : "does not exist");
e5148e25 4808
84a93c08
JG
4809end_rcu_unlock:
4810 rcu_read_unlock();
4811end:
e5148e25 4812 return ret_code;
fc181d72 4813}
This page took 0.389256 seconds and 4 git commands to generate.