Fix: grab more than one packet for snapshots
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.c
CommitLineData
3bd1e081
MD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
d14d33bf
AM
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
3bd1e081
MD
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
d14d33bf
AM
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3bd1e081
MD
17 */
18
19#define _GNU_SOURCE
20#include <assert.h>
f02e1e8a 21#include <lttng/ust-ctl.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>
dbb5dfe6 28#include <sys/stat.h>
3bd1e081 29#include <sys/types.h>
77c7c900 30#include <inttypes.h>
3bd1e081 31#include <unistd.h>
ffe60014 32#include <urcu/list.h>
331744e3 33#include <signal.h>
0857097f 34
51a9e1c7 35#include <bin/lttng-consumerd/health-consumerd.h>
990570ed 36#include <common/common.h>
10a8a223 37#include <common/sessiond-comm/sessiond-comm.h>
00e2e675 38#include <common/relayd/relayd.h>
dbb5dfe6 39#include <common/compat/fcntl.h>
f263b7fd 40#include <common/compat/endian.h>
331744e3 41#include <common/consumer-metadata-cache.h>
10a50311 42#include <common/consumer-stream.h>
331744e3 43#include <common/consumer-timer.h>
fe4477ee 44#include <common/utils.h>
309167d2 45#include <common/index/index.h>
10a8a223
DG
46
47#include "ust-consumer.h"
3bd1e081
MD
48
49extern struct lttng_consumer_global_data consumer_data;
50extern int consumer_poll_timeout;
51extern volatile int consumer_quit;
52
53/*
ffe60014
DG
54 * Free channel object and all streams associated with it. This MUST be used
55 * only and only if the channel has _NEVER_ been added to the global channel
56 * hash table.
3bd1e081 57 */
ffe60014 58static void destroy_channel(struct lttng_consumer_channel *channel)
3bd1e081 59{
ffe60014
DG
60 struct lttng_consumer_stream *stream, *stmp;
61
62 assert(channel);
63
64 DBG("UST consumer cleaning stream list");
65
66 cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head,
67 send_node) {
9ce5646a
MD
68
69 health_code_update();
70
ffe60014
DG
71 cds_list_del(&stream->send_node);
72 ustctl_destroy_stream(stream->ustream);
73 free(stream);
74 }
75
76 /*
77 * If a channel is available meaning that was created before the streams
78 * were, delete it.
79 */
80 if (channel->uchan) {
81 lttng_ustconsumer_del_channel(channel);
82 }
83 free(channel);
84}
3bd1e081
MD
85
86/*
ffe60014 87 * Add channel to internal consumer state.
3bd1e081 88 *
ffe60014 89 * Returns 0 on success or else a negative value.
3bd1e081 90 */
ffe60014
DG
91static int add_channel(struct lttng_consumer_channel *channel,
92 struct lttng_consumer_local_data *ctx)
3bd1e081
MD
93{
94 int ret = 0;
95
ffe60014
DG
96 assert(channel);
97 assert(ctx);
98
99 if (ctx->on_recv_channel != NULL) {
100 ret = ctx->on_recv_channel(channel);
101 if (ret == 0) {
d8ef542d 102 ret = consumer_add_channel(channel, ctx);
ffe60014
DG
103 } else if (ret < 0) {
104 /* Most likely an ENOMEM. */
105 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
106 goto error;
107 }
108 } else {
d8ef542d 109 ret = consumer_add_channel(channel, ctx);
3bd1e081
MD
110 }
111
d88aee68 112 DBG("UST consumer channel added (key: %" PRIu64 ")", channel->key);
ffe60014
DG
113
114error:
3bd1e081
MD
115 return ret;
116}
117
118/*
ffe60014
DG
119 * Allocate and return a consumer channel object.
120 */
121static struct lttng_consumer_channel *allocate_channel(uint64_t session_id,
122 const char *pathname, const char *name, uid_t uid, gid_t gid,
da009f2c 123 uint64_t relayd_id, uint64_t key, enum lttng_event_output output,
2bba9e53 124 uint64_t tracefile_size, uint64_t tracefile_count,
ecc48a90
JD
125 uint64_t session_id_per_pid, unsigned int monitor,
126 unsigned int live_timer_interval)
ffe60014
DG
127{
128 assert(pathname);
129 assert(name);
130
1950109e
JD
131 return consumer_allocate_channel(key, session_id, pathname, name, uid,
132 gid, relayd_id, output, tracefile_size,
ecc48a90 133 tracefile_count, session_id_per_pid, monitor, live_timer_interval);
ffe60014
DG
134}
135
136/*
137 * Allocate and return a consumer stream object. If _alloc_ret is not NULL, the
138 * error value if applicable is set in it else it is kept untouched.
3bd1e081 139 *
ffe60014 140 * Return NULL on error else the newly allocated stream object.
3bd1e081 141 */
ffe60014
DG
142static struct lttng_consumer_stream *allocate_stream(int cpu, int key,
143 struct lttng_consumer_channel *channel,
144 struct lttng_consumer_local_data *ctx, int *_alloc_ret)
145{
146 int alloc_ret;
147 struct lttng_consumer_stream *stream = NULL;
148
149 assert(channel);
150 assert(ctx);
151
152 stream = consumer_allocate_stream(channel->key,
153 key,
154 LTTNG_CONSUMER_ACTIVE_STREAM,
155 channel->name,
156 channel->uid,
157 channel->gid,
158 channel->relayd_id,
159 channel->session_id,
160 cpu,
161 &alloc_ret,
4891ece8
DG
162 channel->type,
163 channel->monitor);
ffe60014
DG
164 if (stream == NULL) {
165 switch (alloc_ret) {
166 case -ENOENT:
167 /*
168 * We could not find the channel. Can happen if cpu hotplug
169 * happens while tearing down.
170 */
171 DBG3("Could not find channel");
172 break;
173 case -ENOMEM:
174 case -EINVAL:
175 default:
176 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
177 break;
178 }
179 goto error;
180 }
181
182 stream->chan = channel;
183
184error:
185 if (_alloc_ret) {
186 *_alloc_ret = alloc_ret;
187 }
188 return stream;
189}
190
191/*
192 * Send the given stream pointer to the corresponding thread.
193 *
194 * Returns 0 on success else a negative value.
195 */
196static int send_stream_to_thread(struct lttng_consumer_stream *stream,
197 struct lttng_consumer_local_data *ctx)
198{
dae10966
DG
199 int ret;
200 struct lttng_pipe *stream_pipe;
ffe60014
DG
201
202 /* Get the right pipe where the stream will be sent. */
203 if (stream->metadata_flag) {
5ab66908
MD
204 ret = consumer_add_metadata_stream(stream);
205 if (ret) {
206 ERR("Consumer add metadata stream %" PRIu64 " failed.",
207 stream->key);
208 goto error;
209 }
dae10966 210 stream_pipe = ctx->consumer_metadata_pipe;
ffe60014 211 } else {
5ab66908
MD
212 ret = consumer_add_data_stream(stream);
213 if (ret) {
214 ERR("Consumer add stream %" PRIu64 " failed.",
215 stream->key);
216 goto error;
217 }
dae10966 218 stream_pipe = ctx->consumer_data_pipe;
ffe60014
DG
219 }
220
5ab66908
MD
221 /*
222 * From this point on, the stream's ownership has been moved away from
223 * the channel and becomes globally visible.
224 */
225 stream->globally_visible = 1;
226
dae10966 227 ret = lttng_pipe_write(stream_pipe, &stream, sizeof(stream));
ffe60014 228 if (ret < 0) {
dae10966
DG
229 ERR("Consumer write %s stream to pipe %d",
230 stream->metadata_flag ? "metadata" : "data",
231 lttng_pipe_get_writefd(stream_pipe));
5ab66908
MD
232 if (stream->metadata_flag) {
233 consumer_del_stream_for_metadata(stream);
234 } else {
235 consumer_del_stream_for_data(stream);
236 }
ffe60014 237 }
5ab66908 238error:
ffe60014
DG
239 return ret;
240}
241
d88aee68
DG
242/*
243 * Create streams for the given channel using liblttng-ust-ctl.
244 *
245 * Return 0 on success else a negative value.
246 */
ffe60014
DG
247static int create_ust_streams(struct lttng_consumer_channel *channel,
248 struct lttng_consumer_local_data *ctx)
249{
250 int ret, cpu = 0;
251 struct ustctl_consumer_stream *ustream;
252 struct lttng_consumer_stream *stream;
253
254 assert(channel);
255 assert(ctx);
256
257 /*
258 * While a stream is available from ustctl. When NULL is returned, we've
259 * reached the end of the possible stream for the channel.
260 */
261 while ((ustream = ustctl_create_stream(channel->uchan, cpu))) {
262 int wait_fd;
04ef1097 263 int ust_metadata_pipe[2];
ffe60014 264
9ce5646a
MD
265 health_code_update();
266
04ef1097
MD
267 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && channel->monitor) {
268 ret = utils_create_pipe_cloexec_nonblock(ust_metadata_pipe);
269 if (ret < 0) {
270 ERR("Create ust metadata poll pipe");
271 goto error;
272 }
273 wait_fd = ust_metadata_pipe[0];
274 } else {
275 wait_fd = ustctl_stream_get_wait_fd(ustream);
276 }
ffe60014
DG
277
278 /* Allocate consumer stream object. */
279 stream = allocate_stream(cpu, wait_fd, channel, ctx, &ret);
280 if (!stream) {
281 goto error_alloc;
282 }
283 stream->ustream = ustream;
284 /*
285 * Store it so we can save multiple function calls afterwards since
286 * this value is used heavily in the stream threads. This is UST
287 * specific so this is why it's done after allocation.
288 */
289 stream->wait_fd = wait_fd;
290
b31398bb
DG
291 /*
292 * Increment channel refcount since the channel reference has now been
293 * assigned in the allocation process above.
294 */
10a50311
JD
295 if (stream->chan->monitor) {
296 uatomic_inc(&stream->chan->refcount);
297 }
b31398bb 298
ffe60014
DG
299 /*
300 * Order is important this is why a list is used. On error, the caller
301 * should clean this list.
302 */
303 cds_list_add_tail(&stream->send_node, &channel->streams.head);
304
305 ret = ustctl_get_max_subbuf_size(stream->ustream,
306 &stream->max_sb_size);
307 if (ret < 0) {
308 ERR("ustctl_get_max_subbuf_size failed for stream %s",
309 stream->name);
310 goto error;
311 }
312
313 /* Do actions once stream has been received. */
314 if (ctx->on_recv_stream) {
315 ret = ctx->on_recv_stream(stream);
316 if (ret < 0) {
317 goto error;
318 }
319 }
320
d88aee68 321 DBG("UST consumer add stream %s (key: %" PRIu64 ") with relayd id %" PRIu64,
ffe60014
DG
322 stream->name, stream->key, stream->relayd_stream_id);
323
324 /* Set next CPU stream. */
325 channel->streams.count = ++cpu;
d88aee68
DG
326
327 /* Keep stream reference when creating metadata. */
328 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA) {
329 channel->metadata_stream = stream;
04ef1097
MD
330 stream->ust_metadata_poll_pipe[0] = ust_metadata_pipe[0];
331 stream->ust_metadata_poll_pipe[1] = ust_metadata_pipe[1];
d88aee68 332 }
ffe60014
DG
333 }
334
335 return 0;
336
337error:
338error_alloc:
339 return ret;
340}
341
342/*
343 * Create an UST channel with the given attributes and send it to the session
344 * daemon using the ust ctl API.
345 *
346 * Return 0 on success or else a negative value.
347 */
348static int create_ust_channel(struct ustctl_consumer_channel_attr *attr,
349 struct ustctl_consumer_channel **chanp)
350{
351 int ret;
352 struct ustctl_consumer_channel *channel;
353
354 assert(attr);
355 assert(chanp);
356
357 DBG3("Creating channel to ustctl with attr: [overwrite: %d, "
358 "subbuf_size: %" PRIu64 ", num_subbuf: %" PRIu64 ", "
359 "switch_timer_interval: %u, read_timer_interval: %u, "
360 "output: %d, type: %d", attr->overwrite, attr->subbuf_size,
361 attr->num_subbuf, attr->switch_timer_interval,
362 attr->read_timer_interval, attr->output, attr->type);
363
364 channel = ustctl_create_channel(attr);
365 if (!channel) {
366 ret = -1;
367 goto error_create;
368 }
369
370 *chanp = channel;
371
372 return 0;
373
374error_create:
375 return ret;
376}
377
d88aee68
DG
378/*
379 * Send a single given stream to the session daemon using the sock.
380 *
381 * Return 0 on success else a negative value.
382 */
ffe60014
DG
383static int send_sessiond_stream(int sock, struct lttng_consumer_stream *stream)
384{
385 int ret;
386
387 assert(stream);
388 assert(sock >= 0);
389
3eb914c0 390 DBG("UST consumer sending stream %" PRIu64 " to sessiond", stream->key);
ffe60014
DG
391
392 /* Send stream to session daemon. */
393 ret = ustctl_send_stream_to_sessiond(sock, stream->ustream);
394 if (ret < 0) {
395 goto error;
396 }
397
ffe60014
DG
398error:
399 return ret;
400}
401
402/*
403 * Send channel to sessiond.
404 *
d88aee68 405 * Return 0 on success or else a negative value.
ffe60014
DG
406 */
407static int send_sessiond_channel(int sock,
408 struct lttng_consumer_channel *channel,
409 struct lttng_consumer_local_data *ctx, int *relayd_error)
410{
0c759fc9 411 int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS;
ffe60014 412 struct lttng_consumer_stream *stream;
a4baae1b 413 uint64_t net_seq_idx = -1ULL;
ffe60014
DG
414
415 assert(channel);
416 assert(ctx);
417 assert(sock >= 0);
418
419 DBG("UST consumer sending channel %s to sessiond", channel->name);
420
62285ea4
DG
421 if (channel->relayd_id != (uint64_t) -1ULL) {
422 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
9ce5646a
MD
423
424 health_code_update();
425
62285ea4
DG
426 /* Try to send the stream to the relayd if one is available. */
427 ret = consumer_send_relayd_stream(stream, stream->chan->pathname);
428 if (ret < 0) {
429 /*
430 * Flag that the relayd was the problem here probably due to a
431 * communicaton error on the socket.
432 */
433 if (relayd_error) {
434 *relayd_error = 1;
435 }
436 ret_code = LTTNG_ERR_RELAYD_CONNECT_FAIL;
ffe60014 437 }
a4baae1b
JD
438 if (net_seq_idx == -1ULL) {
439 net_seq_idx = stream->net_seq_idx;
440 }
441 }
f2a444f1 442 }
ffe60014 443
f2a444f1
DG
444 /* Inform sessiond that we are about to send channel and streams. */
445 ret = consumer_send_status_msg(sock, ret_code);
0c759fc9 446 if (ret < 0 || ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
f2a444f1
DG
447 /*
448 * Either the session daemon is not responding or the relayd died so we
449 * stop now.
450 */
451 goto error;
452 }
453
454 /* Send channel to sessiond. */
455 ret = ustctl_send_channel_to_sessiond(sock, channel->uchan);
456 if (ret < 0) {
457 goto error;
458 }
459
460 ret = ustctl_channel_close_wakeup_fd(channel->uchan);
461 if (ret < 0) {
462 goto error;
463 }
464
465 /* The channel was sent successfully to the sessiond at this point. */
466 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
9ce5646a
MD
467
468 health_code_update();
469
ffe60014
DG
470 /* Send stream to session daemon. */
471 ret = send_sessiond_stream(sock, stream);
472 if (ret < 0) {
473 goto error;
474 }
475 }
476
477 /* Tell sessiond there is no more stream. */
478 ret = ustctl_send_stream_to_sessiond(sock, NULL);
479 if (ret < 0) {
480 goto error;
481 }
482
483 DBG("UST consumer NULL stream sent to sessiond");
484
485 return 0;
486
487error:
0c759fc9 488 if (ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
f2a444f1
DG
489 ret = -1;
490 }
ffe60014
DG
491 return ret;
492}
493
494/*
495 * Creates a channel and streams and add the channel it to the channel internal
496 * state. The created stream must ONLY be sent once the GET_CHANNEL command is
497 * received.
498 *
499 * Return 0 on success or else, a negative value is returned and the channel
500 * MUST be destroyed by consumer_del_channel().
501 */
502static int ask_channel(struct lttng_consumer_local_data *ctx, int sock,
503 struct lttng_consumer_channel *channel,
504 struct ustctl_consumer_channel_attr *attr)
3bd1e081
MD
505{
506 int ret;
507
ffe60014
DG
508 assert(ctx);
509 assert(channel);
510 assert(attr);
511
512 /*
513 * This value is still used by the kernel consumer since for the kernel,
514 * the stream ownership is not IN the consumer so we need to have the
515 * number of left stream that needs to be initialized so we can know when
516 * to delete the channel (see consumer.c).
517 *
518 * As for the user space tracer now, the consumer creates and sends the
519 * stream to the session daemon which only sends them to the application
520 * once every stream of a channel is received making this value useless
521 * because we they will be added to the poll thread before the application
522 * receives them. This ensures that a stream can not hang up during
523 * initilization of a channel.
524 */
525 channel->nb_init_stream_left = 0;
526
527 /* The reply msg status is handled in the following call. */
528 ret = create_ust_channel(attr, &channel->uchan);
529 if (ret < 0) {
10a50311 530 goto end;
3bd1e081
MD
531 }
532
d8ef542d
MD
533 channel->wait_fd = ustctl_channel_get_wait_fd(channel->uchan);
534
10a50311
JD
535 /*
536 * For the snapshots (no monitor), we create the metadata streams
537 * on demand, not during the channel creation.
538 */
539 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && !channel->monitor) {
540 ret = 0;
541 goto end;
542 }
543
ffe60014
DG
544 /* Open all streams for this channel. */
545 ret = create_ust_streams(channel, ctx);
546 if (ret < 0) {
10a50311 547 goto end;
ffe60014
DG
548 }
549
10a50311 550end:
3bd1e081
MD
551 return ret;
552}
553
d88aee68
DG
554/*
555 * Send all stream of a channel to the right thread handling it.
556 *
557 * On error, return a negative value else 0 on success.
558 */
559static int send_streams_to_thread(struct lttng_consumer_channel *channel,
560 struct lttng_consumer_local_data *ctx)
561{
562 int ret = 0;
563 struct lttng_consumer_stream *stream, *stmp;
564
565 assert(channel);
566 assert(ctx);
567
568 /* Send streams to the corresponding thread. */
569 cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head,
570 send_node) {
9ce5646a
MD
571
572 health_code_update();
573
d88aee68
DG
574 /* Sending the stream to the thread. */
575 ret = send_stream_to_thread(stream, ctx);
576 if (ret < 0) {
577 /*
578 * If we are unable to send the stream to the thread, there is
579 * a big problem so just stop everything.
580 */
5ab66908
MD
581 /* Remove node from the channel stream list. */
582 cds_list_del(&stream->send_node);
d88aee68
DG
583 goto error;
584 }
585
586 /* Remove node from the channel stream list. */
587 cds_list_del(&stream->send_node);
4891ece8 588
d88aee68
DG
589 }
590
591error:
592 return ret;
593}
594
7972aab2
DG
595/*
596 * Flush channel's streams using the given key to retrieve the channel.
597 *
598 * Return 0 on success else an LTTng error code.
599 */
600static int flush_channel(uint64_t chan_key)
601{
602 int ret = 0;
603 struct lttng_consumer_channel *channel;
604 struct lttng_consumer_stream *stream;
605 struct lttng_ht *ht;
606 struct lttng_ht_iter iter;
607
8fd623e0 608 DBG("UST consumer flush channel key %" PRIu64, chan_key);
7972aab2 609
a500c257 610 rcu_read_lock();
7972aab2
DG
611 channel = consumer_find_channel(chan_key);
612 if (!channel) {
8fd623e0 613 ERR("UST consumer flush channel %" PRIu64 " not found", chan_key);
7972aab2
DG
614 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
615 goto error;
616 }
617
618 ht = consumer_data.stream_per_chan_id_ht;
619
620 /* For each stream of the channel id, flush it. */
7972aab2
DG
621 cds_lfht_for_each_entry_duplicate(ht->ht,
622 ht->hash_fct(&channel->key, lttng_ht_seed), ht->match_fct,
623 &channel->key, &iter.iter, stream, node_channel_id.node) {
9ce5646a
MD
624
625 health_code_update();
626
b8086166 627 ustctl_flush_buffer(stream->ustream, 1);
7972aab2 628 }
7972aab2 629error:
a500c257 630 rcu_read_unlock();
7972aab2
DG
631 return ret;
632}
633
d88aee68
DG
634/*
635 * Close metadata stream wakeup_fd using the given key to retrieve the channel.
a500c257 636 * RCU read side lock MUST be acquired before calling this function.
d88aee68
DG
637 *
638 * Return 0 on success else an LTTng error code.
639 */
640static int close_metadata(uint64_t chan_key)
641{
ea88ca2a 642 int ret = 0;
d88aee68
DG
643 struct lttng_consumer_channel *channel;
644
8fd623e0 645 DBG("UST consumer close metadata key %" PRIu64, chan_key);
d88aee68
DG
646
647 channel = consumer_find_channel(chan_key);
648 if (!channel) {
84cc9aa0
DG
649 /*
650 * This is possible if the metadata thread has issue a delete because
651 * the endpoint point of the stream hung up. There is no way the
652 * session daemon can know about it thus use a DBG instead of an actual
653 * error.
654 */
655 DBG("UST consumer close metadata %" PRIu64 " not found", chan_key);
d88aee68
DG
656 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
657 goto error;
658 }
659
ea88ca2a 660 pthread_mutex_lock(&consumer_data.lock);
a9838785 661 pthread_mutex_lock(&channel->lock);
73811ecc
DG
662
663 if (cds_lfht_is_node_deleted(&channel->node.node)) {
664 goto error_unlock;
665 }
666
6d574024 667 lttng_ustconsumer_close_metadata(channel);
d88aee68 668
ea88ca2a 669error_unlock:
a9838785 670 pthread_mutex_unlock(&channel->lock);
ea88ca2a 671 pthread_mutex_unlock(&consumer_data.lock);
d88aee68
DG
672error:
673 return ret;
674}
675
676/*
677 * RCU read side lock MUST be acquired before calling this function.
678 *
679 * Return 0 on success else an LTTng error code.
680 */
681static int setup_metadata(struct lttng_consumer_local_data *ctx, uint64_t key)
682{
683 int ret;
684 struct lttng_consumer_channel *metadata;
685
8fd623e0 686 DBG("UST consumer setup metadata key %" PRIu64, key);
d88aee68
DG
687
688 metadata = consumer_find_channel(key);
689 if (!metadata) {
690 ERR("UST consumer push metadata %" PRIu64 " not found", key);
691 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
10a50311
JD
692 goto end;
693 }
694
695 /*
696 * In no monitor mode, the metadata channel has no stream(s) so skip the
697 * ownership transfer to the metadata thread.
698 */
699 if (!metadata->monitor) {
700 DBG("Metadata channel in no monitor");
701 ret = 0;
702 goto end;
d88aee68
DG
703 }
704
705 /*
706 * Send metadata stream to relayd if one available. Availability is
707 * known if the stream is still in the list of the channel.
708 */
709 if (cds_list_empty(&metadata->streams.head)) {
710 ERR("Metadata channel key %" PRIu64 ", no stream available.", key);
711 ret = LTTCOMM_CONSUMERD_ERROR_METADATA;
f5a0c9cf 712 goto error_no_stream;
d88aee68
DG
713 }
714
715 /* Send metadata stream to relayd if needed. */
62285ea4
DG
716 if (metadata->metadata_stream->net_seq_idx != (uint64_t) -1ULL) {
717 ret = consumer_send_relayd_stream(metadata->metadata_stream,
718 metadata->pathname);
719 if (ret < 0) {
720 ret = LTTCOMM_CONSUMERD_ERROR_METADATA;
721 goto error;
722 }
601262d6
JD
723 ret = consumer_send_relayd_streams_sent(
724 metadata->metadata_stream->net_seq_idx);
725 if (ret < 0) {
726 ret = LTTCOMM_CONSUMERD_RELAYD_FAIL;
727 goto error;
728 }
d88aee68
DG
729 }
730
731 ret = send_streams_to_thread(metadata, ctx);
732 if (ret < 0) {
733 /*
734 * If we are unable to send the stream to the thread, there is
735 * a big problem so just stop everything.
736 */
737 ret = LTTCOMM_CONSUMERD_FATAL;
738 goto error;
739 }
740 /* List MUST be empty after or else it could be reused. */
741 assert(cds_list_empty(&metadata->streams.head));
742
10a50311
JD
743 ret = 0;
744 goto end;
d88aee68
DG
745
746error:
f2a444f1
DG
747 /*
748 * Delete metadata channel on error. At this point, the metadata stream can
749 * NOT be monitored by the metadata thread thus having the guarantee that
750 * the stream is still in the local stream list of the channel. This call
751 * will make sure to clean that list.
752 */
f5a0c9cf 753 consumer_stream_destroy(metadata->metadata_stream, NULL);
212d67a2
DG
754 cds_list_del(&metadata->metadata_stream->send_node);
755 metadata->metadata_stream = NULL;
f5a0c9cf 756error_no_stream:
10a50311
JD
757end:
758 return ret;
759}
760
761/*
762 * Snapshot the whole metadata.
763 *
764 * Returns 0 on success, < 0 on error
765 */
766static int snapshot_metadata(uint64_t key, char *path, uint64_t relayd_id,
767 struct lttng_consumer_local_data *ctx)
768{
769 int ret = 0;
10a50311
JD
770 struct lttng_consumer_channel *metadata_channel;
771 struct lttng_consumer_stream *metadata_stream;
772
773 assert(path);
774 assert(ctx);
775
776 DBG("UST consumer snapshot metadata with key %" PRIu64 " at path %s",
777 key, path);
778
779 rcu_read_lock();
780
781 metadata_channel = consumer_find_channel(key);
782 if (!metadata_channel) {
6a00837f
MD
783 ERR("UST snapshot metadata channel not found for key %" PRIu64,
784 key);
10a50311
JD
785 ret = -1;
786 goto error;
787 }
788 assert(!metadata_channel->monitor);
789
9ce5646a
MD
790 health_code_update();
791
10a50311
JD
792 /*
793 * Ask the sessiond if we have new metadata waiting and update the
794 * consumer metadata cache.
795 */
94d49140 796 ret = lttng_ustconsumer_request_metadata(ctx, metadata_channel, 0, 1);
10a50311
JD
797 if (ret < 0) {
798 goto error;
799 }
800
9ce5646a
MD
801 health_code_update();
802
10a50311
JD
803 /*
804 * The metadata stream is NOT created in no monitor mode when the channel
805 * is created on a sessiond ask channel command.
806 */
807 ret = create_ust_streams(metadata_channel, ctx);
808 if (ret < 0) {
809 goto error;
810 }
811
812 metadata_stream = metadata_channel->metadata_stream;
813 assert(metadata_stream);
814
815 if (relayd_id != (uint64_t) -1ULL) {
816 metadata_stream->net_seq_idx = relayd_id;
817 ret = consumer_send_relayd_stream(metadata_stream, path);
818 if (ret < 0) {
819 goto error_stream;
820 }
821 } else {
822 ret = utils_create_stream_file(path, metadata_stream->name,
823 metadata_stream->chan->tracefile_size,
824 metadata_stream->tracefile_count_current,
309167d2 825 metadata_stream->uid, metadata_stream->gid, NULL);
10a50311
JD
826 if (ret < 0) {
827 goto error_stream;
828 }
829 metadata_stream->out_fd = ret;
830 metadata_stream->tracefile_size_current = 0;
831 }
832
04ef1097 833 do {
9ce5646a
MD
834 health_code_update();
835
10a50311
JD
836 ret = lttng_consumer_read_subbuffer(metadata_stream, ctx);
837 if (ret < 0) {
94d49140 838 goto error_stream;
10a50311 839 }
04ef1097 840 } while (ret > 0);
10a50311 841
10a50311
JD
842error_stream:
843 /*
844 * Clean up the stream completly because the next snapshot will use a new
845 * metadata stream.
846 */
10a50311 847 consumer_stream_destroy(metadata_stream, NULL);
212d67a2 848 cds_list_del(&metadata_stream->send_node);
10a50311
JD
849 metadata_channel->metadata_stream = NULL;
850
851error:
852 rcu_read_unlock();
853 return ret;
854}
855
856/*
857 * Take a snapshot of all the stream of a channel.
858 *
859 * Returns 0 on success, < 0 on error
860 */
861static int snapshot_channel(uint64_t key, char *path, uint64_t relayd_id,
823fa2fa 862 uint64_t nb_packets_per_stream, struct lttng_consumer_local_data *ctx)
10a50311
JD
863{
864 int ret;
865 unsigned use_relayd = 0;
866 unsigned long consumed_pos, produced_pos;
867 struct lttng_consumer_channel *channel;
868 struct lttng_consumer_stream *stream;
869
870 assert(path);
871 assert(ctx);
872
873 rcu_read_lock();
874
875 if (relayd_id != (uint64_t) -1ULL) {
876 use_relayd = 1;
877 }
878
879 channel = consumer_find_channel(key);
880 if (!channel) {
6a00837f 881 ERR("UST snapshot channel not found for key %" PRIu64, key);
10a50311
JD
882 ret = -1;
883 goto error;
884 }
885 assert(!channel->monitor);
6a00837f 886 DBG("UST consumer snapshot channel %" PRIu64, key);
10a50311
JD
887
888 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
9ce5646a
MD
889
890 health_code_update();
891
10a50311
JD
892 /* Lock stream because we are about to change its state. */
893 pthread_mutex_lock(&stream->lock);
894 stream->net_seq_idx = relayd_id;
895
896 if (use_relayd) {
897 ret = consumer_send_relayd_stream(stream, path);
898 if (ret < 0) {
899 goto error_unlock;
900 }
901 } else {
902 ret = utils_create_stream_file(path, stream->name,
903 stream->chan->tracefile_size,
904 stream->tracefile_count_current,
309167d2 905 stream->uid, stream->gid, NULL);
10a50311
JD
906 if (ret < 0) {
907 goto error_unlock;
908 }
909 stream->out_fd = ret;
910 stream->tracefile_size_current = 0;
911
912 DBG("UST consumer snapshot stream %s/%s (%" PRIu64 ")", path,
913 stream->name, stream->key);
914 }
a4baae1b
JD
915 if (relayd_id != -1ULL) {
916 ret = consumer_send_relayd_streams_sent(relayd_id);
917 if (ret < 0) {
918 goto error_unlock;
919 }
920 }
10a50311
JD
921
922 ustctl_flush_buffer(stream->ustream, 1);
923
924 ret = lttng_ustconsumer_take_snapshot(stream);
925 if (ret < 0) {
926 ERR("Taking UST snapshot");
927 goto error_unlock;
928 }
929
930 ret = lttng_ustconsumer_get_produced_snapshot(stream, &produced_pos);
931 if (ret < 0) {
932 ERR("Produced UST snapshot position");
933 goto error_unlock;
934 }
935
936 ret = lttng_ustconsumer_get_consumed_snapshot(stream, &consumed_pos);
937 if (ret < 0) {
938 ERR("Consumerd UST snapshot position");
939 goto error_unlock;
940 }
941
5c786ded
JD
942 /*
943 * The original value is sent back if max stream size is larger than
823fa2fa 944 * the possible size of the snapshot. Also, we assume that the session
5c786ded
JD
945 * daemon should never send a maximum stream size that is lower than
946 * subbuffer size.
947 */
823fa2fa
MD
948 consumed_pos = consumer_get_consume_start_pos(consumed_pos,
949 produced_pos, nb_packets_per_stream,
950 stream->max_sb_size);
5c786ded 951
10a50311
JD
952 while (consumed_pos < produced_pos) {
953 ssize_t read_len;
954 unsigned long len, padded_len;
955
9ce5646a
MD
956 health_code_update();
957
10a50311
JD
958 DBG("UST consumer taking snapshot at pos %lu", consumed_pos);
959
960 ret = ustctl_get_subbuf(stream->ustream, &consumed_pos);
961 if (ret < 0) {
962 if (ret != -EAGAIN) {
963 PERROR("ustctl_get_subbuf snapshot");
964 goto error_close_stream;
965 }
966 DBG("UST consumer get subbuf failed. Skipping it.");
967 consumed_pos += stream->max_sb_size;
968 continue;
969 }
970
971 ret = ustctl_get_subbuf_size(stream->ustream, &len);
972 if (ret < 0) {
973 ERR("Snapshot ustctl_get_subbuf_size");
974 goto error_put_subbuf;
975 }
976
977 ret = ustctl_get_padded_subbuf_size(stream->ustream, &padded_len);
978 if (ret < 0) {
979 ERR("Snapshot ustctl_get_padded_subbuf_size");
980 goto error_put_subbuf;
981 }
982
983 read_len = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, len,
309167d2 984 padded_len - len, NULL);
10a50311
JD
985 if (use_relayd) {
986 if (read_len != len) {
56591bac 987 ret = -EPERM;
10a50311
JD
988 goto error_put_subbuf;
989 }
990 } else {
991 if (read_len != padded_len) {
56591bac 992 ret = -EPERM;
10a50311
JD
993 goto error_put_subbuf;
994 }
995 }
996
997 ret = ustctl_put_subbuf(stream->ustream);
998 if (ret < 0) {
999 ERR("Snapshot ustctl_put_subbuf");
1000 goto error_close_stream;
1001 }
1002 consumed_pos += stream->max_sb_size;
1003 }
1004
1005 /* Simply close the stream so we can use it on the next snapshot. */
1006 consumer_stream_close(stream);
1007 pthread_mutex_unlock(&stream->lock);
1008 }
1009
1010 rcu_read_unlock();
1011 return 0;
1012
1013error_put_subbuf:
1014 if (ustctl_put_subbuf(stream->ustream) < 0) {
1015 ERR("Snapshot ustctl_put_subbuf");
1016 }
1017error_close_stream:
1018 consumer_stream_close(stream);
1019error_unlock:
1020 pthread_mutex_unlock(&stream->lock);
1021error:
1022 rcu_read_unlock();
d88aee68
DG
1023 return ret;
1024}
1025
331744e3
JD
1026/*
1027 * Receive the metadata updates from the sessiond.
1028 */
1029int lttng_ustconsumer_recv_metadata(int sock, uint64_t key, uint64_t offset,
5e41ebe1 1030 uint64_t len, struct lttng_consumer_channel *channel,
94d49140 1031 int timer, int wait)
331744e3 1032{
0c759fc9 1033 int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS;
331744e3
JD
1034 char *metadata_str;
1035
8fd623e0 1036 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key, len);
331744e3
JD
1037
1038 metadata_str = zmalloc(len * sizeof(char));
1039 if (!metadata_str) {
1040 PERROR("zmalloc metadata string");
1041 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
1042 goto end;
1043 }
1044
9ce5646a
MD
1045 health_code_update();
1046
331744e3
JD
1047 /* Receive metadata string. */
1048 ret = lttcomm_recv_unix_sock(sock, metadata_str, len);
1049 if (ret < 0) {
1050 /* Session daemon is dead so return gracefully. */
1051 ret_code = ret;
1052 goto end_free;
1053 }
1054
9ce5646a
MD
1055 health_code_update();
1056
331744e3
JD
1057 pthread_mutex_lock(&channel->metadata_cache->lock);
1058 ret = consumer_metadata_cache_write(channel, offset, len, metadata_str);
1059 if (ret < 0) {
1060 /* Unable to handle metadata. Notify session daemon. */
1061 ret_code = LTTCOMM_CONSUMERD_ERROR_METADATA;
a32bd775
DG
1062 /*
1063 * Skip metadata flush on write error since the offset and len might
1064 * not have been updated which could create an infinite loop below when
1065 * waiting for the metadata cache to be flushed.
1066 */
1067 pthread_mutex_unlock(&channel->metadata_cache->lock);
a32bd775 1068 goto end_free;
331744e3
JD
1069 }
1070 pthread_mutex_unlock(&channel->metadata_cache->lock);
1071
94d49140
JD
1072 if (!wait) {
1073 goto end_free;
1074 }
5e41ebe1 1075 while (consumer_metadata_cache_flushed(channel, offset + len, timer)) {
331744e3 1076 DBG("Waiting for metadata to be flushed");
9ce5646a
MD
1077
1078 health_code_update();
1079
331744e3
JD
1080 usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME);
1081 }
1082
1083end_free:
1084 free(metadata_str);
1085end:
1086 return ret_code;
1087}
1088
4cbc1a04
DG
1089/*
1090 * Receive command from session daemon and process it.
1091 *
1092 * Return 1 on success else a negative value or 0.
1093 */
3bd1e081
MD
1094int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
1095 int sock, struct pollfd *consumer_sockpoll)
1096{
1097 ssize_t ret;
0c759fc9 1098 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
3bd1e081 1099 struct lttcomm_consumer_msg msg;
ffe60014 1100 struct lttng_consumer_channel *channel = NULL;
3bd1e081 1101
9ce5646a
MD
1102 health_code_update();
1103
3bd1e081
MD
1104 ret = lttcomm_recv_unix_sock(sock, &msg, sizeof(msg));
1105 if (ret != sizeof(msg)) {
173af62f
DG
1106 DBG("Consumer received unexpected message size %zd (expects %zu)",
1107 ret, sizeof(msg));
3be74084
DG
1108 /*
1109 * The ret value might 0 meaning an orderly shutdown but this is ok
1110 * since the caller handles this.
1111 */
489f70e9 1112 if (ret > 0) {
c6857fcf 1113 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
489f70e9
MD
1114 ret = -1;
1115 }
3bd1e081
MD
1116 return ret;
1117 }
9ce5646a
MD
1118
1119 health_code_update();
1120
84382d49
MD
1121 /* deprecated */
1122 assert(msg.cmd_type != LTTNG_CONSUMER_STOP);
3bd1e081 1123
9ce5646a
MD
1124 health_code_update();
1125
3f8e211f 1126 /* relayd needs RCU read-side lock */
b0b335c8
MD
1127 rcu_read_lock();
1128
3bd1e081 1129 switch (msg.cmd_type) {
00e2e675
DG
1130 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET:
1131 {
f50f23d9 1132 /* Session daemon status message are handled in the following call. */
7735ef9e
DG
1133 ret = consumer_add_relayd_socket(msg.u.relayd_sock.net_index,
1134 msg.u.relayd_sock.type, ctx, sock, consumer_sockpoll,
d3e2ba59
JD
1135 &msg.u.relayd_sock.sock, msg.u.relayd_sock.session_id,
1136 msg.u.relayd_sock.relayd_session_id);
00e2e675
DG
1137 goto end_nosignal;
1138 }
173af62f
DG
1139 case LTTNG_CONSUMER_DESTROY_RELAYD:
1140 {
a6ba4fe1 1141 uint64_t index = msg.u.destroy_relayd.net_seq_idx;
173af62f
DG
1142 struct consumer_relayd_sock_pair *relayd;
1143
a6ba4fe1 1144 DBG("UST consumer destroying relayd %" PRIu64, index);
173af62f
DG
1145
1146 /* Get relayd reference if exists. */
a6ba4fe1 1147 relayd = consumer_find_relayd(index);
173af62f 1148 if (relayd == NULL) {
3448e266 1149 DBG("Unable to find relayd %" PRIu64, index);
e462382a 1150 ret_code = LTTCOMM_CONSUMERD_RELAYD_FAIL;
173af62f
DG
1151 }
1152
a6ba4fe1
DG
1153 /*
1154 * Each relayd socket pair has a refcount of stream attached to it
1155 * which tells if the relayd is still active or not depending on the
1156 * refcount value.
1157 *
1158 * This will set the destroy flag of the relayd object and destroy it
1159 * if the refcount reaches zero when called.
1160 *
1161 * The destroy can happen either here or when a stream fd hangs up.
1162 */
f50f23d9
DG
1163 if (relayd) {
1164 consumer_flag_relayd_for_destroy(relayd);
1165 }
1166
d88aee68 1167 goto end_msg_sessiond;
173af62f 1168 }
3bd1e081
MD
1169 case LTTNG_CONSUMER_UPDATE_STREAM:
1170 {
3f8e211f 1171 rcu_read_unlock();
7ad0a0cb 1172 return -ENOSYS;
3bd1e081 1173 }
6d805429 1174 case LTTNG_CONSUMER_DATA_PENDING:
53632229 1175 {
3be74084 1176 int ret, is_data_pending;
6d805429 1177 uint64_t id = msg.u.data_pending.session_id;
ca22feea 1178
6d805429 1179 DBG("UST consumer data pending command for id %" PRIu64, id);
ca22feea 1180
3be74084 1181 is_data_pending = consumer_data_pending(id);
ca22feea
DG
1182
1183 /* Send back returned value to session daemon */
3be74084
DG
1184 ret = lttcomm_send_unix_sock(sock, &is_data_pending,
1185 sizeof(is_data_pending));
ca22feea 1186 if (ret < 0) {
3be74084 1187 DBG("Error when sending the data pending ret code: %d", ret);
489f70e9 1188 goto error_fatal;
ca22feea 1189 }
f50f23d9
DG
1190
1191 /*
1192 * No need to send back a status message since the data pending
1193 * returned value is the response.
1194 */
ca22feea 1195 break;
53632229 1196 }
ffe60014
DG
1197 case LTTNG_CONSUMER_ASK_CHANNEL_CREATION:
1198 {
1199 int ret;
1200 struct ustctl_consumer_channel_attr attr;
1201
1202 /* Create a plain object and reserve a channel key. */
1203 channel = allocate_channel(msg.u.ask_channel.session_id,
1204 msg.u.ask_channel.pathname, msg.u.ask_channel.name,
1205 msg.u.ask_channel.uid, msg.u.ask_channel.gid,
1206 msg.u.ask_channel.relayd_id, msg.u.ask_channel.key,
1624d5b7
JD
1207 (enum lttng_event_output) msg.u.ask_channel.output,
1208 msg.u.ask_channel.tracefile_size,
2bba9e53 1209 msg.u.ask_channel.tracefile_count,
1950109e 1210 msg.u.ask_channel.session_id_per_pid,
ecc48a90
JD
1211 msg.u.ask_channel.monitor,
1212 msg.u.ask_channel.live_timer_interval);
ffe60014
DG
1213 if (!channel) {
1214 goto end_channel_error;
1215 }
1216
567eb353
DG
1217 /*
1218 * Assign UST application UID to the channel. This value is ignored for
1219 * per PID buffers. This is specific to UST thus setting this after the
1220 * allocation.
1221 */
1222 channel->ust_app_uid = msg.u.ask_channel.ust_app_uid;
1223
ffe60014
DG
1224 /* Build channel attributes from received message. */
1225 attr.subbuf_size = msg.u.ask_channel.subbuf_size;
1226 attr.num_subbuf = msg.u.ask_channel.num_subbuf;
1227 attr.overwrite = msg.u.ask_channel.overwrite;
1228 attr.switch_timer_interval = msg.u.ask_channel.switch_timer_interval;
1229 attr.read_timer_interval = msg.u.ask_channel.read_timer_interval;
7972aab2 1230 attr.chan_id = msg.u.ask_channel.chan_id;
ffe60014
DG
1231 memcpy(attr.uuid, msg.u.ask_channel.uuid, sizeof(attr.uuid));
1232
0c759fc9
DG
1233 /* Match channel buffer type to the UST abi. */
1234 switch (msg.u.ask_channel.output) {
1235 case LTTNG_EVENT_MMAP:
1236 default:
1237 attr.output = LTTNG_UST_MMAP;
1238 break;
1239 }
1240
ffe60014
DG
1241 /* Translate and save channel type. */
1242 switch (msg.u.ask_channel.type) {
1243 case LTTNG_UST_CHAN_PER_CPU:
1244 channel->type = CONSUMER_CHANNEL_TYPE_DATA;
1245 attr.type = LTTNG_UST_CHAN_PER_CPU;
8633d6e3
MD
1246 /*
1247 * Set refcount to 1 for owner. Below, we will
1248 * pass ownership to the
1249 * consumer_thread_channel_poll() thread.
1250 */
1251 channel->refcount = 1;
ffe60014
DG
1252 break;
1253 case LTTNG_UST_CHAN_METADATA:
1254 channel->type = CONSUMER_CHANNEL_TYPE_METADATA;
1255 attr.type = LTTNG_UST_CHAN_METADATA;
1256 break;
1257 default:
1258 assert(0);
1259 goto error_fatal;
1260 };
1261
9ce5646a
MD
1262 health_code_update();
1263
ffe60014
DG
1264 ret = ask_channel(ctx, sock, channel, &attr);
1265 if (ret < 0) {
1266 goto end_channel_error;
1267 }
1268
fc643247
MD
1269 if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) {
1270 ret = consumer_metadata_cache_allocate(channel);
1271 if (ret < 0) {
1272 ERR("Allocating metadata cache");
1273 goto end_channel_error;
1274 }
1275 consumer_timer_switch_start(channel, attr.switch_timer_interval);
1276 attr.switch_timer_interval = 0;
94d49140
JD
1277 } else {
1278 consumer_timer_live_start(channel,
1279 msg.u.ask_channel.live_timer_interval);
fc643247
MD
1280 }
1281
9ce5646a
MD
1282 health_code_update();
1283
ffe60014
DG
1284 /*
1285 * Add the channel to the internal state AFTER all streams were created
1286 * and successfully sent to session daemon. This way, all streams must
1287 * be ready before this channel is visible to the threads.
fc643247
MD
1288 * If add_channel succeeds, ownership of the channel is
1289 * passed to consumer_thread_channel_poll().
ffe60014
DG
1290 */
1291 ret = add_channel(channel, ctx);
1292 if (ret < 0) {
ea88ca2a
MD
1293 if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) {
1294 if (channel->switch_timer_enabled == 1) {
1295 consumer_timer_switch_stop(channel);
1296 }
1297 consumer_metadata_cache_destroy(channel);
1298 }
d3e2ba59
JD
1299 if (channel->live_timer_enabled == 1) {
1300 consumer_timer_live_stop(channel);
1301 }
ffe60014
DG
1302 goto end_channel_error;
1303 }
1304
9ce5646a
MD
1305 health_code_update();
1306
ffe60014
DG
1307 /*
1308 * Channel and streams are now created. Inform the session daemon that
1309 * everything went well and should wait to receive the channel and
1310 * streams with ustctl API.
1311 */
1312 ret = consumer_send_status_channel(sock, channel);
1313 if (ret < 0) {
1314 /*
489f70e9 1315 * There is probably a problem on the socket.
ffe60014 1316 */
489f70e9 1317 goto error_fatal;
ffe60014
DG
1318 }
1319
1320 break;
1321 }
1322 case LTTNG_CONSUMER_GET_CHANNEL:
1323 {
1324 int ret, relayd_err = 0;
d88aee68 1325 uint64_t key = msg.u.get_channel.key;
ffe60014 1326 struct lttng_consumer_channel *channel;
ffe60014
DG
1327
1328 channel = consumer_find_channel(key);
1329 if (!channel) {
8fd623e0 1330 ERR("UST consumer get channel key %" PRIu64 " not found", key);
e462382a 1331 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
ffe60014
DG
1332 goto end_msg_sessiond;
1333 }
1334
9ce5646a
MD
1335 health_code_update();
1336
ffe60014
DG
1337 /* Send everything to sessiond. */
1338 ret = send_sessiond_channel(sock, channel, ctx, &relayd_err);
1339 if (ret < 0) {
1340 if (relayd_err) {
1341 /*
1342 * We were unable to send to the relayd the stream so avoid
1343 * sending back a fatal error to the thread since this is OK
f2a444f1
DG
1344 * and the consumer can continue its work. The above call
1345 * has sent the error status message to the sessiond.
ffe60014 1346 */
f2a444f1 1347 goto end_nosignal;
ffe60014
DG
1348 }
1349 /*
1350 * The communicaton was broken hence there is a bad state between
1351 * the consumer and sessiond so stop everything.
1352 */
1353 goto error_fatal;
1354 }
1355
9ce5646a
MD
1356 health_code_update();
1357
10a50311
JD
1358 /*
1359 * In no monitor mode, the streams ownership is kept inside the channel
1360 * so don't send them to the data thread.
1361 */
1362 if (!channel->monitor) {
1363 goto end_msg_sessiond;
1364 }
1365
d88aee68
DG
1366 ret = send_streams_to_thread(channel, ctx);
1367 if (ret < 0) {
1368 /*
1369 * If we are unable to send the stream to the thread, there is
1370 * a big problem so just stop everything.
1371 */
1372 goto error_fatal;
ffe60014 1373 }
ffe60014
DG
1374 /* List MUST be empty after or else it could be reused. */
1375 assert(cds_list_empty(&channel->streams.head));
d88aee68
DG
1376 goto end_msg_sessiond;
1377 }
1378 case LTTNG_CONSUMER_DESTROY_CHANNEL:
1379 {
1380 uint64_t key = msg.u.destroy_channel.key;
d88aee68 1381
a0cbdd2e
MD
1382 /*
1383 * Only called if streams have not been sent to stream
1384 * manager thread. However, channel has been sent to
1385 * channel manager thread.
1386 */
1387 notify_thread_del_channel(ctx, key);
d88aee68 1388 goto end_msg_sessiond;
ffe60014 1389 }
d88aee68
DG
1390 case LTTNG_CONSUMER_CLOSE_METADATA:
1391 {
1392 int ret;
1393
1394 ret = close_metadata(msg.u.close_metadata.key);
1395 if (ret != 0) {
1396 ret_code = ret;
1397 }
1398
1399 goto end_msg_sessiond;
1400 }
7972aab2
DG
1401 case LTTNG_CONSUMER_FLUSH_CHANNEL:
1402 {
1403 int ret;
1404
1405 ret = flush_channel(msg.u.flush_channel.key);
1406 if (ret != 0) {
1407 ret_code = ret;
1408 }
1409
1410 goto end_msg_sessiond;
1411 }
d88aee68 1412 case LTTNG_CONSUMER_PUSH_METADATA:
ffe60014
DG
1413 {
1414 int ret;
d88aee68 1415 uint64_t len = msg.u.push_metadata.len;
d88aee68 1416 uint64_t key = msg.u.push_metadata.key;
331744e3 1417 uint64_t offset = msg.u.push_metadata.target_offset;
ffe60014
DG
1418 struct lttng_consumer_channel *channel;
1419
8fd623e0
DG
1420 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key,
1421 len);
ffe60014
DG
1422
1423 channel = consumer_find_channel(key);
1424 if (!channel) {
000baf6a
DG
1425 /*
1426 * This is possible if the metadata creation on the consumer side
1427 * is in flight vis-a-vis a concurrent push metadata from the
1428 * session daemon. Simply return that the channel failed and the
1429 * session daemon will handle that message correctly considering
1430 * that this race is acceptable thus the DBG() statement here.
1431 */
1432 DBG("UST consumer push metadata %" PRIu64 " not found", key);
1433 ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL;
4a2eb0ca 1434 goto end_msg_sessiond;
d88aee68
DG
1435 }
1436
9ce5646a
MD
1437 health_code_update();
1438
d88aee68 1439 /* Tell session daemon we are ready to receive the metadata. */
0c759fc9 1440 ret = consumer_send_status_msg(sock, LTTCOMM_CONSUMERD_SUCCESS);
ffe60014
DG
1441 if (ret < 0) {
1442 /* Somehow, the session daemon is not responding anymore. */
d88aee68
DG
1443 goto error_fatal;
1444 }
1445
9ce5646a
MD
1446 health_code_update();
1447
d88aee68 1448 /* Wait for more data. */
9ce5646a
MD
1449 health_poll_entry();
1450 ret = lttng_consumer_poll_socket(consumer_sockpoll);
1451 health_poll_exit();
84382d49 1452 if (ret) {
489f70e9 1453 goto error_fatal;
d88aee68
DG
1454 }
1455
9ce5646a
MD
1456 health_code_update();
1457
331744e3 1458 ret = lttng_ustconsumer_recv_metadata(sock, key, offset,
94d49140 1459 len, channel, 0, 1);
d88aee68 1460 if (ret < 0) {
331744e3 1461 /* error receiving from sessiond */
489f70e9 1462 goto error_fatal;
331744e3
JD
1463 } else {
1464 ret_code = ret;
d88aee68
DG
1465 goto end_msg_sessiond;
1466 }
d88aee68
DG
1467 }
1468 case LTTNG_CONSUMER_SETUP_METADATA:
1469 {
1470 int ret;
1471
1472 ret = setup_metadata(ctx, msg.u.setup_metadata.key);
1473 if (ret) {
1474 ret_code = ret;
1475 }
1476 goto end_msg_sessiond;
ffe60014 1477 }
6dc3064a
DG
1478 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL:
1479 {
10a50311
JD
1480 if (msg.u.snapshot_channel.metadata) {
1481 ret = snapshot_metadata(msg.u.snapshot_channel.key,
1482 msg.u.snapshot_channel.pathname,
1483 msg.u.snapshot_channel.relayd_id,
1484 ctx);
1485 if (ret < 0) {
1486 ERR("Snapshot metadata failed");
e462382a 1487 ret_code = LTTCOMM_CONSUMERD_ERROR_METADATA;
10a50311
JD
1488 }
1489 } else {
1490 ret = snapshot_channel(msg.u.snapshot_channel.key,
1491 msg.u.snapshot_channel.pathname,
1492 msg.u.snapshot_channel.relayd_id,
823fa2fa 1493 msg.u.snapshot_channel.nb_packets_per_stream,
10a50311
JD
1494 ctx);
1495 if (ret < 0) {
1496 ERR("Snapshot channel failed");
e462382a 1497 ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL;
10a50311
JD
1498 }
1499 }
1500
9ce5646a 1501 health_code_update();
6dc3064a
DG
1502 ret = consumer_send_status_msg(sock, ret_code);
1503 if (ret < 0) {
1504 /* Somehow, the session daemon is not responding anymore. */
1505 goto end_nosignal;
1506 }
9ce5646a 1507 health_code_update();
6dc3064a
DG
1508 break;
1509 }
3bd1e081
MD
1510 default:
1511 break;
1512 }
3f8e211f 1513
3bd1e081 1514end_nosignal:
b0b335c8 1515 rcu_read_unlock();
4cbc1a04 1516
9ce5646a
MD
1517 health_code_update();
1518
4cbc1a04
DG
1519 /*
1520 * Return 1 to indicate success since the 0 value can be a socket
1521 * shutdown during the recv() or send() call.
1522 */
1523 return 1;
ffe60014
DG
1524
1525end_msg_sessiond:
1526 /*
1527 * The returned value here is not useful since either way we'll return 1 to
1528 * the caller because the session daemon socket management is done
1529 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
1530 */
489f70e9
MD
1531 ret = consumer_send_status_msg(sock, ret_code);
1532 if (ret < 0) {
1533 goto error_fatal;
1534 }
ffe60014 1535 rcu_read_unlock();
9ce5646a
MD
1536
1537 health_code_update();
1538
ffe60014
DG
1539 return 1;
1540end_channel_error:
1541 if (channel) {
1542 /*
1543 * Free channel here since no one has a reference to it. We don't
1544 * free after that because a stream can store this pointer.
1545 */
1546 destroy_channel(channel);
1547 }
1548 /* We have to send a status channel message indicating an error. */
1549 ret = consumer_send_status_channel(sock, NULL);
1550 if (ret < 0) {
1551 /* Stop everything if session daemon can not be notified. */
1552 goto error_fatal;
1553 }
1554 rcu_read_unlock();
9ce5646a
MD
1555
1556 health_code_update();
1557
ffe60014
DG
1558 return 1;
1559error_fatal:
1560 rcu_read_unlock();
1561 /* This will issue a consumer stop. */
1562 return -1;
3bd1e081
MD
1563}
1564
ffe60014
DG
1565/*
1566 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1567 * compiled out, we isolate it in this library.
1568 */
1569int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
1570 unsigned long *off)
3bd1e081 1571{
ffe60014
DG
1572 assert(stream);
1573 assert(stream->ustream);
b5c5fc29 1574
ffe60014 1575 return ustctl_get_mmap_read_offset(stream->ustream, off);
3bd1e081
MD
1576}
1577
ffe60014
DG
1578/*
1579 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1580 * compiled out, we isolate it in this library.
1581 */
1582void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream)
d056b477 1583{
ffe60014
DG
1584 assert(stream);
1585 assert(stream->ustream);
1586
1587 return ustctl_get_mmap_base(stream->ustream);
d056b477
MD
1588}
1589
ffe60014
DG
1590/*
1591 * Take a snapshot for a specific fd
1592 *
1593 * Returns 0 on success, < 0 on error
1594 */
1595int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream)
3bd1e081 1596{
ffe60014
DG
1597 assert(stream);
1598 assert(stream->ustream);
1599
1600 return ustctl_snapshot(stream->ustream);
3bd1e081
MD
1601}
1602
ffe60014
DG
1603/*
1604 * Get the produced position
1605 *
1606 * Returns 0 on success, < 0 on error
1607 */
1608int lttng_ustconsumer_get_produced_snapshot(
1609 struct lttng_consumer_stream *stream, unsigned long *pos)
3bd1e081 1610{
ffe60014
DG
1611 assert(stream);
1612 assert(stream->ustream);
1613 assert(pos);
7a57cf92 1614
ffe60014
DG
1615 return ustctl_snapshot_get_produced(stream->ustream, pos);
1616}
7a57cf92 1617
10a50311
JD
1618/*
1619 * Get the consumed position
1620 *
1621 * Returns 0 on success, < 0 on error
1622 */
1623int lttng_ustconsumer_get_consumed_snapshot(
1624 struct lttng_consumer_stream *stream, unsigned long *pos)
1625{
1626 assert(stream);
1627 assert(stream->ustream);
1628 assert(pos);
1629
1630 return ustctl_snapshot_get_consumed(stream->ustream, pos);
1631}
1632
84a182ce
DG
1633void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream *stream,
1634 int producer)
1635{
1636 assert(stream);
1637 assert(stream->ustream);
1638
1639 ustctl_flush_buffer(stream->ustream, producer);
1640}
1641
1642int lttng_ustconsumer_get_current_timestamp(
1643 struct lttng_consumer_stream *stream, uint64_t *ts)
1644{
1645 assert(stream);
1646 assert(stream->ustream);
1647 assert(ts);
1648
1649 return ustctl_get_current_timestamp(stream->ustream, ts);
1650}
1651
ffe60014
DG
1652/*
1653 * Called when the stream signal the consumer that it has hang up.
1654 */
1655void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
1656{
1657 assert(stream);
1658 assert(stream->ustream);
2c1dd183 1659
ffe60014
DG
1660 ustctl_flush_buffer(stream->ustream, 0);
1661 stream->hangup_flush_done = 1;
1662}
ee77a7b0 1663
ffe60014
DG
1664void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
1665{
1666 assert(chan);
1667 assert(chan->uchan);
e316aad5 1668
ea88ca2a
MD
1669 if (chan->switch_timer_enabled == 1) {
1670 consumer_timer_switch_stop(chan);
1671 }
1672 consumer_metadata_cache_destroy(chan);
ffe60014 1673 ustctl_destroy_channel(chan->uchan);
3bd1e081
MD
1674}
1675
1676void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
1677{
ffe60014
DG
1678 assert(stream);
1679 assert(stream->ustream);
d41f73b7 1680
ea88ca2a
MD
1681 if (stream->chan->switch_timer_enabled == 1) {
1682 consumer_timer_switch_stop(stream->chan);
1683 }
ffe60014
DG
1684 ustctl_destroy_stream(stream->ustream);
1685}
d41f73b7 1686
6d574024
DG
1687int lttng_ustconsumer_get_wakeup_fd(struct lttng_consumer_stream *stream)
1688{
1689 assert(stream);
1690 assert(stream->ustream);
1691
1692 return ustctl_stream_get_wakeup_fd(stream->ustream);
1693}
1694
1695int lttng_ustconsumer_close_wakeup_fd(struct lttng_consumer_stream *stream)
1696{
1697 assert(stream);
1698 assert(stream->ustream);
1699
1700 return ustctl_stream_close_wakeup_fd(stream->ustream);
1701}
1702
309167d2
JD
1703/*
1704 * Populate index values of a UST stream. Values are set in big endian order.
1705 *
1706 * Return 0 on success or else a negative value.
1707 */
50adc264 1708static int get_index_values(struct ctf_packet_index *index,
309167d2
JD
1709 struct ustctl_consumer_stream *ustream)
1710{
1711 int ret;
1712
1713 ret = ustctl_get_timestamp_begin(ustream, &index->timestamp_begin);
1714 if (ret < 0) {
1715 PERROR("ustctl_get_timestamp_begin");
1716 goto error;
1717 }
1718 index->timestamp_begin = htobe64(index->timestamp_begin);
1719
1720 ret = ustctl_get_timestamp_end(ustream, &index->timestamp_end);
1721 if (ret < 0) {
1722 PERROR("ustctl_get_timestamp_end");
1723 goto error;
1724 }
1725 index->timestamp_end = htobe64(index->timestamp_end);
1726
1727 ret = ustctl_get_events_discarded(ustream, &index->events_discarded);
1728 if (ret < 0) {
1729 PERROR("ustctl_get_events_discarded");
1730 goto error;
1731 }
1732 index->events_discarded = htobe64(index->events_discarded);
1733
1734 ret = ustctl_get_content_size(ustream, &index->content_size);
1735 if (ret < 0) {
1736 PERROR("ustctl_get_content_size");
1737 goto error;
1738 }
1739 index->content_size = htobe64(index->content_size);
1740
1741 ret = ustctl_get_packet_size(ustream, &index->packet_size);
1742 if (ret < 0) {
1743 PERROR("ustctl_get_packet_size");
1744 goto error;
1745 }
1746 index->packet_size = htobe64(index->packet_size);
1747
1748 ret = ustctl_get_stream_id(ustream, &index->stream_id);
1749 if (ret < 0) {
1750 PERROR("ustctl_get_stream_id");
1751 goto error;
1752 }
1753 index->stream_id = htobe64(index->stream_id);
1754
1755error:
1756 return ret;
1757}
1758
94d49140
JD
1759/*
1760 * Write up to one packet from the metadata cache to the channel.
1761 *
1762 * Returns the number of bytes pushed in the cache, or a negative value
1763 * on error.
1764 */
1765static
1766int commit_one_metadata_packet(struct lttng_consumer_stream *stream)
1767{
1768 ssize_t write_len;
1769 int ret;
1770
1771 pthread_mutex_lock(&stream->chan->metadata_cache->lock);
1772 if (stream->chan->metadata_cache->contiguous
1773 == stream->ust_metadata_pushed) {
1774 ret = 0;
1775 goto end;
1776 }
1777
1778 write_len = ustctl_write_one_packet_to_channel(stream->chan->uchan,
1779 &stream->chan->metadata_cache->data[stream->ust_metadata_pushed],
1780 stream->chan->metadata_cache->contiguous
1781 - stream->ust_metadata_pushed);
1782 assert(write_len != 0);
1783 if (write_len < 0) {
1784 ERR("Writing one metadata packet");
1785 ret = -1;
1786 goto end;
1787 }
1788 stream->ust_metadata_pushed += write_len;
1789
1790 assert(stream->chan->metadata_cache->contiguous >=
1791 stream->ust_metadata_pushed);
1792 ret = write_len;
1793
1794end:
1795 pthread_mutex_unlock(&stream->chan->metadata_cache->lock);
1796 return ret;
1797}
1798
309167d2 1799
94d49140
JD
1800/*
1801 * Sync metadata meaning request them to the session daemon and snapshot to the
1802 * metadata thread can consumer them.
1803 *
1804 * Metadata stream lock MUST be acquired.
1805 *
1806 * Return 0 if new metadatda is available, EAGAIN if the metadata stream
1807 * is empty or a negative value on error.
1808 */
1809int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data *ctx,
1810 struct lttng_consumer_stream *metadata)
1811{
1812 int ret;
1813 int retry = 0;
1814
1815 assert(ctx);
1816 assert(metadata);
1817
1818 /*
1819 * Request metadata from the sessiond, but don't wait for the flush
1820 * because we locked the metadata thread.
1821 */
1822 ret = lttng_ustconsumer_request_metadata(ctx, metadata->chan, 0, 0);
1823 if (ret < 0) {
1824 goto end;
1825 }
1826
1827 ret = commit_one_metadata_packet(metadata);
1828 if (ret <= 0) {
1829 goto end;
1830 } else if (ret > 0) {
1831 retry = 1;
1832 }
1833
1834 ustctl_flush_buffer(metadata->ustream, 1);
1835 ret = ustctl_snapshot(metadata->ustream);
1836 if (ret < 0) {
1837 if (errno != EAGAIN) {
1838 ERR("Sync metadata, taking UST snapshot");
1839 goto end;
1840 }
1841 DBG("No new metadata when syncing them.");
1842 /* No new metadata, exit. */
1843 ret = ENODATA;
1844 goto end;
1845 }
1846
1847 /*
1848 * After this flush, we still need to extract metadata.
1849 */
1850 if (retry) {
1851 ret = EAGAIN;
1852 }
1853
1854end:
1855 return ret;
1856}
1857
02b3d176
DG
1858/*
1859 * Return 0 on success else a negative value.
1860 */
1861static int notify_if_more_data(struct lttng_consumer_stream *stream,
1862 struct lttng_consumer_local_data *ctx)
1863{
1864 int ret;
1865 struct ustctl_consumer_stream *ustream;
1866
1867 assert(stream);
1868 assert(ctx);
1869
1870 ustream = stream->ustream;
1871
1872 /*
1873 * First, we are going to check if there is a new subbuffer available
1874 * before reading the stream wait_fd.
1875 */
1876 /* Get the next subbuffer */
1877 ret = ustctl_get_next_subbuf(ustream);
1878 if (ret) {
1879 /* No more data found, flag the stream. */
1880 stream->has_data = 0;
1881 ret = 0;
1882 goto end;
1883 }
1884
00e77320 1885 ret = ustctl_put_subbuf(ustream);
02b3d176
DG
1886 assert(!ret);
1887
1888 /* This stream still has data. Flag it and wake up the data thread. */
1889 stream->has_data = 1;
1890
1891 if (stream->monitor && !stream->hangup_flush_done && !ctx->has_wakeup) {
1892 ssize_t writelen;
1893
1894 writelen = lttng_pipe_write(ctx->consumer_wakeup_pipe, "!", 1);
1895 if (writelen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
1896 ret = writelen;
1897 goto end;
1898 }
1899
1900 /* The wake up pipe has been notified. */
1901 ctx->has_wakeup = 1;
1902 }
1903 ret = 0;
1904
1905end:
1906 return ret;
1907}
1908
94d49140
JD
1909/*
1910 * Read subbuffer from the given stream.
1911 *
1912 * Stream lock MUST be acquired.
1913 *
1914 * Return 0 on success else a negative value.
1915 */
d41f73b7
MD
1916int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
1917 struct lttng_consumer_local_data *ctx)
1918{
1d4dfdef 1919 unsigned long len, subbuf_size, padding;
1c20f0e2 1920 int err, write_index = 1;
d41f73b7 1921 long ret = 0;
ffe60014 1922 struct ustctl_consumer_stream *ustream;
50adc264 1923 struct ctf_packet_index index;
ffe60014
DG
1924
1925 assert(stream);
1926 assert(stream->ustream);
1927 assert(ctx);
d41f73b7 1928
3eb914c0 1929 DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream->wait_fd,
ffe60014
DG
1930 stream->name);
1931
1932 /* Ease our life for what's next. */
1933 ustream = stream->ustream;
d41f73b7 1934
6cd525e8 1935 /*
02b3d176
DG
1936 * We can consume the 1 byte written into the wait_fd by UST. Don't trigger
1937 * error if we cannot read this one byte (read returns 0), or if the error
1938 * is EAGAIN or EWOULDBLOCK.
1939 *
1940 * This is only done when the stream is monitored by a thread, before the
1941 * flush is done after a hangup and if the stream is not flagged with data
1942 * since there might be nothing to consume in the wait fd but still have
1943 * data available flagged by the consumer wake up pipe.
6cd525e8 1944 */
02b3d176
DG
1945 if (stream->monitor && !stream->hangup_flush_done && !stream->has_data) {
1946 char dummy;
c617c0c6
MD
1947 ssize_t readlen;
1948
6cd525e8
MD
1949 readlen = lttng_read(stream->wait_fd, &dummy, 1);
1950 if (readlen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
effcf122
MD
1951 ret = readlen;
1952 goto end;
1953 }
d41f73b7
MD
1954 }
1955
04ef1097 1956retry:
d41f73b7 1957 /* Get the next subbuffer */
ffe60014 1958 err = ustctl_get_next_subbuf(ustream);
d41f73b7 1959 if (err != 0) {
04ef1097
MD
1960 /*
1961 * Populate metadata info if the existing info has
1962 * already been read.
1963 */
1964 if (stream->metadata_flag) {
94d49140
JD
1965 ret = commit_one_metadata_packet(stream);
1966 if (ret <= 0) {
04ef1097
MD
1967 goto end;
1968 }
04ef1097
MD
1969 ustctl_flush_buffer(stream->ustream, 1);
1970 goto retry;
1971 }
1972
1d4dfdef 1973 ret = err; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
d41f73b7
MD
1974 /*
1975 * This is a debug message even for single-threaded consumer,
1976 * because poll() have more relaxed criterions than get subbuf,
1977 * so get_subbuf may fail for short race windows where poll()
1978 * would issue wakeups.
1979 */
1980 DBG("Reserving sub buffer failed (everything is normal, "
ffe60014 1981 "it is due to concurrency) [ret: %d]", err);
d41f73b7
MD
1982 goto end;
1983 }
ffe60014 1984 assert(stream->chan->output == CONSUMER_CHANNEL_MMAP);
309167d2 1985
1c20f0e2 1986 if (!stream->metadata_flag) {
309167d2
JD
1987 index.offset = htobe64(stream->out_fd_offset);
1988 ret = get_index_values(&index, ustream);
1989 if (ret < 0) {
1990 goto end;
1991 }
1c20f0e2
JD
1992 } else {
1993 write_index = 0;
309167d2
JD
1994 }
1995
1d4dfdef 1996 /* Get the full padded subbuffer size */
ffe60014 1997 err = ustctl_get_padded_subbuf_size(ustream, &len);
effcf122 1998 assert(err == 0);
1d4dfdef
DG
1999
2000 /* Get subbuffer data size (without padding) */
ffe60014 2001 err = ustctl_get_subbuf_size(ustream, &subbuf_size);
1d4dfdef
DG
2002 assert(err == 0);
2003
2004 /* Make sure we don't get a subbuffer size bigger than the padded */
2005 assert(len >= subbuf_size);
2006
2007 padding = len - subbuf_size;
d41f73b7 2008 /* write the subbuffer to the tracefile */
309167d2 2009 ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, subbuf_size, padding, &index);
91dfef6e
DG
2010 /*
2011 * The mmap operation should write subbuf_size amount of data when network
2012 * streaming or the full padding (len) size when we are _not_ streaming.
2013 */
d88aee68
DG
2014 if ((ret != subbuf_size && stream->net_seq_idx != (uint64_t) -1ULL) ||
2015 (ret != len && stream->net_seq_idx == (uint64_t) -1ULL)) {
d41f73b7 2016 /*
91dfef6e 2017 * Display the error but continue processing to try to release the
c5c45efa
DG
2018 * subbuffer. This is a DBG statement since any unexpected kill or
2019 * signal, the application gets unregistered, relayd gets closed or
2020 * anything that affects the buffer lifetime will trigger this error.
2021 * So, for the sake of the user, don't print this error since it can
2022 * happen and it is OK with the code flow.
d41f73b7 2023 */
c5c45efa 2024 DBG("Error writing to tracefile "
8fd623e0 2025 "(ret: %ld != len: %lu != subbuf_size: %lu)",
91dfef6e 2026 ret, len, subbuf_size);
309167d2 2027 write_index = 0;
d41f73b7 2028 }
ffe60014 2029 err = ustctl_put_next_subbuf(ustream);
effcf122 2030 assert(err == 0);
331744e3 2031
02b3d176
DG
2032 /*
2033 * This will consumer the byte on the wait_fd if and only if there is not
2034 * next subbuffer to be acquired.
2035 */
2036 if (!stream->metadata_flag) {
2037 ret = notify_if_more_data(stream, ctx);
2038 if (ret < 0) {
2039 goto end;
2040 }
2041 }
2042
309167d2 2043 /* Write index if needed. */
1c20f0e2
JD
2044 if (!write_index) {
2045 goto end;
2046 }
2047
94d49140
JD
2048 if (stream->chan->live_timer_interval && !stream->metadata_flag) {
2049 /*
2050 * In live, block until all the metadata is sent.
2051 */
2052 err = consumer_stream_sync_metadata(ctx, stream->session_id);
2053 if (err < 0) {
2054 goto end;
2055 }
2056 }
2057
1c20f0e2
JD
2058 assert(!stream->metadata_flag);
2059 err = consumer_stream_write_index(stream, &index);
2060 if (err < 0) {
2061 goto end;
309167d2
JD
2062 }
2063
d41f73b7
MD
2064end:
2065 return ret;
2066}
2067
ffe60014
DG
2068/*
2069 * Called when a stream is created.
fe4477ee
JD
2070 *
2071 * Return 0 on success or else a negative value.
ffe60014 2072 */
d41f73b7
MD
2073int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
2074{
fe4477ee
JD
2075 int ret;
2076
10a50311
JD
2077 assert(stream);
2078
fe4477ee 2079 /* Don't create anything if this is set for streaming. */
10a50311 2080 if (stream->net_seq_idx == (uint64_t) -1ULL && stream->chan->monitor) {
fe4477ee
JD
2081 ret = utils_create_stream_file(stream->chan->pathname, stream->name,
2082 stream->chan->tracefile_size, stream->tracefile_count_current,
309167d2 2083 stream->uid, stream->gid, NULL);
fe4477ee
JD
2084 if (ret < 0) {
2085 goto error;
2086 }
2087 stream->out_fd = ret;
2088 stream->tracefile_size_current = 0;
309167d2
JD
2089
2090 if (!stream->metadata_flag) {
2091 ret = index_create_file(stream->chan->pathname,
2092 stream->name, stream->uid, stream->gid,
2093 stream->chan->tracefile_size,
2094 stream->tracefile_count_current);
2095 if (ret < 0) {
2096 goto error;
2097 }
2098 stream->index_fd = ret;
2099 }
fe4477ee
JD
2100 }
2101 ret = 0;
2102
2103error:
2104 return ret;
d41f73b7 2105}
ca22feea
DG
2106
2107/*
2108 * Check if data is still being extracted from the buffers for a specific
4e9a4686
DG
2109 * stream. Consumer data lock MUST be acquired before calling this function
2110 * and the stream lock.
ca22feea 2111 *
6d805429 2112 * Return 1 if the traced data are still getting read else 0 meaning that the
ca22feea
DG
2113 * data is available for trace viewer reading.
2114 */
6d805429 2115int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
ca22feea
DG
2116{
2117 int ret;
2118
2119 assert(stream);
ffe60014 2120 assert(stream->ustream);
ca22feea 2121
6d805429 2122 DBG("UST consumer checking data pending");
c8f59ee5 2123
ca6b395f
MD
2124 if (stream->endpoint_status != CONSUMER_ENDPOINT_ACTIVE) {
2125 ret = 0;
2126 goto end;
2127 }
2128
04ef1097 2129 if (stream->chan->type == CONSUMER_CHANNEL_TYPE_METADATA) {
e6ee4eab
DG
2130 uint64_t contiguous, pushed;
2131
2132 /* Ease our life a bit. */
2133 contiguous = stream->chan->metadata_cache->contiguous;
2134 pushed = stream->ust_metadata_pushed;
2135
04ef1097
MD
2136 /*
2137 * We can simply check whether all contiguously available data
2138 * has been pushed to the ring buffer, since the push operation
2139 * is performed within get_next_subbuf(), and because both
2140 * get_next_subbuf() and put_next_subbuf() are issued atomically
2141 * thanks to the stream lock within
2142 * lttng_ustconsumer_read_subbuffer(). This basically means that
2143 * whetnever ust_metadata_pushed is incremented, the associated
2144 * metadata has been consumed from the metadata stream.
2145 */
2146 DBG("UST consumer metadata pending check: contiguous %" PRIu64 " vs pushed %" PRIu64,
e6ee4eab 2147 contiguous, pushed);
ce0cb973 2148 assert(((int64_t) (contiguous - pushed)) >= 0);
e6ee4eab 2149 if ((contiguous != pushed) ||
6acdf328 2150 (((int64_t) contiguous - pushed) > 0 || contiguous == 0)) {
04ef1097
MD
2151 ret = 1; /* Data is pending */
2152 goto end;
2153 }
2154 } else {
2155 ret = ustctl_get_next_subbuf(stream->ustream);
2156 if (ret == 0) {
2157 /*
2158 * There is still data so let's put back this
2159 * subbuffer.
2160 */
2161 ret = ustctl_put_subbuf(stream->ustream);
2162 assert(ret == 0);
2163 ret = 1; /* Data is pending */
2164 goto end;
2165 }
ca22feea
DG
2166 }
2167
6d805429
DG
2168 /* Data is NOT pending so ready to be read. */
2169 ret = 0;
ca22feea 2170
6efae65e
DG
2171end:
2172 return ret;
ca22feea 2173}
d88aee68 2174
6d574024
DG
2175/*
2176 * Stop a given metadata channel timer if enabled and close the wait fd which
2177 * is the poll pipe of the metadata stream.
2178 *
2179 * This MUST be called with the metadata channel acquired.
2180 */
2181void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel *metadata)
2182{
2183 int ret;
2184
2185 assert(metadata);
2186 assert(metadata->type == CONSUMER_CHANNEL_TYPE_METADATA);
2187
2188 DBG("Closing metadata channel key %" PRIu64, metadata->key);
2189
2190 if (metadata->switch_timer_enabled == 1) {
2191 consumer_timer_switch_stop(metadata);
2192 }
2193
2194 if (!metadata->metadata_stream) {
2195 goto end;
2196 }
2197
2198 /*
2199 * Closing write side so the thread monitoring the stream wakes up if any
2200 * and clean the metadata stream.
2201 */
2202 if (metadata->metadata_stream->ust_metadata_poll_pipe[1] >= 0) {
2203 ret = close(metadata->metadata_stream->ust_metadata_poll_pipe[1]);
2204 if (ret < 0) {
2205 PERROR("closing metadata pipe write side");
2206 }
2207 metadata->metadata_stream->ust_metadata_poll_pipe[1] = -1;
2208 }
2209
2210end:
2211 return;
2212}
2213
d88aee68
DG
2214/*
2215 * Close every metadata stream wait fd of the metadata hash table. This
2216 * function MUST be used very carefully so not to run into a race between the
2217 * metadata thread handling streams and this function closing their wait fd.
2218 *
2219 * For UST, this is used when the session daemon hangs up. Its the metadata
2220 * producer so calling this is safe because we are assured that no state change
2221 * can occur in the metadata thread for the streams in the hash table.
2222 */
6d574024 2223void lttng_ustconsumer_close_all_metadata(struct lttng_ht *metadata_ht)
d88aee68 2224{
d88aee68
DG
2225 struct lttng_ht_iter iter;
2226 struct lttng_consumer_stream *stream;
2227
2228 assert(metadata_ht);
2229 assert(metadata_ht->ht);
2230
2231 DBG("UST consumer closing all metadata streams");
2232
2233 rcu_read_lock();
2234 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream,
2235 node.node) {
9ce5646a
MD
2236
2237 health_code_update();
2238
be2b50c7 2239 pthread_mutex_lock(&stream->chan->lock);
6d574024 2240 lttng_ustconsumer_close_metadata(stream->chan);
be2b50c7
DG
2241 pthread_mutex_unlock(&stream->chan->lock);
2242
d88aee68
DG
2243 }
2244 rcu_read_unlock();
2245}
d8ef542d
MD
2246
2247void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream)
2248{
2249 int ret;
2250
2251 ret = ustctl_stream_close_wakeup_fd(stream->ustream);
2252 if (ret < 0) {
2253 ERR("Unable to close wakeup fd");
2254 }
2255}
331744e3 2256
f666ae70
MD
2257/*
2258 * Please refer to consumer-timer.c before adding any lock within this
2259 * function or any of its callees. Timers have a very strict locking
2260 * semantic with respect to teardown. Failure to respect this semantic
2261 * introduces deadlocks.
2262 */
331744e3 2263int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
94d49140 2264 struct lttng_consumer_channel *channel, int timer, int wait)
331744e3
JD
2265{
2266 struct lttcomm_metadata_request_msg request;
2267 struct lttcomm_consumer_msg msg;
0c759fc9 2268 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
331744e3
JD
2269 uint64_t len, key, offset;
2270 int ret;
2271
2272 assert(channel);
2273 assert(channel->metadata_cache);
2274
53efb85a
MD
2275 memset(&request, 0, sizeof(request));
2276
331744e3
JD
2277 /* send the metadata request to sessiond */
2278 switch (consumer_data.type) {
2279 case LTTNG_CONSUMER64_UST:
2280 request.bits_per_long = 64;
2281 break;
2282 case LTTNG_CONSUMER32_UST:
2283 request.bits_per_long = 32;
2284 break;
2285 default:
2286 request.bits_per_long = 0;
2287 break;
2288 }
2289
2290 request.session_id = channel->session_id;
1950109e 2291 request.session_id_per_pid = channel->session_id_per_pid;
567eb353
DG
2292 /*
2293 * Request the application UID here so the metadata of that application can
2294 * be sent back. The channel UID corresponds to the user UID of the session
2295 * used for the rights on the stream file(s).
2296 */
2297 request.uid = channel->ust_app_uid;
331744e3 2298 request.key = channel->key;
567eb353 2299
1950109e 2300 DBG("Sending metadata request to sessiond, session id %" PRIu64
567eb353
DG
2301 ", per-pid %" PRIu64 ", app UID %u and channek key %" PRIu64,
2302 request.session_id, request.session_id_per_pid, request.uid,
2303 request.key);
331744e3 2304
75d83e50 2305 pthread_mutex_lock(&ctx->metadata_socket_lock);
9ce5646a
MD
2306
2307 health_code_update();
2308
331744e3
JD
2309 ret = lttcomm_send_unix_sock(ctx->consumer_metadata_socket, &request,
2310 sizeof(request));
2311 if (ret < 0) {
2312 ERR("Asking metadata to sessiond");
2313 goto end;
2314 }
2315
9ce5646a
MD
2316 health_code_update();
2317
331744e3
JD
2318 /* Receive the metadata from sessiond */
2319 ret = lttcomm_recv_unix_sock(ctx->consumer_metadata_socket, &msg,
2320 sizeof(msg));
2321 if (ret != sizeof(msg)) {
8fd623e0 2322 DBG("Consumer received unexpected message size %d (expects %zu)",
331744e3
JD
2323 ret, sizeof(msg));
2324 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
2325 /*
2326 * The ret value might 0 meaning an orderly shutdown but this is ok
2327 * since the caller handles this.
2328 */
2329 goto end;
2330 }
2331
9ce5646a
MD
2332 health_code_update();
2333
331744e3
JD
2334 if (msg.cmd_type == LTTNG_ERR_UND) {
2335 /* No registry found */
2336 (void) consumer_send_status_msg(ctx->consumer_metadata_socket,
2337 ret_code);
2338 ret = 0;
2339 goto end;
2340 } else if (msg.cmd_type != LTTNG_CONSUMER_PUSH_METADATA) {
2341 ERR("Unexpected cmd_type received %d", msg.cmd_type);
2342 ret = -1;
2343 goto end;
2344 }
2345
2346 len = msg.u.push_metadata.len;
2347 key = msg.u.push_metadata.key;
2348 offset = msg.u.push_metadata.target_offset;
2349
2350 assert(key == channel->key);
2351 if (len == 0) {
2352 DBG("No new metadata to receive for key %" PRIu64, key);
2353 }
2354
9ce5646a
MD
2355 health_code_update();
2356
331744e3
JD
2357 /* Tell session daemon we are ready to receive the metadata. */
2358 ret = consumer_send_status_msg(ctx->consumer_metadata_socket,
0c759fc9 2359 LTTCOMM_CONSUMERD_SUCCESS);
331744e3
JD
2360 if (ret < 0 || len == 0) {
2361 /*
2362 * Somehow, the session daemon is not responding anymore or there is
2363 * nothing to receive.
2364 */
2365 goto end;
2366 }
2367
9ce5646a
MD
2368 health_code_update();
2369
1eb682be 2370 ret = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket,
94d49140 2371 key, offset, len, channel, timer, wait);
1eb682be 2372 if (ret >= 0) {
f2a444f1
DG
2373 /*
2374 * Only send the status msg if the sessiond is alive meaning a positive
2375 * ret code.
2376 */
1eb682be 2377 (void) consumer_send_status_msg(ctx->consumer_metadata_socket, ret);
f2a444f1 2378 }
331744e3
JD
2379 ret = 0;
2380
2381end:
9ce5646a
MD
2382 health_code_update();
2383
75d83e50 2384 pthread_mutex_unlock(&ctx->metadata_socket_lock);
331744e3
JD
2385 return ret;
2386}
479fe7bf
DG
2387
2388/*
2389 * Return the ustctl call for the get stream id.
2390 */
2391int lttng_ustconsumer_get_stream_id(struct lttng_consumer_stream *stream,
2392 uint64_t *stream_id)
2393{
2394 assert(stream);
2395 assert(stream_id);
2396
2397 return ustctl_get_stream_id(stream->ustream, stream_id);
2398}
This page took 0.170795 seconds and 4 git commands to generate.