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