Fix: free ust channel object after grace period in consumer
[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
MD
1223{
1224 int outfd = stream->out_fd;
1225
1226 /*
1227 * This does a blocking write-and-wait on any page that belongs to the
1228 * subbuffer prior to the one we just wrote.
1229 * Don't care about error values, as these are just hints and ways to
1230 * limit the amount of page cache used.
1231 */
ffe60014 1232 if (orig_offset < stream->max_sb_size) {
3bd1e081
MD
1233 return;
1234 }
ffe60014
DG
1235 lttng_sync_file_range(outfd, orig_offset - stream->max_sb_size,
1236 stream->max_sb_size,
3bd1e081
MD
1237 SYNC_FILE_RANGE_WAIT_BEFORE
1238 | SYNC_FILE_RANGE_WRITE
1239 | SYNC_FILE_RANGE_WAIT_AFTER);
1240 /*
1241 * Give hints to the kernel about how we access the file:
1242 * POSIX_FADV_DONTNEED : we won't re-access data in a near future after
1243 * we write it.
1244 *
1245 * We need to call fadvise again after the file grows because the
1246 * kernel does not seem to apply fadvise to non-existing parts of the
1247 * file.
1248 *
1249 * Call fadvise _after_ having waited for the page writeback to
1250 * complete because the dirty page writeback semantic is not well
1251 * defined. So it can be expected to lead to lower throughput in
1252 * streaming.
1253 */
ffe60014
DG
1254 posix_fadvise(outfd, orig_offset - stream->max_sb_size,
1255 stream->max_sb_size, POSIX_FADV_DONTNEED);
3bd1e081
MD
1256}
1257
1258/*
1259 * Initialise the necessary environnement :
1260 * - create a new context
1261 * - create the poll_pipe
1262 * - create the should_quit pipe (for signal handler)
1263 * - create the thread pipe (for splice)
1264 *
1265 * Takes a function pointer as argument, this function is called when data is
1266 * available on a buffer. This function is responsible to do the
1267 * kernctl_get_next_subbuf, read the data with mmap or splice depending on the
1268 * buffer configuration and then kernctl_put_next_subbuf at the end.
1269 *
1270 * Returns a pointer to the new context or NULL on error.
1271 */
1272struct lttng_consumer_local_data *lttng_consumer_create(
1273 enum lttng_consumer_type type,
4078b776 1274 ssize_t (*buffer_ready)(struct lttng_consumer_stream *stream,
d41f73b7 1275 struct lttng_consumer_local_data *ctx),
3bd1e081
MD
1276 int (*recv_channel)(struct lttng_consumer_channel *channel),
1277 int (*recv_stream)(struct lttng_consumer_stream *stream),
30319bcb 1278 int (*update_stream)(uint64_t stream_key, uint32_t state))
3bd1e081 1279{
d8ef542d 1280 int ret;
3bd1e081
MD
1281 struct lttng_consumer_local_data *ctx;
1282
1283 assert(consumer_data.type == LTTNG_CONSUMER_UNKNOWN ||
1284 consumer_data.type == type);
1285 consumer_data.type = type;
1286
effcf122 1287 ctx = zmalloc(sizeof(struct lttng_consumer_local_data));
3bd1e081 1288 if (ctx == NULL) {
7a57cf92 1289 PERROR("allocating context");
3bd1e081
MD
1290 goto error;
1291 }
1292
1293 ctx->consumer_error_socket = -1;
331744e3 1294 ctx->consumer_metadata_socket = -1;
75d83e50 1295 pthread_mutex_init(&ctx->metadata_socket_lock, NULL);
3bd1e081
MD
1296 /* assign the callbacks */
1297 ctx->on_buffer_ready = buffer_ready;
1298 ctx->on_recv_channel = recv_channel;
1299 ctx->on_recv_stream = recv_stream;
1300 ctx->on_update_stream = update_stream;
1301
acdb9057
DG
1302 ctx->consumer_data_pipe = lttng_pipe_open(0);
1303 if (!ctx->consumer_data_pipe) {
3bd1e081
MD
1304 goto error_poll_pipe;
1305 }
1306
02b3d176
DG
1307 ctx->consumer_wakeup_pipe = lttng_pipe_open(0);
1308 if (!ctx->consumer_wakeup_pipe) {
1309 goto error_wakeup_pipe;
1310 }
1311
3bd1e081
MD
1312 ret = pipe(ctx->consumer_should_quit);
1313 if (ret < 0) {
7a57cf92 1314 PERROR("Error creating recv pipe");
3bd1e081
MD
1315 goto error_quit_pipe;
1316 }
1317
d8ef542d
MD
1318 ret = pipe(ctx->consumer_channel_pipe);
1319 if (ret < 0) {
1320 PERROR("Error creating channel pipe");
1321 goto error_channel_pipe;
1322 }
1323
13886d2d
DG
1324 ctx->consumer_metadata_pipe = lttng_pipe_open(0);
1325 if (!ctx->consumer_metadata_pipe) {
fb3a43a9
DG
1326 goto error_metadata_pipe;
1327 }
3bd1e081 1328
fb3a43a9 1329 return ctx;
3bd1e081 1330
fb3a43a9 1331error_metadata_pipe:
d8ef542d
MD
1332 utils_close_pipe(ctx->consumer_channel_pipe);
1333error_channel_pipe:
d8ef542d 1334 utils_close_pipe(ctx->consumer_should_quit);
3bd1e081 1335error_quit_pipe:
02b3d176
DG
1336 lttng_pipe_destroy(ctx->consumer_wakeup_pipe);
1337error_wakeup_pipe:
acdb9057 1338 lttng_pipe_destroy(ctx->consumer_data_pipe);
3bd1e081
MD
1339error_poll_pipe:
1340 free(ctx);
1341error:
1342 return NULL;
1343}
1344
282dadbc
MD
1345/*
1346 * Iterate over all streams of the hashtable and free them properly.
1347 */
1348static void destroy_data_stream_ht(struct lttng_ht *ht)
1349{
1350 struct lttng_ht_iter iter;
1351 struct lttng_consumer_stream *stream;
1352
1353 if (ht == NULL) {
1354 return;
1355 }
1356
1357 rcu_read_lock();
1358 cds_lfht_for_each_entry(ht->ht, &iter.iter, stream, node.node) {
1359 /*
1360 * Ignore return value since we are currently cleaning up so any error
1361 * can't be handled.
1362 */
1363 (void) consumer_del_stream(stream, ht);
1364 }
1365 rcu_read_unlock();
1366
1367 lttng_ht_destroy(ht);
1368}
1369
1370/*
1371 * Iterate over all streams of the metadata hashtable and free them
1372 * properly.
1373 */
1374static void destroy_metadata_stream_ht(struct lttng_ht *ht)
1375{
1376 struct lttng_ht_iter iter;
1377 struct lttng_consumer_stream *stream;
1378
1379 if (ht == NULL) {
1380 return;
1381 }
1382
1383 rcu_read_lock();
1384 cds_lfht_for_each_entry(ht->ht, &iter.iter, stream, node.node) {
1385 /*
1386 * Ignore return value since we are currently cleaning up so any error
1387 * can't be handled.
1388 */
1389 (void) consumer_del_metadata_stream(stream, ht);
1390 }
1391 rcu_read_unlock();
1392
1393 lttng_ht_destroy(ht);
1394}
1395
3bd1e081
MD
1396/*
1397 * Close all fds associated with the instance and free the context.
1398 */
1399void lttng_consumer_destroy(struct lttng_consumer_local_data *ctx)
1400{
4c462e79
MD
1401 int ret;
1402
ab1027f4
DG
1403 DBG("Consumer destroying it. Closing everything.");
1404
4f2e75b9
DG
1405 if (!ctx) {
1406 return;
1407 }
1408
282dadbc
MD
1409 destroy_data_stream_ht(data_ht);
1410 destroy_metadata_stream_ht(metadata_ht);
1411
4c462e79
MD
1412 ret = close(ctx->consumer_error_socket);
1413 if (ret) {
1414 PERROR("close");
1415 }
331744e3
JD
1416 ret = close(ctx->consumer_metadata_socket);
1417 if (ret) {
1418 PERROR("close");
1419 }
d8ef542d 1420 utils_close_pipe(ctx->consumer_channel_pipe);
acdb9057 1421 lttng_pipe_destroy(ctx->consumer_data_pipe);
13886d2d 1422 lttng_pipe_destroy(ctx->consumer_metadata_pipe);
02b3d176 1423 lttng_pipe_destroy(ctx->consumer_wakeup_pipe);
d8ef542d 1424 utils_close_pipe(ctx->consumer_should_quit);
fb3a43a9 1425
3bd1e081
MD
1426 unlink(ctx->consumer_command_sock_path);
1427 free(ctx);
1428}
1429
6197aea7
DG
1430/*
1431 * Write the metadata stream id on the specified file descriptor.
1432 */
1433static int write_relayd_metadata_id(int fd,
1434 struct lttng_consumer_stream *stream,
ffe60014 1435 struct consumer_relayd_sock_pair *relayd, unsigned long padding)
6197aea7 1436{
6cd525e8 1437 ssize_t ret;
1d4dfdef 1438 struct lttcomm_relayd_metadata_payload hdr;
6197aea7 1439
1d4dfdef
DG
1440 hdr.stream_id = htobe64(stream->relayd_stream_id);
1441 hdr.padding_size = htobe32(padding);
6cd525e8
MD
1442 ret = lttng_write(fd, (void *) &hdr, sizeof(hdr));
1443 if (ret < sizeof(hdr)) {
d7b75ec8
DG
1444 /*
1445 * This error means that the fd's end is closed so ignore the perror
1446 * not to clubber the error output since this can happen in a normal
1447 * code path.
1448 */
1449 if (errno != EPIPE) {
1450 PERROR("write metadata stream id");
1451 }
1452 DBG3("Consumer failed to write relayd metadata id (errno: %d)", errno);
534d2592
DG
1453 /*
1454 * Set ret to a negative value because if ret != sizeof(hdr), we don't
1455 * handle writting the missing part so report that as an error and
1456 * don't lie to the caller.
1457 */
1458 ret = -1;
6197aea7
DG
1459 goto end;
1460 }
1d4dfdef
DG
1461 DBG("Metadata stream id %" PRIu64 " with padding %lu written before data",
1462 stream->relayd_stream_id, padding);
6197aea7
DG
1463
1464end:
6cd525e8 1465 return (int) ret;
6197aea7
DG
1466}
1467
3bd1e081 1468/*
09e26845
DG
1469 * Mmap the ring buffer, read it and write the data to the tracefile. This is a
1470 * core function for writing trace buffers to either the local filesystem or
1471 * the network.
1472 *
79d4ffb7
DG
1473 * It must be called with the stream lock held.
1474 *
09e26845 1475 * Careful review MUST be put if any changes occur!
3bd1e081
MD
1476 *
1477 * Returns the number of bytes written
1478 */
4078b776 1479ssize_t lttng_consumer_on_read_subbuffer_mmap(
3bd1e081 1480 struct lttng_consumer_local_data *ctx,
1d4dfdef 1481 struct lttng_consumer_stream *stream, unsigned long len,
309167d2 1482 unsigned long padding,
50adc264 1483 struct ctf_packet_index *index)
3bd1e081 1484{
f02e1e8a 1485 unsigned long mmap_offset;
ffe60014 1486 void *mmap_base;
994ab360 1487 ssize_t ret = 0;
f02e1e8a
DG
1488 off_t orig_offset = stream->out_fd_offset;
1489 /* Default is on the disk */
1490 int outfd = stream->out_fd;
f02e1e8a 1491 struct consumer_relayd_sock_pair *relayd = NULL;
8994307f 1492 unsigned int relayd_hang_up = 0;
f02e1e8a
DG
1493
1494 /* RCU lock for the relayd pointer */
1495 rcu_read_lock();
1496
1497 /* Flag that the current stream if set for network streaming. */
da009f2c 1498 if (stream->net_seq_idx != (uint64_t) -1ULL) {
f02e1e8a
DG
1499 relayd = consumer_find_relayd(stream->net_seq_idx);
1500 if (relayd == NULL) {
56591bac 1501 ret = -EPIPE;
f02e1e8a
DG
1502 goto end;
1503 }
1504 }
1505
1506 /* get the offset inside the fd to mmap */
3bd1e081
MD
1507 switch (consumer_data.type) {
1508 case LTTNG_CONSUMER_KERNEL:
ffe60014 1509 mmap_base = stream->mmap_base;
f02e1e8a 1510 ret = kernctl_get_mmap_read_offset(stream->wait_fd, &mmap_offset);
994ab360
DG
1511 if (ret < 0) {
1512 ret = -errno;
56591bac 1513 PERROR("tracer ctl get_mmap_read_offset");
56591bac
MD
1514 goto end;
1515 }
f02e1e8a 1516 break;
7753dea8
MD
1517 case LTTNG_CONSUMER32_UST:
1518 case LTTNG_CONSUMER64_UST:
ffe60014
DG
1519 mmap_base = lttng_ustctl_get_mmap_base(stream);
1520 if (!mmap_base) {
1521 ERR("read mmap get mmap base for stream %s", stream->name);
994ab360 1522 ret = -EPERM;
ffe60014
DG
1523 goto end;
1524 }
1525 ret = lttng_ustctl_get_mmap_read_offset(stream, &mmap_offset);
56591bac
MD
1526 if (ret != 0) {
1527 PERROR("tracer ctl get_mmap_read_offset");
994ab360 1528 ret = -EINVAL;
56591bac
MD
1529 goto end;
1530 }
f02e1e8a 1531 break;
3bd1e081
MD
1532 default:
1533 ERR("Unknown consumer_data type");
1534 assert(0);
1535 }
b9182dd9 1536
f02e1e8a
DG
1537 /* Handle stream on the relayd if the output is on the network */
1538 if (relayd) {
1539 unsigned long netlen = len;
1540
1541 /*
1542 * Lock the control socket for the complete duration of the function
1543 * since from this point on we will use the socket.
1544 */
1545 if (stream->metadata_flag) {
1546 /* Metadata requires the control socket. */
1547 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
1d4dfdef 1548 netlen += sizeof(struct lttcomm_relayd_metadata_payload);
f02e1e8a
DG
1549 }
1550
1d4dfdef 1551 ret = write_relayd_stream_header(stream, netlen, padding, relayd);
994ab360
DG
1552 if (ret < 0) {
1553 relayd_hang_up = 1;
1554 goto write_error;
1555 }
1556 /* Use the returned socket. */
1557 outfd = ret;
f02e1e8a 1558
994ab360
DG
1559 /* Write metadata stream id before payload */
1560 if (stream->metadata_flag) {
1561 ret = write_relayd_metadata_id(outfd, stream, relayd, padding);
1562 if (ret < 0) {
8994307f
DG
1563 relayd_hang_up = 1;
1564 goto write_error;
1565 }
f02e1e8a 1566 }
1d4dfdef
DG
1567 } else {
1568 /* No streaming, we have to set the len with the full padding */
1569 len += padding;
1624d5b7
JD
1570
1571 /*
1572 * Check if we need to change the tracefile before writing the packet.
1573 */
1574 if (stream->chan->tracefile_size > 0 &&
1575 (stream->tracefile_size_current + len) >
1576 stream->chan->tracefile_size) {
fe4477ee
JD
1577 ret = utils_rotate_stream_file(stream->chan->pathname,
1578 stream->name, stream->chan->tracefile_size,
1579 stream->chan->tracefile_count, stream->uid, stream->gid,
309167d2
JD
1580 stream->out_fd, &(stream->tracefile_count_current),
1581 &stream->out_fd);
1624d5b7
JD
1582 if (ret < 0) {
1583 ERR("Rotating output file");
1584 goto end;
1585 }
309167d2
JD
1586 outfd = stream->out_fd;
1587
1588 if (stream->index_fd >= 0) {
f5aa4ae8
JG
1589 ret = close(stream->index_fd);
1590 if (ret < 0) {
1591 PERROR("Closing index");
1592 goto end;
1593 }
1594 stream->index_fd = -1;
309167d2
JD
1595 ret = index_create_file(stream->chan->pathname,
1596 stream->name, stream->uid, stream->gid,
1597 stream->chan->tracefile_size,
1598 stream->tracefile_count_current);
1599 if (ret < 0) {
1600 goto end;
1601 }
1602 stream->index_fd = ret;
1603 }
1604
a6976990
DG
1605 /* Reset current size because we just perform a rotation. */
1606 stream->tracefile_size_current = 0;
a1ae300f
JD
1607 stream->out_fd_offset = 0;
1608 orig_offset = 0;
1624d5b7
JD
1609 }
1610 stream->tracefile_size_current += len;
309167d2
JD
1611 if (index) {
1612 index->offset = htobe64(stream->out_fd_offset);
1613 }
f02e1e8a
DG
1614 }
1615
d02b8372
DG
1616 /*
1617 * This call guarantee that len or less is returned. It's impossible to
1618 * receive a ret value that is bigger than len.
1619 */
1620 ret = lttng_write(outfd, mmap_base + mmap_offset, len);
1621 DBG("Consumer mmap write() ret %zd (len %lu)", ret, len);
1622 if (ret < 0 || ((size_t) ret != len)) {
1623 /*
1624 * Report error to caller if nothing was written else at least send the
1625 * amount written.
1626 */
1627 if (ret < 0) {
994ab360 1628 ret = -errno;
f02e1e8a 1629 }
994ab360 1630 relayd_hang_up = 1;
f02e1e8a 1631
d02b8372 1632 /* Socket operation failed. We consider the relayd dead */
994ab360 1633 if (errno == EPIPE || errno == EINVAL || errno == EBADF) {
d02b8372
DG
1634 /*
1635 * This is possible if the fd is closed on the other side
1636 * (outfd) or any write problem. It can be verbose a bit for a
1637 * normal execution if for instance the relayd is stopped
1638 * abruptly. This can happen so set this to a DBG statement.
1639 */
1640 DBG("Consumer mmap write detected relayd hang up");
994ab360
DG
1641 } else {
1642 /* Unhandled error, print it and stop function right now. */
1643 PERROR("Error in write mmap (ret %zd != len %lu)", ret, len);
f02e1e8a 1644 }
994ab360 1645 goto write_error;
d02b8372
DG
1646 }
1647 stream->output_written += ret;
d02b8372
DG
1648
1649 /* This call is useless on a socket so better save a syscall. */
1650 if (!relayd) {
1651 /* This won't block, but will start writeout asynchronously */
1652 lttng_sync_file_range(outfd, stream->out_fd_offset, len,
1653 SYNC_FILE_RANGE_WRITE);
1654 stream->out_fd_offset += len;
f02e1e8a
DG
1655 }
1656 lttng_consumer_sync_trace_file(stream, orig_offset);
1657
8994307f
DG
1658write_error:
1659 /*
1660 * This is a special case that the relayd has closed its socket. Let's
1661 * cleanup the relayd object and all associated streams.
1662 */
1663 if (relayd && relayd_hang_up) {
1664 cleanup_relayd(relayd, ctx);
1665 }
1666
f02e1e8a
DG
1667end:
1668 /* Unlock only if ctrl socket used */
1669 if (relayd && stream->metadata_flag) {
1670 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
1671 }
1672
1673 rcu_read_unlock();
994ab360 1674 return ret;
3bd1e081
MD
1675}
1676
1677/*
1678 * Splice the data from the ring buffer to the tracefile.
1679 *
79d4ffb7
DG
1680 * It must be called with the stream lock held.
1681 *
3bd1e081
MD
1682 * Returns the number of bytes spliced.
1683 */
4078b776 1684ssize_t lttng_consumer_on_read_subbuffer_splice(
3bd1e081 1685 struct lttng_consumer_local_data *ctx,
1d4dfdef 1686 struct lttng_consumer_stream *stream, unsigned long len,
309167d2 1687 unsigned long padding,
50adc264 1688 struct ctf_packet_index *index)
3bd1e081 1689{
f02e1e8a
DG
1690 ssize_t ret = 0, written = 0, ret_splice = 0;
1691 loff_t offset = 0;
1692 off_t orig_offset = stream->out_fd_offset;
1693 int fd = stream->wait_fd;
1694 /* Default is on the disk */
1695 int outfd = stream->out_fd;
f02e1e8a 1696 struct consumer_relayd_sock_pair *relayd = NULL;
fb3a43a9 1697 int *splice_pipe;
8994307f 1698 unsigned int relayd_hang_up = 0;
f02e1e8a 1699
3bd1e081
MD
1700 switch (consumer_data.type) {
1701 case LTTNG_CONSUMER_KERNEL:
f02e1e8a 1702 break;
7753dea8
MD
1703 case LTTNG_CONSUMER32_UST:
1704 case LTTNG_CONSUMER64_UST:
f02e1e8a 1705 /* Not supported for user space tracing */
3bd1e081
MD
1706 return -ENOSYS;
1707 default:
1708 ERR("Unknown consumer_data type");
1709 assert(0);
3bd1e081
MD
1710 }
1711
f02e1e8a
DG
1712 /* RCU lock for the relayd pointer */
1713 rcu_read_lock();
1714
1715 /* Flag that the current stream if set for network streaming. */
da009f2c 1716 if (stream->net_seq_idx != (uint64_t) -1ULL) {
f02e1e8a
DG
1717 relayd = consumer_find_relayd(stream->net_seq_idx);
1718 if (relayd == NULL) {
ad0b0d23 1719 written = -ret;
f02e1e8a
DG
1720 goto end;
1721 }
1722 }
6f2b2a45 1723 splice_pipe = stream->splice_pipe;
fb3a43a9 1724
f02e1e8a 1725 /* Write metadata stream id before payload */
1d4dfdef 1726 if (relayd) {
ad0b0d23 1727 unsigned long total_len = len;
f02e1e8a 1728
1d4dfdef
DG
1729 if (stream->metadata_flag) {
1730 /*
1731 * Lock the control socket for the complete duration of the function
1732 * since from this point on we will use the socket.
1733 */
1734 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
1735
1736 ret = write_relayd_metadata_id(splice_pipe[1], stream, relayd,
1737 padding);
1738 if (ret < 0) {
1739 written = ret;
ad0b0d23
DG
1740 relayd_hang_up = 1;
1741 goto write_error;
1d4dfdef
DG
1742 }
1743
1744 total_len += sizeof(struct lttcomm_relayd_metadata_payload);
1745 }
1746
1747 ret = write_relayd_stream_header(stream, total_len, padding, relayd);
ad0b0d23
DG
1748 if (ret < 0) {
1749 written = ret;
1750 relayd_hang_up = 1;
1751 goto write_error;
f02e1e8a 1752 }
ad0b0d23
DG
1753 /* Use the returned socket. */
1754 outfd = ret;
1d4dfdef
DG
1755 } else {
1756 /* No streaming, we have to set the len with the full padding */
1757 len += padding;
1624d5b7
JD
1758
1759 /*
1760 * Check if we need to change the tracefile before writing the packet.
1761 */
1762 if (stream->chan->tracefile_size > 0 &&
1763 (stream->tracefile_size_current + len) >
1764 stream->chan->tracefile_size) {
fe4477ee
JD
1765 ret = utils_rotate_stream_file(stream->chan->pathname,
1766 stream->name, stream->chan->tracefile_size,
1767 stream->chan->tracefile_count, stream->uid, stream->gid,
309167d2
JD
1768 stream->out_fd, &(stream->tracefile_count_current),
1769 &stream->out_fd);
1624d5b7 1770 if (ret < 0) {
ad0b0d23 1771 written = ret;
1624d5b7
JD
1772 ERR("Rotating output file");
1773 goto end;
1774 }
309167d2
JD
1775 outfd = stream->out_fd;
1776
1777 if (stream->index_fd >= 0) {
79ead7f0
JD
1778 ret = close(stream->index_fd);
1779 if (ret < 0) {
1780 PERROR("Closing index");
1781 goto end;
1782 }
1783 stream->index_fd = -1;
309167d2
JD
1784 ret = index_create_file(stream->chan->pathname,
1785 stream->name, stream->uid, stream->gid,
1786 stream->chan->tracefile_size,
1787 stream->tracefile_count_current);
1788 if (ret < 0) {
ad0b0d23 1789 written = ret;
309167d2
JD
1790 goto end;
1791 }
1792 stream->index_fd = ret;
1793 }
1794
a6976990
DG
1795 /* Reset current size because we just perform a rotation. */
1796 stream->tracefile_size_current = 0;
a1ae300f
JD
1797 stream->out_fd_offset = 0;
1798 orig_offset = 0;
1624d5b7
JD
1799 }
1800 stream->tracefile_size_current += len;
309167d2 1801 index->offset = htobe64(stream->out_fd_offset);
f02e1e8a
DG
1802 }
1803
1804 while (len > 0) {
1d4dfdef
DG
1805 DBG("splice chan to pipe offset %lu of len %lu (fd : %d, pipe: %d)",
1806 (unsigned long)offset, len, fd, splice_pipe[1]);
fb3a43a9 1807 ret_splice = splice(fd, &offset, splice_pipe[1], NULL, len,
f02e1e8a
DG
1808 SPLICE_F_MOVE | SPLICE_F_MORE);
1809 DBG("splice chan to pipe, ret %zd", ret_splice);
1810 if (ret_splice < 0) {
d02b8372 1811 ret = errno;
ad0b0d23 1812 written = -ret;
d02b8372 1813 PERROR("Error in relay splice");
f02e1e8a
DG
1814 goto splice_error;
1815 }
1816
1817 /* Handle stream on the relayd if the output is on the network */
ad0b0d23
DG
1818 if (relayd && stream->metadata_flag) {
1819 size_t metadata_payload_size =
1820 sizeof(struct lttcomm_relayd_metadata_payload);
1821
1822 /* Update counter to fit the spliced data */
1823 ret_splice += metadata_payload_size;
1824 len += metadata_payload_size;
1825 /*
1826 * We do this so the return value can match the len passed as
1827 * argument to this function.
1828 */
1829 written -= metadata_payload_size;
f02e1e8a
DG
1830 }
1831
1832 /* Splice data out */
fb3a43a9 1833 ret_splice = splice(splice_pipe[0], NULL, outfd, NULL,
f02e1e8a 1834 ret_splice, SPLICE_F_MOVE | SPLICE_F_MORE);
6f2b2a45
JD
1835 DBG("Consumer splice pipe to file (out_fd: %d), ret %zd",
1836 outfd, ret_splice);
f02e1e8a 1837 if (ret_splice < 0) {
d02b8372 1838 ret = errno;
ad0b0d23
DG
1839 written = -ret;
1840 relayd_hang_up = 1;
1841 goto write_error;
f02e1e8a 1842 } else if (ret_splice > len) {
d02b8372
DG
1843 /*
1844 * We don't expect this code path to be executed but you never know
1845 * so this is an extra protection agains a buggy splice().
1846 */
f02e1e8a 1847 ret = errno;
ad0b0d23 1848 written += ret_splice;
d02b8372
DG
1849 PERROR("Wrote more data than requested %zd (len: %lu)", ret_splice,
1850 len);
f02e1e8a 1851 goto splice_error;
d02b8372
DG
1852 } else {
1853 /* All good, update current len and continue. */
1854 len -= ret_splice;
f02e1e8a 1855 }
f02e1e8a
DG
1856
1857 /* This call is useless on a socket so better save a syscall. */
1858 if (!relayd) {
1859 /* This won't block, but will start writeout asynchronously */
1860 lttng_sync_file_range(outfd, stream->out_fd_offset, ret_splice,
1861 SYNC_FILE_RANGE_WRITE);
1862 stream->out_fd_offset += ret_splice;
1863 }
e5d1a9b3 1864 stream->output_written += ret_splice;
f02e1e8a
DG
1865 written += ret_splice;
1866 }
1867 lttng_consumer_sync_trace_file(stream, orig_offset);
f02e1e8a
DG
1868 goto end;
1869
8994307f
DG
1870write_error:
1871 /*
1872 * This is a special case that the relayd has closed its socket. Let's
1873 * cleanup the relayd object and all associated streams.
1874 */
1875 if (relayd && relayd_hang_up) {
1876 cleanup_relayd(relayd, ctx);
1877 /* Skip splice error so the consumer does not fail */
1878 goto end;
1879 }
1880
f02e1e8a
DG
1881splice_error:
1882 /* send the appropriate error description to sessiond */
1883 switch (ret) {
f02e1e8a 1884 case EINVAL:
f73fabfd 1885 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_SPLICE_EINVAL);
f02e1e8a
DG
1886 break;
1887 case ENOMEM:
f73fabfd 1888 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_SPLICE_ENOMEM);
f02e1e8a
DG
1889 break;
1890 case ESPIPE:
f73fabfd 1891 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_SPLICE_ESPIPE);
f02e1e8a
DG
1892 break;
1893 }
1894
1895end:
1896 if (relayd && stream->metadata_flag) {
1897 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
1898 }
1899
1900 rcu_read_unlock();
1901 return written;
3bd1e081
MD
1902}
1903
1904/*
1905 * Take a snapshot for a specific fd
1906 *
1907 * Returns 0 on success, < 0 on error
1908 */
ffe60014 1909int lttng_consumer_take_snapshot(struct lttng_consumer_stream *stream)
3bd1e081
MD
1910{
1911 switch (consumer_data.type) {
1912 case LTTNG_CONSUMER_KERNEL:
ffe60014 1913 return lttng_kconsumer_take_snapshot(stream);
7753dea8
MD
1914 case LTTNG_CONSUMER32_UST:
1915 case LTTNG_CONSUMER64_UST:
ffe60014 1916 return lttng_ustconsumer_take_snapshot(stream);
3bd1e081
MD
1917 default:
1918 ERR("Unknown consumer_data type");
1919 assert(0);
1920 return -ENOSYS;
1921 }
3bd1e081
MD
1922}
1923
1924/*
1925 * Get the produced position
1926 *
1927 * Returns 0 on success, < 0 on error
1928 */
ffe60014 1929int lttng_consumer_get_produced_snapshot(struct lttng_consumer_stream *stream,
3bd1e081
MD
1930 unsigned long *pos)
1931{
1932 switch (consumer_data.type) {
1933 case LTTNG_CONSUMER_KERNEL:
ffe60014 1934 return lttng_kconsumer_get_produced_snapshot(stream, pos);
7753dea8
MD
1935 case LTTNG_CONSUMER32_UST:
1936 case LTTNG_CONSUMER64_UST:
ffe60014 1937 return lttng_ustconsumer_get_produced_snapshot(stream, pos);
3bd1e081
MD
1938 default:
1939 ERR("Unknown consumer_data type");
1940 assert(0);
1941 return -ENOSYS;
1942 }
1943}
1944
1945int lttng_consumer_recv_cmd(struct lttng_consumer_local_data *ctx,
1946 int sock, struct pollfd *consumer_sockpoll)
1947{
1948 switch (consumer_data.type) {
1949 case LTTNG_CONSUMER_KERNEL:
1950 return lttng_kconsumer_recv_cmd(ctx, sock, consumer_sockpoll);
7753dea8
MD
1951 case LTTNG_CONSUMER32_UST:
1952 case LTTNG_CONSUMER64_UST:
3bd1e081
MD
1953 return lttng_ustconsumer_recv_cmd(ctx, sock, consumer_sockpoll);
1954 default:
1955 ERR("Unknown consumer_data type");
1956 assert(0);
1957 return -ENOSYS;
1958 }
1959}
1960
6d574024 1961void lttng_consumer_close_all_metadata(void)
d88aee68
DG
1962{
1963 switch (consumer_data.type) {
1964 case LTTNG_CONSUMER_KERNEL:
1965 /*
1966 * The Kernel consumer has a different metadata scheme so we don't
1967 * close anything because the stream will be closed by the session
1968 * daemon.
1969 */
1970 break;
1971 case LTTNG_CONSUMER32_UST:
1972 case LTTNG_CONSUMER64_UST:
1973 /*
1974 * Close all metadata streams. The metadata hash table is passed and
1975 * this call iterates over it by closing all wakeup fd. This is safe
1976 * because at this point we are sure that the metadata producer is
1977 * either dead or blocked.
1978 */
6d574024 1979 lttng_ustconsumer_close_all_metadata(metadata_ht);
d88aee68
DG
1980 break;
1981 default:
1982 ERR("Unknown consumer_data type");
1983 assert(0);
1984 }
1985}
1986
fb3a43a9
DG
1987/*
1988 * Clean up a metadata stream and free its memory.
1989 */
e316aad5
DG
1990void consumer_del_metadata_stream(struct lttng_consumer_stream *stream,
1991 struct lttng_ht *ht)
fb3a43a9 1992{
e316aad5 1993 struct lttng_consumer_channel *free_chan = NULL;
fb3a43a9
DG
1994
1995 assert(stream);
1996 /*
1997 * This call should NEVER receive regular stream. It must always be
1998 * metadata stream and this is crucial for data structure synchronization.
1999 */
2000 assert(stream->metadata_flag);
2001
e316aad5
DG
2002 DBG3("Consumer delete metadata stream %d", stream->wait_fd);
2003
74251bb8 2004 pthread_mutex_lock(&consumer_data.lock);
a9838785 2005 pthread_mutex_lock(&stream->chan->lock);
8994307f
DG
2006 pthread_mutex_lock(&stream->lock);
2007
6d574024
DG
2008 /* Remove any reference to that stream. */
2009 consumer_stream_delete(stream, ht);
ca22feea 2010
6d574024
DG
2011 /* Close down everything including the relayd if one. */
2012 consumer_stream_close(stream);
2013 /* Destroy tracer buffers of the stream. */
2014 consumer_stream_destroy_buffers(stream);
fb3a43a9
DG
2015
2016 /* Atomically decrement channel refcount since other threads can use it. */
f2ad556d 2017 if (!uatomic_sub_return(&stream->chan->refcount, 1)
ffe60014 2018 && !uatomic_read(&stream->chan->nb_init_stream_left)) {
c30aaa51 2019 /* Go for channel deletion! */
e316aad5 2020 free_chan = stream->chan;
fb3a43a9
DG
2021 }
2022
73811ecc
DG
2023 /*
2024 * Nullify the stream reference so it is not used after deletion. The
6d574024
DG
2025 * channel lock MUST be acquired before being able to check for a NULL
2026 * pointer value.
73811ecc
DG
2027 */
2028 stream->chan->metadata_stream = NULL;
2029
8994307f 2030 pthread_mutex_unlock(&stream->lock);
a9838785 2031 pthread_mutex_unlock(&stream->chan->lock);
74251bb8 2032 pthread_mutex_unlock(&consumer_data.lock);
e316aad5
DG
2033
2034 if (free_chan) {
2035 consumer_del_channel(free_chan);
2036 }
2037
6d574024 2038 consumer_stream_free(stream);
fb3a43a9
DG
2039}
2040
2041/*
2042 * Action done with the metadata stream when adding it to the consumer internal
2043 * data structures to handle it.
2044 */
5ab66908 2045int consumer_add_metadata_stream(struct lttng_consumer_stream *stream)
fb3a43a9 2046{
5ab66908 2047 struct lttng_ht *ht = metadata_ht;
e316aad5 2048 int ret = 0;
76082088 2049 struct lttng_ht_iter iter;
d88aee68 2050 struct lttng_ht_node_u64 *node;
fb3a43a9 2051
e316aad5
DG
2052 assert(stream);
2053 assert(ht);
2054
d88aee68 2055 DBG3("Adding metadata stream %" PRIu64 " to hash table", stream->key);
e316aad5
DG
2056
2057 pthread_mutex_lock(&consumer_data.lock);
a9838785 2058 pthread_mutex_lock(&stream->chan->lock);
ec6ea7d0 2059 pthread_mutex_lock(&stream->chan->timer_lock);
2e818a6a 2060 pthread_mutex_lock(&stream->lock);
e316aad5 2061
e316aad5
DG
2062 /*
2063 * From here, refcounts are updated so be _careful_ when returning an error
2064 * after this point.
2065 */
2066
fb3a43a9 2067 rcu_read_lock();
76082088
DG
2068
2069 /*
2070 * Lookup the stream just to make sure it does not exist in our internal
2071 * state. This should NEVER happen.
2072 */
d88aee68
DG
2073 lttng_ht_lookup(ht, &stream->key, &iter);
2074 node = lttng_ht_iter_get_node_u64(&iter);
76082088
DG
2075 assert(!node);
2076
e316aad5 2077 /*
ffe60014
DG
2078 * When nb_init_stream_left reaches 0, we don't need to trigger any action
2079 * in terms of destroying the associated channel, because the action that
e316aad5
DG
2080 * causes the count to become 0 also causes a stream to be added. The
2081 * channel deletion will thus be triggered by the following removal of this
2082 * stream.
2083 */
ffe60014 2084 if (uatomic_read(&stream->chan->nb_init_stream_left) > 0) {
f2ad556d
MD
2085 /* Increment refcount before decrementing nb_init_stream_left */
2086 cmm_smp_wmb();
ffe60014 2087 uatomic_dec(&stream->chan->nb_init_stream_left);
e316aad5
DG
2088 }
2089
d88aee68 2090 lttng_ht_add_unique_u64(ht, &stream->node);
ca22feea 2091
d8ef542d
MD
2092 lttng_ht_add_unique_u64(consumer_data.stream_per_chan_id_ht,
2093 &stream->node_channel_id);
2094
ca22feea
DG
2095 /*
2096 * Add stream to the stream_list_ht of the consumer data. No need to steal
2097 * the key since the HT does not use it and we allow to add redundant keys
2098 * into this table.
2099 */
d88aee68 2100 lttng_ht_add_u64(consumer_data.stream_list_ht, &stream->node_session_id);
ca22feea 2101
fb3a43a9 2102 rcu_read_unlock();
e316aad5 2103
2e818a6a 2104 pthread_mutex_unlock(&stream->lock);
a9838785 2105 pthread_mutex_unlock(&stream->chan->lock);
ec6ea7d0 2106 pthread_mutex_unlock(&stream->chan->timer_lock);
e316aad5
DG
2107 pthread_mutex_unlock(&consumer_data.lock);
2108 return ret;
fb3a43a9
DG
2109}
2110
8994307f
DG
2111/*
2112 * Delete data stream that are flagged for deletion (endpoint_status).
2113 */
2114static void validate_endpoint_status_data_stream(void)
2115{
2116 struct lttng_ht_iter iter;
2117 struct lttng_consumer_stream *stream;
2118
2119 DBG("Consumer delete flagged data stream");
2120
2121 rcu_read_lock();
2122 cds_lfht_for_each_entry(data_ht->ht, &iter.iter, stream, node.node) {
2123 /* Validate delete flag of the stream */
79d4ffb7 2124 if (stream->endpoint_status == CONSUMER_ENDPOINT_ACTIVE) {
8994307f
DG
2125 continue;
2126 }
2127 /* Delete it right now */
2128 consumer_del_stream(stream, data_ht);
2129 }
2130 rcu_read_unlock();
2131}
2132
2133/*
2134 * Delete metadata stream that are flagged for deletion (endpoint_status).
2135 */
2136static void validate_endpoint_status_metadata_stream(
2137 struct lttng_poll_event *pollset)
2138{
2139 struct lttng_ht_iter iter;
2140 struct lttng_consumer_stream *stream;
2141
2142 DBG("Consumer delete flagged metadata stream");
2143
2144 assert(pollset);
2145
2146 rcu_read_lock();
2147 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream, node.node) {
2148 /* Validate delete flag of the stream */
79d4ffb7 2149 if (stream->endpoint_status == CONSUMER_ENDPOINT_ACTIVE) {
8994307f
DG
2150 continue;
2151 }
2152 /*
2153 * Remove from pollset so the metadata thread can continue without
2154 * blocking on a deleted stream.
2155 */
2156 lttng_poll_del(pollset, stream->wait_fd);
2157
2158 /* Delete it right now */
2159 consumer_del_metadata_stream(stream, metadata_ht);
2160 }
2161 rcu_read_unlock();
2162}
2163
fb3a43a9
DG
2164/*
2165 * Thread polls on metadata file descriptor and write them on disk or on the
2166 * network.
2167 */
7d980def 2168void *consumer_thread_metadata_poll(void *data)
fb3a43a9 2169{
1fc79fb4 2170 int ret, i, pollfd, err = -1;
fb3a43a9 2171 uint32_t revents, nb_fd;
e316aad5 2172 struct lttng_consumer_stream *stream = NULL;
fb3a43a9 2173 struct lttng_ht_iter iter;
d88aee68 2174 struct lttng_ht_node_u64 *node;
fb3a43a9
DG
2175 struct lttng_poll_event events;
2176 struct lttng_consumer_local_data *ctx = data;
2177 ssize_t len;
2178
2179 rcu_register_thread();
2180
1fc79fb4
MD
2181 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_METADATA);
2182
2d57de81
MD
2183 if (testpoint(consumerd_thread_metadata)) {
2184 goto error_testpoint;
2185 }
2186
9ce5646a
MD
2187 health_code_update();
2188
fb3a43a9
DG
2189 DBG("Thread metadata poll started");
2190
fb3a43a9
DG
2191 /* Size is set to 1 for the consumer_metadata pipe */
2192 ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC);
2193 if (ret < 0) {
2194 ERR("Poll set creation failed");
d8ef542d 2195 goto end_poll;
fb3a43a9
DG
2196 }
2197
13886d2d
DG
2198 ret = lttng_poll_add(&events,
2199 lttng_pipe_get_readfd(ctx->consumer_metadata_pipe), LPOLLIN);
fb3a43a9
DG
2200 if (ret < 0) {
2201 goto end;
2202 }
2203
2204 /* Main loop */
2205 DBG("Metadata main loop started");
2206
2207 while (1) {
fb3a43a9 2208restart:
65da3cc7 2209 health_code_update();
9ce5646a 2210 health_poll_entry();
65da3cc7 2211 DBG("Metadata poll wait");
fb3a43a9 2212 ret = lttng_poll_wait(&events, -1);
65da3cc7
MD
2213 DBG("Metadata poll return from wait with %d fd(s)",
2214 LTTNG_POLL_GETNB(&events));
9ce5646a 2215 health_poll_exit();
fb3a43a9
DG
2216 DBG("Metadata event catched in thread");
2217 if (ret < 0) {
2218 if (errno == EINTR) {
e316aad5 2219 ERR("Poll EINTR catched");
fb3a43a9
DG
2220 goto restart;
2221 }
0a7555a7
MD
2222 if (LTTNG_POLL_GETNB(&events) == 0) {
2223 err = 0; /* All is OK */
2224 }
2225 goto end;
fb3a43a9
DG
2226 }
2227
0d9c5d77
DG
2228 nb_fd = ret;
2229
e316aad5 2230 /* From here, the event is a metadata wait fd */
fb3a43a9 2231 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2232 health_code_update();
2233
fb3a43a9
DG
2234 revents = LTTNG_POLL_GETEV(&events, i);
2235 pollfd = LTTNG_POLL_GETFD(&events, i);
2236
e0077699
MD
2237 if (!revents) {
2238 /* No activity for this FD (poll implementation). */
2239 continue;
2240 }
2241
13886d2d 2242 if (pollfd == lttng_pipe_get_readfd(ctx->consumer_metadata_pipe)) {
584fc280 2243 if (revents & LPOLLIN) {
13886d2d
DG
2244 ssize_t pipe_len;
2245
2246 pipe_len = lttng_pipe_read(ctx->consumer_metadata_pipe,
2247 &stream, sizeof(stream));
6cd525e8 2248 if (pipe_len < sizeof(stream)) {
584fc280
MD
2249 if (pipe_len < 0) {
2250 PERROR("read metadata stream");
2251 }
fb3a43a9 2252 /*
584fc280
MD
2253 * Remove the pipe from the poll set and continue the loop
2254 * since their might be data to consume.
fb3a43a9 2255 */
584fc280
MD
2256 lttng_poll_del(&events,
2257 lttng_pipe_get_readfd(ctx->consumer_metadata_pipe));
2258 lttng_pipe_read_close(ctx->consumer_metadata_pipe);
fb3a43a9
DG
2259 continue;
2260 }
2261
8994307f
DG
2262 /* A NULL stream means that the state has changed. */
2263 if (stream == NULL) {
2264 /* Check for deleted streams. */
2265 validate_endpoint_status_metadata_stream(&events);
3714380f 2266 goto restart;
8994307f
DG
2267 }
2268
fb3a43a9
DG
2269 DBG("Adding metadata stream %d to poll set",
2270 stream->wait_fd);
2271
fb3a43a9
DG
2272 /* Add metadata stream to the global poll events list */
2273 lttng_poll_add(&events, stream->wait_fd,
6d574024 2274 LPOLLIN | LPOLLPRI | LPOLLHUP);
584fc280
MD
2275 } else if (revents & (LPOLLERR | LPOLLHUP)) {
2276 DBG("Metadata thread pipe hung up");
2277 /*
2278 * Remove the pipe from the poll set and continue the loop
2279 * since their might be data to consume.
2280 */
2281 lttng_poll_del(&events,
2282 lttng_pipe_get_readfd(ctx->consumer_metadata_pipe));
2283 lttng_pipe_read_close(ctx->consumer_metadata_pipe);
2284 continue;
2285 } else {
2286 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
2287 goto end;
fb3a43a9
DG
2288 }
2289
e316aad5 2290 /* Handle other stream */
fb3a43a9
DG
2291 continue;
2292 }
2293
d09e1200 2294 rcu_read_lock();
d88aee68
DG
2295 {
2296 uint64_t tmp_id = (uint64_t) pollfd;
2297
2298 lttng_ht_lookup(metadata_ht, &tmp_id, &iter);
2299 }
2300 node = lttng_ht_iter_get_node_u64(&iter);
e316aad5 2301 assert(node);
fb3a43a9
DG
2302
2303 stream = caa_container_of(node, struct lttng_consumer_stream,
58b1f425 2304 node);
fb3a43a9 2305
584fc280
MD
2306 if (revents & (LPOLLIN | LPOLLPRI)) {
2307 /* Get the data out of the metadata file descriptor */
2308 DBG("Metadata available on fd %d", pollfd);
2309 assert(stream->wait_fd == pollfd);
2310
2311 do {
2312 health_code_update();
2313
2314 len = ctx->on_buffer_ready(stream, ctx);
2315 /*
2316 * We don't check the return value here since if we get
2317 * a negative len, it means an error occured thus we
2318 * simply remove it from the poll set and free the
2319 * stream.
2320 */
2321 } while (len > 0);
2322
2323 /* It's ok to have an unavailable sub-buffer */
2324 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
2325 /* Clean up stream from consumer and free it. */
2326 lttng_poll_del(&events, stream->wait_fd);
2327 consumer_del_metadata_stream(stream, metadata_ht);
2328 }
2329 } else if (revents & (LPOLLERR | LPOLLHUP)) {
e316aad5 2330 DBG("Metadata fd %d is hup|err.", pollfd);
fb3a43a9
DG
2331 if (!stream->hangup_flush_done
2332 && (consumer_data.type == LTTNG_CONSUMER32_UST
2333 || consumer_data.type == LTTNG_CONSUMER64_UST)) {
2334 DBG("Attempting to flush and consume the UST buffers");
2335 lttng_ustconsumer_on_stream_hangup(stream);
2336
2337 /* We just flushed the stream now read it. */
4bb94b75 2338 do {
9ce5646a
MD
2339 health_code_update();
2340
4bb94b75
DG
2341 len = ctx->on_buffer_ready(stream, ctx);
2342 /*
2343 * We don't check the return value here since if we get
2344 * a negative len, it means an error occured thus we
2345 * simply remove it from the poll set and free the
2346 * stream.
2347 */
2348 } while (len > 0);
fb3a43a9
DG
2349 }
2350
fb3a43a9 2351 lttng_poll_del(&events, stream->wait_fd);
e316aad5
DG
2352 /*
2353 * This call update the channel states, closes file descriptors
2354 * and securely free the stream.
2355 */
2356 consumer_del_metadata_stream(stream, metadata_ht);
584fc280
MD
2357 } else {
2358 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
88d9d15a 2359 rcu_read_unlock();
584fc280 2360 goto end;
fb3a43a9 2361 }
e316aad5 2362 /* Release RCU lock for the stream looked up */
d09e1200 2363 rcu_read_unlock();
fb3a43a9
DG
2364 }
2365 }
2366
1fc79fb4
MD
2367 /* All is OK */
2368 err = 0;
fb3a43a9
DG
2369end:
2370 DBG("Metadata poll thread exiting");
fb3a43a9 2371
d8ef542d
MD
2372 lttng_poll_clean(&events);
2373end_poll:
2d57de81 2374error_testpoint:
1fc79fb4
MD
2375 if (err) {
2376 health_error();
2377 ERR("Health error occurred in %s", __func__);
2378 }
2379 health_unregister(health_consumerd);
fb3a43a9
DG
2380 rcu_unregister_thread();
2381 return NULL;
2382}
2383
3bd1e081 2384/*
e4421fec 2385 * This thread polls the fds in the set to consume the data and write
3bd1e081
MD
2386 * it to tracefile if necessary.
2387 */
7d980def 2388void *consumer_thread_data_poll(void *data)
3bd1e081 2389{
1fc79fb4 2390 int num_rdy, num_hup, high_prio, ret, i, err = -1;
3bd1e081
MD
2391 struct pollfd *pollfd = NULL;
2392 /* local view of the streams */
c869f647 2393 struct lttng_consumer_stream **local_stream = NULL, *new_stream = NULL;
3bd1e081
MD
2394 /* local view of consumer_data.fds_count */
2395 int nb_fd = 0;
3bd1e081 2396 struct lttng_consumer_local_data *ctx = data;
00e2e675 2397 ssize_t len;
3bd1e081 2398
e7b994a3
DG
2399 rcu_register_thread();
2400
1fc79fb4
MD
2401 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_DATA);
2402
2d57de81
MD
2403 if (testpoint(consumerd_thread_data)) {
2404 goto error_testpoint;
2405 }
2406
9ce5646a
MD
2407 health_code_update();
2408
4df6c8cb
MD
2409 local_stream = zmalloc(sizeof(struct lttng_consumer_stream *));
2410 if (local_stream == NULL) {
2411 PERROR("local_stream malloc");
2412 goto end;
2413 }
3bd1e081
MD
2414
2415 while (1) {
9ce5646a
MD
2416 health_code_update();
2417
3bd1e081
MD
2418 high_prio = 0;
2419 num_hup = 0;
2420
2421 /*
e4421fec 2422 * the fds set has been updated, we need to update our
3bd1e081
MD
2423 * local array as well
2424 */
2425 pthread_mutex_lock(&consumer_data.lock);
2426 if (consumer_data.need_update) {
0e428499
DG
2427 free(pollfd);
2428 pollfd = NULL;
2429
2430 free(local_stream);
2431 local_stream = NULL;
3bd1e081 2432
02b3d176
DG
2433 /*
2434 * Allocate for all fds +1 for the consumer_data_pipe and +1 for
2435 * wake up pipe.
2436 */
2437 pollfd = zmalloc((consumer_data.stream_count + 2) * sizeof(struct pollfd));
3bd1e081 2438 if (pollfd == NULL) {
7a57cf92 2439 PERROR("pollfd malloc");
3bd1e081
MD
2440 pthread_mutex_unlock(&consumer_data.lock);
2441 goto end;
2442 }
2443
02b3d176 2444 local_stream = zmalloc((consumer_data.stream_count + 2) *
747f8642 2445 sizeof(struct lttng_consumer_stream *));
3bd1e081 2446 if (local_stream == NULL) {
7a57cf92 2447 PERROR("local_stream malloc");
3bd1e081
MD
2448 pthread_mutex_unlock(&consumer_data.lock);
2449 goto end;
2450 }
ffe60014 2451 ret = update_poll_array(ctx, &pollfd, local_stream,
43c34bc3 2452 data_ht);
3bd1e081
MD
2453 if (ret < 0) {
2454 ERR("Error in allocating pollfd or local_outfds");
f73fabfd 2455 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_POLL_ERROR);
3bd1e081
MD
2456 pthread_mutex_unlock(&consumer_data.lock);
2457 goto end;
2458 }
2459 nb_fd = ret;
2460 consumer_data.need_update = 0;
2461 }
2462 pthread_mutex_unlock(&consumer_data.lock);
2463
4078b776
MD
2464 /* No FDs and consumer_quit, consumer_cleanup the thread */
2465 if (nb_fd == 0 && consumer_quit == 1) {
1fc79fb4 2466 err = 0; /* All is OK */
4078b776
MD
2467 goto end;
2468 }
3bd1e081 2469 /* poll on the array of fds */
88f2b785 2470 restart:
02b3d176 2471 DBG("polling on %d fd", nb_fd + 2);
9ce5646a 2472 health_poll_entry();
02b3d176 2473 num_rdy = poll(pollfd, nb_fd + 2, -1);
9ce5646a 2474 health_poll_exit();
3bd1e081
MD
2475 DBG("poll num_rdy : %d", num_rdy);
2476 if (num_rdy == -1) {
88f2b785
MD
2477 /*
2478 * Restart interrupted system call.
2479 */
2480 if (errno == EINTR) {
2481 goto restart;
2482 }
7a57cf92 2483 PERROR("Poll error");
f73fabfd 2484 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_POLL_ERROR);
3bd1e081
MD
2485 goto end;
2486 } else if (num_rdy == 0) {
2487 DBG("Polling thread timed out");
2488 goto end;
2489 }
2490
3bd1e081 2491 /*
50f8ae69 2492 * If the consumer_data_pipe triggered poll go directly to the
00e2e675
DG
2493 * beginning of the loop to update the array. We want to prioritize
2494 * array update over low-priority reads.
3bd1e081 2495 */
509bb1cf 2496 if (pollfd[nb_fd].revents & (POLLIN | POLLPRI)) {
ab30f567 2497 ssize_t pipe_readlen;
04fdd819 2498
50f8ae69 2499 DBG("consumer_data_pipe wake up");
acdb9057
DG
2500 pipe_readlen = lttng_pipe_read(ctx->consumer_data_pipe,
2501 &new_stream, sizeof(new_stream));
6cd525e8
MD
2502 if (pipe_readlen < sizeof(new_stream)) {
2503 PERROR("Consumer data pipe");
23f5f35d
DG
2504 /* Continue so we can at least handle the current stream(s). */
2505 continue;
2506 }
c869f647
DG
2507
2508 /*
2509 * If the stream is NULL, just ignore it. It's also possible that
2510 * the sessiond poll thread changed the consumer_quit state and is
2511 * waking us up to test it.
2512 */
2513 if (new_stream == NULL) {
8994307f 2514 validate_endpoint_status_data_stream();
c869f647
DG
2515 continue;
2516 }
2517
c869f647 2518 /* Continue to update the local streams and handle prio ones */
3bd1e081
MD
2519 continue;
2520 }
2521
02b3d176
DG
2522 /* Handle wakeup pipe. */
2523 if (pollfd[nb_fd + 1].revents & (POLLIN | POLLPRI)) {
2524 char dummy;
2525 ssize_t pipe_readlen;
2526
2527 pipe_readlen = lttng_pipe_read(ctx->consumer_wakeup_pipe, &dummy,
2528 sizeof(dummy));
2529 if (pipe_readlen < 0) {
2530 PERROR("Consumer data wakeup pipe");
2531 }
2532 /* We've been awakened to handle stream(s). */
2533 ctx->has_wakeup = 0;
2534 }
2535
3bd1e081
MD
2536 /* Take care of high priority channels first. */
2537 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2538 health_code_update();
2539
9617607b
DG
2540 if (local_stream[i] == NULL) {
2541 continue;
2542 }
fb3a43a9 2543 if (pollfd[i].revents & POLLPRI) {
d41f73b7
MD
2544 DBG("Urgent read on fd %d", pollfd[i].fd);
2545 high_prio = 1;
4078b776 2546 len = ctx->on_buffer_ready(local_stream[i], ctx);
d41f73b7 2547 /* it's ok to have an unavailable sub-buffer */
b64403e3 2548 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
ab1027f4
DG
2549 /* Clean the stream and free it. */
2550 consumer_del_stream(local_stream[i], data_ht);
9617607b 2551 local_stream[i] = NULL;
4078b776
MD
2552 } else if (len > 0) {
2553 local_stream[i]->data_read = 1;
d41f73b7 2554 }
3bd1e081
MD
2555 }
2556 }
2557
4078b776
MD
2558 /*
2559 * If we read high prio channel in this loop, try again
2560 * for more high prio data.
2561 */
2562 if (high_prio) {
3bd1e081
MD
2563 continue;
2564 }
2565
2566 /* Take care of low priority channels. */
4078b776 2567 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2568 health_code_update();
2569
9617607b
DG
2570 if (local_stream[i] == NULL) {
2571 continue;
2572 }
4078b776 2573 if ((pollfd[i].revents & POLLIN) ||
02b3d176
DG
2574 local_stream[i]->hangup_flush_done ||
2575 local_stream[i]->has_data) {
4078b776
MD
2576 DBG("Normal read on fd %d", pollfd[i].fd);
2577 len = ctx->on_buffer_ready(local_stream[i], ctx);
2578 /* it's ok to have an unavailable sub-buffer */
b64403e3 2579 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
ab1027f4
DG
2580 /* Clean the stream and free it. */
2581 consumer_del_stream(local_stream[i], data_ht);
9617607b 2582 local_stream[i] = NULL;
4078b776
MD
2583 } else if (len > 0) {
2584 local_stream[i]->data_read = 1;
2585 }
2586 }
2587 }
2588
2589 /* Handle hangup and errors */
2590 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2591 health_code_update();
2592
9617607b
DG
2593 if (local_stream[i] == NULL) {
2594 continue;
2595 }
4078b776
MD
2596 if (!local_stream[i]->hangup_flush_done
2597 && (pollfd[i].revents & (POLLHUP | POLLERR | POLLNVAL))
2598 && (consumer_data.type == LTTNG_CONSUMER32_UST
2599 || consumer_data.type == LTTNG_CONSUMER64_UST)) {
2600 DBG("fd %d is hup|err|nval. Attempting flush and read.",
9617607b 2601 pollfd[i].fd);
4078b776
MD
2602 lttng_ustconsumer_on_stream_hangup(local_stream[i]);
2603 /* Attempt read again, for the data we just flushed. */
2604 local_stream[i]->data_read = 1;
2605 }
2606 /*
2607 * If the poll flag is HUP/ERR/NVAL and we have
2608 * read no data in this pass, we can remove the
2609 * stream from its hash table.
2610 */
2611 if ((pollfd[i].revents & POLLHUP)) {
2612 DBG("Polling fd %d tells it has hung up.", pollfd[i].fd);
2613 if (!local_stream[i]->data_read) {
43c34bc3 2614 consumer_del_stream(local_stream[i], data_ht);
9617607b 2615 local_stream[i] = NULL;
4078b776
MD
2616 num_hup++;
2617 }
2618 } else if (pollfd[i].revents & POLLERR) {
2619 ERR("Error returned in polling fd %d.", pollfd[i].fd);
2620 if (!local_stream[i]->data_read) {
43c34bc3 2621 consumer_del_stream(local_stream[i], data_ht);
9617607b 2622 local_stream[i] = NULL;
4078b776
MD
2623 num_hup++;
2624 }
2625 } else if (pollfd[i].revents & POLLNVAL) {
2626 ERR("Polling fd %d tells fd is not open.", pollfd[i].fd);
2627 if (!local_stream[i]->data_read) {
43c34bc3 2628 consumer_del_stream(local_stream[i], data_ht);
9617607b 2629 local_stream[i] = NULL;
4078b776 2630 num_hup++;
3bd1e081
MD
2631 }
2632 }
9617607b
DG
2633 if (local_stream[i] != NULL) {
2634 local_stream[i]->data_read = 0;
2635 }
3bd1e081
MD
2636 }
2637 }
1fc79fb4
MD
2638 /* All is OK */
2639 err = 0;
3bd1e081
MD
2640end:
2641 DBG("polling thread exiting");
0e428499
DG
2642 free(pollfd);
2643 free(local_stream);
fb3a43a9
DG
2644
2645 /*
2646 * Close the write side of the pipe so epoll_wait() in
7d980def
DG
2647 * consumer_thread_metadata_poll can catch it. The thread is monitoring the
2648 * read side of the pipe. If we close them both, epoll_wait strangely does
2649 * not return and could create a endless wait period if the pipe is the
2650 * only tracked fd in the poll set. The thread will take care of closing
2651 * the read side.
fb3a43a9 2652 */
13886d2d 2653 (void) lttng_pipe_write_close(ctx->consumer_metadata_pipe);
fb3a43a9 2654
2d57de81 2655error_testpoint:
1fc79fb4
MD
2656 if (err) {
2657 health_error();
2658 ERR("Health error occurred in %s", __func__);
2659 }
2660 health_unregister(health_consumerd);
2661
e7b994a3 2662 rcu_unregister_thread();
3bd1e081
MD
2663 return NULL;
2664}
2665
d8ef542d
MD
2666/*
2667 * Close wake-up end of each stream belonging to the channel. This will
2668 * allow the poll() on the stream read-side to detect when the
2669 * write-side (application) finally closes them.
2670 */
2671static
2672void consumer_close_channel_streams(struct lttng_consumer_channel *channel)
2673{
2674 struct lttng_ht *ht;
2675 struct lttng_consumer_stream *stream;
2676 struct lttng_ht_iter iter;
2677
2678 ht = consumer_data.stream_per_chan_id_ht;
2679
2680 rcu_read_lock();
2681 cds_lfht_for_each_entry_duplicate(ht->ht,
2682 ht->hash_fct(&channel->key, lttng_ht_seed),
2683 ht->match_fct, &channel->key,
2684 &iter.iter, stream, node_channel_id.node) {
f2ad556d
MD
2685 /*
2686 * Protect against teardown with mutex.
2687 */
2688 pthread_mutex_lock(&stream->lock);
2689 if (cds_lfht_is_node_deleted(&stream->node.node)) {
2690 goto next;
2691 }
d8ef542d
MD
2692 switch (consumer_data.type) {
2693 case LTTNG_CONSUMER_KERNEL:
2694 break;
2695 case LTTNG_CONSUMER32_UST:
2696 case LTTNG_CONSUMER64_UST:
b4a650f3
DG
2697 if (stream->metadata_flag) {
2698 /* Safe and protected by the stream lock. */
2699 lttng_ustconsumer_close_metadata(stream->chan);
2700 } else {
2701 /*
2702 * Note: a mutex is taken internally within
2703 * liblttng-ust-ctl to protect timer wakeup_fd
2704 * use from concurrent close.
2705 */
2706 lttng_ustconsumer_close_stream_wakeup(stream);
2707 }
d8ef542d
MD
2708 break;
2709 default:
2710 ERR("Unknown consumer_data type");
2711 assert(0);
2712 }
f2ad556d
MD
2713 next:
2714 pthread_mutex_unlock(&stream->lock);
d8ef542d
MD
2715 }
2716 rcu_read_unlock();
2717}
2718
2719static void destroy_channel_ht(struct lttng_ht *ht)
2720{
2721 struct lttng_ht_iter iter;
2722 struct lttng_consumer_channel *channel;
2723 int ret;
2724
2725 if (ht == NULL) {
2726 return;
2727 }
2728
2729 rcu_read_lock();
2730 cds_lfht_for_each_entry(ht->ht, &iter.iter, channel, wait_fd_node.node) {
2731 ret = lttng_ht_del(ht, &iter);
2732 assert(ret != 0);
2733 }
2734 rcu_read_unlock();
2735
2736 lttng_ht_destroy(ht);
2737}
2738
2739/*
2740 * This thread polls the channel fds to detect when they are being
2741 * closed. It closes all related streams if the channel is detected as
2742 * closed. It is currently only used as a shim layer for UST because the
2743 * consumerd needs to keep the per-stream wakeup end of pipes open for
2744 * periodical flush.
2745 */
2746void *consumer_thread_channel_poll(void *data)
2747{
1fc79fb4 2748 int ret, i, pollfd, err = -1;
d8ef542d
MD
2749 uint32_t revents, nb_fd;
2750 struct lttng_consumer_channel *chan = NULL;
2751 struct lttng_ht_iter iter;
2752 struct lttng_ht_node_u64 *node;
2753 struct lttng_poll_event events;
2754 struct lttng_consumer_local_data *ctx = data;
2755 struct lttng_ht *channel_ht;
2756
2757 rcu_register_thread();
2758
1fc79fb4
MD
2759 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_CHANNEL);
2760
2d57de81
MD
2761 if (testpoint(consumerd_thread_channel)) {
2762 goto error_testpoint;
2763 }
2764
9ce5646a
MD
2765 health_code_update();
2766
d8ef542d
MD
2767 channel_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
2768 if (!channel_ht) {
2769 /* ENOMEM at this point. Better to bail out. */
2770 goto end_ht;
2771 }
2772
2773 DBG("Thread channel poll started");
2774
2775 /* Size is set to 1 for the consumer_channel pipe */
2776 ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC);
2777 if (ret < 0) {
2778 ERR("Poll set creation failed");
2779 goto end_poll;
2780 }
2781
2782 ret = lttng_poll_add(&events, ctx->consumer_channel_pipe[0], LPOLLIN);
2783 if (ret < 0) {
2784 goto end;
2785 }
2786
2787 /* Main loop */
2788 DBG("Channel main loop started");
2789
2790 while (1) {
d8ef542d 2791restart:
65da3cc7
MD
2792 health_code_update();
2793 DBG("Channel poll wait");
9ce5646a 2794 health_poll_entry();
d8ef542d 2795 ret = lttng_poll_wait(&events, -1);
65da3cc7
MD
2796 DBG("Channel poll return from wait with %d fd(s)",
2797 LTTNG_POLL_GETNB(&events));
9ce5646a 2798 health_poll_exit();
d8ef542d
MD
2799 DBG("Channel event catched in thread");
2800 if (ret < 0) {
2801 if (errno == EINTR) {
2802 ERR("Poll EINTR catched");
2803 goto restart;
2804 }
0a7555a7
MD
2805 if (LTTNG_POLL_GETNB(&events) == 0) {
2806 err = 0; /* All is OK */
2807 }
d8ef542d
MD
2808 goto end;
2809 }
2810
2811 nb_fd = ret;
2812
2813 /* From here, the event is a channel wait fd */
2814 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2815 health_code_update();
2816
d8ef542d
MD
2817 revents = LTTNG_POLL_GETEV(&events, i);
2818 pollfd = LTTNG_POLL_GETFD(&events, i);
2819
d8ef542d 2820 if (!revents) {
e0077699 2821 /* No activity for this FD (poll implementation). */
d8ef542d
MD
2822 continue;
2823 }
e0077699 2824
d8ef542d 2825 if (pollfd == ctx->consumer_channel_pipe[0]) {
584fc280 2826 if (revents & LPOLLIN) {
d8ef542d 2827 enum consumer_channel_action action;
a0cbdd2e 2828 uint64_t key;
d8ef542d 2829
a0cbdd2e 2830 ret = read_channel_pipe(ctx, &chan, &key, &action);
d8ef542d 2831 if (ret <= 0) {
584fc280
MD
2832 if (ret < 0) {
2833 ERR("Error reading channel pipe");
2834 }
2835 lttng_poll_del(&events, ctx->consumer_channel_pipe[0]);
d8ef542d
MD
2836 continue;
2837 }
2838
2839 switch (action) {
2840 case CONSUMER_CHANNEL_ADD:
2841 DBG("Adding channel %d to poll set",
2842 chan->wait_fd);
2843
2844 lttng_ht_node_init_u64(&chan->wait_fd_node,
2845 chan->wait_fd);
c7260a81 2846 rcu_read_lock();
d8ef542d
MD
2847 lttng_ht_add_unique_u64(channel_ht,
2848 &chan->wait_fd_node);
c7260a81 2849 rcu_read_unlock();
d8ef542d
MD
2850 /* Add channel to the global poll events list */
2851 lttng_poll_add(&events, chan->wait_fd,
584fc280 2852 LPOLLERR | LPOLLHUP);
d8ef542d 2853 break;
a0cbdd2e
MD
2854 case CONSUMER_CHANNEL_DEL:
2855 {
b4a650f3
DG
2856 /*
2857 * This command should never be called if the channel
2858 * has streams monitored by either the data or metadata
2859 * thread. The consumer only notify this thread with a
2860 * channel del. command if it receives a destroy
2861 * channel command from the session daemon that send it
2862 * if a command prior to the GET_CHANNEL failed.
2863 */
2864
c7260a81 2865 rcu_read_lock();
a0cbdd2e
MD
2866 chan = consumer_find_channel(key);
2867 if (!chan) {
c7260a81 2868 rcu_read_unlock();
a0cbdd2e
MD
2869 ERR("UST consumer get channel key %" PRIu64 " not found for del channel", key);
2870 break;
2871 }
2872 lttng_poll_del(&events, chan->wait_fd);
f623cc0b 2873 iter.iter.node = &chan->wait_fd_node.node;
a0cbdd2e
MD
2874 ret = lttng_ht_del(channel_ht, &iter);
2875 assert(ret == 0);
a0cbdd2e 2876
f2a444f1
DG
2877 switch (consumer_data.type) {
2878 case LTTNG_CONSUMER_KERNEL:
2879 break;
2880 case LTTNG_CONSUMER32_UST:
2881 case LTTNG_CONSUMER64_UST:
212d67a2
DG
2882 health_code_update();
2883 /* Destroy streams that might have been left in the stream list. */
2884 clean_channel_stream_list(chan);
f2a444f1
DG
2885 break;
2886 default:
2887 ERR("Unknown consumer_data type");
2888 assert(0);
2889 }
2890
a0cbdd2e
MD
2891 /*
2892 * Release our own refcount. Force channel deletion even if
2893 * streams were not initialized.
2894 */
2895 if (!uatomic_sub_return(&chan->refcount, 1)) {
2896 consumer_del_channel(chan);
2897 }
c7260a81 2898 rcu_read_unlock();
a0cbdd2e
MD
2899 goto restart;
2900 }
d8ef542d
MD
2901 case CONSUMER_CHANNEL_QUIT:
2902 /*
2903 * Remove the pipe from the poll set and continue the loop
2904 * since their might be data to consume.
2905 */
2906 lttng_poll_del(&events, ctx->consumer_channel_pipe[0]);
2907 continue;
2908 default:
2909 ERR("Unknown action");
2910 break;
2911 }
584fc280
MD
2912 } else if (revents & (LPOLLERR | LPOLLHUP)) {
2913 DBG("Channel thread pipe hung up");
2914 /*
2915 * Remove the pipe from the poll set and continue the loop
2916 * since their might be data to consume.
2917 */
2918 lttng_poll_del(&events, ctx->consumer_channel_pipe[0]);
2919 continue;
2920 } else {
2921 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
2922 goto end;
d8ef542d
MD
2923 }
2924
2925 /* Handle other stream */
2926 continue;
2927 }
2928
2929 rcu_read_lock();
2930 {
2931 uint64_t tmp_id = (uint64_t) pollfd;
2932
2933 lttng_ht_lookup(channel_ht, &tmp_id, &iter);
2934 }
2935 node = lttng_ht_iter_get_node_u64(&iter);
2936 assert(node);
2937
2938 chan = caa_container_of(node, struct lttng_consumer_channel,
2939 wait_fd_node);
2940
2941 /* Check for error event */
2942 if (revents & (LPOLLERR | LPOLLHUP)) {
2943 DBG("Channel fd %d is hup|err.", pollfd);
2944
2945 lttng_poll_del(&events, chan->wait_fd);
2946 ret = lttng_ht_del(channel_ht, &iter);
2947 assert(ret == 0);
b4a650f3
DG
2948
2949 /*
2950 * This will close the wait fd for each stream associated to
2951 * this channel AND monitored by the data/metadata thread thus
2952 * will be clean by the right thread.
2953 */
d8ef542d 2954 consumer_close_channel_streams(chan);
f2ad556d
MD
2955
2956 /* Release our own refcount */
2957 if (!uatomic_sub_return(&chan->refcount, 1)
2958 && !uatomic_read(&chan->nb_init_stream_left)) {
2959 consumer_del_channel(chan);
2960 }
584fc280
MD
2961 } else {
2962 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
2963 rcu_read_unlock();
2964 goto end;
d8ef542d
MD
2965 }
2966
2967 /* Release RCU lock for the channel looked up */
2968 rcu_read_unlock();
2969 }
2970 }
2971
1fc79fb4
MD
2972 /* All is OK */
2973 err = 0;
d8ef542d
MD
2974end:
2975 lttng_poll_clean(&events);
2976end_poll:
2977 destroy_channel_ht(channel_ht);
2978end_ht:
2d57de81 2979error_testpoint:
d8ef542d 2980 DBG("Channel poll thread exiting");
1fc79fb4
MD
2981 if (err) {
2982 health_error();
2983 ERR("Health error occurred in %s", __func__);
2984 }
2985 health_unregister(health_consumerd);
d8ef542d
MD
2986 rcu_unregister_thread();
2987 return NULL;
2988}
2989
331744e3
JD
2990static int set_metadata_socket(struct lttng_consumer_local_data *ctx,
2991 struct pollfd *sockpoll, int client_socket)
2992{
2993 int ret;
2994
2995 assert(ctx);
2996 assert(sockpoll);
2997
84382d49
MD
2998 ret = lttng_consumer_poll_socket(sockpoll);
2999 if (ret) {
331744e3
JD
3000 goto error;
3001 }
3002 DBG("Metadata connection on client_socket");
3003
3004 /* Blocking call, waiting for transmission */
3005 ctx->consumer_metadata_socket = lttcomm_accept_unix_sock(client_socket);
3006 if (ctx->consumer_metadata_socket < 0) {
3007 WARN("On accept metadata");
3008 ret = -1;
3009 goto error;
3010 }
3011 ret = 0;
3012
3013error:
3014 return ret;
3015}
3016
3bd1e081
MD
3017/*
3018 * This thread listens on the consumerd socket and receives the file
3019 * descriptors from the session daemon.
3020 */
7d980def 3021void *consumer_thread_sessiond_poll(void *data)
3bd1e081 3022{
1fc79fb4 3023 int sock = -1, client_socket, ret, err = -1;
3bd1e081
MD
3024 /*
3025 * structure to poll for incoming data on communication socket avoids
3026 * making blocking sockets.
3027 */
3028 struct pollfd consumer_sockpoll[2];
3029 struct lttng_consumer_local_data *ctx = data;
3030
e7b994a3
DG
3031 rcu_register_thread();
3032
1fc79fb4
MD
3033 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_SESSIOND);
3034
2d57de81
MD
3035 if (testpoint(consumerd_thread_sessiond)) {
3036 goto error_testpoint;
3037 }
3038
9ce5646a
MD
3039 health_code_update();
3040
3bd1e081
MD
3041 DBG("Creating command socket %s", ctx->consumer_command_sock_path);
3042 unlink(ctx->consumer_command_sock_path);
3043 client_socket = lttcomm_create_unix_sock(ctx->consumer_command_sock_path);
3044 if (client_socket < 0) {
3045 ERR("Cannot create command socket");
3046 goto end;
3047 }
3048
3049 ret = lttcomm_listen_unix_sock(client_socket);
3050 if (ret < 0) {
3051 goto end;
3052 }
3053
32258573 3054 DBG("Sending ready command to lttng-sessiond");
f73fabfd 3055 ret = lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_COMMAND_SOCK_READY);
3bd1e081
MD
3056 /* return < 0 on error, but == 0 is not fatal */
3057 if (ret < 0) {
32258573 3058 ERR("Error sending ready command to lttng-sessiond");
3bd1e081
MD
3059 goto end;
3060 }
3061
3bd1e081
MD
3062 /* prepare the FDs to poll : to client socket and the should_quit pipe */
3063 consumer_sockpoll[0].fd = ctx->consumer_should_quit[0];
3064 consumer_sockpoll[0].events = POLLIN | POLLPRI;
3065 consumer_sockpoll[1].fd = client_socket;
3066 consumer_sockpoll[1].events = POLLIN | POLLPRI;
3067
84382d49
MD
3068 ret = lttng_consumer_poll_socket(consumer_sockpoll);
3069 if (ret) {
3070 if (ret > 0) {
3071 /* should exit */
3072 err = 0;
3073 }
3bd1e081
MD
3074 goto end;
3075 }
3076 DBG("Connection on client_socket");
3077
3078 /* Blocking call, waiting for transmission */
3079 sock = lttcomm_accept_unix_sock(client_socket);
534d2592 3080 if (sock < 0) {
3bd1e081
MD
3081 WARN("On accept");
3082 goto end;
3083 }
3bd1e081 3084
331744e3
JD
3085 /*
3086 * Setup metadata socket which is the second socket connection on the
3087 * command unix socket.
3088 */
3089 ret = set_metadata_socket(ctx, consumer_sockpoll, client_socket);
84382d49
MD
3090 if (ret) {
3091 if (ret > 0) {
3092 /* should exit */
3093 err = 0;
3094 }
331744e3
JD
3095 goto end;
3096 }
3097
d96f09c6
DG
3098 /* This socket is not useful anymore. */
3099 ret = close(client_socket);
3100 if (ret < 0) {
3101 PERROR("close client_socket");
3102 }
3103 client_socket = -1;
3104
3bd1e081
MD
3105 /* update the polling structure to poll on the established socket */
3106 consumer_sockpoll[1].fd = sock;
3107 consumer_sockpoll[1].events = POLLIN | POLLPRI;
3108
3109 while (1) {
9ce5646a
MD
3110 health_code_update();
3111
3112 health_poll_entry();
3113 ret = lttng_consumer_poll_socket(consumer_sockpoll);
3114 health_poll_exit();
84382d49
MD
3115 if (ret) {
3116 if (ret > 0) {
3117 /* should exit */
3118 err = 0;
3119 }
3bd1e081
MD
3120 goto end;
3121 }
3122 DBG("Incoming command on sock");
3123 ret = lttng_consumer_recv_cmd(ctx, sock, consumer_sockpoll);
4cbc1a04
DG
3124 if (ret <= 0) {
3125 /*
3126 * This could simply be a session daemon quitting. Don't output
3127 * ERR() here.
3128 */
3129 DBG("Communication interrupted on command socket");
41ba6035 3130 err = 0;
3bd1e081
MD
3131 goto end;
3132 }
3133 if (consumer_quit) {
3134 DBG("consumer_thread_receive_fds received quit from signal");
1fc79fb4 3135 err = 0; /* All is OK */
3bd1e081
MD
3136 goto end;
3137 }
ffe60014 3138 DBG("received command on sock");
3bd1e081 3139 }
1fc79fb4
MD
3140 /* All is OK */
3141 err = 0;
3142
3bd1e081 3143end:
ffe60014 3144 DBG("Consumer thread sessiond poll exiting");
3bd1e081 3145
d88aee68
DG
3146 /*
3147 * Close metadata streams since the producer is the session daemon which
3148 * just died.
3149 *
3150 * NOTE: for now, this only applies to the UST tracer.
3151 */
6d574024 3152 lttng_consumer_close_all_metadata();
d88aee68 3153
3bd1e081
MD
3154 /*
3155 * when all fds have hung up, the polling thread
3156 * can exit cleanly
3157 */
3158 consumer_quit = 1;
3159
04fdd819 3160 /*
c869f647 3161 * Notify the data poll thread to poll back again and test the
8994307f 3162 * consumer_quit state that we just set so to quit gracefully.
04fdd819 3163 */
acdb9057 3164 notify_thread_lttng_pipe(ctx->consumer_data_pipe);
c869f647 3165
a0cbdd2e 3166 notify_channel_pipe(ctx, NULL, -1, CONSUMER_CHANNEL_QUIT);
d8ef542d 3167
5c635c72
MD
3168 notify_health_quit_pipe(health_quit_pipe);
3169
d96f09c6
DG
3170 /* Cleaning up possibly open sockets. */
3171 if (sock >= 0) {
3172 ret = close(sock);
3173 if (ret < 0) {
3174 PERROR("close sock sessiond poll");
3175 }
3176 }
3177 if (client_socket >= 0) {
38476d24 3178 ret = close(client_socket);
d96f09c6
DG
3179 if (ret < 0) {
3180 PERROR("close client_socket sessiond poll");
3181 }
3182 }
3183
2d57de81 3184error_testpoint:
1fc79fb4
MD
3185 if (err) {
3186 health_error();
3187 ERR("Health error occurred in %s", __func__);
3188 }
3189 health_unregister(health_consumerd);
3190
e7b994a3 3191 rcu_unregister_thread();
3bd1e081
MD
3192 return NULL;
3193}
d41f73b7 3194
4078b776 3195ssize_t lttng_consumer_read_subbuffer(struct lttng_consumer_stream *stream,
d41f73b7
MD
3196 struct lttng_consumer_local_data *ctx)
3197{
74251bb8
DG
3198 ssize_t ret;
3199
3200 pthread_mutex_lock(&stream->lock);
94d49140
JD
3201 if (stream->metadata_flag) {
3202 pthread_mutex_lock(&stream->metadata_rdv_lock);
3203 }
74251bb8 3204
d41f73b7
MD
3205 switch (consumer_data.type) {
3206 case LTTNG_CONSUMER_KERNEL:
74251bb8
DG
3207 ret = lttng_kconsumer_read_subbuffer(stream, ctx);
3208 break;
7753dea8
MD
3209 case LTTNG_CONSUMER32_UST:
3210 case LTTNG_CONSUMER64_UST:
74251bb8
DG
3211 ret = lttng_ustconsumer_read_subbuffer(stream, ctx);
3212 break;
d41f73b7
MD
3213 default:
3214 ERR("Unknown consumer_data type");
3215 assert(0);
74251bb8
DG
3216 ret = -ENOSYS;
3217 break;
d41f73b7 3218 }
74251bb8 3219
94d49140
JD
3220 if (stream->metadata_flag) {
3221 pthread_cond_broadcast(&stream->metadata_rdv);
3222 pthread_mutex_unlock(&stream->metadata_rdv_lock);
3223 }
74251bb8
DG
3224 pthread_mutex_unlock(&stream->lock);
3225 return ret;
d41f73b7
MD
3226}
3227
3228int lttng_consumer_on_recv_stream(struct lttng_consumer_stream *stream)
3229{
3230 switch (consumer_data.type) {
3231 case LTTNG_CONSUMER_KERNEL:
3232 return lttng_kconsumer_on_recv_stream(stream);
7753dea8
MD
3233 case LTTNG_CONSUMER32_UST:
3234 case LTTNG_CONSUMER64_UST:
d41f73b7
MD
3235 return lttng_ustconsumer_on_recv_stream(stream);
3236 default:
3237 ERR("Unknown consumer_data type");
3238 assert(0);
3239 return -ENOSYS;
3240 }
3241}
e4421fec
DG
3242
3243/*
3244 * Allocate and set consumer data hash tables.
3245 */
282dadbc 3246int lttng_consumer_init(void)
e4421fec 3247{
d88aee68 3248 consumer_data.channel_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3249 if (!consumer_data.channel_ht) {
3250 goto error;
3251 }
3252
d88aee68 3253 consumer_data.relayd_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3254 if (!consumer_data.relayd_ht) {
3255 goto error;
3256 }
3257
d88aee68 3258 consumer_data.stream_list_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3259 if (!consumer_data.stream_list_ht) {
3260 goto error;
3261 }
3262
d8ef542d 3263 consumer_data.stream_per_chan_id_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3264 if (!consumer_data.stream_per_chan_id_ht) {
3265 goto error;
3266 }
3267
3268 data_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
3269 if (!data_ht) {
3270 goto error;
3271 }
3272
3273 metadata_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
3274 if (!metadata_ht) {
3275 goto error;
3276 }
3277
3278 return 0;
3279
3280error:
3281 return -1;
e4421fec 3282}
7735ef9e
DG
3283
3284/*
3285 * Process the ADD_RELAYD command receive by a consumer.
3286 *
3287 * This will create a relayd socket pair and add it to the relayd hash table.
3288 * The caller MUST acquire a RCU read side lock before calling it.
3289 */
da009f2c 3290int consumer_add_relayd_socket(uint64_t net_seq_idx, int sock_type,
7735ef9e 3291 struct lttng_consumer_local_data *ctx, int sock,
6151a90f 3292 struct pollfd *consumer_sockpoll,
d3e2ba59
JD
3293 struct lttcomm_relayd_sock *relayd_sock, uint64_t sessiond_id,
3294 uint64_t relayd_session_id)
7735ef9e 3295{
cd2b09ed 3296 int fd = -1, ret = -1, relayd_created = 0;
0c759fc9 3297 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
d4298c99 3298 struct consumer_relayd_sock_pair *relayd = NULL;
7735ef9e 3299
6151a90f
JD
3300 assert(ctx);
3301 assert(relayd_sock);
3302
da009f2c 3303 DBG("Consumer adding relayd socket (idx: %" PRIu64 ")", net_seq_idx);
7735ef9e
DG
3304
3305 /* Get relayd reference if exists. */
3306 relayd = consumer_find_relayd(net_seq_idx);
3307 if (relayd == NULL) {
da009f2c 3308 assert(sock_type == LTTNG_STREAM_CONTROL);
7735ef9e
DG
3309 /* Not found. Allocate one. */
3310 relayd = consumer_allocate_relayd_sock_pair(net_seq_idx);
3311 if (relayd == NULL) {
0d08d75e 3312 ret = -ENOMEM;
618a6a28
MD
3313 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
3314 goto error;
0d08d75e 3315 } else {
30319bcb 3316 relayd->sessiond_session_id = sessiond_id;
0d08d75e 3317 relayd_created = 1;
7735ef9e 3318 }
0d08d75e
DG
3319
3320 /*
3321 * This code path MUST continue to the consumer send status message to
3322 * we can notify the session daemon and continue our work without
3323 * killing everything.
3324 */
da009f2c
MD
3325 } else {
3326 /*
3327 * relayd key should never be found for control socket.
3328 */
3329 assert(sock_type != LTTNG_STREAM_CONTROL);
0d08d75e
DG
3330 }
3331
3332 /* First send a status message before receiving the fds. */
0c759fc9 3333 ret = consumer_send_status_msg(sock, LTTCOMM_CONSUMERD_SUCCESS);
618a6a28 3334 if (ret < 0) {
0d08d75e 3335 /* Somehow, the session daemon is not responding anymore. */
618a6a28
MD
3336 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_FATAL);
3337 goto error_nosignal;
7735ef9e
DG
3338 }
3339
3340 /* Poll on consumer socket. */
84382d49
MD
3341 ret = lttng_consumer_poll_socket(consumer_sockpoll);
3342 if (ret) {
3343 /* Needing to exit in the middle of a command: error. */
0d08d75e 3344 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_POLL_ERROR);
7735ef9e 3345 ret = -EINTR;
618a6a28 3346 goto error_nosignal;
7735ef9e
DG
3347 }
3348
3349 /* Get relayd socket from session daemon */
3350 ret = lttcomm_recv_fds_unix_sock(sock, &fd, 1);
3351 if (ret != sizeof(fd)) {
7735ef9e 3352 ret = -1;
4028eeb9 3353 fd = -1; /* Just in case it gets set with an invalid value. */
0d08d75e
DG
3354
3355 /*
3356 * Failing to receive FDs might indicate a major problem such as
3357 * reaching a fd limit during the receive where the kernel returns a
3358 * MSG_CTRUNC and fails to cleanup the fd in the queue. Any case, we
3359 * don't take any chances and stop everything.
3360 *
3361 * XXX: Feature request #558 will fix that and avoid this possible
3362 * issue when reaching the fd limit.
3363 */
3364 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_FD);
618a6a28 3365 ret_code = LTTCOMM_CONSUMERD_ERROR_RECV_FD;
f50f23d9
DG
3366 goto error;
3367 }
3368
7735ef9e
DG
3369 /* Copy socket information and received FD */
3370 switch (sock_type) {
3371 case LTTNG_STREAM_CONTROL:
3372 /* Copy received lttcomm socket */
6151a90f
JD
3373 lttcomm_copy_sock(&relayd->control_sock.sock, &relayd_sock->sock);
3374 ret = lttcomm_create_sock(&relayd->control_sock.sock);
4028eeb9 3375 /* Handle create_sock error. */
f66c074c 3376 if (ret < 0) {
618a6a28 3377 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
4028eeb9 3378 goto error;
f66c074c 3379 }
da009f2c
MD
3380 /*
3381 * Close the socket created internally by
3382 * lttcomm_create_sock, so we can replace it by the one
3383 * received from sessiond.
3384 */
3385 if (close(relayd->control_sock.sock.fd)) {
3386 PERROR("close");
3387 }
7735ef9e
DG
3388
3389 /* Assign new file descriptor */
6151a90f 3390 relayd->control_sock.sock.fd = fd;
4b29f1ce 3391 fd = -1; /* For error path */
6151a90f
JD
3392 /* Assign version values. */
3393 relayd->control_sock.major = relayd_sock->major;
3394 relayd->control_sock.minor = relayd_sock->minor;
c5b6f4f0 3395
d3e2ba59 3396 relayd->relayd_session_id = relayd_session_id;
c5b6f4f0 3397
7735ef9e
DG
3398 break;
3399 case LTTNG_STREAM_DATA:
3400 /* Copy received lttcomm socket */
6151a90f
JD
3401 lttcomm_copy_sock(&relayd->data_sock.sock, &relayd_sock->sock);
3402 ret = lttcomm_create_sock(&relayd->data_sock.sock);
4028eeb9 3403 /* Handle create_sock error. */
f66c074c 3404 if (ret < 0) {
618a6a28 3405 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
4028eeb9 3406 goto error;
f66c074c 3407 }
da009f2c
MD
3408 /*
3409 * Close the socket created internally by
3410 * lttcomm_create_sock, so we can replace it by the one
3411 * received from sessiond.
3412 */
3413 if (close(relayd->data_sock.sock.fd)) {
3414 PERROR("close");
3415 }
7735ef9e
DG
3416
3417 /* Assign new file descriptor */
6151a90f 3418 relayd->data_sock.sock.fd = fd;
4b29f1ce 3419 fd = -1; /* for eventual error paths */
6151a90f
JD
3420 /* Assign version values. */
3421 relayd->data_sock.major = relayd_sock->major;
3422 relayd->data_sock.minor = relayd_sock->minor;
7735ef9e
DG
3423 break;
3424 default:
3425 ERR("Unknown relayd socket type (%d)", sock_type);
59e71485 3426 ret = -1;
618a6a28 3427 ret_code = LTTCOMM_CONSUMERD_FATAL;
7735ef9e
DG
3428 goto error;
3429 }
3430
d88aee68 3431 DBG("Consumer %s socket created successfully with net idx %" PRIu64 " (fd: %d)",
7735ef9e
DG
3432 sock_type == LTTNG_STREAM_CONTROL ? "control" : "data",
3433 relayd->net_seq_idx, fd);
3434
618a6a28
MD
3435 /* We successfully added the socket. Send status back. */
3436 ret = consumer_send_status_msg(sock, ret_code);
3437 if (ret < 0) {
3438 /* Somehow, the session daemon is not responding anymore. */
3439 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_FATAL);
3440 goto error_nosignal;
3441 }
3442
7735ef9e
DG
3443 /*
3444 * Add relayd socket pair to consumer data hashtable. If object already
3445 * exists or on error, the function gracefully returns.
3446 */
d09e1200 3447 add_relayd(relayd);
7735ef9e
DG
3448
3449 /* All good! */
4028eeb9 3450 return 0;
7735ef9e
DG
3451
3452error:
618a6a28
MD
3453 if (consumer_send_status_msg(sock, ret_code) < 0) {
3454 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_FATAL);
3455 }
3456
3457error_nosignal:
4028eeb9
DG
3458 /* Close received socket if valid. */
3459 if (fd >= 0) {
3460 if (close(fd)) {
3461 PERROR("close received socket");
3462 }
3463 }
cd2b09ed
DG
3464
3465 if (relayd_created) {
cd2b09ed
DG
3466 free(relayd);
3467 }
3468
7735ef9e
DG
3469 return ret;
3470}
ca22feea 3471
4e9a4686
DG
3472/*
3473 * Try to lock the stream mutex.
3474 *
3475 * On success, 1 is returned else 0 indicating that the mutex is NOT lock.
3476 */
3477static int stream_try_lock(struct lttng_consumer_stream *stream)
3478{
3479 int ret;
3480
3481 assert(stream);
3482
3483 /*
3484 * Try to lock the stream mutex. On failure, we know that the stream is
3485 * being used else where hence there is data still being extracted.
3486 */
3487 ret = pthread_mutex_trylock(&stream->lock);
3488 if (ret) {
3489 /* For both EBUSY and EINVAL error, the mutex is NOT locked. */
3490 ret = 0;
3491 goto end;
3492 }
3493
3494 ret = 1;
3495
3496end:
3497 return ret;
3498}
3499
f7079f67
DG
3500/*
3501 * Search for a relayd associated to the session id and return the reference.
3502 *
3503 * A rcu read side lock MUST be acquire before calling this function and locked
3504 * until the relayd object is no longer necessary.
3505 */
3506static struct consumer_relayd_sock_pair *find_relayd_by_session_id(uint64_t id)
3507{
3508 struct lttng_ht_iter iter;
f7079f67 3509 struct consumer_relayd_sock_pair *relayd = NULL;
f7079f67
DG
3510
3511 /* Iterate over all relayd since they are indexed by net_seq_idx. */
3512 cds_lfht_for_each_entry(consumer_data.relayd_ht->ht, &iter.iter, relayd,
3513 node.node) {
18261bd1
DG
3514 /*
3515 * Check by sessiond id which is unique here where the relayd session
3516 * id might not be when having multiple relayd.
3517 */
3518 if (relayd->sessiond_session_id == id) {
f7079f67 3519 /* Found the relayd. There can be only one per id. */
18261bd1 3520 goto found;
f7079f67
DG
3521 }
3522 }
3523
18261bd1
DG
3524 return NULL;
3525
3526found:
f7079f67
DG
3527 return relayd;
3528}
3529
ca22feea
DG
3530/*
3531 * Check if for a given session id there is still data needed to be extract
3532 * from the buffers.
3533 *
6d805429 3534 * Return 1 if data is pending or else 0 meaning ready to be read.
ca22feea 3535 */
6d805429 3536int consumer_data_pending(uint64_t id)
ca22feea
DG
3537{
3538 int ret;
3539 struct lttng_ht_iter iter;
3540 struct lttng_ht *ht;
3541 struct lttng_consumer_stream *stream;
f7079f67 3542 struct consumer_relayd_sock_pair *relayd = NULL;
6d805429 3543 int (*data_pending)(struct lttng_consumer_stream *);
ca22feea 3544
6d805429 3545 DBG("Consumer data pending command on session id %" PRIu64, id);
ca22feea 3546
6f6eda74 3547 rcu_read_lock();
ca22feea
DG
3548 pthread_mutex_lock(&consumer_data.lock);
3549
3550 switch (consumer_data.type) {
3551 case LTTNG_CONSUMER_KERNEL:
6d805429 3552 data_pending = lttng_kconsumer_data_pending;
ca22feea
DG
3553 break;
3554 case LTTNG_CONSUMER32_UST:
3555 case LTTNG_CONSUMER64_UST:
6d805429 3556 data_pending = lttng_ustconsumer_data_pending;
ca22feea
DG
3557 break;
3558 default:
3559 ERR("Unknown consumer data type");
3560 assert(0);
3561 }
3562
3563 /* Ease our life a bit */
3564 ht = consumer_data.stream_list_ht;
3565
f7079f67
DG
3566 relayd = find_relayd_by_session_id(id);
3567 if (relayd) {
3568 /* Send init command for data pending. */
3569 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
3570 ret = relayd_begin_data_pending(&relayd->control_sock,
3571 relayd->relayd_session_id);
3572 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
3573 if (ret < 0) {
3574 /* Communication error thus the relayd so no data pending. */
3575 goto data_not_pending;
3576 }
3577 }
3578
c8f59ee5 3579 cds_lfht_for_each_entry_duplicate(ht->ht,
d88aee68
DG
3580 ht->hash_fct(&id, lttng_ht_seed),
3581 ht->match_fct, &id,
ca22feea 3582 &iter.iter, stream, node_session_id.node) {
4e9a4686
DG
3583 /* If this call fails, the stream is being used hence data pending. */
3584 ret = stream_try_lock(stream);
3585 if (!ret) {
f7079f67 3586 goto data_pending;
ca22feea 3587 }
ca22feea 3588
4e9a4686
DG
3589 /*
3590 * A removed node from the hash table indicates that the stream has
3591 * been deleted thus having a guarantee that the buffers are closed
3592 * on the consumer side. However, data can still be transmitted
3593 * over the network so don't skip the relayd check.
3594 */
3595 ret = cds_lfht_is_node_deleted(&stream->node.node);
3596 if (!ret) {
3597 /* Check the stream if there is data in the buffers. */
6d805429
DG
3598 ret = data_pending(stream);
3599 if (ret == 1) {
4e9a4686 3600 pthread_mutex_unlock(&stream->lock);
f7079f67 3601 goto data_pending;
4e9a4686
DG
3602 }
3603 }
3604
3605 /* Relayd check */
f7079f67 3606 if (relayd) {
c8f59ee5
DG
3607 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
3608 if (stream->metadata_flag) {
ad7051c0
DG
3609 ret = relayd_quiescent_control(&relayd->control_sock,
3610 stream->relayd_stream_id);
c8f59ee5 3611 } else {
6d805429 3612 ret = relayd_data_pending(&relayd->control_sock,
39df6d9f
DG
3613 stream->relayd_stream_id,
3614 stream->next_net_seq_num - 1);
c8f59ee5
DG
3615 }
3616 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
6d805429 3617 if (ret == 1) {
4e9a4686 3618 pthread_mutex_unlock(&stream->lock);
f7079f67 3619 goto data_pending;
c8f59ee5
DG
3620 }
3621 }
4e9a4686 3622 pthread_mutex_unlock(&stream->lock);
c8f59ee5 3623 }
ca22feea 3624
f7079f67
DG
3625 if (relayd) {
3626 unsigned int is_data_inflight = 0;
3627
3628 /* Send init command for data pending. */
3629 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
3630 ret = relayd_end_data_pending(&relayd->control_sock,
3631 relayd->relayd_session_id, &is_data_inflight);
3632 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
bdd88757 3633 if (ret < 0) {
f7079f67
DG
3634 goto data_not_pending;
3635 }
bdd88757
DG
3636 if (is_data_inflight) {
3637 goto data_pending;
3638 }
f7079f67
DG
3639 }
3640
ca22feea 3641 /*
f7079f67
DG
3642 * Finding _no_ node in the hash table and no inflight data means that the
3643 * stream(s) have been removed thus data is guaranteed to be available for
3644 * analysis from the trace files.
ca22feea
DG
3645 */
3646
f7079f67 3647data_not_pending:
ca22feea
DG
3648 /* Data is available to be read by a viewer. */
3649 pthread_mutex_unlock(&consumer_data.lock);
c8f59ee5 3650 rcu_read_unlock();
6d805429 3651 return 0;
ca22feea 3652
f7079f67 3653data_pending:
ca22feea
DG
3654 /* Data is still being extracted from buffers. */
3655 pthread_mutex_unlock(&consumer_data.lock);
c8f59ee5 3656 rcu_read_unlock();
6d805429 3657 return 1;
ca22feea 3658}
f50f23d9
DG
3659
3660/*
3661 * Send a ret code status message to the sessiond daemon.
3662 *
3663 * Return the sendmsg() return value.
3664 */
3665int consumer_send_status_msg(int sock, int ret_code)
3666{
3667 struct lttcomm_consumer_status_msg msg;
3668
53efb85a 3669 memset(&msg, 0, sizeof(msg));
f50f23d9
DG
3670 msg.ret_code = ret_code;
3671
3672 return lttcomm_send_unix_sock(sock, &msg, sizeof(msg));
3673}
ffe60014
DG
3674
3675/*
3676 * Send a channel status message to the sessiond daemon.
3677 *
3678 * Return the sendmsg() return value.
3679 */
3680int consumer_send_status_channel(int sock,
3681 struct lttng_consumer_channel *channel)
3682{
3683 struct lttcomm_consumer_status_channel msg;
3684
3685 assert(sock >= 0);
3686
53efb85a 3687 memset(&msg, 0, sizeof(msg));
ffe60014 3688 if (!channel) {
0c759fc9 3689 msg.ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL;
ffe60014 3690 } else {
0c759fc9 3691 msg.ret_code = LTTCOMM_CONSUMERD_SUCCESS;
ffe60014
DG
3692 msg.key = channel->key;
3693 msg.stream_count = channel->streams.count;
3694 }
3695
3696 return lttcomm_send_unix_sock(sock, &msg, sizeof(msg));
3697}
5c786ded 3698
135347bd
MD
3699unsigned long consumer_get_consume_start_pos(unsigned long consumed_pos,
3700 unsigned long produced_pos, uint64_t nb_packets_per_stream,
3701 uint64_t max_sb_size)
5c786ded 3702{
135347bd 3703 unsigned long start_pos;
5c786ded 3704
135347bd
MD
3705 if (!nb_packets_per_stream) {
3706 return consumed_pos; /* Grab everything */
3707 }
3708 start_pos = produced_pos - offset_align_floor(produced_pos, max_sb_size);
3709 start_pos -= max_sb_size * nb_packets_per_stream;
3710 if ((long) (start_pos - consumed_pos) < 0) {
3711 return consumed_pos; /* Grab everything */
3712 }
3713 return start_pos;
5c786ded 3714}
This page took 0.296432 seconds and 4 git commands to generate.