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