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