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