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