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