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