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