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