Fix: lock nesting order reversed
[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);
5feafd41 2054 pthread_mutex_lock(&stream->chan->metadata_cache->lock);
1ea6cc57 2055 pthread_mutex_lock(&stream->chan->lock);
8994307f
DG
2056 pthread_mutex_lock(&stream->lock);
2057
6d574024
DG
2058 /* Remove any reference to that stream. */
2059 consumer_stream_delete(stream, ht);
ca22feea 2060
6d574024
DG
2061 /* Close down everything including the relayd if one. */
2062 consumer_stream_close(stream);
2063 /* Destroy tracer buffers of the stream. */
2064 consumer_stream_destroy_buffers(stream);
fb3a43a9
DG
2065
2066 /* Atomically decrement channel refcount since other threads can use it. */
f2ad556d 2067 if (!uatomic_sub_return(&stream->chan->refcount, 1)
ffe60014 2068 && !uatomic_read(&stream->chan->nb_init_stream_left)) {
c30aaa51 2069 /* Go for channel deletion! */
e316aad5 2070 free_chan = stream->chan;
fb3a43a9
DG
2071 }
2072
73811ecc
DG
2073 /*
2074 * Nullify the stream reference so it is not used after deletion. The
6d574024
DG
2075 * channel lock MUST be acquired before being able to check for a NULL
2076 * pointer value.
73811ecc
DG
2077 */
2078 stream->chan->metadata_stream = NULL;
2079
8994307f 2080 pthread_mutex_unlock(&stream->lock);
a9838785 2081 pthread_mutex_unlock(&stream->chan->lock);
1ea6cc57 2082 pthread_mutex_unlock(&stream->chan->metadata_cache->lock);
74251bb8 2083 pthread_mutex_unlock(&consumer_data.lock);
e316aad5
DG
2084
2085 if (free_chan) {
2086 consumer_del_channel(free_chan);
2087 }
2088
6d574024 2089 consumer_stream_free(stream);
fb3a43a9
DG
2090}
2091
2092/*
2093 * Action done with the metadata stream when adding it to the consumer internal
2094 * data structures to handle it.
2095 */
5ab66908 2096int consumer_add_metadata_stream(struct lttng_consumer_stream *stream)
fb3a43a9 2097{
5ab66908 2098 struct lttng_ht *ht = metadata_ht;
e316aad5 2099 int ret = 0;
76082088 2100 struct lttng_ht_iter iter;
d88aee68 2101 struct lttng_ht_node_u64 *node;
fb3a43a9 2102
e316aad5
DG
2103 assert(stream);
2104 assert(ht);
2105
d88aee68 2106 DBG3("Adding metadata stream %" PRIu64 " to hash table", stream->key);
e316aad5
DG
2107
2108 pthread_mutex_lock(&consumer_data.lock);
a9838785 2109 pthread_mutex_lock(&stream->chan->lock);
ec6ea7d0 2110 pthread_mutex_lock(&stream->chan->timer_lock);
2e818a6a 2111 pthread_mutex_lock(&stream->lock);
e316aad5 2112
e316aad5
DG
2113 /*
2114 * From here, refcounts are updated so be _careful_ when returning an error
2115 * after this point.
2116 */
2117
fb3a43a9 2118 rcu_read_lock();
76082088
DG
2119
2120 /*
2121 * Lookup the stream just to make sure it does not exist in our internal
2122 * state. This should NEVER happen.
2123 */
d88aee68
DG
2124 lttng_ht_lookup(ht, &stream->key, &iter);
2125 node = lttng_ht_iter_get_node_u64(&iter);
76082088
DG
2126 assert(!node);
2127
e316aad5 2128 /*
ffe60014
DG
2129 * When nb_init_stream_left reaches 0, we don't need to trigger any action
2130 * in terms of destroying the associated channel, because the action that
e316aad5
DG
2131 * causes the count to become 0 also causes a stream to be added. The
2132 * channel deletion will thus be triggered by the following removal of this
2133 * stream.
2134 */
ffe60014 2135 if (uatomic_read(&stream->chan->nb_init_stream_left) > 0) {
f2ad556d
MD
2136 /* Increment refcount before decrementing nb_init_stream_left */
2137 cmm_smp_wmb();
ffe60014 2138 uatomic_dec(&stream->chan->nb_init_stream_left);
e316aad5
DG
2139 }
2140
d88aee68 2141 lttng_ht_add_unique_u64(ht, &stream->node);
ca22feea 2142
d8ef542d
MD
2143 lttng_ht_add_unique_u64(consumer_data.stream_per_chan_id_ht,
2144 &stream->node_channel_id);
2145
ca22feea
DG
2146 /*
2147 * Add stream to the stream_list_ht of the consumer data. No need to steal
2148 * the key since the HT does not use it and we allow to add redundant keys
2149 * into this table.
2150 */
d88aee68 2151 lttng_ht_add_u64(consumer_data.stream_list_ht, &stream->node_session_id);
ca22feea 2152
fb3a43a9 2153 rcu_read_unlock();
e316aad5 2154
2e818a6a 2155 pthread_mutex_unlock(&stream->lock);
a9838785 2156 pthread_mutex_unlock(&stream->chan->lock);
ec6ea7d0 2157 pthread_mutex_unlock(&stream->chan->timer_lock);
e316aad5
DG
2158 pthread_mutex_unlock(&consumer_data.lock);
2159 return ret;
fb3a43a9
DG
2160}
2161
8994307f
DG
2162/*
2163 * Delete data stream that are flagged for deletion (endpoint_status).
2164 */
2165static void validate_endpoint_status_data_stream(void)
2166{
2167 struct lttng_ht_iter iter;
2168 struct lttng_consumer_stream *stream;
2169
2170 DBG("Consumer delete flagged data stream");
2171
2172 rcu_read_lock();
2173 cds_lfht_for_each_entry(data_ht->ht, &iter.iter, stream, node.node) {
2174 /* Validate delete flag of the stream */
79d4ffb7 2175 if (stream->endpoint_status == CONSUMER_ENDPOINT_ACTIVE) {
8994307f
DG
2176 continue;
2177 }
2178 /* Delete it right now */
2179 consumer_del_stream(stream, data_ht);
2180 }
2181 rcu_read_unlock();
2182}
2183
2184/*
2185 * Delete metadata stream that are flagged for deletion (endpoint_status).
2186 */
2187static void validate_endpoint_status_metadata_stream(
2188 struct lttng_poll_event *pollset)
2189{
2190 struct lttng_ht_iter iter;
2191 struct lttng_consumer_stream *stream;
2192
2193 DBG("Consumer delete flagged metadata stream");
2194
2195 assert(pollset);
2196
2197 rcu_read_lock();
2198 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream, node.node) {
2199 /* Validate delete flag of the stream */
79d4ffb7 2200 if (stream->endpoint_status == CONSUMER_ENDPOINT_ACTIVE) {
8994307f
DG
2201 continue;
2202 }
2203 /*
2204 * Remove from pollset so the metadata thread can continue without
2205 * blocking on a deleted stream.
2206 */
2207 lttng_poll_del(pollset, stream->wait_fd);
2208
2209 /* Delete it right now */
2210 consumer_del_metadata_stream(stream, metadata_ht);
2211 }
2212 rcu_read_unlock();
2213}
2214
fb3a43a9
DG
2215/*
2216 * Thread polls on metadata file descriptor and write them on disk or on the
2217 * network.
2218 */
7d980def 2219void *consumer_thread_metadata_poll(void *data)
fb3a43a9 2220{
1fc79fb4 2221 int ret, i, pollfd, err = -1;
fb3a43a9 2222 uint32_t revents, nb_fd;
e316aad5 2223 struct lttng_consumer_stream *stream = NULL;
fb3a43a9 2224 struct lttng_ht_iter iter;
d88aee68 2225 struct lttng_ht_node_u64 *node;
fb3a43a9
DG
2226 struct lttng_poll_event events;
2227 struct lttng_consumer_local_data *ctx = data;
2228 ssize_t len;
2229
2230 rcu_register_thread();
2231
1fc79fb4
MD
2232 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_METADATA);
2233
2d57de81
MD
2234 if (testpoint(consumerd_thread_metadata)) {
2235 goto error_testpoint;
2236 }
2237
9ce5646a
MD
2238 health_code_update();
2239
fb3a43a9
DG
2240 DBG("Thread metadata poll started");
2241
fb3a43a9
DG
2242 /* Size is set to 1 for the consumer_metadata pipe */
2243 ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC);
2244 if (ret < 0) {
2245 ERR("Poll set creation failed");
d8ef542d 2246 goto end_poll;
fb3a43a9
DG
2247 }
2248
13886d2d
DG
2249 ret = lttng_poll_add(&events,
2250 lttng_pipe_get_readfd(ctx->consumer_metadata_pipe), LPOLLIN);
fb3a43a9
DG
2251 if (ret < 0) {
2252 goto end;
2253 }
2254
2255 /* Main loop */
2256 DBG("Metadata main loop started");
2257
2258 while (1) {
fb3a43a9 2259restart:
7fa2082e 2260 health_code_update();
9ce5646a 2261 health_poll_entry();
7fa2082e 2262 DBG("Metadata poll wait");
fb3a43a9 2263 ret = lttng_poll_wait(&events, -1);
7fa2082e
MD
2264 DBG("Metadata poll return from wait with %d fd(s)",
2265 LTTNG_POLL_GETNB(&events));
9ce5646a 2266 health_poll_exit();
40063ead 2267 DBG("Metadata event caught in thread");
fb3a43a9
DG
2268 if (ret < 0) {
2269 if (errno == EINTR) {
40063ead 2270 ERR("Poll EINTR caught");
fb3a43a9
DG
2271 goto restart;
2272 }
d9607cd7
MD
2273 if (LTTNG_POLL_GETNB(&events) == 0) {
2274 err = 0; /* All is OK */
2275 }
2276 goto end;
fb3a43a9
DG
2277 }
2278
0d9c5d77
DG
2279 nb_fd = ret;
2280
e316aad5 2281 /* From here, the event is a metadata wait fd */
fb3a43a9 2282 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2283 health_code_update();
2284
fb3a43a9
DG
2285 revents = LTTNG_POLL_GETEV(&events, i);
2286 pollfd = LTTNG_POLL_GETFD(&events, i);
2287
fd20dac9
MD
2288 if (!revents) {
2289 /* No activity for this FD (poll implementation). */
2290 continue;
2291 }
2292
13886d2d 2293 if (pollfd == lttng_pipe_get_readfd(ctx->consumer_metadata_pipe)) {
03e43155 2294 if (revents & LPOLLIN) {
13886d2d
DG
2295 ssize_t pipe_len;
2296
2297 pipe_len = lttng_pipe_read(ctx->consumer_metadata_pipe,
2298 &stream, sizeof(stream));
6cd525e8 2299 if (pipe_len < sizeof(stream)) {
03e43155
MD
2300 if (pipe_len < 0) {
2301 PERROR("read metadata stream");
2302 }
fb3a43a9 2303 /*
03e43155
MD
2304 * Remove the pipe from the poll set and continue the loop
2305 * since their might be data to consume.
fb3a43a9 2306 */
03e43155
MD
2307 lttng_poll_del(&events,
2308 lttng_pipe_get_readfd(ctx->consumer_metadata_pipe));
2309 lttng_pipe_read_close(ctx->consumer_metadata_pipe);
fb3a43a9
DG
2310 continue;
2311 }
2312
8994307f
DG
2313 /* A NULL stream means that the state has changed. */
2314 if (stream == NULL) {
2315 /* Check for deleted streams. */
2316 validate_endpoint_status_metadata_stream(&events);
3714380f 2317 goto restart;
8994307f
DG
2318 }
2319
fb3a43a9
DG
2320 DBG("Adding metadata stream %d to poll set",
2321 stream->wait_fd);
2322
fb3a43a9
DG
2323 /* Add metadata stream to the global poll events list */
2324 lttng_poll_add(&events, stream->wait_fd,
6d574024 2325 LPOLLIN | LPOLLPRI | LPOLLHUP);
03e43155
MD
2326 } else if (revents & (LPOLLERR | LPOLLHUP)) {
2327 DBG("Metadata thread pipe hung up");
2328 /*
2329 * Remove the pipe from the poll set and continue the loop
2330 * since their might be data to consume.
2331 */
2332 lttng_poll_del(&events,
2333 lttng_pipe_get_readfd(ctx->consumer_metadata_pipe));
2334 lttng_pipe_read_close(ctx->consumer_metadata_pipe);
2335 continue;
2336 } else {
2337 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
2338 goto end;
fb3a43a9
DG
2339 }
2340
e316aad5 2341 /* Handle other stream */
fb3a43a9
DG
2342 continue;
2343 }
2344
d09e1200 2345 rcu_read_lock();
d88aee68
DG
2346 {
2347 uint64_t tmp_id = (uint64_t) pollfd;
2348
2349 lttng_ht_lookup(metadata_ht, &tmp_id, &iter);
2350 }
2351 node = lttng_ht_iter_get_node_u64(&iter);
e316aad5 2352 assert(node);
fb3a43a9
DG
2353
2354 stream = caa_container_of(node, struct lttng_consumer_stream,
58b1f425 2355 node);
fb3a43a9 2356
03e43155
MD
2357 if (revents & (LPOLLIN | LPOLLPRI)) {
2358 /* Get the data out of the metadata file descriptor */
2359 DBG("Metadata available on fd %d", pollfd);
2360 assert(stream->wait_fd == pollfd);
2361
2362 do {
2363 health_code_update();
2364
2365 len = ctx->on_buffer_ready(stream, ctx);
2366 /*
2367 * We don't check the return value here since if we get
83f4233d 2368 * a negative len, it means an error occurred thus we
03e43155
MD
2369 * simply remove it from the poll set and free the
2370 * stream.
2371 */
2372 } while (len > 0);
2373
2374 /* It's ok to have an unavailable sub-buffer */
2375 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
2376 /* Clean up stream from consumer and free it. */
2377 lttng_poll_del(&events, stream->wait_fd);
2378 consumer_del_metadata_stream(stream, metadata_ht);
2379 }
2380 } else if (revents & (LPOLLERR | LPOLLHUP)) {
e316aad5 2381 DBG("Metadata fd %d is hup|err.", pollfd);
fb3a43a9
DG
2382 if (!stream->hangup_flush_done
2383 && (consumer_data.type == LTTNG_CONSUMER32_UST
2384 || consumer_data.type == LTTNG_CONSUMER64_UST)) {
2385 DBG("Attempting to flush and consume the UST buffers");
2386 lttng_ustconsumer_on_stream_hangup(stream);
2387
2388 /* We just flushed the stream now read it. */
4bb94b75 2389 do {
9ce5646a
MD
2390 health_code_update();
2391
4bb94b75
DG
2392 len = ctx->on_buffer_ready(stream, ctx);
2393 /*
2394 * We don't check the return value here since if we get
83f4233d 2395 * a negative len, it means an error occurred thus we
4bb94b75
DG
2396 * simply remove it from the poll set and free the
2397 * stream.
2398 */
2399 } while (len > 0);
fb3a43a9
DG
2400 }
2401
fb3a43a9 2402 lttng_poll_del(&events, stream->wait_fd);
e316aad5
DG
2403 /*
2404 * This call update the channel states, closes file descriptors
2405 * and securely free the stream.
2406 */
2407 consumer_del_metadata_stream(stream, metadata_ht);
03e43155
MD
2408 } else {
2409 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
6f2f1a70 2410 rcu_read_unlock();
03e43155 2411 goto end;
fb3a43a9 2412 }
e316aad5 2413 /* Release RCU lock for the stream looked up */
d09e1200 2414 rcu_read_unlock();
fb3a43a9
DG
2415 }
2416 }
2417
1fc79fb4
MD
2418 /* All is OK */
2419 err = 0;
fb3a43a9
DG
2420end:
2421 DBG("Metadata poll thread exiting");
fb3a43a9 2422
d8ef542d
MD
2423 lttng_poll_clean(&events);
2424end_poll:
2d57de81 2425error_testpoint:
1fc79fb4
MD
2426 if (err) {
2427 health_error();
2428 ERR("Health error occurred in %s", __func__);
2429 }
2430 health_unregister(health_consumerd);
fb3a43a9
DG
2431 rcu_unregister_thread();
2432 return NULL;
2433}
2434
3bd1e081 2435/*
e4421fec 2436 * This thread polls the fds in the set to consume the data and write
3bd1e081
MD
2437 * it to tracefile if necessary.
2438 */
7d980def 2439void *consumer_thread_data_poll(void *data)
3bd1e081 2440{
1fc79fb4 2441 int num_rdy, num_hup, high_prio, ret, i, err = -1;
3bd1e081
MD
2442 struct pollfd *pollfd = NULL;
2443 /* local view of the streams */
c869f647 2444 struct lttng_consumer_stream **local_stream = NULL, *new_stream = NULL;
3bd1e081
MD
2445 /* local view of consumer_data.fds_count */
2446 int nb_fd = 0;
3bd1e081 2447 struct lttng_consumer_local_data *ctx = data;
00e2e675 2448 ssize_t len;
3bd1e081 2449
e7b994a3
DG
2450 rcu_register_thread();
2451
1fc79fb4
MD
2452 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_DATA);
2453
2d57de81
MD
2454 if (testpoint(consumerd_thread_data)) {
2455 goto error_testpoint;
2456 }
2457
9ce5646a
MD
2458 health_code_update();
2459
4df6c8cb
MD
2460 local_stream = zmalloc(sizeof(struct lttng_consumer_stream *));
2461 if (local_stream == NULL) {
2462 PERROR("local_stream malloc");
2463 goto end;
2464 }
3bd1e081
MD
2465
2466 while (1) {
9ce5646a
MD
2467 health_code_update();
2468
3bd1e081
MD
2469 high_prio = 0;
2470 num_hup = 0;
2471
2472 /*
e4421fec 2473 * the fds set has been updated, we need to update our
3bd1e081
MD
2474 * local array as well
2475 */
2476 pthread_mutex_lock(&consumer_data.lock);
2477 if (consumer_data.need_update) {
0e428499
DG
2478 free(pollfd);
2479 pollfd = NULL;
2480
2481 free(local_stream);
2482 local_stream = NULL;
3bd1e081 2483
02b3d176
DG
2484 /*
2485 * Allocate for all fds +1 for the consumer_data_pipe and +1 for
2486 * wake up pipe.
2487 */
2488 pollfd = zmalloc((consumer_data.stream_count + 2) * sizeof(struct pollfd));
3bd1e081 2489 if (pollfd == NULL) {
7a57cf92 2490 PERROR("pollfd malloc");
3bd1e081
MD
2491 pthread_mutex_unlock(&consumer_data.lock);
2492 goto end;
2493 }
2494
02b3d176 2495 local_stream = zmalloc((consumer_data.stream_count + 2) *
747f8642 2496 sizeof(struct lttng_consumer_stream *));
3bd1e081 2497 if (local_stream == NULL) {
7a57cf92 2498 PERROR("local_stream malloc");
3bd1e081
MD
2499 pthread_mutex_unlock(&consumer_data.lock);
2500 goto end;
2501 }
ffe60014 2502 ret = update_poll_array(ctx, &pollfd, local_stream,
43c34bc3 2503 data_ht);
3bd1e081
MD
2504 if (ret < 0) {
2505 ERR("Error in allocating pollfd or local_outfds");
f73fabfd 2506 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_POLL_ERROR);
3bd1e081
MD
2507 pthread_mutex_unlock(&consumer_data.lock);
2508 goto end;
2509 }
2510 nb_fd = ret;
2511 consumer_data.need_update = 0;
2512 }
2513 pthread_mutex_unlock(&consumer_data.lock);
2514
4078b776
MD
2515 /* No FDs and consumer_quit, consumer_cleanup the thread */
2516 if (nb_fd == 0 && consumer_quit == 1) {
1fc79fb4 2517 err = 0; /* All is OK */
4078b776
MD
2518 goto end;
2519 }
3bd1e081 2520 /* poll on the array of fds */
88f2b785 2521 restart:
02b3d176 2522 DBG("polling on %d fd", nb_fd + 2);
9ce5646a 2523 health_poll_entry();
02b3d176 2524 num_rdy = poll(pollfd, nb_fd + 2, -1);
9ce5646a 2525 health_poll_exit();
3bd1e081
MD
2526 DBG("poll num_rdy : %d", num_rdy);
2527 if (num_rdy == -1) {
88f2b785
MD
2528 /*
2529 * Restart interrupted system call.
2530 */
2531 if (errno == EINTR) {
2532 goto restart;
2533 }
7a57cf92 2534 PERROR("Poll error");
f73fabfd 2535 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_POLL_ERROR);
3bd1e081
MD
2536 goto end;
2537 } else if (num_rdy == 0) {
2538 DBG("Polling thread timed out");
2539 goto end;
2540 }
2541
3bd1e081 2542 /*
50f8ae69 2543 * If the consumer_data_pipe triggered poll go directly to the
00e2e675
DG
2544 * beginning of the loop to update the array. We want to prioritize
2545 * array update over low-priority reads.
3bd1e081 2546 */
509bb1cf 2547 if (pollfd[nb_fd].revents & (POLLIN | POLLPRI)) {
ab30f567 2548 ssize_t pipe_readlen;
04fdd819 2549
50f8ae69 2550 DBG("consumer_data_pipe wake up");
acdb9057
DG
2551 pipe_readlen = lttng_pipe_read(ctx->consumer_data_pipe,
2552 &new_stream, sizeof(new_stream));
6cd525e8
MD
2553 if (pipe_readlen < sizeof(new_stream)) {
2554 PERROR("Consumer data pipe");
23f5f35d
DG
2555 /* Continue so we can at least handle the current stream(s). */
2556 continue;
2557 }
c869f647
DG
2558
2559 /*
2560 * If the stream is NULL, just ignore it. It's also possible that
2561 * the sessiond poll thread changed the consumer_quit state and is
2562 * waking us up to test it.
2563 */
2564 if (new_stream == NULL) {
8994307f 2565 validate_endpoint_status_data_stream();
c869f647
DG
2566 continue;
2567 }
2568
c869f647 2569 /* Continue to update the local streams and handle prio ones */
3bd1e081
MD
2570 continue;
2571 }
2572
02b3d176
DG
2573 /* Handle wakeup pipe. */
2574 if (pollfd[nb_fd + 1].revents & (POLLIN | POLLPRI)) {
2575 char dummy;
2576 ssize_t pipe_readlen;
2577
2578 pipe_readlen = lttng_pipe_read(ctx->consumer_wakeup_pipe, &dummy,
2579 sizeof(dummy));
2580 if (pipe_readlen < 0) {
2581 PERROR("Consumer data wakeup pipe");
2582 }
2583 /* We've been awakened to handle stream(s). */
2584 ctx->has_wakeup = 0;
2585 }
2586
3bd1e081
MD
2587 /* Take care of high priority channels first. */
2588 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2589 health_code_update();
2590
9617607b
DG
2591 if (local_stream[i] == NULL) {
2592 continue;
2593 }
fb3a43a9 2594 if (pollfd[i].revents & POLLPRI) {
d41f73b7
MD
2595 DBG("Urgent read on fd %d", pollfd[i].fd);
2596 high_prio = 1;
4078b776 2597 len = ctx->on_buffer_ready(local_stream[i], ctx);
d41f73b7 2598 /* it's ok to have an unavailable sub-buffer */
b64403e3 2599 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
ab1027f4
DG
2600 /* Clean the stream and free it. */
2601 consumer_del_stream(local_stream[i], data_ht);
9617607b 2602 local_stream[i] = NULL;
4078b776
MD
2603 } else if (len > 0) {
2604 local_stream[i]->data_read = 1;
d41f73b7 2605 }
3bd1e081
MD
2606 }
2607 }
2608
4078b776
MD
2609 /*
2610 * If we read high prio channel in this loop, try again
2611 * for more high prio data.
2612 */
2613 if (high_prio) {
3bd1e081
MD
2614 continue;
2615 }
2616
2617 /* Take care of low priority channels. */
4078b776 2618 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2619 health_code_update();
2620
9617607b
DG
2621 if (local_stream[i] == NULL) {
2622 continue;
2623 }
4078b776 2624 if ((pollfd[i].revents & POLLIN) ||
02b3d176
DG
2625 local_stream[i]->hangup_flush_done ||
2626 local_stream[i]->has_data) {
4078b776
MD
2627 DBG("Normal read on fd %d", pollfd[i].fd);
2628 len = ctx->on_buffer_ready(local_stream[i], ctx);
2629 /* it's ok to have an unavailable sub-buffer */
b64403e3 2630 if (len < 0 && len != -EAGAIN && len != -ENODATA) {
ab1027f4
DG
2631 /* Clean the stream and free it. */
2632 consumer_del_stream(local_stream[i], data_ht);
9617607b 2633 local_stream[i] = NULL;
4078b776
MD
2634 } else if (len > 0) {
2635 local_stream[i]->data_read = 1;
2636 }
2637 }
2638 }
2639
2640 /* Handle hangup and errors */
2641 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2642 health_code_update();
2643
9617607b
DG
2644 if (local_stream[i] == NULL) {
2645 continue;
2646 }
4078b776
MD
2647 if (!local_stream[i]->hangup_flush_done
2648 && (pollfd[i].revents & (POLLHUP | POLLERR | POLLNVAL))
2649 && (consumer_data.type == LTTNG_CONSUMER32_UST
2650 || consumer_data.type == LTTNG_CONSUMER64_UST)) {
2651 DBG("fd %d is hup|err|nval. Attempting flush and read.",
9617607b 2652 pollfd[i].fd);
4078b776
MD
2653 lttng_ustconsumer_on_stream_hangup(local_stream[i]);
2654 /* Attempt read again, for the data we just flushed. */
2655 local_stream[i]->data_read = 1;
2656 }
2657 /*
2658 * If the poll flag is HUP/ERR/NVAL and we have
2659 * read no data in this pass, we can remove the
2660 * stream from its hash table.
2661 */
2662 if ((pollfd[i].revents & POLLHUP)) {
2663 DBG("Polling fd %d tells it has hung up.", pollfd[i].fd);
2664 if (!local_stream[i]->data_read) {
43c34bc3 2665 consumer_del_stream(local_stream[i], data_ht);
9617607b 2666 local_stream[i] = NULL;
4078b776
MD
2667 num_hup++;
2668 }
2669 } else if (pollfd[i].revents & POLLERR) {
2670 ERR("Error returned in polling fd %d.", pollfd[i].fd);
2671 if (!local_stream[i]->data_read) {
43c34bc3 2672 consumer_del_stream(local_stream[i], data_ht);
9617607b 2673 local_stream[i] = NULL;
4078b776
MD
2674 num_hup++;
2675 }
2676 } else if (pollfd[i].revents & POLLNVAL) {
2677 ERR("Polling fd %d tells fd is not open.", pollfd[i].fd);
2678 if (!local_stream[i]->data_read) {
43c34bc3 2679 consumer_del_stream(local_stream[i], data_ht);
9617607b 2680 local_stream[i] = NULL;
4078b776 2681 num_hup++;
3bd1e081
MD
2682 }
2683 }
9617607b
DG
2684 if (local_stream[i] != NULL) {
2685 local_stream[i]->data_read = 0;
2686 }
3bd1e081
MD
2687 }
2688 }
1fc79fb4
MD
2689 /* All is OK */
2690 err = 0;
3bd1e081
MD
2691end:
2692 DBG("polling thread exiting");
0e428499
DG
2693 free(pollfd);
2694 free(local_stream);
fb3a43a9
DG
2695
2696 /*
2697 * Close the write side of the pipe so epoll_wait() in
7d980def
DG
2698 * consumer_thread_metadata_poll can catch it. The thread is monitoring the
2699 * read side of the pipe. If we close them both, epoll_wait strangely does
2700 * not return and could create a endless wait period if the pipe is the
2701 * only tracked fd in the poll set. The thread will take care of closing
2702 * the read side.
fb3a43a9 2703 */
13886d2d 2704 (void) lttng_pipe_write_close(ctx->consumer_metadata_pipe);
fb3a43a9 2705
2d57de81 2706error_testpoint:
1fc79fb4
MD
2707 if (err) {
2708 health_error();
2709 ERR("Health error occurred in %s", __func__);
2710 }
2711 health_unregister(health_consumerd);
2712
e7b994a3 2713 rcu_unregister_thread();
3bd1e081
MD
2714 return NULL;
2715}
2716
d8ef542d
MD
2717/*
2718 * Close wake-up end of each stream belonging to the channel. This will
2719 * allow the poll() on the stream read-side to detect when the
2720 * write-side (application) finally closes them.
2721 */
2722static
2723void consumer_close_channel_streams(struct lttng_consumer_channel *channel)
2724{
2725 struct lttng_ht *ht;
2726 struct lttng_consumer_stream *stream;
2727 struct lttng_ht_iter iter;
2728
2729 ht = consumer_data.stream_per_chan_id_ht;
2730
2731 rcu_read_lock();
2732 cds_lfht_for_each_entry_duplicate(ht->ht,
2733 ht->hash_fct(&channel->key, lttng_ht_seed),
2734 ht->match_fct, &channel->key,
2735 &iter.iter, stream, node_channel_id.node) {
f2ad556d
MD
2736 /*
2737 * Protect against teardown with mutex.
2738 */
2739 pthread_mutex_lock(&stream->lock);
2740 if (cds_lfht_is_node_deleted(&stream->node.node)) {
2741 goto next;
2742 }
d8ef542d
MD
2743 switch (consumer_data.type) {
2744 case LTTNG_CONSUMER_KERNEL:
2745 break;
2746 case LTTNG_CONSUMER32_UST:
2747 case LTTNG_CONSUMER64_UST:
b4a650f3
DG
2748 if (stream->metadata_flag) {
2749 /* Safe and protected by the stream lock. */
2750 lttng_ustconsumer_close_metadata(stream->chan);
2751 } else {
2752 /*
2753 * Note: a mutex is taken internally within
2754 * liblttng-ust-ctl to protect timer wakeup_fd
2755 * use from concurrent close.
2756 */
2757 lttng_ustconsumer_close_stream_wakeup(stream);
2758 }
d8ef542d
MD
2759 break;
2760 default:
2761 ERR("Unknown consumer_data type");
2762 assert(0);
2763 }
f2ad556d
MD
2764 next:
2765 pthread_mutex_unlock(&stream->lock);
d8ef542d
MD
2766 }
2767 rcu_read_unlock();
2768}
2769
2770static void destroy_channel_ht(struct lttng_ht *ht)
2771{
2772 struct lttng_ht_iter iter;
2773 struct lttng_consumer_channel *channel;
2774 int ret;
2775
2776 if (ht == NULL) {
2777 return;
2778 }
2779
2780 rcu_read_lock();
2781 cds_lfht_for_each_entry(ht->ht, &iter.iter, channel, wait_fd_node.node) {
2782 ret = lttng_ht_del(ht, &iter);
2783 assert(ret != 0);
2784 }
2785 rcu_read_unlock();
2786
2787 lttng_ht_destroy(ht);
2788}
2789
2790/*
2791 * This thread polls the channel fds to detect when they are being
2792 * closed. It closes all related streams if the channel is detected as
2793 * closed. It is currently only used as a shim layer for UST because the
2794 * consumerd needs to keep the per-stream wakeup end of pipes open for
2795 * periodical flush.
2796 */
2797void *consumer_thread_channel_poll(void *data)
2798{
1fc79fb4 2799 int ret, i, pollfd, err = -1;
d8ef542d
MD
2800 uint32_t revents, nb_fd;
2801 struct lttng_consumer_channel *chan = NULL;
2802 struct lttng_ht_iter iter;
2803 struct lttng_ht_node_u64 *node;
2804 struct lttng_poll_event events;
2805 struct lttng_consumer_local_data *ctx = data;
2806 struct lttng_ht *channel_ht;
2807
2808 rcu_register_thread();
2809
1fc79fb4
MD
2810 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_CHANNEL);
2811
2d57de81
MD
2812 if (testpoint(consumerd_thread_channel)) {
2813 goto error_testpoint;
2814 }
2815
9ce5646a
MD
2816 health_code_update();
2817
d8ef542d
MD
2818 channel_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
2819 if (!channel_ht) {
2820 /* ENOMEM at this point. Better to bail out. */
2821 goto end_ht;
2822 }
2823
2824 DBG("Thread channel poll started");
2825
2826 /* Size is set to 1 for the consumer_channel pipe */
2827 ret = lttng_poll_create(&events, 2, LTTNG_CLOEXEC);
2828 if (ret < 0) {
2829 ERR("Poll set creation failed");
2830 goto end_poll;
2831 }
2832
2833 ret = lttng_poll_add(&events, ctx->consumer_channel_pipe[0], LPOLLIN);
2834 if (ret < 0) {
2835 goto end;
2836 }
2837
2838 /* Main loop */
2839 DBG("Channel main loop started");
2840
2841 while (1) {
d8ef542d 2842restart:
7fa2082e
MD
2843 health_code_update();
2844 DBG("Channel poll wait");
9ce5646a 2845 health_poll_entry();
d8ef542d 2846 ret = lttng_poll_wait(&events, -1);
7fa2082e
MD
2847 DBG("Channel poll return from wait with %d fd(s)",
2848 LTTNG_POLL_GETNB(&events));
9ce5646a 2849 health_poll_exit();
40063ead 2850 DBG("Channel event caught in thread");
d8ef542d
MD
2851 if (ret < 0) {
2852 if (errno == EINTR) {
40063ead 2853 ERR("Poll EINTR caught");
d8ef542d
MD
2854 goto restart;
2855 }
d9607cd7
MD
2856 if (LTTNG_POLL_GETNB(&events) == 0) {
2857 err = 0; /* All is OK */
2858 }
d8ef542d
MD
2859 goto end;
2860 }
2861
2862 nb_fd = ret;
2863
2864 /* From here, the event is a channel wait fd */
2865 for (i = 0; i < nb_fd; i++) {
9ce5646a
MD
2866 health_code_update();
2867
d8ef542d
MD
2868 revents = LTTNG_POLL_GETEV(&events, i);
2869 pollfd = LTTNG_POLL_GETFD(&events, i);
2870
d8ef542d 2871 if (!revents) {
fd20dac9 2872 /* No activity for this FD (poll implementation). */
d8ef542d
MD
2873 continue;
2874 }
fd20dac9 2875
d8ef542d 2876 if (pollfd == ctx->consumer_channel_pipe[0]) {
03e43155 2877 if (revents & LPOLLIN) {
d8ef542d 2878 enum consumer_channel_action action;
a0cbdd2e 2879 uint64_t key;
d8ef542d 2880
a0cbdd2e 2881 ret = read_channel_pipe(ctx, &chan, &key, &action);
d8ef542d 2882 if (ret <= 0) {
03e43155
MD
2883 if (ret < 0) {
2884 ERR("Error reading channel pipe");
2885 }
2886 lttng_poll_del(&events, ctx->consumer_channel_pipe[0]);
d8ef542d
MD
2887 continue;
2888 }
2889
2890 switch (action) {
2891 case CONSUMER_CHANNEL_ADD:
2892 DBG("Adding channel %d to poll set",
2893 chan->wait_fd);
2894
2895 lttng_ht_node_init_u64(&chan->wait_fd_node,
2896 chan->wait_fd);
c7260a81 2897 rcu_read_lock();
d8ef542d
MD
2898 lttng_ht_add_unique_u64(channel_ht,
2899 &chan->wait_fd_node);
c7260a81 2900 rcu_read_unlock();
d8ef542d
MD
2901 /* Add channel to the global poll events list */
2902 lttng_poll_add(&events, chan->wait_fd,
03e43155 2903 LPOLLERR | LPOLLHUP);
d8ef542d 2904 break;
a0cbdd2e
MD
2905 case CONSUMER_CHANNEL_DEL:
2906 {
b4a650f3
DG
2907 /*
2908 * This command should never be called if the channel
2909 * has streams monitored by either the data or metadata
2910 * thread. The consumer only notify this thread with a
2911 * channel del. command if it receives a destroy
2912 * channel command from the session daemon that send it
2913 * if a command prior to the GET_CHANNEL failed.
2914 */
2915
c7260a81 2916 rcu_read_lock();
a0cbdd2e
MD
2917 chan = consumer_find_channel(key);
2918 if (!chan) {
c7260a81 2919 rcu_read_unlock();
a0cbdd2e
MD
2920 ERR("UST consumer get channel key %" PRIu64 " not found for del channel", key);
2921 break;
2922 }
2923 lttng_poll_del(&events, chan->wait_fd);
f623cc0b 2924 iter.iter.node = &chan->wait_fd_node.node;
a0cbdd2e
MD
2925 ret = lttng_ht_del(channel_ht, &iter);
2926 assert(ret == 0);
a0cbdd2e 2927
f2a444f1
DG
2928 switch (consumer_data.type) {
2929 case LTTNG_CONSUMER_KERNEL:
2930 break;
2931 case LTTNG_CONSUMER32_UST:
2932 case LTTNG_CONSUMER64_UST:
212d67a2
DG
2933 health_code_update();
2934 /* Destroy streams that might have been left in the stream list. */
2935 clean_channel_stream_list(chan);
f2a444f1
DG
2936 break;
2937 default:
2938 ERR("Unknown consumer_data type");
2939 assert(0);
2940 }
2941
a0cbdd2e
MD
2942 /*
2943 * Release our own refcount. Force channel deletion even if
2944 * streams were not initialized.
2945 */
2946 if (!uatomic_sub_return(&chan->refcount, 1)) {
2947 consumer_del_channel(chan);
2948 }
c7260a81 2949 rcu_read_unlock();
a0cbdd2e
MD
2950 goto restart;
2951 }
d8ef542d
MD
2952 case CONSUMER_CHANNEL_QUIT:
2953 /*
2954 * Remove the pipe from the poll set and continue the loop
2955 * since their might be data to consume.
2956 */
2957 lttng_poll_del(&events, ctx->consumer_channel_pipe[0]);
2958 continue;
2959 default:
2960 ERR("Unknown action");
2961 break;
2962 }
03e43155
MD
2963 } else if (revents & (LPOLLERR | LPOLLHUP)) {
2964 DBG("Channel thread pipe hung up");
2965 /*
2966 * Remove the pipe from the poll set and continue the loop
2967 * since their might be data to consume.
2968 */
2969 lttng_poll_del(&events, ctx->consumer_channel_pipe[0]);
2970 continue;
2971 } else {
2972 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
2973 goto end;
d8ef542d
MD
2974 }
2975
2976 /* Handle other stream */
2977 continue;
2978 }
2979
2980 rcu_read_lock();
2981 {
2982 uint64_t tmp_id = (uint64_t) pollfd;
2983
2984 lttng_ht_lookup(channel_ht, &tmp_id, &iter);
2985 }
2986 node = lttng_ht_iter_get_node_u64(&iter);
2987 assert(node);
2988
2989 chan = caa_container_of(node, struct lttng_consumer_channel,
2990 wait_fd_node);
2991
2992 /* Check for error event */
2993 if (revents & (LPOLLERR | LPOLLHUP)) {
2994 DBG("Channel fd %d is hup|err.", pollfd);
2995
2996 lttng_poll_del(&events, chan->wait_fd);
2997 ret = lttng_ht_del(channel_ht, &iter);
2998 assert(ret == 0);
b4a650f3
DG
2999
3000 /*
3001 * This will close the wait fd for each stream associated to
3002 * this channel AND monitored by the data/metadata thread thus
3003 * will be clean by the right thread.
3004 */
d8ef542d 3005 consumer_close_channel_streams(chan);
f2ad556d
MD
3006
3007 /* Release our own refcount */
3008 if (!uatomic_sub_return(&chan->refcount, 1)
3009 && !uatomic_read(&chan->nb_init_stream_left)) {
3010 consumer_del_channel(chan);
3011 }
03e43155
MD
3012 } else {
3013 ERR("Unexpected poll events %u for sock %d", revents, pollfd);
3014 rcu_read_unlock();
3015 goto end;
d8ef542d
MD
3016 }
3017
3018 /* Release RCU lock for the channel looked up */
3019 rcu_read_unlock();
3020 }
3021 }
3022
1fc79fb4
MD
3023 /* All is OK */
3024 err = 0;
d8ef542d
MD
3025end:
3026 lttng_poll_clean(&events);
3027end_poll:
3028 destroy_channel_ht(channel_ht);
3029end_ht:
2d57de81 3030error_testpoint:
d8ef542d 3031 DBG("Channel poll thread exiting");
1fc79fb4
MD
3032 if (err) {
3033 health_error();
3034 ERR("Health error occurred in %s", __func__);
3035 }
3036 health_unregister(health_consumerd);
d8ef542d
MD
3037 rcu_unregister_thread();
3038 return NULL;
3039}
3040
331744e3
JD
3041static int set_metadata_socket(struct lttng_consumer_local_data *ctx,
3042 struct pollfd *sockpoll, int client_socket)
3043{
3044 int ret;
3045
3046 assert(ctx);
3047 assert(sockpoll);
3048
84382d49
MD
3049 ret = lttng_consumer_poll_socket(sockpoll);
3050 if (ret) {
331744e3
JD
3051 goto error;
3052 }
3053 DBG("Metadata connection on client_socket");
3054
3055 /* Blocking call, waiting for transmission */
3056 ctx->consumer_metadata_socket = lttcomm_accept_unix_sock(client_socket);
3057 if (ctx->consumer_metadata_socket < 0) {
3058 WARN("On accept metadata");
3059 ret = -1;
3060 goto error;
3061 }
3062 ret = 0;
3063
3064error:
3065 return ret;
3066}
3067
3bd1e081
MD
3068/*
3069 * This thread listens on the consumerd socket and receives the file
3070 * descriptors from the session daemon.
3071 */
7d980def 3072void *consumer_thread_sessiond_poll(void *data)
3bd1e081 3073{
1fc79fb4 3074 int sock = -1, client_socket, ret, err = -1;
3bd1e081
MD
3075 /*
3076 * structure to poll for incoming data on communication socket avoids
3077 * making blocking sockets.
3078 */
3079 struct pollfd consumer_sockpoll[2];
3080 struct lttng_consumer_local_data *ctx = data;
3081
e7b994a3
DG
3082 rcu_register_thread();
3083
1fc79fb4
MD
3084 health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_SESSIOND);
3085
2d57de81
MD
3086 if (testpoint(consumerd_thread_sessiond)) {
3087 goto error_testpoint;
3088 }
3089
9ce5646a
MD
3090 health_code_update();
3091
3bd1e081
MD
3092 DBG("Creating command socket %s", ctx->consumer_command_sock_path);
3093 unlink(ctx->consumer_command_sock_path);
3094 client_socket = lttcomm_create_unix_sock(ctx->consumer_command_sock_path);
3095 if (client_socket < 0) {
3096 ERR("Cannot create command socket");
3097 goto end;
3098 }
3099
3100 ret = lttcomm_listen_unix_sock(client_socket);
3101 if (ret < 0) {
3102 goto end;
3103 }
3104
32258573 3105 DBG("Sending ready command to lttng-sessiond");
f73fabfd 3106 ret = lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_COMMAND_SOCK_READY);
3bd1e081
MD
3107 /* return < 0 on error, but == 0 is not fatal */
3108 if (ret < 0) {
32258573 3109 ERR("Error sending ready command to lttng-sessiond");
3bd1e081
MD
3110 goto end;
3111 }
3112
3bd1e081
MD
3113 /* prepare the FDs to poll : to client socket and the should_quit pipe */
3114 consumer_sockpoll[0].fd = ctx->consumer_should_quit[0];
3115 consumer_sockpoll[0].events = POLLIN | POLLPRI;
3116 consumer_sockpoll[1].fd = client_socket;
3117 consumer_sockpoll[1].events = POLLIN | POLLPRI;
3118
84382d49
MD
3119 ret = lttng_consumer_poll_socket(consumer_sockpoll);
3120 if (ret) {
3121 if (ret > 0) {
3122 /* should exit */
3123 err = 0;
3124 }
3bd1e081
MD
3125 goto end;
3126 }
3127 DBG("Connection on client_socket");
3128
3129 /* Blocking call, waiting for transmission */
3130 sock = lttcomm_accept_unix_sock(client_socket);
534d2592 3131 if (sock < 0) {
3bd1e081
MD
3132 WARN("On accept");
3133 goto end;
3134 }
3bd1e081 3135
331744e3
JD
3136 /*
3137 * Setup metadata socket which is the second socket connection on the
3138 * command unix socket.
3139 */
3140 ret = set_metadata_socket(ctx, consumer_sockpoll, client_socket);
84382d49
MD
3141 if (ret) {
3142 if (ret > 0) {
3143 /* should exit */
3144 err = 0;
3145 }
331744e3
JD
3146 goto end;
3147 }
3148
d96f09c6
DG
3149 /* This socket is not useful anymore. */
3150 ret = close(client_socket);
3151 if (ret < 0) {
3152 PERROR("close client_socket");
3153 }
3154 client_socket = -1;
3155
3bd1e081
MD
3156 /* update the polling structure to poll on the established socket */
3157 consumer_sockpoll[1].fd = sock;
3158 consumer_sockpoll[1].events = POLLIN | POLLPRI;
3159
3160 while (1) {
9ce5646a
MD
3161 health_code_update();
3162
3163 health_poll_entry();
3164 ret = lttng_consumer_poll_socket(consumer_sockpoll);
3165 health_poll_exit();
84382d49
MD
3166 if (ret) {
3167 if (ret > 0) {
3168 /* should exit */
3169 err = 0;
3170 }
3bd1e081
MD
3171 goto end;
3172 }
3173 DBG("Incoming command on sock");
3174 ret = lttng_consumer_recv_cmd(ctx, sock, consumer_sockpoll);
4cbc1a04
DG
3175 if (ret <= 0) {
3176 /*
3177 * This could simply be a session daemon quitting. Don't output
3178 * ERR() here.
3179 */
3180 DBG("Communication interrupted on command socket");
41ba6035 3181 err = 0;
3bd1e081
MD
3182 goto end;
3183 }
3184 if (consumer_quit) {
3185 DBG("consumer_thread_receive_fds received quit from signal");
1fc79fb4 3186 err = 0; /* All is OK */
3bd1e081
MD
3187 goto end;
3188 }
ffe60014 3189 DBG("received command on sock");
3bd1e081 3190 }
1fc79fb4
MD
3191 /* All is OK */
3192 err = 0;
3193
3bd1e081 3194end:
ffe60014 3195 DBG("Consumer thread sessiond poll exiting");
3bd1e081 3196
d88aee68
DG
3197 /*
3198 * Close metadata streams since the producer is the session daemon which
3199 * just died.
3200 *
3201 * NOTE: for now, this only applies to the UST tracer.
3202 */
6d574024 3203 lttng_consumer_close_all_metadata();
d88aee68 3204
3bd1e081
MD
3205 /*
3206 * when all fds have hung up, the polling thread
3207 * can exit cleanly
3208 */
3209 consumer_quit = 1;
3210
04fdd819 3211 /*
c869f647 3212 * Notify the data poll thread to poll back again and test the
8994307f 3213 * consumer_quit state that we just set so to quit gracefully.
04fdd819 3214 */
acdb9057 3215 notify_thread_lttng_pipe(ctx->consumer_data_pipe);
c869f647 3216
a0cbdd2e 3217 notify_channel_pipe(ctx, NULL, -1, CONSUMER_CHANNEL_QUIT);
d8ef542d 3218
5c635c72
MD
3219 notify_health_quit_pipe(health_quit_pipe);
3220
d96f09c6
DG
3221 /* Cleaning up possibly open sockets. */
3222 if (sock >= 0) {
3223 ret = close(sock);
3224 if (ret < 0) {
3225 PERROR("close sock sessiond poll");
3226 }
3227 }
3228 if (client_socket >= 0) {
38476d24 3229 ret = close(client_socket);
d96f09c6
DG
3230 if (ret < 0) {
3231 PERROR("close client_socket sessiond poll");
3232 }
3233 }
3234
2d57de81 3235error_testpoint:
1fc79fb4
MD
3236 if (err) {
3237 health_error();
3238 ERR("Health error occurred in %s", __func__);
3239 }
3240 health_unregister(health_consumerd);
3241
e7b994a3 3242 rcu_unregister_thread();
3bd1e081
MD
3243 return NULL;
3244}
d41f73b7 3245
4078b776 3246ssize_t lttng_consumer_read_subbuffer(struct lttng_consumer_stream *stream,
d41f73b7
MD
3247 struct lttng_consumer_local_data *ctx)
3248{
74251bb8
DG
3249 ssize_t ret;
3250
3251 pthread_mutex_lock(&stream->lock);
94d49140
JD
3252 if (stream->metadata_flag) {
3253 pthread_mutex_lock(&stream->metadata_rdv_lock);
3254 }
74251bb8 3255
d41f73b7
MD
3256 switch (consumer_data.type) {
3257 case LTTNG_CONSUMER_KERNEL:
74251bb8
DG
3258 ret = lttng_kconsumer_read_subbuffer(stream, ctx);
3259 break;
7753dea8
MD
3260 case LTTNG_CONSUMER32_UST:
3261 case LTTNG_CONSUMER64_UST:
74251bb8
DG
3262 ret = lttng_ustconsumer_read_subbuffer(stream, ctx);
3263 break;
d41f73b7
MD
3264 default:
3265 ERR("Unknown consumer_data type");
3266 assert(0);
74251bb8
DG
3267 ret = -ENOSYS;
3268 break;
d41f73b7 3269 }
74251bb8 3270
94d49140
JD
3271 if (stream->metadata_flag) {
3272 pthread_cond_broadcast(&stream->metadata_rdv);
3273 pthread_mutex_unlock(&stream->metadata_rdv_lock);
3274 }
74251bb8
DG
3275 pthread_mutex_unlock(&stream->lock);
3276 return ret;
d41f73b7
MD
3277}
3278
3279int lttng_consumer_on_recv_stream(struct lttng_consumer_stream *stream)
3280{
3281 switch (consumer_data.type) {
3282 case LTTNG_CONSUMER_KERNEL:
3283 return lttng_kconsumer_on_recv_stream(stream);
7753dea8
MD
3284 case LTTNG_CONSUMER32_UST:
3285 case LTTNG_CONSUMER64_UST:
d41f73b7
MD
3286 return lttng_ustconsumer_on_recv_stream(stream);
3287 default:
3288 ERR("Unknown consumer_data type");
3289 assert(0);
3290 return -ENOSYS;
3291 }
3292}
e4421fec
DG
3293
3294/*
3295 * Allocate and set consumer data hash tables.
3296 */
282dadbc 3297int lttng_consumer_init(void)
e4421fec 3298{
d88aee68 3299 consumer_data.channel_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3300 if (!consumer_data.channel_ht) {
3301 goto error;
3302 }
3303
d88aee68 3304 consumer_data.relayd_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3305 if (!consumer_data.relayd_ht) {
3306 goto error;
3307 }
3308
d88aee68 3309 consumer_data.stream_list_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3310 if (!consumer_data.stream_list_ht) {
3311 goto error;
3312 }
3313
d8ef542d 3314 consumer_data.stream_per_chan_id_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
282dadbc
MD
3315 if (!consumer_data.stream_per_chan_id_ht) {
3316 goto error;
3317 }
3318
3319 data_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
3320 if (!data_ht) {
3321 goto error;
3322 }
3323
3324 metadata_ht = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
3325 if (!metadata_ht) {
3326 goto error;
3327 }
3328
3329 return 0;
3330
3331error:
3332 return -1;
e4421fec 3333}
7735ef9e
DG
3334
3335/*
3336 * Process the ADD_RELAYD command receive by a consumer.
3337 *
3338 * This will create a relayd socket pair and add it to the relayd hash table.
3339 * The caller MUST acquire a RCU read side lock before calling it.
3340 */
da009f2c 3341int consumer_add_relayd_socket(uint64_t net_seq_idx, int sock_type,
7735ef9e 3342 struct lttng_consumer_local_data *ctx, int sock,
6151a90f 3343 struct pollfd *consumer_sockpoll,
d3e2ba59
JD
3344 struct lttcomm_relayd_sock *relayd_sock, uint64_t sessiond_id,
3345 uint64_t relayd_session_id)
7735ef9e 3346{
cd2b09ed 3347 int fd = -1, ret = -1, relayd_created = 0;
0c759fc9 3348 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
d4298c99 3349 struct consumer_relayd_sock_pair *relayd = NULL;
7735ef9e 3350
6151a90f
JD
3351 assert(ctx);
3352 assert(relayd_sock);
3353
da009f2c 3354 DBG("Consumer adding relayd socket (idx: %" PRIu64 ")", net_seq_idx);
7735ef9e
DG
3355
3356 /* Get relayd reference if exists. */
3357 relayd = consumer_find_relayd(net_seq_idx);
3358 if (relayd == NULL) {
da009f2c 3359 assert(sock_type == LTTNG_STREAM_CONTROL);
7735ef9e
DG
3360 /* Not found. Allocate one. */
3361 relayd = consumer_allocate_relayd_sock_pair(net_seq_idx);
3362 if (relayd == NULL) {
0d08d75e 3363 ret = -ENOMEM;
618a6a28
MD
3364 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
3365 goto error;
0d08d75e 3366 } else {
30319bcb 3367 relayd->sessiond_session_id = sessiond_id;
0d08d75e 3368 relayd_created = 1;
7735ef9e 3369 }
0d08d75e
DG
3370
3371 /*
3372 * This code path MUST continue to the consumer send status message to
3373 * we can notify the session daemon and continue our work without
3374 * killing everything.
3375 */
da009f2c
MD
3376 } else {
3377 /*
3378 * relayd key should never be found for control socket.
3379 */
3380 assert(sock_type != LTTNG_STREAM_CONTROL);
0d08d75e
DG
3381 }
3382
3383 /* First send a status message before receiving the fds. */
0c759fc9 3384 ret = consumer_send_status_msg(sock, LTTCOMM_CONSUMERD_SUCCESS);
618a6a28 3385 if (ret < 0) {
0d08d75e 3386 /* Somehow, the session daemon is not responding anymore. */
618a6a28
MD
3387 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_FATAL);
3388 goto error_nosignal;
7735ef9e
DG
3389 }
3390
3391 /* Poll on consumer socket. */
84382d49
MD
3392 ret = lttng_consumer_poll_socket(consumer_sockpoll);
3393 if (ret) {
3394 /* Needing to exit in the middle of a command: error. */
0d08d75e 3395 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_POLL_ERROR);
7735ef9e 3396 ret = -EINTR;
618a6a28 3397 goto error_nosignal;
7735ef9e
DG
3398 }
3399
3400 /* Get relayd socket from session daemon */
3401 ret = lttcomm_recv_fds_unix_sock(sock, &fd, 1);
3402 if (ret != sizeof(fd)) {
7735ef9e 3403 ret = -1;
4028eeb9 3404 fd = -1; /* Just in case it gets set with an invalid value. */
0d08d75e
DG
3405
3406 /*
3407 * Failing to receive FDs might indicate a major problem such as
3408 * reaching a fd limit during the receive where the kernel returns a
3409 * MSG_CTRUNC and fails to cleanup the fd in the queue. Any case, we
3410 * don't take any chances and stop everything.
3411 *
3412 * XXX: Feature request #558 will fix that and avoid this possible
3413 * issue when reaching the fd limit.
3414 */
3415 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_FD);
618a6a28 3416 ret_code = LTTCOMM_CONSUMERD_ERROR_RECV_FD;
f50f23d9
DG
3417 goto error;
3418 }
3419
7735ef9e
DG
3420 /* Copy socket information and received FD */
3421 switch (sock_type) {
3422 case LTTNG_STREAM_CONTROL:
3423 /* Copy received lttcomm socket */
6151a90f
JD
3424 lttcomm_copy_sock(&relayd->control_sock.sock, &relayd_sock->sock);
3425 ret = lttcomm_create_sock(&relayd->control_sock.sock);
4028eeb9 3426 /* Handle create_sock error. */
f66c074c 3427 if (ret < 0) {
618a6a28 3428 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
4028eeb9 3429 goto error;
f66c074c 3430 }
da009f2c
MD
3431 /*
3432 * Close the socket created internally by
3433 * lttcomm_create_sock, so we can replace it by the one
3434 * received from sessiond.
3435 */
3436 if (close(relayd->control_sock.sock.fd)) {
3437 PERROR("close");
3438 }
7735ef9e
DG
3439
3440 /* Assign new file descriptor */
6151a90f 3441 relayd->control_sock.sock.fd = fd;
4b29f1ce 3442 fd = -1; /* For error path */
6151a90f
JD
3443 /* Assign version values. */
3444 relayd->control_sock.major = relayd_sock->major;
3445 relayd->control_sock.minor = relayd_sock->minor;
c5b6f4f0 3446
d3e2ba59 3447 relayd->relayd_session_id = relayd_session_id;
c5b6f4f0 3448
7735ef9e
DG
3449 break;
3450 case LTTNG_STREAM_DATA:
3451 /* Copy received lttcomm socket */
6151a90f
JD
3452 lttcomm_copy_sock(&relayd->data_sock.sock, &relayd_sock->sock);
3453 ret = lttcomm_create_sock(&relayd->data_sock.sock);
4028eeb9 3454 /* Handle create_sock error. */
f66c074c 3455 if (ret < 0) {
618a6a28 3456 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
4028eeb9 3457 goto error;
f66c074c 3458 }
da009f2c
MD
3459 /*
3460 * Close the socket created internally by
3461 * lttcomm_create_sock, so we can replace it by the one
3462 * received from sessiond.
3463 */
3464 if (close(relayd->data_sock.sock.fd)) {
3465 PERROR("close");
3466 }
7735ef9e
DG
3467
3468 /* Assign new file descriptor */
6151a90f 3469 relayd->data_sock.sock.fd = fd;
4b29f1ce 3470 fd = -1; /* for eventual error paths */
6151a90f
JD
3471 /* Assign version values. */
3472 relayd->data_sock.major = relayd_sock->major;
3473 relayd->data_sock.minor = relayd_sock->minor;
7735ef9e
DG
3474 break;
3475 default:
3476 ERR("Unknown relayd socket type (%d)", sock_type);
59e71485 3477 ret = -1;
618a6a28 3478 ret_code = LTTCOMM_CONSUMERD_FATAL;
7735ef9e
DG
3479 goto error;
3480 }
3481
d88aee68 3482 DBG("Consumer %s socket created successfully with net idx %" PRIu64 " (fd: %d)",
7735ef9e
DG
3483 sock_type == LTTNG_STREAM_CONTROL ? "control" : "data",
3484 relayd->net_seq_idx, fd);
3485
618a6a28
MD
3486 /* We successfully added the socket. Send status back. */
3487 ret = consumer_send_status_msg(sock, ret_code);
3488 if (ret < 0) {
3489 /* Somehow, the session daemon is not responding anymore. */
3490 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_FATAL);
3491 goto error_nosignal;
3492 }
3493
7735ef9e
DG
3494 /*
3495 * Add relayd socket pair to consumer data hashtable. If object already
3496 * exists or on error, the function gracefully returns.
3497 */
d09e1200 3498 add_relayd(relayd);
7735ef9e
DG
3499
3500 /* All good! */
4028eeb9 3501 return 0;
7735ef9e
DG
3502
3503error:
618a6a28
MD
3504 if (consumer_send_status_msg(sock, ret_code) < 0) {
3505 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_FATAL);
3506 }
3507
3508error_nosignal:
4028eeb9
DG
3509 /* Close received socket if valid. */
3510 if (fd >= 0) {
3511 if (close(fd)) {
3512 PERROR("close received socket");
3513 }
3514 }
cd2b09ed
DG
3515
3516 if (relayd_created) {
cd2b09ed
DG
3517 free(relayd);
3518 }
3519
7735ef9e
DG
3520 return ret;
3521}
ca22feea 3522
4e9a4686
DG
3523/*
3524 * Try to lock the stream mutex.
3525 *
3526 * On success, 1 is returned else 0 indicating that the mutex is NOT lock.
3527 */
3528static int stream_try_lock(struct lttng_consumer_stream *stream)
3529{
3530 int ret;
3531
3532 assert(stream);
3533
3534 /*
3535 * Try to lock the stream mutex. On failure, we know that the stream is
3536 * being used else where hence there is data still being extracted.
3537 */
3538 ret = pthread_mutex_trylock(&stream->lock);
3539 if (ret) {
3540 /* For both EBUSY and EINVAL error, the mutex is NOT locked. */
3541 ret = 0;
3542 goto end;
3543 }
3544
3545 ret = 1;
3546
3547end:
3548 return ret;
3549}
3550
f7079f67
DG
3551/*
3552 * Search for a relayd associated to the session id and return the reference.
3553 *
3554 * A rcu read side lock MUST be acquire before calling this function and locked
3555 * until the relayd object is no longer necessary.
3556 */
3557static struct consumer_relayd_sock_pair *find_relayd_by_session_id(uint64_t id)
3558{
3559 struct lttng_ht_iter iter;
f7079f67 3560 struct consumer_relayd_sock_pair *relayd = NULL;
f7079f67
DG
3561
3562 /* Iterate over all relayd since they are indexed by net_seq_idx. */
3563 cds_lfht_for_each_entry(consumer_data.relayd_ht->ht, &iter.iter, relayd,
3564 node.node) {
18261bd1
DG
3565 /*
3566 * Check by sessiond id which is unique here where the relayd session
3567 * id might not be when having multiple relayd.
3568 */
3569 if (relayd->sessiond_session_id == id) {
f7079f67 3570 /* Found the relayd. There can be only one per id. */
18261bd1 3571 goto found;
f7079f67
DG
3572 }
3573 }
3574
18261bd1
DG
3575 return NULL;
3576
3577found:
f7079f67
DG
3578 return relayd;
3579}
3580
ca22feea
DG
3581/*
3582 * Check if for a given session id there is still data needed to be extract
3583 * from the buffers.
3584 *
6d805429 3585 * Return 1 if data is pending or else 0 meaning ready to be read.
ca22feea 3586 */
6d805429 3587int consumer_data_pending(uint64_t id)
ca22feea
DG
3588{
3589 int ret;
3590 struct lttng_ht_iter iter;
3591 struct lttng_ht *ht;
3592 struct lttng_consumer_stream *stream;
f7079f67 3593 struct consumer_relayd_sock_pair *relayd = NULL;
6d805429 3594 int (*data_pending)(struct lttng_consumer_stream *);
ca22feea 3595
6d805429 3596 DBG("Consumer data pending command on session id %" PRIu64, id);
ca22feea 3597
6f6eda74 3598 rcu_read_lock();
ca22feea
DG
3599 pthread_mutex_lock(&consumer_data.lock);
3600
3601 switch (consumer_data.type) {
3602 case LTTNG_CONSUMER_KERNEL:
6d805429 3603 data_pending = lttng_kconsumer_data_pending;
ca22feea
DG
3604 break;
3605 case LTTNG_CONSUMER32_UST:
3606 case LTTNG_CONSUMER64_UST:
6d805429 3607 data_pending = lttng_ustconsumer_data_pending;
ca22feea
DG
3608 break;
3609 default:
3610 ERR("Unknown consumer data type");
3611 assert(0);
3612 }
3613
3614 /* Ease our life a bit */
3615 ht = consumer_data.stream_list_ht;
3616
f7079f67
DG
3617 relayd = find_relayd_by_session_id(id);
3618 if (relayd) {
3619 /* Send init command for data pending. */
3620 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
3621 ret = relayd_begin_data_pending(&relayd->control_sock,
3622 relayd->relayd_session_id);
3623 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
3624 if (ret < 0) {
3625 /* Communication error thus the relayd so no data pending. */
3626 goto data_not_pending;
3627 }
3628 }
3629
c8f59ee5 3630 cds_lfht_for_each_entry_duplicate(ht->ht,
d88aee68
DG
3631 ht->hash_fct(&id, lttng_ht_seed),
3632 ht->match_fct, &id,
ca22feea 3633 &iter.iter, stream, node_session_id.node) {
4e9a4686
DG
3634 /* If this call fails, the stream is being used hence data pending. */
3635 ret = stream_try_lock(stream);
3636 if (!ret) {
f7079f67 3637 goto data_pending;
ca22feea 3638 }
ca22feea 3639
4e9a4686
DG
3640 /*
3641 * A removed node from the hash table indicates that the stream has
3642 * been deleted thus having a guarantee that the buffers are closed
3643 * on the consumer side. However, data can still be transmitted
3644 * over the network so don't skip the relayd check.
3645 */
3646 ret = cds_lfht_is_node_deleted(&stream->node.node);
3647 if (!ret) {
3648 /* Check the stream if there is data in the buffers. */
6d805429
DG
3649 ret = data_pending(stream);
3650 if (ret == 1) {
4e9a4686 3651 pthread_mutex_unlock(&stream->lock);
f7079f67 3652 goto data_pending;
4e9a4686
DG
3653 }
3654 }
3655
3656 /* Relayd check */
f7079f67 3657 if (relayd) {
c8f59ee5
DG
3658 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
3659 if (stream->metadata_flag) {
ad7051c0
DG
3660 ret = relayd_quiescent_control(&relayd->control_sock,
3661 stream->relayd_stream_id);
c8f59ee5 3662 } else {
6d805429 3663 ret = relayd_data_pending(&relayd->control_sock,
39df6d9f
DG
3664 stream->relayd_stream_id,
3665 stream->next_net_seq_num - 1);
c8f59ee5
DG
3666 }
3667 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
6d805429 3668 if (ret == 1) {
4e9a4686 3669 pthread_mutex_unlock(&stream->lock);
f7079f67 3670 goto data_pending;
c8f59ee5
DG
3671 }
3672 }
4e9a4686 3673 pthread_mutex_unlock(&stream->lock);
c8f59ee5 3674 }
ca22feea 3675
f7079f67
DG
3676 if (relayd) {
3677 unsigned int is_data_inflight = 0;
3678
3679 /* Send init command for data pending. */
3680 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
3681 ret = relayd_end_data_pending(&relayd->control_sock,
3682 relayd->relayd_session_id, &is_data_inflight);
3683 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
bdd88757 3684 if (ret < 0) {
f7079f67
DG
3685 goto data_not_pending;
3686 }
bdd88757
DG
3687 if (is_data_inflight) {
3688 goto data_pending;
3689 }
f7079f67
DG
3690 }
3691
ca22feea 3692 /*
f7079f67
DG
3693 * Finding _no_ node in the hash table and no inflight data means that the
3694 * stream(s) have been removed thus data is guaranteed to be available for
3695 * analysis from the trace files.
ca22feea
DG
3696 */
3697
f7079f67 3698data_not_pending:
ca22feea
DG
3699 /* Data is available to be read by a viewer. */
3700 pthread_mutex_unlock(&consumer_data.lock);
c8f59ee5 3701 rcu_read_unlock();
6d805429 3702 return 0;
ca22feea 3703
f7079f67 3704data_pending:
ca22feea
DG
3705 /* Data is still being extracted from buffers. */
3706 pthread_mutex_unlock(&consumer_data.lock);
c8f59ee5 3707 rcu_read_unlock();
6d805429 3708 return 1;
ca22feea 3709}
f50f23d9
DG
3710
3711/*
3712 * Send a ret code status message to the sessiond daemon.
3713 *
3714 * Return the sendmsg() return value.
3715 */
3716int consumer_send_status_msg(int sock, int ret_code)
3717{
3718 struct lttcomm_consumer_status_msg msg;
3719
53efb85a 3720 memset(&msg, 0, sizeof(msg));
f50f23d9
DG
3721 msg.ret_code = ret_code;
3722
3723 return lttcomm_send_unix_sock(sock, &msg, sizeof(msg));
3724}
ffe60014
DG
3725
3726/*
3727 * Send a channel status message to the sessiond daemon.
3728 *
3729 * Return the sendmsg() return value.
3730 */
3731int consumer_send_status_channel(int sock,
3732 struct lttng_consumer_channel *channel)
3733{
3734 struct lttcomm_consumer_status_channel msg;
3735
3736 assert(sock >= 0);
3737
53efb85a 3738 memset(&msg, 0, sizeof(msg));
ffe60014 3739 if (!channel) {
0c759fc9 3740 msg.ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL;
ffe60014 3741 } else {
0c759fc9 3742 msg.ret_code = LTTCOMM_CONSUMERD_SUCCESS;
ffe60014
DG
3743 msg.key = channel->key;
3744 msg.stream_count = channel->streams.count;
3745 }
3746
3747 return lttcomm_send_unix_sock(sock, &msg, sizeof(msg));
3748}
5c786ded 3749
d07ceecd
MD
3750unsigned long consumer_get_consume_start_pos(unsigned long consumed_pos,
3751 unsigned long produced_pos, uint64_t nb_packets_per_stream,
3752 uint64_t max_sb_size)
5c786ded 3753{
d07ceecd 3754 unsigned long start_pos;
5c786ded 3755
d07ceecd
MD
3756 if (!nb_packets_per_stream) {
3757 return consumed_pos; /* Grab everything */
3758 }
3759 start_pos = produced_pos - offset_align_floor(produced_pos, max_sb_size);
3760 start_pos -= max_sb_size * nb_packets_per_stream;
3761 if ((long) (start_pos - consumed_pos) < 0) {
3762 return consumed_pos; /* Grab everything */
3763 }
3764 return start_pos;
5c786ded 3765}
This page took 0.303283 seconds and 5 git commands to generate.