Clean-up: consumer_add_metadata_stream always returns 0
[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>
b3530820 4 * Copyright (C) 2017 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
3bd1e081 5 *
d14d33bf
AM
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
3bd1e081
MD
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
d14d33bf
AM
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3bd1e081
MD
18 */
19
6c1c0768 20#define _LGPL_SOURCE
3bd1e081 21#include <assert.h>
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>
c8fea79c
JR
42#include <common/consumer/consumer-metadata-cache.h>
43#include <common/consumer/consumer-stream.h>
44#include <common/consumer/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 49
45863397 50#define INT_MAX_STR_LEN 12 /* includes \0 */
4628484a 51
3bd1e081
MD
52extern struct lttng_consumer_global_data consumer_data;
53extern int consumer_poll_timeout;
3bd1e081
MD
54
55/*
ffe60014
DG
56 * Free channel object and all streams associated with it. This MUST be used
57 * only and only if the channel has _NEVER_ been added to the global channel
58 * hash table.
3bd1e081 59 */
ffe60014 60static void destroy_channel(struct lttng_consumer_channel *channel)
3bd1e081 61{
ffe60014
DG
62 struct lttng_consumer_stream *stream, *stmp;
63
64 assert(channel);
65
66 DBG("UST consumer cleaning stream list");
67
68 cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head,
69 send_node) {
9ce5646a
MD
70
71 health_code_update();
72
ffe60014
DG
73 cds_list_del(&stream->send_node);
74 ustctl_destroy_stream(stream->ustream);
75 free(stream);
76 }
77
78 /*
79 * If a channel is available meaning that was created before the streams
80 * were, delete it.
81 */
82 if (channel->uchan) {
83 lttng_ustconsumer_del_channel(channel);
b83e03c4 84 lttng_ustconsumer_free_channel(channel);
ffe60014
DG
85 }
86 free(channel);
87}
3bd1e081
MD
88
89/*
ffe60014 90 * Add channel to internal consumer state.
3bd1e081 91 *
ffe60014 92 * Returns 0 on success or else a negative value.
3bd1e081 93 */
ffe60014
DG
94static int add_channel(struct lttng_consumer_channel *channel,
95 struct lttng_consumer_local_data *ctx)
3bd1e081
MD
96{
97 int ret = 0;
98
ffe60014
DG
99 assert(channel);
100 assert(ctx);
101
102 if (ctx->on_recv_channel != NULL) {
103 ret = ctx->on_recv_channel(channel);
104 if (ret == 0) {
d8ef542d 105 ret = consumer_add_channel(channel, ctx);
ffe60014
DG
106 } else if (ret < 0) {
107 /* Most likely an ENOMEM. */
108 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
109 goto error;
110 }
111 } else {
d8ef542d 112 ret = consumer_add_channel(channel, ctx);
3bd1e081
MD
113 }
114
d88aee68 115 DBG("UST consumer channel added (key: %" PRIu64 ")", channel->key);
ffe60014
DG
116
117error:
3bd1e081
MD
118 return ret;
119}
120
121/*
ffe60014
DG
122 * Allocate and return a consumer channel object.
123 */
124static struct lttng_consumer_channel *allocate_channel(uint64_t session_id,
125 const char *pathname, const char *name, uid_t uid, gid_t gid,
da009f2c 126 uint64_t relayd_id, uint64_t key, enum lttng_event_output output,
2bba9e53 127 uint64_t tracefile_size, uint64_t tracefile_count,
ecc48a90 128 uint64_t session_id_per_pid, unsigned int monitor,
d7ba1388 129 unsigned int live_timer_interval,
3d071855 130 const char *root_shm_path, const char *shm_path)
ffe60014
DG
131{
132 assert(pathname);
133 assert(name);
134
1950109e
JD
135 return consumer_allocate_channel(key, session_id, pathname, name, uid,
136 gid, relayd_id, output, tracefile_size,
d7ba1388 137 tracefile_count, session_id_per_pid, monitor,
3d071855 138 live_timer_interval, root_shm_path, shm_path);
ffe60014
DG
139}
140
141/*
142 * Allocate and return a consumer stream object. If _alloc_ret is not NULL, the
143 * error value if applicable is set in it else it is kept untouched.
3bd1e081 144 *
ffe60014 145 * Return NULL on error else the newly allocated stream object.
3bd1e081 146 */
ffe60014
DG
147static struct lttng_consumer_stream *allocate_stream(int cpu, int key,
148 struct lttng_consumer_channel *channel,
149 struct lttng_consumer_local_data *ctx, int *_alloc_ret)
150{
151 int alloc_ret;
152 struct lttng_consumer_stream *stream = NULL;
153
154 assert(channel);
155 assert(ctx);
156
157 stream = consumer_allocate_stream(channel->key,
158 key,
159 LTTNG_CONSUMER_ACTIVE_STREAM,
160 channel->name,
161 channel->uid,
162 channel->gid,
163 channel->relayd_id,
164 channel->session_id,
165 cpu,
166 &alloc_ret,
4891ece8
DG
167 channel->type,
168 channel->monitor);
ffe60014
DG
169 if (stream == NULL) {
170 switch (alloc_ret) {
171 case -ENOENT:
172 /*
173 * We could not find the channel. Can happen if cpu hotplug
174 * happens while tearing down.
175 */
176 DBG3("Could not find channel");
177 break;
178 case -ENOMEM:
179 case -EINVAL:
180 default:
181 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
182 break;
183 }
184 goto error;
185 }
186
187 stream->chan = channel;
188
189error:
190 if (_alloc_ret) {
191 *_alloc_ret = alloc_ret;
192 }
193 return stream;
194}
195
196/*
197 * Send the given stream pointer to the corresponding thread.
198 *
199 * Returns 0 on success else a negative value.
200 */
201static int send_stream_to_thread(struct lttng_consumer_stream *stream,
202 struct lttng_consumer_local_data *ctx)
203{
dae10966
DG
204 int ret;
205 struct lttng_pipe *stream_pipe;
ffe60014
DG
206
207 /* Get the right pipe where the stream will be sent. */
208 if (stream->metadata_flag) {
66d583dc 209 consumer_add_metadata_stream(stream);
dae10966 210 stream_pipe = ctx->consumer_metadata_pipe;
ffe60014 211 } else {
66d583dc 212 consumer_add_data_stream(stream);
dae10966 213 stream_pipe = ctx->consumer_data_pipe;
ffe60014
DG
214 }
215
5ab66908
MD
216 /*
217 * From this point on, the stream's ownership has been moved away from
a8086cf4
JR
218 * the channel and it becomes globally visible. Hence, remove it from
219 * the local stream list to prevent the stream from being both local and
220 * global.
5ab66908
MD
221 */
222 stream->globally_visible = 1;
a8086cf4 223 cds_list_del(&stream->send_node);
5ab66908 224
dae10966 225 ret = lttng_pipe_write(stream_pipe, &stream, sizeof(stream));
ffe60014 226 if (ret < 0) {
dae10966
DG
227 ERR("Consumer write %s stream to pipe %d",
228 stream->metadata_flag ? "metadata" : "data",
229 lttng_pipe_get_writefd(stream_pipe));
5ab66908
MD
230 if (stream->metadata_flag) {
231 consumer_del_stream_for_metadata(stream);
232 } else {
233 consumer_del_stream_for_data(stream);
234 }
a8086cf4 235 goto error;
ffe60014 236 }
a8086cf4 237
5ab66908 238error:
ffe60014
DG
239 return ret;
240}
241
4628484a
MD
242static
243int get_stream_shm_path(char *stream_shm_path, const char *shm_path, int cpu)
244{
45863397 245 char cpu_nr[INT_MAX_STR_LEN]; /* int max len */
4628484a
MD
246 int ret;
247
248 strncpy(stream_shm_path, shm_path, PATH_MAX);
249 stream_shm_path[PATH_MAX - 1] = '\0';
45863397 250 ret = snprintf(cpu_nr, INT_MAX_STR_LEN, "%i", cpu);
67f8cb8d
MD
251 if (ret < 0) {
252 PERROR("snprintf");
4628484a
MD
253 goto end;
254 }
255 strncat(stream_shm_path, cpu_nr,
256 PATH_MAX - strlen(stream_shm_path) - 1);
257 ret = 0;
258end:
259 return ret;
260}
261
d88aee68
DG
262/*
263 * Create streams for the given channel using liblttng-ust-ctl.
264 *
265 * Return 0 on success else a negative value.
266 */
ffe60014
DG
267static int create_ust_streams(struct lttng_consumer_channel *channel,
268 struct lttng_consumer_local_data *ctx)
269{
270 int ret, cpu = 0;
271 struct ustctl_consumer_stream *ustream;
272 struct lttng_consumer_stream *stream;
273
274 assert(channel);
275 assert(ctx);
276
277 /*
278 * While a stream is available from ustctl. When NULL is returned, we've
279 * reached the end of the possible stream for the channel.
280 */
281 while ((ustream = ustctl_create_stream(channel->uchan, cpu))) {
282 int wait_fd;
04ef1097 283 int ust_metadata_pipe[2];
ffe60014 284
9ce5646a
MD
285 health_code_update();
286
04ef1097
MD
287 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && channel->monitor) {
288 ret = utils_create_pipe_cloexec_nonblock(ust_metadata_pipe);
289 if (ret < 0) {
290 ERR("Create ust metadata poll pipe");
291 goto error;
292 }
293 wait_fd = ust_metadata_pipe[0];
294 } else {
295 wait_fd = ustctl_stream_get_wait_fd(ustream);
296 }
ffe60014
DG
297
298 /* Allocate consumer stream object. */
299 stream = allocate_stream(cpu, wait_fd, channel, ctx, &ret);
300 if (!stream) {
301 goto error_alloc;
302 }
303 stream->ustream = ustream;
304 /*
305 * Store it so we can save multiple function calls afterwards since
306 * this value is used heavily in the stream threads. This is UST
307 * specific so this is why it's done after allocation.
308 */
309 stream->wait_fd = wait_fd;
310
b31398bb
DG
311 /*
312 * Increment channel refcount since the channel reference has now been
313 * assigned in the allocation process above.
314 */
10a50311
JD
315 if (stream->chan->monitor) {
316 uatomic_inc(&stream->chan->refcount);
317 }
b31398bb 318
ffe60014
DG
319 /*
320 * Order is important this is why a list is used. On error, the caller
321 * should clean this list.
322 */
323 cds_list_add_tail(&stream->send_node, &channel->streams.head);
324
325 ret = ustctl_get_max_subbuf_size(stream->ustream,
326 &stream->max_sb_size);
327 if (ret < 0) {
328 ERR("ustctl_get_max_subbuf_size failed for stream %s",
329 stream->name);
330 goto error;
331 }
332
333 /* Do actions once stream has been received. */
334 if (ctx->on_recv_stream) {
335 ret = ctx->on_recv_stream(stream);
336 if (ret < 0) {
337 goto error;
338 }
339 }
340
d88aee68 341 DBG("UST consumer add stream %s (key: %" PRIu64 ") with relayd id %" PRIu64,
ffe60014
DG
342 stream->name, stream->key, stream->relayd_stream_id);
343
344 /* Set next CPU stream. */
345 channel->streams.count = ++cpu;
d88aee68
DG
346
347 /* Keep stream reference when creating metadata. */
348 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA) {
349 channel->metadata_stream = stream;
8de4f941
JG
350 if (channel->monitor) {
351 /* Set metadata poll pipe if we created one */
352 memcpy(stream->ust_metadata_poll_pipe,
353 ust_metadata_pipe,
354 sizeof(ust_metadata_pipe));
355 }
d88aee68 356 }
ffe60014
DG
357 }
358
359 return 0;
360
361error:
362error_alloc:
363 return ret;
364}
365
4628484a
MD
366/*
367 * create_posix_shm is never called concurrently within a process.
368 */
369static
370int create_posix_shm(void)
371{
372 char tmp_name[NAME_MAX];
373 int shmfd, ret;
374
375 ret = snprintf(tmp_name, NAME_MAX, "/ust-shm-consumer-%d", getpid());
376 if (ret < 0) {
377 PERROR("snprintf");
378 return -1;
379 }
380 /*
381 * Allocate shm, and immediately unlink its shm oject, keeping
382 * only the file descriptor as a reference to the object.
383 * We specifically do _not_ use the / at the beginning of the
384 * pathname so that some OS implementations can keep it local to
385 * the process (POSIX leaves this implementation-defined).
386 */
387 shmfd = shm_open(tmp_name, O_CREAT | O_EXCL | O_RDWR, 0700);
388 if (shmfd < 0) {
389 PERROR("shm_open");
390 goto error_shm_open;
391 }
392 ret = shm_unlink(tmp_name);
393 if (ret < 0 && errno != ENOENT) {
394 PERROR("shm_unlink");
395 goto error_shm_release;
396 }
397 return shmfd;
398
399error_shm_release:
400 ret = close(shmfd);
401 if (ret) {
402 PERROR("close");
403 }
404error_shm_open:
405 return -1;
406}
407
408static int open_ust_stream_fd(struct lttng_consumer_channel *channel,
409 struct ustctl_consumer_channel_attr *attr,
410 int cpu)
411{
412 char shm_path[PATH_MAX];
413 int ret;
414
415 if (!channel->shm_path[0]) {
416 return create_posix_shm();
417 }
418 ret = get_stream_shm_path(shm_path, channel->shm_path, cpu);
419 if (ret) {
420 goto error_shm_path;
421 }
422 return run_as_open(shm_path,
423 O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR,
424 channel->uid, channel->gid);
425
426error_shm_path:
427 return -1;
428}
429
ffe60014
DG
430/*
431 * Create an UST channel with the given attributes and send it to the session
432 * daemon using the ust ctl API.
433 *
434 * Return 0 on success or else a negative value.
435 */
4628484a
MD
436static int create_ust_channel(struct lttng_consumer_channel *channel,
437 struct ustctl_consumer_channel_attr *attr,
438 struct ustctl_consumer_channel **ust_chanp)
ffe60014 439{
4628484a
MD
440 int ret, nr_stream_fds, i, j;
441 int *stream_fds;
442 struct ustctl_consumer_channel *ust_channel;
ffe60014 443
4628484a 444 assert(channel);
ffe60014 445 assert(attr);
4628484a 446 assert(ust_chanp);
ffe60014
DG
447
448 DBG3("Creating channel to ustctl with attr: [overwrite: %d, "
449 "subbuf_size: %" PRIu64 ", num_subbuf: %" PRIu64 ", "
450 "switch_timer_interval: %u, read_timer_interval: %u, "
451 "output: %d, type: %d", attr->overwrite, attr->subbuf_size,
452 attr->num_subbuf, attr->switch_timer_interval,
453 attr->read_timer_interval, attr->output, attr->type);
454
4628484a
MD
455 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA)
456 nr_stream_fds = 1;
457 else
458 nr_stream_fds = ustctl_get_nr_stream_per_channel();
459 stream_fds = zmalloc(nr_stream_fds * sizeof(*stream_fds));
460 if (!stream_fds) {
461 ret = -1;
462 goto error_alloc;
463 }
464 for (i = 0; i < nr_stream_fds; i++) {
465 stream_fds[i] = open_ust_stream_fd(channel, attr, i);
466 if (stream_fds[i] < 0) {
467 ret = -1;
468 goto error_open;
469 }
470 }
471 ust_channel = ustctl_create_channel(attr, stream_fds, nr_stream_fds);
472 if (!ust_channel) {
ffe60014
DG
473 ret = -1;
474 goto error_create;
475 }
4628484a
MD
476 channel->nr_stream_fds = nr_stream_fds;
477 channel->stream_fds = stream_fds;
478 *ust_chanp = ust_channel;
ffe60014
DG
479
480 return 0;
481
482error_create:
4628484a
MD
483error_open:
484 for (j = i - 1; j >= 0; j--) {
485 int closeret;
486
487 closeret = close(stream_fds[j]);
488 if (closeret) {
489 PERROR("close");
490 }
491 if (channel->shm_path[0]) {
492 char shm_path[PATH_MAX];
493
494 closeret = get_stream_shm_path(shm_path,
495 channel->shm_path, j);
496 if (closeret) {
497 ERR("Cannot get stream shm path");
498 }
499 closeret = run_as_unlink(shm_path,
500 channel->uid, channel->gid);
501 if (closeret) {
4628484a
MD
502 PERROR("unlink %s", shm_path);
503 }
504 }
505 }
506 /* Try to rmdir all directories under shm_path root. */
507 if (channel->root_shm_path[0]) {
602766ec 508 (void) run_as_rmdir_recursive(channel->root_shm_path,
4628484a
MD
509 channel->uid, channel->gid);
510 }
511 free(stream_fds);
512error_alloc:
ffe60014
DG
513 return ret;
514}
515
d88aee68
DG
516/*
517 * Send a single given stream to the session daemon using the sock.
518 *
519 * Return 0 on success else a negative value.
520 */
ffe60014
DG
521static int send_sessiond_stream(int sock, struct lttng_consumer_stream *stream)
522{
523 int ret;
524
525 assert(stream);
526 assert(sock >= 0);
527
3eb914c0 528 DBG("UST consumer sending stream %" PRIu64 " to sessiond", stream->key);
ffe60014
DG
529
530 /* Send stream to session daemon. */
531 ret = ustctl_send_stream_to_sessiond(sock, stream->ustream);
532 if (ret < 0) {
533 goto error;
534 }
535
ffe60014
DG
536error:
537 return ret;
538}
539
540/*
541 * Send channel to sessiond.
542 *
d88aee68 543 * Return 0 on success or else a negative value.
ffe60014
DG
544 */
545static int send_sessiond_channel(int sock,
546 struct lttng_consumer_channel *channel,
547 struct lttng_consumer_local_data *ctx, int *relayd_error)
548{
0c759fc9 549 int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS;
ffe60014 550 struct lttng_consumer_stream *stream;
a4baae1b 551 uint64_t net_seq_idx = -1ULL;
ffe60014
DG
552
553 assert(channel);
554 assert(ctx);
555 assert(sock >= 0);
556
557 DBG("UST consumer sending channel %s to sessiond", channel->name);
558
62285ea4
DG
559 if (channel->relayd_id != (uint64_t) -1ULL) {
560 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
9ce5646a
MD
561
562 health_code_update();
563
62285ea4
DG
564 /* Try to send the stream to the relayd if one is available. */
565 ret = consumer_send_relayd_stream(stream, stream->chan->pathname);
566 if (ret < 0) {
567 /*
568 * Flag that the relayd was the problem here probably due to a
569 * communicaton error on the socket.
570 */
571 if (relayd_error) {
572 *relayd_error = 1;
573 }
725d28b2 574 ret_code = LTTCOMM_CONSUMERD_RELAYD_FAIL;
ffe60014 575 }
a4baae1b
JD
576 if (net_seq_idx == -1ULL) {
577 net_seq_idx = stream->net_seq_idx;
578 }
579 }
f2a444f1 580 }
ffe60014 581
f2a444f1
DG
582 /* Inform sessiond that we are about to send channel and streams. */
583 ret = consumer_send_status_msg(sock, ret_code);
0c759fc9 584 if (ret < 0 || ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
f2a444f1
DG
585 /*
586 * Either the session daemon is not responding or the relayd died so we
587 * stop now.
588 */
589 goto error;
590 }
591
592 /* Send channel to sessiond. */
593 ret = ustctl_send_channel_to_sessiond(sock, channel->uchan);
594 if (ret < 0) {
595 goto error;
596 }
597
598 ret = ustctl_channel_close_wakeup_fd(channel->uchan);
599 if (ret < 0) {
600 goto error;
601 }
602
603 /* The channel was sent successfully to the sessiond at this point. */
604 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
9ce5646a
MD
605
606 health_code_update();
607
ffe60014
DG
608 /* Send stream to session daemon. */
609 ret = send_sessiond_stream(sock, stream);
610 if (ret < 0) {
611 goto error;
612 }
613 }
614
615 /* Tell sessiond there is no more stream. */
616 ret = ustctl_send_stream_to_sessiond(sock, NULL);
617 if (ret < 0) {
618 goto error;
619 }
620
621 DBG("UST consumer NULL stream sent to sessiond");
622
623 return 0;
624
625error:
0c759fc9 626 if (ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
f2a444f1
DG
627 ret = -1;
628 }
ffe60014
DG
629 return ret;
630}
631
632/*
633 * Creates a channel and streams and add the channel it to the channel internal
634 * state. The created stream must ONLY be sent once the GET_CHANNEL command is
635 * received.
636 *
637 * Return 0 on success or else, a negative value is returned and the channel
638 * MUST be destroyed by consumer_del_channel().
639 */
640static int ask_channel(struct lttng_consumer_local_data *ctx, int sock,
641 struct lttng_consumer_channel *channel,
642 struct ustctl_consumer_channel_attr *attr)
3bd1e081
MD
643{
644 int ret;
645
ffe60014
DG
646 assert(ctx);
647 assert(channel);
648 assert(attr);
649
650 /*
651 * This value is still used by the kernel consumer since for the kernel,
652 * the stream ownership is not IN the consumer so we need to have the
653 * number of left stream that needs to be initialized so we can know when
654 * to delete the channel (see consumer.c).
655 *
656 * As for the user space tracer now, the consumer creates and sends the
657 * stream to the session daemon which only sends them to the application
658 * once every stream of a channel is received making this value useless
659 * because we they will be added to the poll thread before the application
660 * receives them. This ensures that a stream can not hang up during
661 * initilization of a channel.
662 */
663 channel->nb_init_stream_left = 0;
664
665 /* The reply msg status is handled in the following call. */
4628484a 666 ret = create_ust_channel(channel, attr, &channel->uchan);
ffe60014 667 if (ret < 0) {
10a50311 668 goto end;
3bd1e081
MD
669 }
670
d8ef542d
MD
671 channel->wait_fd = ustctl_channel_get_wait_fd(channel->uchan);
672
10a50311
JD
673 /*
674 * For the snapshots (no monitor), we create the metadata streams
675 * on demand, not during the channel creation.
676 */
677 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && !channel->monitor) {
678 ret = 0;
679 goto end;
680 }
681
ffe60014
DG
682 /* Open all streams for this channel. */
683 ret = create_ust_streams(channel, ctx);
684 if (ret < 0) {
10a50311 685 goto end;
ffe60014
DG
686 }
687
10a50311 688end:
3bd1e081
MD
689 return ret;
690}
691
d88aee68
DG
692/*
693 * Send all stream of a channel to the right thread handling it.
694 *
695 * On error, return a negative value else 0 on success.
696 */
697static int send_streams_to_thread(struct lttng_consumer_channel *channel,
698 struct lttng_consumer_local_data *ctx)
699{
700 int ret = 0;
701 struct lttng_consumer_stream *stream, *stmp;
702
703 assert(channel);
704 assert(ctx);
705
706 /* Send streams to the corresponding thread. */
707 cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head,
708 send_node) {
9ce5646a
MD
709
710 health_code_update();
711
d88aee68
DG
712 /* Sending the stream to the thread. */
713 ret = send_stream_to_thread(stream, ctx);
714 if (ret < 0) {
715 /*
716 * If we are unable to send the stream to the thread, there is
717 * a big problem so just stop everything.
718 */
719 goto error;
720 }
d88aee68
DG
721 }
722
723error:
724 return ret;
725}
726
7972aab2
DG
727/*
728 * Flush channel's streams using the given key to retrieve the channel.
729 *
730 * Return 0 on success else an LTTng error code.
731 */
732static int flush_channel(uint64_t chan_key)
733{
734 int ret = 0;
735 struct lttng_consumer_channel *channel;
736 struct lttng_consumer_stream *stream;
737 struct lttng_ht *ht;
738 struct lttng_ht_iter iter;
739
8fd623e0 740 DBG("UST consumer flush channel key %" PRIu64, chan_key);
7972aab2 741
a500c257 742 rcu_read_lock();
7972aab2
DG
743 channel = consumer_find_channel(chan_key);
744 if (!channel) {
8fd623e0 745 ERR("UST consumer flush channel %" PRIu64 " not found", chan_key);
7972aab2
DG
746 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
747 goto error;
748 }
749
750 ht = consumer_data.stream_per_chan_id_ht;
751
752 /* For each stream of the channel id, flush it. */
7972aab2
DG
753 cds_lfht_for_each_entry_duplicate(ht->ht,
754 ht->hash_fct(&channel->key, lttng_ht_seed), ht->match_fct,
755 &channel->key, &iter.iter, stream, node_channel_id.node) {
9ce5646a
MD
756
757 health_code_update();
758
0dd01979
MD
759 pthread_mutex_lock(&stream->lock);
760 if (!stream->quiescent) {
761 ustctl_flush_buffer(stream->ustream, 0);
762 stream->quiescent = true;
763 }
764 pthread_mutex_unlock(&stream->lock);
765 }
766error:
767 rcu_read_unlock();
768 return ret;
769}
770
771/*
772 * Clear quiescent state from channel's streams using the given key to
773 * retrieve the channel.
774 *
775 * Return 0 on success else an LTTng error code.
776 */
777static int clear_quiescent_channel(uint64_t chan_key)
778{
779 int ret = 0;
780 struct lttng_consumer_channel *channel;
781 struct lttng_consumer_stream *stream;
782 struct lttng_ht *ht;
783 struct lttng_ht_iter iter;
784
785 DBG("UST consumer clear quiescent channel key %" PRIu64, chan_key);
786
787 rcu_read_lock();
788 channel = consumer_find_channel(chan_key);
789 if (!channel) {
790 ERR("UST consumer clear quiescent channel %" PRIu64 " not found", chan_key);
791 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
792 goto error;
793 }
794
795 ht = consumer_data.stream_per_chan_id_ht;
796
797 /* For each stream of the channel id, clear quiescent state. */
798 cds_lfht_for_each_entry_duplicate(ht->ht,
799 ht->hash_fct(&channel->key, lttng_ht_seed), ht->match_fct,
800 &channel->key, &iter.iter, stream, node_channel_id.node) {
801
802 health_code_update();
803
804 pthread_mutex_lock(&stream->lock);
805 stream->quiescent = false;
806 pthread_mutex_unlock(&stream->lock);
7972aab2 807 }
7972aab2 808error:
a500c257 809 rcu_read_unlock();
7972aab2
DG
810 return ret;
811}
812
d88aee68
DG
813/*
814 * Close metadata stream wakeup_fd using the given key to retrieve the channel.
a500c257 815 * RCU read side lock MUST be acquired before calling this function.
d88aee68
DG
816 *
817 * Return 0 on success else an LTTng error code.
818 */
819static int close_metadata(uint64_t chan_key)
820{
ea88ca2a 821 int ret = 0;
d88aee68
DG
822 struct lttng_consumer_channel *channel;
823
8fd623e0 824 DBG("UST consumer close metadata key %" PRIu64, chan_key);
d88aee68
DG
825
826 channel = consumer_find_channel(chan_key);
827 if (!channel) {
84cc9aa0
DG
828 /*
829 * This is possible if the metadata thread has issue a delete because
830 * the endpoint point of the stream hung up. There is no way the
831 * session daemon can know about it thus use a DBG instead of an actual
832 * error.
833 */
834 DBG("UST consumer close metadata %" PRIu64 " not found", chan_key);
d88aee68
DG
835 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
836 goto error;
837 }
838
ea88ca2a 839 pthread_mutex_lock(&consumer_data.lock);
a9838785 840 pthread_mutex_lock(&channel->lock);
73811ecc
DG
841
842 if (cds_lfht_is_node_deleted(&channel->node.node)) {
843 goto error_unlock;
844 }
845
6d574024 846 lttng_ustconsumer_close_metadata(channel);
d88aee68 847
ea88ca2a 848error_unlock:
a9838785 849 pthread_mutex_unlock(&channel->lock);
ea88ca2a 850 pthread_mutex_unlock(&consumer_data.lock);
d88aee68
DG
851error:
852 return ret;
853}
854
855/*
856 * RCU read side lock MUST be acquired before calling this function.
857 *
858 * Return 0 on success else an LTTng error code.
859 */
860static int setup_metadata(struct lttng_consumer_local_data *ctx, uint64_t key)
861{
862 int ret;
863 struct lttng_consumer_channel *metadata;
864
8fd623e0 865 DBG("UST consumer setup metadata key %" PRIu64, key);
d88aee68
DG
866
867 metadata = consumer_find_channel(key);
868 if (!metadata) {
869 ERR("UST consumer push metadata %" PRIu64 " not found", key);
870 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
10a50311
JD
871 goto end;
872 }
873
874 /*
875 * In no monitor mode, the metadata channel has no stream(s) so skip the
876 * ownership transfer to the metadata thread.
877 */
878 if (!metadata->monitor) {
879 DBG("Metadata channel in no monitor");
880 ret = 0;
881 goto end;
d88aee68
DG
882 }
883
884 /*
885 * Send metadata stream to relayd if one available. Availability is
886 * known if the stream is still in the list of the channel.
887 */
888 if (cds_list_empty(&metadata->streams.head)) {
889 ERR("Metadata channel key %" PRIu64 ", no stream available.", key);
890 ret = LTTCOMM_CONSUMERD_ERROR_METADATA;
f5a0c9cf 891 goto error_no_stream;
d88aee68
DG
892 }
893
894 /* Send metadata stream to relayd if needed. */
62285ea4
DG
895 if (metadata->metadata_stream->net_seq_idx != (uint64_t) -1ULL) {
896 ret = consumer_send_relayd_stream(metadata->metadata_stream,
897 metadata->pathname);
898 if (ret < 0) {
899 ret = LTTCOMM_CONSUMERD_ERROR_METADATA;
900 goto error;
901 }
601262d6
JD
902 ret = consumer_send_relayd_streams_sent(
903 metadata->metadata_stream->net_seq_idx);
904 if (ret < 0) {
905 ret = LTTCOMM_CONSUMERD_RELAYD_FAIL;
906 goto error;
907 }
d88aee68
DG
908 }
909
a8086cf4
JR
910 /*
911 * Ownership of metadata stream is passed along. Freeing is handled by
912 * the callee.
913 */
d88aee68
DG
914 ret = send_streams_to_thread(metadata, ctx);
915 if (ret < 0) {
916 /*
917 * If we are unable to send the stream to the thread, there is
918 * a big problem so just stop everything.
919 */
920 ret = LTTCOMM_CONSUMERD_FATAL;
a8086cf4 921 goto send_streams_error;
d88aee68
DG
922 }
923 /* List MUST be empty after or else it could be reused. */
924 assert(cds_list_empty(&metadata->streams.head));
925
10a50311
JD
926 ret = 0;
927 goto end;
d88aee68
DG
928
929error:
f2a444f1
DG
930 /*
931 * Delete metadata channel on error. At this point, the metadata stream can
932 * NOT be monitored by the metadata thread thus having the guarantee that
933 * the stream is still in the local stream list of the channel. This call
934 * will make sure to clean that list.
935 */
f5a0c9cf 936 consumer_stream_destroy(metadata->metadata_stream, NULL);
212d67a2
DG
937 cds_list_del(&metadata->metadata_stream->send_node);
938 metadata->metadata_stream = NULL;
a8086cf4 939send_streams_error:
f5a0c9cf 940error_no_stream:
10a50311
JD
941end:
942 return ret;
943}
944
945/*
946 * Snapshot the whole metadata.
947 *
948 * Returns 0 on success, < 0 on error
949 */
950static int snapshot_metadata(uint64_t key, char *path, uint64_t relayd_id,
951 struct lttng_consumer_local_data *ctx)
952{
953 int ret = 0;
10a50311
JD
954 struct lttng_consumer_channel *metadata_channel;
955 struct lttng_consumer_stream *metadata_stream;
956
957 assert(path);
958 assert(ctx);
959
960 DBG("UST consumer snapshot metadata with key %" PRIu64 " at path %s",
961 key, path);
962
963 rcu_read_lock();
964
965 metadata_channel = consumer_find_channel(key);
966 if (!metadata_channel) {
6a00837f
MD
967 ERR("UST snapshot metadata channel not found for key %" PRIu64,
968 key);
10a50311
JD
969 ret = -1;
970 goto error;
971 }
972 assert(!metadata_channel->monitor);
973
9ce5646a
MD
974 health_code_update();
975
10a50311
JD
976 /*
977 * Ask the sessiond if we have new metadata waiting and update the
978 * consumer metadata cache.
979 */
94d49140 980 ret = lttng_ustconsumer_request_metadata(ctx, metadata_channel, 0, 1);
10a50311
JD
981 if (ret < 0) {
982 goto error;
983 }
984
9ce5646a
MD
985 health_code_update();
986
10a50311
JD
987 /*
988 * The metadata stream is NOT created in no monitor mode when the channel
989 * is created on a sessiond ask channel command.
990 */
991 ret = create_ust_streams(metadata_channel, ctx);
992 if (ret < 0) {
993 goto error;
994 }
995
996 metadata_stream = metadata_channel->metadata_stream;
997 assert(metadata_stream);
998
999 if (relayd_id != (uint64_t) -1ULL) {
1000 metadata_stream->net_seq_idx = relayd_id;
1001 ret = consumer_send_relayd_stream(metadata_stream, path);
1002 if (ret < 0) {
1003 goto error_stream;
1004 }
1005 } else {
1006 ret = utils_create_stream_file(path, metadata_stream->name,
1007 metadata_stream->chan->tracefile_size,
1008 metadata_stream->tracefile_count_current,
309167d2 1009 metadata_stream->uid, metadata_stream->gid, NULL);
10a50311
JD
1010 if (ret < 0) {
1011 goto error_stream;
1012 }
1013 metadata_stream->out_fd = ret;
1014 metadata_stream->tracefile_size_current = 0;
1015 }
1016
04ef1097 1017 do {
9ce5646a
MD
1018 health_code_update();
1019
10a50311
JD
1020 ret = lttng_consumer_read_subbuffer(metadata_stream, ctx);
1021 if (ret < 0) {
94d49140 1022 goto error_stream;
10a50311 1023 }
04ef1097 1024 } while (ret > 0);
10a50311 1025
10a50311
JD
1026error_stream:
1027 /*
1028 * Clean up the stream completly because the next snapshot will use a new
1029 * metadata stream.
1030 */
10a50311 1031 consumer_stream_destroy(metadata_stream, NULL);
212d67a2 1032 cds_list_del(&metadata_stream->send_node);
10a50311
JD
1033 metadata_channel->metadata_stream = NULL;
1034
1035error:
1036 rcu_read_unlock();
1037 return ret;
1038}
1039
1040/*
1041 * Take a snapshot of all the stream of a channel.
1042 *
1043 * Returns 0 on success, < 0 on error
1044 */
1045static int snapshot_channel(uint64_t key, char *path, uint64_t relayd_id,
d07ceecd 1046 uint64_t nb_packets_per_stream, struct lttng_consumer_local_data *ctx)
10a50311
JD
1047{
1048 int ret;
1049 unsigned use_relayd = 0;
1050 unsigned long consumed_pos, produced_pos;
1051 struct lttng_consumer_channel *channel;
1052 struct lttng_consumer_stream *stream;
1053
1054 assert(path);
1055 assert(ctx);
1056
1057 rcu_read_lock();
1058
1059 if (relayd_id != (uint64_t) -1ULL) {
1060 use_relayd = 1;
1061 }
1062
1063 channel = consumer_find_channel(key);
1064 if (!channel) {
6a00837f 1065 ERR("UST snapshot channel not found for key %" PRIu64, key);
10a50311
JD
1066 ret = -1;
1067 goto error;
1068 }
1069 assert(!channel->monitor);
6a00837f 1070 DBG("UST consumer snapshot channel %" PRIu64, key);
10a50311
JD
1071
1072 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
9ce5646a
MD
1073 health_code_update();
1074
10a50311
JD
1075 /* Lock stream because we are about to change its state. */
1076 pthread_mutex_lock(&stream->lock);
1077 stream->net_seq_idx = relayd_id;
1078
1079 if (use_relayd) {
1080 ret = consumer_send_relayd_stream(stream, path);
1081 if (ret < 0) {
1082 goto error_unlock;
1083 }
1084 } else {
1085 ret = utils_create_stream_file(path, stream->name,
1086 stream->chan->tracefile_size,
1087 stream->tracefile_count_current,
309167d2 1088 stream->uid, stream->gid, NULL);
10a50311
JD
1089 if (ret < 0) {
1090 goto error_unlock;
1091 }
1092 stream->out_fd = ret;
1093 stream->tracefile_size_current = 0;
1094
1095 DBG("UST consumer snapshot stream %s/%s (%" PRIu64 ")", path,
1096 stream->name, stream->key);
1097 }
1098
d4d80f77
MD
1099 /*
1100 * If tracing is active, we want to perform a "full" buffer flush.
1101 * Else, if quiescent, it has already been done by the prior stop.
1102 */
1103 if (!stream->quiescent) {
1104 ustctl_flush_buffer(stream->ustream, 0);
1105 }
10a50311
JD
1106
1107 ret = lttng_ustconsumer_take_snapshot(stream);
1108 if (ret < 0) {
1109 ERR("Taking UST snapshot");
1110 goto error_unlock;
1111 }
1112
1113 ret = lttng_ustconsumer_get_produced_snapshot(stream, &produced_pos);
1114 if (ret < 0) {
1115 ERR("Produced UST snapshot position");
1116 goto error_unlock;
1117 }
1118
1119 ret = lttng_ustconsumer_get_consumed_snapshot(stream, &consumed_pos);
1120 if (ret < 0) {
1121 ERR("Consumerd UST snapshot position");
1122 goto error_unlock;
1123 }
1124
5c786ded
JD
1125 /*
1126 * The original value is sent back if max stream size is larger than
d07ceecd 1127 * the possible size of the snapshot. Also, we assume that the session
5c786ded
JD
1128 * daemon should never send a maximum stream size that is lower than
1129 * subbuffer size.
1130 */
d07ceecd
MD
1131 consumed_pos = consumer_get_consume_start_pos(consumed_pos,
1132 produced_pos, nb_packets_per_stream,
1133 stream->max_sb_size);
5c786ded 1134
10a50311
JD
1135 while (consumed_pos < produced_pos) {
1136 ssize_t read_len;
1137 unsigned long len, padded_len;
1138
9ce5646a
MD
1139 health_code_update();
1140
10a50311
JD
1141 DBG("UST consumer taking snapshot at pos %lu", consumed_pos);
1142
1143 ret = ustctl_get_subbuf(stream->ustream, &consumed_pos);
1144 if (ret < 0) {
1145 if (ret != -EAGAIN) {
1146 PERROR("ustctl_get_subbuf snapshot");
1147 goto error_close_stream;
1148 }
1149 DBG("UST consumer get subbuf failed. Skipping it.");
1150 consumed_pos += stream->max_sb_size;
ddc93ee4 1151 stream->chan->lost_packets++;
10a50311
JD
1152 continue;
1153 }
1154
1155 ret = ustctl_get_subbuf_size(stream->ustream, &len);
1156 if (ret < 0) {
1157 ERR("Snapshot ustctl_get_subbuf_size");
1158 goto error_put_subbuf;
1159 }
1160
1161 ret = ustctl_get_padded_subbuf_size(stream->ustream, &padded_len);
1162 if (ret < 0) {
1163 ERR("Snapshot ustctl_get_padded_subbuf_size");
1164 goto error_put_subbuf;
1165 }
1166
1167 read_len = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, len,
309167d2 1168 padded_len - len, NULL);
10a50311
JD
1169 if (use_relayd) {
1170 if (read_len != len) {
56591bac 1171 ret = -EPERM;
10a50311
JD
1172 goto error_put_subbuf;
1173 }
1174 } else {
1175 if (read_len != padded_len) {
56591bac 1176 ret = -EPERM;
10a50311
JD
1177 goto error_put_subbuf;
1178 }
1179 }
1180
1181 ret = ustctl_put_subbuf(stream->ustream);
1182 if (ret < 0) {
1183 ERR("Snapshot ustctl_put_subbuf");
1184 goto error_close_stream;
1185 }
1186 consumed_pos += stream->max_sb_size;
1187 }
1188
1189 /* Simply close the stream so we can use it on the next snapshot. */
1190 consumer_stream_close(stream);
1191 pthread_mutex_unlock(&stream->lock);
1192 }
1193
1194 rcu_read_unlock();
1195 return 0;
1196
1197error_put_subbuf:
1198 if (ustctl_put_subbuf(stream->ustream) < 0) {
1199 ERR("Snapshot ustctl_put_subbuf");
1200 }
1201error_close_stream:
1202 consumer_stream_close(stream);
1203error_unlock:
1204 pthread_mutex_unlock(&stream->lock);
1205error:
1206 rcu_read_unlock();
d88aee68
DG
1207 return ret;
1208}
1209
331744e3 1210/*
c585821b
MD
1211 * Receive the metadata updates from the sessiond. Supports receiving
1212 * overlapping metadata, but is needs to always belong to a contiguous
1213 * range starting from 0.
1214 * Be careful about the locks held when calling this function: it needs
1215 * the metadata cache flush to concurrently progress in order to
1216 * complete.
331744e3
JD
1217 */
1218int lttng_ustconsumer_recv_metadata(int sock, uint64_t key, uint64_t offset,
93ec662e
JD
1219 uint64_t len, uint64_t version,
1220 struct lttng_consumer_channel *channel, int timer, int wait)
331744e3 1221{
0c759fc9 1222 int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS;
331744e3
JD
1223 char *metadata_str;
1224
8fd623e0 1225 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key, len);
331744e3
JD
1226
1227 metadata_str = zmalloc(len * sizeof(char));
1228 if (!metadata_str) {
1229 PERROR("zmalloc metadata string");
1230 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
1231 goto end;
1232 }
1233
9ce5646a
MD
1234 health_code_update();
1235
331744e3
JD
1236 /* Receive metadata string. */
1237 ret = lttcomm_recv_unix_sock(sock, metadata_str, len);
1238 if (ret < 0) {
1239 /* Session daemon is dead so return gracefully. */
1240 ret_code = ret;
1241 goto end_free;
1242 }
1243
9ce5646a
MD
1244 health_code_update();
1245
331744e3 1246 pthread_mutex_lock(&channel->metadata_cache->lock);
93ec662e
JD
1247 ret = consumer_metadata_cache_write(channel, offset, len, version,
1248 metadata_str);
331744e3
JD
1249 if (ret < 0) {
1250 /* Unable to handle metadata. Notify session daemon. */
1251 ret_code = LTTCOMM_CONSUMERD_ERROR_METADATA;
a32bd775
DG
1252 /*
1253 * Skip metadata flush on write error since the offset and len might
1254 * not have been updated which could create an infinite loop below when
1255 * waiting for the metadata cache to be flushed.
1256 */
1257 pthread_mutex_unlock(&channel->metadata_cache->lock);
a32bd775 1258 goto end_free;
331744e3
JD
1259 }
1260 pthread_mutex_unlock(&channel->metadata_cache->lock);
1261
94d49140
JD
1262 if (!wait) {
1263 goto end_free;
1264 }
5e41ebe1 1265 while (consumer_metadata_cache_flushed(channel, offset + len, timer)) {
331744e3 1266 DBG("Waiting for metadata to be flushed");
9ce5646a
MD
1267
1268 health_code_update();
1269
331744e3
JD
1270 usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME);
1271 }
1272
1273end_free:
1274 free(metadata_str);
1275end:
1276 return ret_code;
1277}
1278
4cbc1a04
DG
1279/*
1280 * Receive command from session daemon and process it.
1281 *
1282 * Return 1 on success else a negative value or 0.
1283 */
3bd1e081
MD
1284int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
1285 int sock, struct pollfd *consumer_sockpoll)
1286{
1287 ssize_t ret;
0c759fc9 1288 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
3bd1e081 1289 struct lttcomm_consumer_msg msg;
ffe60014 1290 struct lttng_consumer_channel *channel = NULL;
3bd1e081 1291
9ce5646a
MD
1292 health_code_update();
1293
3bd1e081
MD
1294 ret = lttcomm_recv_unix_sock(sock, &msg, sizeof(msg));
1295 if (ret != sizeof(msg)) {
173af62f
DG
1296 DBG("Consumer received unexpected message size %zd (expects %zu)",
1297 ret, sizeof(msg));
3be74084
DG
1298 /*
1299 * The ret value might 0 meaning an orderly shutdown but this is ok
1300 * since the caller handles this.
1301 */
489f70e9 1302 if (ret > 0) {
c6857fcf 1303 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
489f70e9
MD
1304 ret = -1;
1305 }
3bd1e081
MD
1306 return ret;
1307 }
9ce5646a
MD
1308
1309 health_code_update();
1310
84382d49
MD
1311 /* deprecated */
1312 assert(msg.cmd_type != LTTNG_CONSUMER_STOP);
3bd1e081 1313
9ce5646a
MD
1314 health_code_update();
1315
3f8e211f 1316 /* relayd needs RCU read-side lock */
b0b335c8
MD
1317 rcu_read_lock();
1318
3bd1e081 1319 switch (msg.cmd_type) {
00e2e675
DG
1320 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET:
1321 {
f50f23d9 1322 /* Session daemon status message are handled in the following call. */
2527bf85 1323 consumer_add_relayd_socket(msg.u.relayd_sock.net_index,
7735ef9e 1324 msg.u.relayd_sock.type, ctx, sock, consumer_sockpoll,
d3e2ba59
JD
1325 &msg.u.relayd_sock.sock, msg.u.relayd_sock.session_id,
1326 msg.u.relayd_sock.relayd_session_id);
00e2e675
DG
1327 goto end_nosignal;
1328 }
173af62f
DG
1329 case LTTNG_CONSUMER_DESTROY_RELAYD:
1330 {
a6ba4fe1 1331 uint64_t index = msg.u.destroy_relayd.net_seq_idx;
173af62f
DG
1332 struct consumer_relayd_sock_pair *relayd;
1333
a6ba4fe1 1334 DBG("UST consumer destroying relayd %" PRIu64, index);
173af62f
DG
1335
1336 /* Get relayd reference if exists. */
a6ba4fe1 1337 relayd = consumer_find_relayd(index);
173af62f 1338 if (relayd == NULL) {
3448e266 1339 DBG("Unable to find relayd %" PRIu64, index);
e462382a 1340 ret_code = LTTCOMM_CONSUMERD_RELAYD_FAIL;
173af62f
DG
1341 }
1342
a6ba4fe1
DG
1343 /*
1344 * Each relayd socket pair has a refcount of stream attached to it
1345 * which tells if the relayd is still active or not depending on the
1346 * refcount value.
1347 *
1348 * This will set the destroy flag of the relayd object and destroy it
1349 * if the refcount reaches zero when called.
1350 *
1351 * The destroy can happen either here or when a stream fd hangs up.
1352 */
f50f23d9
DG
1353 if (relayd) {
1354 consumer_flag_relayd_for_destroy(relayd);
1355 }
1356
d88aee68 1357 goto end_msg_sessiond;
173af62f 1358 }
3bd1e081
MD
1359 case LTTNG_CONSUMER_UPDATE_STREAM:
1360 {
3f8e211f 1361 rcu_read_unlock();
7ad0a0cb 1362 return -ENOSYS;
3bd1e081 1363 }
6d805429 1364 case LTTNG_CONSUMER_DATA_PENDING:
53632229 1365 {
3be74084 1366 int ret, is_data_pending;
6d805429 1367 uint64_t id = msg.u.data_pending.session_id;
ca22feea 1368
6d805429 1369 DBG("UST consumer data pending command for id %" PRIu64, id);
ca22feea 1370
3be74084 1371 is_data_pending = consumer_data_pending(id);
ca22feea
DG
1372
1373 /* Send back returned value to session daemon */
3be74084
DG
1374 ret = lttcomm_send_unix_sock(sock, &is_data_pending,
1375 sizeof(is_data_pending));
ca22feea 1376 if (ret < 0) {
3be74084 1377 DBG("Error when sending the data pending ret code: %d", ret);
489f70e9 1378 goto error_fatal;
ca22feea 1379 }
f50f23d9
DG
1380
1381 /*
1382 * No need to send back a status message since the data pending
1383 * returned value is the response.
1384 */
ca22feea 1385 break;
53632229 1386 }
ffe60014
DG
1387 case LTTNG_CONSUMER_ASK_CHANNEL_CREATION:
1388 {
1389 int ret;
1390 struct ustctl_consumer_channel_attr attr;
1391
1392 /* Create a plain object and reserve a channel key. */
1393 channel = allocate_channel(msg.u.ask_channel.session_id,
1394 msg.u.ask_channel.pathname, msg.u.ask_channel.name,
1395 msg.u.ask_channel.uid, msg.u.ask_channel.gid,
1396 msg.u.ask_channel.relayd_id, msg.u.ask_channel.key,
1624d5b7
JD
1397 (enum lttng_event_output) msg.u.ask_channel.output,
1398 msg.u.ask_channel.tracefile_size,
2bba9e53 1399 msg.u.ask_channel.tracefile_count,
1950109e 1400 msg.u.ask_channel.session_id_per_pid,
ecc48a90 1401 msg.u.ask_channel.monitor,
d7ba1388 1402 msg.u.ask_channel.live_timer_interval,
3d071855 1403 msg.u.ask_channel.root_shm_path,
d7ba1388 1404 msg.u.ask_channel.shm_path);
ffe60014
DG
1405 if (!channel) {
1406 goto end_channel_error;
1407 }
1408
567eb353
DG
1409 /*
1410 * Assign UST application UID to the channel. This value is ignored for
1411 * per PID buffers. This is specific to UST thus setting this after the
1412 * allocation.
1413 */
1414 channel->ust_app_uid = msg.u.ask_channel.ust_app_uid;
1415
ffe60014
DG
1416 /* Build channel attributes from received message. */
1417 attr.subbuf_size = msg.u.ask_channel.subbuf_size;
1418 attr.num_subbuf = msg.u.ask_channel.num_subbuf;
1419 attr.overwrite = msg.u.ask_channel.overwrite;
1420 attr.switch_timer_interval = msg.u.ask_channel.switch_timer_interval;
1421 attr.read_timer_interval = msg.u.ask_channel.read_timer_interval;
7972aab2 1422 attr.chan_id = msg.u.ask_channel.chan_id;
ffe60014 1423 memcpy(attr.uuid, msg.u.ask_channel.uuid, sizeof(attr.uuid));
491d1539 1424 attr.blocking_timeout= msg.u.ask_channel.blocking_timeout;
ffe60014 1425
0c759fc9
DG
1426 /* Match channel buffer type to the UST abi. */
1427 switch (msg.u.ask_channel.output) {
1428 case LTTNG_EVENT_MMAP:
1429 default:
1430 attr.output = LTTNG_UST_MMAP;
1431 break;
1432 }
1433
ffe60014
DG
1434 /* Translate and save channel type. */
1435 switch (msg.u.ask_channel.type) {
1436 case LTTNG_UST_CHAN_PER_CPU:
1437 channel->type = CONSUMER_CHANNEL_TYPE_DATA;
1438 attr.type = LTTNG_UST_CHAN_PER_CPU;
8633d6e3
MD
1439 /*
1440 * Set refcount to 1 for owner. Below, we will
1441 * pass ownership to the
1442 * consumer_thread_channel_poll() thread.
1443 */
1444 channel->refcount = 1;
ffe60014
DG
1445 break;
1446 case LTTNG_UST_CHAN_METADATA:
1447 channel->type = CONSUMER_CHANNEL_TYPE_METADATA;
1448 attr.type = LTTNG_UST_CHAN_METADATA;
1449 break;
1450 default:
1451 assert(0);
1452 goto error_fatal;
1453 };
1454
9ce5646a
MD
1455 health_code_update();
1456
ffe60014
DG
1457 ret = ask_channel(ctx, sock, channel, &attr);
1458 if (ret < 0) {
1459 goto end_channel_error;
1460 }
1461
fc643247
MD
1462 if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) {
1463 ret = consumer_metadata_cache_allocate(channel);
1464 if (ret < 0) {
1465 ERR("Allocating metadata cache");
1466 goto end_channel_error;
1467 }
1468 consumer_timer_switch_start(channel, attr.switch_timer_interval);
1469 attr.switch_timer_interval = 0;
94d49140 1470 } else {
e9404c27
JG
1471 int monitor_start_ret;
1472
94d49140
JD
1473 consumer_timer_live_start(channel,
1474 msg.u.ask_channel.live_timer_interval);
e9404c27
JG
1475 monitor_start_ret = consumer_timer_monitor_start(
1476 channel,
1477 msg.u.ask_channel.monitor_timer_interval);
1478 if (monitor_start_ret < 0) {
1479 ERR("Starting channel monitoring timer failed");
1480 goto end_channel_error;
1481 }
fc643247
MD
1482 }
1483
9ce5646a
MD
1484 health_code_update();
1485
ffe60014
DG
1486 /*
1487 * Add the channel to the internal state AFTER all streams were created
1488 * and successfully sent to session daemon. This way, all streams must
1489 * be ready before this channel is visible to the threads.
fc643247
MD
1490 * If add_channel succeeds, ownership of the channel is
1491 * passed to consumer_thread_channel_poll().
ffe60014
DG
1492 */
1493 ret = add_channel(channel, ctx);
1494 if (ret < 0) {
ea88ca2a
MD
1495 if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) {
1496 if (channel->switch_timer_enabled == 1) {
1497 consumer_timer_switch_stop(channel);
1498 }
1499 consumer_metadata_cache_destroy(channel);
1500 }
d3e2ba59
JD
1501 if (channel->live_timer_enabled == 1) {
1502 consumer_timer_live_stop(channel);
1503 }
e9404c27
JG
1504 if (channel->monitor_timer_enabled == 1) {
1505 consumer_timer_monitor_stop(channel);
1506 }
ffe60014
DG
1507 goto end_channel_error;
1508 }
1509
9ce5646a
MD
1510 health_code_update();
1511
ffe60014
DG
1512 /*
1513 * Channel and streams are now created. Inform the session daemon that
1514 * everything went well and should wait to receive the channel and
1515 * streams with ustctl API.
1516 */
1517 ret = consumer_send_status_channel(sock, channel);
1518 if (ret < 0) {
1519 /*
489f70e9 1520 * There is probably a problem on the socket.
ffe60014 1521 */
489f70e9 1522 goto error_fatal;
ffe60014
DG
1523 }
1524
1525 break;
1526 }
1527 case LTTNG_CONSUMER_GET_CHANNEL:
1528 {
1529 int ret, relayd_err = 0;
d88aee68 1530 uint64_t key = msg.u.get_channel.key;
ffe60014 1531 struct lttng_consumer_channel *channel;
ffe60014
DG
1532
1533 channel = consumer_find_channel(key);
1534 if (!channel) {
8fd623e0 1535 ERR("UST consumer get channel key %" PRIu64 " not found", key);
e462382a 1536 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
ffe60014
DG
1537 goto end_msg_sessiond;
1538 }
1539
9ce5646a
MD
1540 health_code_update();
1541
ffe60014
DG
1542 /* Send everything to sessiond. */
1543 ret = send_sessiond_channel(sock, channel, ctx, &relayd_err);
1544 if (ret < 0) {
1545 if (relayd_err) {
1546 /*
1547 * We were unable to send to the relayd the stream so avoid
1548 * sending back a fatal error to the thread since this is OK
f2a444f1
DG
1549 * and the consumer can continue its work. The above call
1550 * has sent the error status message to the sessiond.
ffe60014 1551 */
f2a444f1 1552 goto end_nosignal;
ffe60014
DG
1553 }
1554 /*
1555 * The communicaton was broken hence there is a bad state between
1556 * the consumer and sessiond so stop everything.
1557 */
1558 goto error_fatal;
1559 }
1560
9ce5646a
MD
1561 health_code_update();
1562
10a50311
JD
1563 /*
1564 * In no monitor mode, the streams ownership is kept inside the channel
1565 * so don't send them to the data thread.
1566 */
1567 if (!channel->monitor) {
1568 goto end_msg_sessiond;
1569 }
1570
d88aee68
DG
1571 ret = send_streams_to_thread(channel, ctx);
1572 if (ret < 0) {
1573 /*
1574 * If we are unable to send the stream to the thread, there is
1575 * a big problem so just stop everything.
1576 */
1577 goto error_fatal;
ffe60014 1578 }
ffe60014
DG
1579 /* List MUST be empty after or else it could be reused. */
1580 assert(cds_list_empty(&channel->streams.head));
d88aee68
DG
1581 goto end_msg_sessiond;
1582 }
1583 case LTTNG_CONSUMER_DESTROY_CHANNEL:
1584 {
1585 uint64_t key = msg.u.destroy_channel.key;
d88aee68 1586
a0cbdd2e
MD
1587 /*
1588 * Only called if streams have not been sent to stream
1589 * manager thread. However, channel has been sent to
1590 * channel manager thread.
1591 */
1592 notify_thread_del_channel(ctx, key);
d88aee68 1593 goto end_msg_sessiond;
ffe60014 1594 }
d88aee68
DG
1595 case LTTNG_CONSUMER_CLOSE_METADATA:
1596 {
1597 int ret;
1598
1599 ret = close_metadata(msg.u.close_metadata.key);
1600 if (ret != 0) {
1601 ret_code = ret;
1602 }
1603
1604 goto end_msg_sessiond;
1605 }
7972aab2
DG
1606 case LTTNG_CONSUMER_FLUSH_CHANNEL:
1607 {
1608 int ret;
1609
1610 ret = flush_channel(msg.u.flush_channel.key);
1611 if (ret != 0) {
1612 ret_code = ret;
1613 }
1614
1615 goto end_msg_sessiond;
1616 }
0dd01979
MD
1617 case LTTNG_CONSUMER_CLEAR_QUIESCENT_CHANNEL:
1618 {
1619 int ret;
1620
1621 ret = clear_quiescent_channel(
1622 msg.u.clear_quiescent_channel.key);
1623 if (ret != 0) {
1624 ret_code = ret;
1625 }
1626
1627 goto end_msg_sessiond;
1628 }
d88aee68 1629 case LTTNG_CONSUMER_PUSH_METADATA:
ffe60014
DG
1630 {
1631 int ret;
d88aee68 1632 uint64_t len = msg.u.push_metadata.len;
d88aee68 1633 uint64_t key = msg.u.push_metadata.key;
331744e3 1634 uint64_t offset = msg.u.push_metadata.target_offset;
93ec662e 1635 uint64_t version = msg.u.push_metadata.version;
ffe60014
DG
1636 struct lttng_consumer_channel *channel;
1637
8fd623e0
DG
1638 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key,
1639 len);
ffe60014
DG
1640
1641 channel = consumer_find_channel(key);
1642 if (!channel) {
000baf6a
DG
1643 /*
1644 * This is possible if the metadata creation on the consumer side
1645 * is in flight vis-a-vis a concurrent push metadata from the
1646 * session daemon. Simply return that the channel failed and the
1647 * session daemon will handle that message correctly considering
1648 * that this race is acceptable thus the DBG() statement here.
1649 */
1650 DBG("UST consumer push metadata %" PRIu64 " not found", key);
1651 ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL;
4a2eb0ca 1652 goto end_msg_sessiond;
d88aee68
DG
1653 }
1654
9ce5646a
MD
1655 health_code_update();
1656
c585821b
MD
1657 if (!len) {
1658 /*
1659 * There is nothing to receive. We have simply
1660 * checked whether the channel can be found.
1661 */
1662 ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1663 goto end_msg_sessiond;
1664 }
1665
d88aee68 1666 /* Tell session daemon we are ready to receive the metadata. */
0c759fc9 1667 ret = consumer_send_status_msg(sock, LTTCOMM_CONSUMERD_SUCCESS);
ffe60014
DG
1668 if (ret < 0) {
1669 /* Somehow, the session daemon is not responding anymore. */
d88aee68
DG
1670 goto error_fatal;
1671 }
1672
9ce5646a
MD
1673 health_code_update();
1674
d88aee68 1675 /* Wait for more data. */
9ce5646a
MD
1676 health_poll_entry();
1677 ret = lttng_consumer_poll_socket(consumer_sockpoll);
1678 health_poll_exit();
84382d49 1679 if (ret) {
489f70e9 1680 goto error_fatal;
d88aee68
DG
1681 }
1682
9ce5646a
MD
1683 health_code_update();
1684
331744e3 1685 ret = lttng_ustconsumer_recv_metadata(sock, key, offset,
93ec662e 1686 len, version, channel, 0, 1);
d88aee68 1687 if (ret < 0) {
331744e3 1688 /* error receiving from sessiond */
489f70e9 1689 goto error_fatal;
331744e3
JD
1690 } else {
1691 ret_code = ret;
d88aee68
DG
1692 goto end_msg_sessiond;
1693 }
d88aee68
DG
1694 }
1695 case LTTNG_CONSUMER_SETUP_METADATA:
1696 {
1697 int ret;
1698
1699 ret = setup_metadata(ctx, msg.u.setup_metadata.key);
1700 if (ret) {
1701 ret_code = ret;
1702 }
1703 goto end_msg_sessiond;
ffe60014 1704 }
6dc3064a
DG
1705 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL:
1706 {
10a50311
JD
1707 if (msg.u.snapshot_channel.metadata) {
1708 ret = snapshot_metadata(msg.u.snapshot_channel.key,
1709 msg.u.snapshot_channel.pathname,
1710 msg.u.snapshot_channel.relayd_id,
1711 ctx);
1712 if (ret < 0) {
1713 ERR("Snapshot metadata failed");
e462382a 1714 ret_code = LTTCOMM_CONSUMERD_ERROR_METADATA;
10a50311
JD
1715 }
1716 } else {
1717 ret = snapshot_channel(msg.u.snapshot_channel.key,
1718 msg.u.snapshot_channel.pathname,
1719 msg.u.snapshot_channel.relayd_id,
d07ceecd 1720 msg.u.snapshot_channel.nb_packets_per_stream,
10a50311
JD
1721 ctx);
1722 if (ret < 0) {
1723 ERR("Snapshot channel failed");
e462382a 1724 ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL;
10a50311
JD
1725 }
1726 }
1727
9ce5646a 1728 health_code_update();
6dc3064a
DG
1729 ret = consumer_send_status_msg(sock, ret_code);
1730 if (ret < 0) {
1731 /* Somehow, the session daemon is not responding anymore. */
1732 goto end_nosignal;
1733 }
9ce5646a 1734 health_code_update();
6dc3064a
DG
1735 break;
1736 }
fb83fe64
JD
1737 case LTTNG_CONSUMER_DISCARDED_EVENTS:
1738 {
beb59458
MJ
1739 int ret = 0;
1740 uint64_t discarded_events;
fb83fe64
JD
1741 struct lttng_ht_iter iter;
1742 struct lttng_ht *ht;
1743 struct lttng_consumer_stream *stream;
1744 uint64_t id = msg.u.discarded_events.session_id;
1745 uint64_t key = msg.u.discarded_events.channel_key;
1746
1747 DBG("UST consumer discarded events command for session id %"
1748 PRIu64, id);
1749 rcu_read_lock();
1750 pthread_mutex_lock(&consumer_data.lock);
1751
1752 ht = consumer_data.stream_list_ht;
1753
1754 /*
1755 * We only need a reference to the channel, but they are not
1756 * directly indexed, so we just use the first matching stream
1757 * to extract the information we need, we default to 0 if not
1758 * found (no events are dropped if the channel is not yet in
1759 * use).
1760 */
beb59458 1761 discarded_events = 0;
fb83fe64
JD
1762 cds_lfht_for_each_entry_duplicate(ht->ht,
1763 ht->hash_fct(&id, lttng_ht_seed),
1764 ht->match_fct, &id,
1765 &iter.iter, stream, node_session_id.node) {
1766 if (stream->chan->key == key) {
beb59458 1767 discarded_events = stream->chan->discarded_events;
fb83fe64
JD
1768 break;
1769 }
1770 }
1771 pthread_mutex_unlock(&consumer_data.lock);
1772 rcu_read_unlock();
1773
1774 DBG("UST consumer discarded events command for session id %"
1775 PRIu64 ", channel key %" PRIu64, id, key);
1776
1777 health_code_update();
1778
1779 /* Send back returned value to session daemon */
beb59458 1780 ret = lttcomm_send_unix_sock(sock, &discarded_events, sizeof(discarded_events));
fb83fe64
JD
1781 if (ret < 0) {
1782 PERROR("send discarded events");
1783 goto error_fatal;
1784 }
1785
1786 break;
1787 }
1788 case LTTNG_CONSUMER_LOST_PACKETS:
1789 {
9a06e8d4
JG
1790 int ret;
1791 uint64_t lost_packets;
fb83fe64
JD
1792 struct lttng_ht_iter iter;
1793 struct lttng_ht *ht;
1794 struct lttng_consumer_stream *stream;
1795 uint64_t id = msg.u.lost_packets.session_id;
1796 uint64_t key = msg.u.lost_packets.channel_key;
1797
1798 DBG("UST consumer lost packets command for session id %"
1799 PRIu64, id);
1800 rcu_read_lock();
1801 pthread_mutex_lock(&consumer_data.lock);
1802
1803 ht = consumer_data.stream_list_ht;
1804
1805 /*
1806 * We only need a reference to the channel, but they are not
1807 * directly indexed, so we just use the first matching stream
1808 * to extract the information we need, we default to 0 if not
1809 * found (no packets lost if the channel is not yet in use).
1810 */
9a06e8d4 1811 lost_packets = 0;
fb83fe64
JD
1812 cds_lfht_for_each_entry_duplicate(ht->ht,
1813 ht->hash_fct(&id, lttng_ht_seed),
1814 ht->match_fct, &id,
1815 &iter.iter, stream, node_session_id.node) {
1816 if (stream->chan->key == key) {
9a06e8d4 1817 lost_packets = stream->chan->lost_packets;
fb83fe64
JD
1818 break;
1819 }
1820 }
1821 pthread_mutex_unlock(&consumer_data.lock);
1822 rcu_read_unlock();
1823
1824 DBG("UST consumer lost packets command for session id %"
1825 PRIu64 ", channel key %" PRIu64, id, key);
1826
1827 health_code_update();
1828
1829 /* Send back returned value to session daemon */
9a06e8d4
JG
1830 ret = lttcomm_send_unix_sock(sock, &lost_packets,
1831 sizeof(lost_packets));
fb83fe64
JD
1832 if (ret < 0) {
1833 PERROR("send lost packets");
1834 goto error_fatal;
1835 }
1836
1837 break;
1838 }
b3530820
JG
1839 case LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE:
1840 {
1841 int channel_monitor_pipe;
1842
1843 ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1844 /* Successfully received the command's type. */
1845 ret = consumer_send_status_msg(sock, ret_code);
1846 if (ret < 0) {
1847 goto error_fatal;
1848 }
1849
1850 ret = lttcomm_recv_fds_unix_sock(sock, &channel_monitor_pipe,
1851 1);
1852 if (ret != sizeof(channel_monitor_pipe)) {
1853 ERR("Failed to receive channel monitor pipe");
1854 goto error_fatal;
1855 }
1856
1857 DBG("Received channel monitor pipe (%d)", channel_monitor_pipe);
1858 ret = consumer_timer_thread_set_channel_monitor_pipe(
1859 channel_monitor_pipe);
1860 if (!ret) {
1861 int flags;
1862
1863 ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1864 /* Set the pipe as non-blocking. */
1865 ret = fcntl(channel_monitor_pipe, F_GETFL, 0);
1866 if (ret == -1) {
1867 PERROR("fcntl get flags of the channel monitoring pipe");
1868 goto error_fatal;
1869 }
1870 flags = ret;
1871
1872 ret = fcntl(channel_monitor_pipe, F_SETFL,
1873 flags | O_NONBLOCK);
1874 if (ret == -1) {
1875 PERROR("fcntl set O_NONBLOCK flag of the channel monitoring pipe");
1876 goto error_fatal;
1877 }
1878 DBG("Channel monitor pipe set as non-blocking");
1879 } else {
1880 ret_code = LTTCOMM_CONSUMERD_ALREADY_SET;
1881 }
1882 goto end_msg_sessiond;
1883 }
3bd1e081
MD
1884 default:
1885 break;
1886 }
3f8e211f 1887
3bd1e081 1888end_nosignal:
b0b335c8 1889 rcu_read_unlock();
4cbc1a04 1890
9ce5646a
MD
1891 health_code_update();
1892
4cbc1a04
DG
1893 /*
1894 * Return 1 to indicate success since the 0 value can be a socket
1895 * shutdown during the recv() or send() call.
1896 */
1897 return 1;
ffe60014
DG
1898
1899end_msg_sessiond:
1900 /*
1901 * The returned value here is not useful since either way we'll return 1 to
1902 * the caller because the session daemon socket management is done
1903 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
1904 */
489f70e9
MD
1905 ret = consumer_send_status_msg(sock, ret_code);
1906 if (ret < 0) {
1907 goto error_fatal;
1908 }
ffe60014 1909 rcu_read_unlock();
9ce5646a
MD
1910
1911 health_code_update();
1912
ffe60014
DG
1913 return 1;
1914end_channel_error:
1915 if (channel) {
1916 /*
1917 * Free channel here since no one has a reference to it. We don't
1918 * free after that because a stream can store this pointer.
1919 */
1920 destroy_channel(channel);
1921 }
1922 /* We have to send a status channel message indicating an error. */
1923 ret = consumer_send_status_channel(sock, NULL);
1924 if (ret < 0) {
1925 /* Stop everything if session daemon can not be notified. */
1926 goto error_fatal;
1927 }
1928 rcu_read_unlock();
9ce5646a
MD
1929
1930 health_code_update();
1931
ffe60014
DG
1932 return 1;
1933error_fatal:
1934 rcu_read_unlock();
1935 /* This will issue a consumer stop. */
1936 return -1;
3bd1e081
MD
1937}
1938
ffe60014
DG
1939/*
1940 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1941 * compiled out, we isolate it in this library.
1942 */
1943int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
1944 unsigned long *off)
3bd1e081 1945{
ffe60014
DG
1946 assert(stream);
1947 assert(stream->ustream);
b5c5fc29 1948
ffe60014 1949 return ustctl_get_mmap_read_offset(stream->ustream, off);
3bd1e081
MD
1950}
1951
ffe60014
DG
1952/*
1953 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1954 * compiled out, we isolate it in this library.
1955 */
1956void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream)
d056b477 1957{
ffe60014
DG
1958 assert(stream);
1959 assert(stream->ustream);
1960
1961 return ustctl_get_mmap_base(stream->ustream);
d056b477
MD
1962}
1963
ffe60014 1964/*
e9404c27 1965 * Take a snapshot for a specific stream.
ffe60014
DG
1966 *
1967 * Returns 0 on success, < 0 on error
1968 */
1969int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream)
3bd1e081 1970{
ffe60014
DG
1971 assert(stream);
1972 assert(stream->ustream);
1973
1974 return ustctl_snapshot(stream->ustream);
3bd1e081
MD
1975}
1976
e9404c27
JG
1977/*
1978 * Sample consumed and produced positions for a specific stream.
1979 *
1980 * Returns 0 on success, < 0 on error.
1981 */
1982int lttng_ustconsumer_sample_snapshot_positions(
1983 struct lttng_consumer_stream *stream)
1984{
1985 assert(stream);
1986 assert(stream->ustream);
1987
1988 return ustctl_snapshot_sample_positions(stream->ustream);
1989}
1990
ffe60014
DG
1991/*
1992 * Get the produced position
1993 *
1994 * Returns 0 on success, < 0 on error
1995 */
1996int lttng_ustconsumer_get_produced_snapshot(
1997 struct lttng_consumer_stream *stream, unsigned long *pos)
3bd1e081 1998{
ffe60014
DG
1999 assert(stream);
2000 assert(stream->ustream);
2001 assert(pos);
7a57cf92 2002
ffe60014
DG
2003 return ustctl_snapshot_get_produced(stream->ustream, pos);
2004}
7a57cf92 2005
10a50311
JD
2006/*
2007 * Get the consumed position
2008 *
2009 * Returns 0 on success, < 0 on error
2010 */
2011int lttng_ustconsumer_get_consumed_snapshot(
2012 struct lttng_consumer_stream *stream, unsigned long *pos)
2013{
2014 assert(stream);
2015 assert(stream->ustream);
2016 assert(pos);
2017
2018 return ustctl_snapshot_get_consumed(stream->ustream, pos);
2019}
2020
84a182ce
DG
2021void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream *stream,
2022 int producer)
2023{
2024 assert(stream);
2025 assert(stream->ustream);
2026
2027 ustctl_flush_buffer(stream->ustream, producer);
2028}
2029
2030int lttng_ustconsumer_get_current_timestamp(
2031 struct lttng_consumer_stream *stream, uint64_t *ts)
2032{
2033 assert(stream);
2034 assert(stream->ustream);
2035 assert(ts);
2036
2037 return ustctl_get_current_timestamp(stream->ustream, ts);
2038}
2039
fb83fe64
JD
2040int lttng_ustconsumer_get_sequence_number(
2041 struct lttng_consumer_stream *stream, uint64_t *seq)
2042{
2043 assert(stream);
2044 assert(stream->ustream);
2045 assert(seq);
2046
2047 return ustctl_get_sequence_number(stream->ustream, seq);
2048}
2049
ffe60014 2050/*
0dd01979 2051 * Called when the stream signals the consumer that it has hung up.
ffe60014
DG
2052 */
2053void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
2054{
2055 assert(stream);
2056 assert(stream->ustream);
2c1dd183 2057
0dd01979
MD
2058 pthread_mutex_lock(&stream->lock);
2059 if (!stream->quiescent) {
2060 ustctl_flush_buffer(stream->ustream, 0);
2061 stream->quiescent = true;
2062 }
2063 pthread_mutex_unlock(&stream->lock);
ffe60014
DG
2064 stream->hangup_flush_done = 1;
2065}
ee77a7b0 2066
ffe60014
DG
2067void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
2068{
4628484a
MD
2069 int i;
2070
ffe60014
DG
2071 assert(chan);
2072 assert(chan->uchan);
e316aad5 2073
ea88ca2a
MD
2074 if (chan->switch_timer_enabled == 1) {
2075 consumer_timer_switch_stop(chan);
2076 }
4628484a
MD
2077 for (i = 0; i < chan->nr_stream_fds; i++) {
2078 int ret;
2079
2080 ret = close(chan->stream_fds[i]);
2081 if (ret) {
2082 PERROR("close");
2083 }
2084 if (chan->shm_path[0]) {
2085 char shm_path[PATH_MAX];
2086
2087 ret = get_stream_shm_path(shm_path, chan->shm_path, i);
2088 if (ret) {
2089 ERR("Cannot get stream shm path");
2090 }
2091 ret = run_as_unlink(shm_path, chan->uid, chan->gid);
2092 if (ret) {
4628484a
MD
2093 PERROR("unlink %s", shm_path);
2094 }
2095 }
2096 }
3bd1e081
MD
2097}
2098
b83e03c4
MD
2099void lttng_ustconsumer_free_channel(struct lttng_consumer_channel *chan)
2100{
2101 assert(chan);
2102 assert(chan->uchan);
2103
2104 consumer_metadata_cache_destroy(chan);
2105 ustctl_destroy_channel(chan->uchan);
ea853771
JR
2106 /* Try to rmdir all directories under shm_path root. */
2107 if (chan->root_shm_path[0]) {
602766ec 2108 (void) run_as_rmdir_recursive(chan->root_shm_path,
ea853771
JR
2109 chan->uid, chan->gid);
2110 }
b83e03c4
MD
2111 free(chan->stream_fds);
2112}
2113
3bd1e081
MD
2114void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
2115{
ffe60014
DG
2116 assert(stream);
2117 assert(stream->ustream);
d41f73b7 2118
ea88ca2a
MD
2119 if (stream->chan->switch_timer_enabled == 1) {
2120 consumer_timer_switch_stop(stream->chan);
2121 }
ffe60014
DG
2122 ustctl_destroy_stream(stream->ustream);
2123}
d41f73b7 2124
6d574024
DG
2125int lttng_ustconsumer_get_wakeup_fd(struct lttng_consumer_stream *stream)
2126{
2127 assert(stream);
2128 assert(stream->ustream);
2129
2130 return ustctl_stream_get_wakeup_fd(stream->ustream);
2131}
2132
2133int lttng_ustconsumer_close_wakeup_fd(struct lttng_consumer_stream *stream)
2134{
2135 assert(stream);
2136 assert(stream->ustream);
2137
2138 return ustctl_stream_close_wakeup_fd(stream->ustream);
2139}
2140
309167d2
JD
2141/*
2142 * Populate index values of a UST stream. Values are set in big endian order.
2143 *
2144 * Return 0 on success or else a negative value.
2145 */
50adc264 2146static int get_index_values(struct ctf_packet_index *index,
309167d2
JD
2147 struct ustctl_consumer_stream *ustream)
2148{
2149 int ret;
2150
2151 ret = ustctl_get_timestamp_begin(ustream, &index->timestamp_begin);
2152 if (ret < 0) {
2153 PERROR("ustctl_get_timestamp_begin");
2154 goto error;
2155 }
2156 index->timestamp_begin = htobe64(index->timestamp_begin);
2157
2158 ret = ustctl_get_timestamp_end(ustream, &index->timestamp_end);
2159 if (ret < 0) {
2160 PERROR("ustctl_get_timestamp_end");
2161 goto error;
2162 }
2163 index->timestamp_end = htobe64(index->timestamp_end);
2164
2165 ret = ustctl_get_events_discarded(ustream, &index->events_discarded);
2166 if (ret < 0) {
2167 PERROR("ustctl_get_events_discarded");
2168 goto error;
2169 }
2170 index->events_discarded = htobe64(index->events_discarded);
2171
2172 ret = ustctl_get_content_size(ustream, &index->content_size);
2173 if (ret < 0) {
2174 PERROR("ustctl_get_content_size");
2175 goto error;
2176 }
2177 index->content_size = htobe64(index->content_size);
2178
2179 ret = ustctl_get_packet_size(ustream, &index->packet_size);
2180 if (ret < 0) {
2181 PERROR("ustctl_get_packet_size");
2182 goto error;
2183 }
2184 index->packet_size = htobe64(index->packet_size);
2185
2186 ret = ustctl_get_stream_id(ustream, &index->stream_id);
2187 if (ret < 0) {
2188 PERROR("ustctl_get_stream_id");
2189 goto error;
2190 }
2191 index->stream_id = htobe64(index->stream_id);
2192
234cd636
JD
2193 ret = ustctl_get_instance_id(ustream, &index->stream_instance_id);
2194 if (ret < 0) {
2195 PERROR("ustctl_get_instance_id");
2196 goto error;
2197 }
2198 index->stream_instance_id = htobe64(index->stream_instance_id);
2199
2200 ret = ustctl_get_sequence_number(ustream, &index->packet_seq_num);
2201 if (ret < 0) {
2202 PERROR("ustctl_get_sequence_number");
2203 goto error;
2204 }
2205 index->packet_seq_num = htobe64(index->packet_seq_num);
2206
309167d2
JD
2207error:
2208 return ret;
2209}
2210
93ec662e
JD
2211static
2212void metadata_stream_reset_cache(struct lttng_consumer_stream *stream,
2213 struct consumer_metadata_cache *cache)
2214{
2215 DBG("Metadata stream update to version %" PRIu64,
2216 cache->version);
2217 stream->ust_metadata_pushed = 0;
2218 stream->metadata_version = cache->version;
2219 stream->reset_metadata_flag = 1;
2220}
2221
2222/*
2223 * Check if the version of the metadata stream and metadata cache match.
2224 * If the cache got updated, reset the metadata stream.
2225 * The stream lock and metadata cache lock MUST be held.
2226 * Return 0 on success, a negative value on error.
2227 */
2228static
2229int metadata_stream_check_version(struct lttng_consumer_stream *stream)
2230{
2231 int ret = 0;
2232 struct consumer_metadata_cache *cache = stream->chan->metadata_cache;
2233
2234 if (cache->version == stream->metadata_version) {
2235 goto end;
2236 }
2237 metadata_stream_reset_cache(stream, cache);
2238
2239end:
2240 return ret;
2241}
2242
94d49140
JD
2243/*
2244 * Write up to one packet from the metadata cache to the channel.
2245 *
2246 * Returns the number of bytes pushed in the cache, or a negative value
2247 * on error.
2248 */
2249static
2250int commit_one_metadata_packet(struct lttng_consumer_stream *stream)
2251{
2252 ssize_t write_len;
2253 int ret;
2254
2255 pthread_mutex_lock(&stream->chan->metadata_cache->lock);
93ec662e
JD
2256 ret = metadata_stream_check_version(stream);
2257 if (ret < 0) {
2258 goto end;
2259 }
c585821b 2260 if (stream->chan->metadata_cache->max_offset
94d49140
JD
2261 == stream->ust_metadata_pushed) {
2262 ret = 0;
2263 goto end;
2264 }
2265
2266 write_len = ustctl_write_one_packet_to_channel(stream->chan->uchan,
2267 &stream->chan->metadata_cache->data[stream->ust_metadata_pushed],
c585821b 2268 stream->chan->metadata_cache->max_offset
94d49140
JD
2269 - stream->ust_metadata_pushed);
2270 assert(write_len != 0);
2271 if (write_len < 0) {
2272 ERR("Writing one metadata packet");
2273 ret = -1;
2274 goto end;
2275 }
2276 stream->ust_metadata_pushed += write_len;
2277
c585821b 2278 assert(stream->chan->metadata_cache->max_offset >=
94d49140
JD
2279 stream->ust_metadata_pushed);
2280 ret = write_len;
2281
2282end:
2283 pthread_mutex_unlock(&stream->chan->metadata_cache->lock);
2284 return ret;
2285}
2286
309167d2 2287
94d49140
JD
2288/*
2289 * Sync metadata meaning request them to the session daemon and snapshot to the
2290 * metadata thread can consumer them.
2291 *
c585821b
MD
2292 * Metadata stream lock is held here, but we need to release it when
2293 * interacting with sessiond, else we cause a deadlock with live
2294 * awaiting on metadata to be pushed out.
94d49140
JD
2295 *
2296 * Return 0 if new metadatda is available, EAGAIN if the metadata stream
2297 * is empty or a negative value on error.
2298 */
2299int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data *ctx,
2300 struct lttng_consumer_stream *metadata)
2301{
2302 int ret;
2303 int retry = 0;
2304
2305 assert(ctx);
2306 assert(metadata);
2307
c585821b 2308 pthread_mutex_unlock(&metadata->lock);
94d49140
JD
2309 /*
2310 * Request metadata from the sessiond, but don't wait for the flush
2311 * because we locked the metadata thread.
2312 */
2313 ret = lttng_ustconsumer_request_metadata(ctx, metadata->chan, 0, 0);
1caeb2eb 2314 pthread_mutex_lock(&metadata->lock);
94d49140
JD
2315 if (ret < 0) {
2316 goto end;
2317 }
2318
2319 ret = commit_one_metadata_packet(metadata);
2320 if (ret <= 0) {
2321 goto end;
2322 } else if (ret > 0) {
2323 retry = 1;
2324 }
2325
2326 ustctl_flush_buffer(metadata->ustream, 1);
2327 ret = ustctl_snapshot(metadata->ustream);
2328 if (ret < 0) {
2329 if (errno != EAGAIN) {
2330 ERR("Sync metadata, taking UST snapshot");
2331 goto end;
2332 }
2333 DBG("No new metadata when syncing them.");
2334 /* No new metadata, exit. */
2335 ret = ENODATA;
2336 goto end;
2337 }
2338
2339 /*
2340 * After this flush, we still need to extract metadata.
2341 */
2342 if (retry) {
2343 ret = EAGAIN;
2344 }
2345
2346end:
2347 return ret;
2348}
2349
02b3d176
DG
2350/*
2351 * Return 0 on success else a negative value.
2352 */
2353static int notify_if_more_data(struct lttng_consumer_stream *stream,
2354 struct lttng_consumer_local_data *ctx)
2355{
2356 int ret;
2357 struct ustctl_consumer_stream *ustream;
2358
2359 assert(stream);
2360 assert(ctx);
2361
2362 ustream = stream->ustream;
2363
2364 /*
2365 * First, we are going to check if there is a new subbuffer available
2366 * before reading the stream wait_fd.
2367 */
2368 /* Get the next subbuffer */
2369 ret = ustctl_get_next_subbuf(ustream);
2370 if (ret) {
2371 /* No more data found, flag the stream. */
2372 stream->has_data = 0;
2373 ret = 0;
2374 goto end;
2375 }
2376
5420e5db 2377 ret = ustctl_put_subbuf(ustream);
02b3d176
DG
2378 assert(!ret);
2379
2380 /* This stream still has data. Flag it and wake up the data thread. */
2381 stream->has_data = 1;
2382
2383 if (stream->monitor && !stream->hangup_flush_done && !ctx->has_wakeup) {
2384 ssize_t writelen;
2385
2386 writelen = lttng_pipe_write(ctx->consumer_wakeup_pipe, "!", 1);
2387 if (writelen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
2388 ret = writelen;
2389 goto end;
2390 }
2391
2392 /* The wake up pipe has been notified. */
2393 ctx->has_wakeup = 1;
2394 }
2395 ret = 0;
2396
2397end:
2398 return ret;
2399}
2400
fb83fe64
JD
2401static
2402int update_stream_stats(struct lttng_consumer_stream *stream)
2403{
2404 int ret;
2405 uint64_t seq, discarded;
2406
2407 ret = ustctl_get_sequence_number(stream->ustream, &seq);
2408 if (ret < 0) {
2409 PERROR("ustctl_get_sequence_number");
2410 goto end;
2411 }
2412 /*
2413 * Start the sequence when we extract the first packet in case we don't
2414 * start at 0 (for example if a consumer is not connected to the
2415 * session immediately after the beginning).
2416 */
2417 if (stream->last_sequence_number == -1ULL) {
2418 stream->last_sequence_number = seq;
2419 } else if (seq > stream->last_sequence_number) {
2420 stream->chan->lost_packets += seq -
2421 stream->last_sequence_number - 1;
2422 } else {
2423 /* seq <= last_sequence_number */
2424 ERR("Sequence number inconsistent : prev = %" PRIu64
2425 ", current = %" PRIu64,
2426 stream->last_sequence_number, seq);
2427 ret = -1;
2428 goto end;
2429 }
2430 stream->last_sequence_number = seq;
2431
2432 ret = ustctl_get_events_discarded(stream->ustream, &discarded);
2433 if (ret < 0) {
2434 PERROR("kernctl_get_events_discarded");
2435 goto end;
2436 }
2437 if (discarded < stream->last_discarded_events) {
2438 /*
83f4233d
MJ
2439 * Overflow has occurred. We assume only one wrap-around
2440 * has occurred.
fb83fe64
JD
2441 */
2442 stream->chan->discarded_events +=
2443 (1ULL << (CAA_BITS_PER_LONG - 1)) -
2444 stream->last_discarded_events + discarded;
2445 } else {
2446 stream->chan->discarded_events += discarded -
2447 stream->last_discarded_events;
2448 }
2449 stream->last_discarded_events = discarded;
2450 ret = 0;
2451
2452end:
2453 return ret;
2454}
2455
94d49140
JD
2456/*
2457 * Read subbuffer from the given stream.
2458 *
2459 * Stream lock MUST be acquired.
2460 *
2461 * Return 0 on success else a negative value.
2462 */
d41f73b7
MD
2463int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
2464 struct lttng_consumer_local_data *ctx)
2465{
1d4dfdef 2466 unsigned long len, subbuf_size, padding;
1c20f0e2 2467 int err, write_index = 1;
d41f73b7 2468 long ret = 0;
ffe60014 2469 struct ustctl_consumer_stream *ustream;
50adc264 2470 struct ctf_packet_index index;
ffe60014
DG
2471
2472 assert(stream);
2473 assert(stream->ustream);
2474 assert(ctx);
d41f73b7 2475
3eb914c0 2476 DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream->wait_fd,
ffe60014
DG
2477 stream->name);
2478
2479 /* Ease our life for what's next. */
2480 ustream = stream->ustream;
d41f73b7 2481
6cd525e8 2482 /*
02b3d176
DG
2483 * We can consume the 1 byte written into the wait_fd by UST. Don't trigger
2484 * error if we cannot read this one byte (read returns 0), or if the error
2485 * is EAGAIN or EWOULDBLOCK.
2486 *
2487 * This is only done when the stream is monitored by a thread, before the
2488 * flush is done after a hangup and if the stream is not flagged with data
2489 * since there might be nothing to consume in the wait fd but still have
2490 * data available flagged by the consumer wake up pipe.
6cd525e8 2491 */
02b3d176
DG
2492 if (stream->monitor && !stream->hangup_flush_done && !stream->has_data) {
2493 char dummy;
c617c0c6
MD
2494 ssize_t readlen;
2495
6cd525e8
MD
2496 readlen = lttng_read(stream->wait_fd, &dummy, 1);
2497 if (readlen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
effcf122
MD
2498 ret = readlen;
2499 goto end;
2500 }
d41f73b7
MD
2501 }
2502
04ef1097 2503retry:
d41f73b7 2504 /* Get the next subbuffer */
ffe60014 2505 err = ustctl_get_next_subbuf(ustream);
d41f73b7 2506 if (err != 0) {
04ef1097
MD
2507 /*
2508 * Populate metadata info if the existing info has
2509 * already been read.
2510 */
2511 if (stream->metadata_flag) {
94d49140
JD
2512 ret = commit_one_metadata_packet(stream);
2513 if (ret <= 0) {
04ef1097
MD
2514 goto end;
2515 }
04ef1097
MD
2516 ustctl_flush_buffer(stream->ustream, 1);
2517 goto retry;
2518 }
2519
1d4dfdef 2520 ret = err; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
d41f73b7
MD
2521 /*
2522 * This is a debug message even for single-threaded consumer,
2523 * because poll() have more relaxed criterions than get subbuf,
2524 * so get_subbuf may fail for short race windows where poll()
2525 * would issue wakeups.
2526 */
2527 DBG("Reserving sub buffer failed (everything is normal, "
ffe60014 2528 "it is due to concurrency) [ret: %d]", err);
d41f73b7
MD
2529 goto end;
2530 }
ffe60014 2531 assert(stream->chan->output == CONSUMER_CHANNEL_MMAP);
309167d2 2532
1c20f0e2 2533 if (!stream->metadata_flag) {
309167d2
JD
2534 index.offset = htobe64(stream->out_fd_offset);
2535 ret = get_index_values(&index, ustream);
2536 if (ret < 0) {
7b87473d
MD
2537 err = ustctl_put_subbuf(ustream);
2538 assert(err == 0);
309167d2
JD
2539 goto end;
2540 }
fb83fe64
JD
2541
2542 /* Update the stream's sequence and discarded events count. */
2543 ret = update_stream_stats(stream);
2544 if (ret < 0) {
2545 PERROR("kernctl_get_events_discarded");
7b87473d
MD
2546 err = ustctl_put_subbuf(ustream);
2547 assert(err == 0);
fb83fe64
JD
2548 goto end;
2549 }
1c20f0e2
JD
2550 } else {
2551 write_index = 0;
309167d2
JD
2552 }
2553
1d4dfdef 2554 /* Get the full padded subbuffer size */
ffe60014 2555 err = ustctl_get_padded_subbuf_size(ustream, &len);
effcf122 2556 assert(err == 0);
1d4dfdef
DG
2557
2558 /* Get subbuffer data size (without padding) */
ffe60014 2559 err = ustctl_get_subbuf_size(ustream, &subbuf_size);
1d4dfdef
DG
2560 assert(err == 0);
2561
2562 /* Make sure we don't get a subbuffer size bigger than the padded */
2563 assert(len >= subbuf_size);
2564
2565 padding = len - subbuf_size;
d41f73b7 2566 /* write the subbuffer to the tracefile */
309167d2 2567 ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, subbuf_size, padding, &index);
91dfef6e
DG
2568 /*
2569 * The mmap operation should write subbuf_size amount of data when network
2570 * streaming or the full padding (len) size when we are _not_ streaming.
2571 */
d88aee68
DG
2572 if ((ret != subbuf_size && stream->net_seq_idx != (uint64_t) -1ULL) ||
2573 (ret != len && stream->net_seq_idx == (uint64_t) -1ULL)) {
d41f73b7 2574 /*
91dfef6e 2575 * Display the error but continue processing to try to release the
c5c45efa
DG
2576 * subbuffer. This is a DBG statement since any unexpected kill or
2577 * signal, the application gets unregistered, relayd gets closed or
2578 * anything that affects the buffer lifetime will trigger this error.
2579 * So, for the sake of the user, don't print this error since it can
2580 * happen and it is OK with the code flow.
d41f73b7 2581 */
c5c45efa 2582 DBG("Error writing to tracefile "
8fd623e0 2583 "(ret: %ld != len: %lu != subbuf_size: %lu)",
91dfef6e 2584 ret, len, subbuf_size);
309167d2 2585 write_index = 0;
d41f73b7 2586 }
ffe60014 2587 err = ustctl_put_next_subbuf(ustream);
effcf122 2588 assert(err == 0);
331744e3 2589
02b3d176
DG
2590 /*
2591 * This will consumer the byte on the wait_fd if and only if there is not
2592 * next subbuffer to be acquired.
2593 */
2594 if (!stream->metadata_flag) {
2595 ret = notify_if_more_data(stream, ctx);
2596 if (ret < 0) {
2597 goto end;
2598 }
2599 }
2600
309167d2 2601 /* Write index if needed. */
1c20f0e2
JD
2602 if (!write_index) {
2603 goto end;
2604 }
2605
94d49140
JD
2606 if (stream->chan->live_timer_interval && !stream->metadata_flag) {
2607 /*
2608 * In live, block until all the metadata is sent.
2609 */
c585821b
MD
2610 pthread_mutex_lock(&stream->metadata_timer_lock);
2611 assert(!stream->missed_metadata_flush);
2612 stream->waiting_on_metadata = true;
2613 pthread_mutex_unlock(&stream->metadata_timer_lock);
2614
94d49140 2615 err = consumer_stream_sync_metadata(ctx, stream->session_id);
c585821b
MD
2616
2617 pthread_mutex_lock(&stream->metadata_timer_lock);
2618 stream->waiting_on_metadata = false;
2619 if (stream->missed_metadata_flush) {
2620 stream->missed_metadata_flush = false;
2621 pthread_mutex_unlock(&stream->metadata_timer_lock);
2622 (void) consumer_flush_ust_index(stream);
2623 } else {
2624 pthread_mutex_unlock(&stream->metadata_timer_lock);
2625 }
2626
94d49140
JD
2627 if (err < 0) {
2628 goto end;
2629 }
2630 }
2631
1c20f0e2
JD
2632 assert(!stream->metadata_flag);
2633 err = consumer_stream_write_index(stream, &index);
2634 if (err < 0) {
2635 goto end;
309167d2
JD
2636 }
2637
d41f73b7
MD
2638end:
2639 return ret;
2640}
2641
ffe60014
DG
2642/*
2643 * Called when a stream is created.
fe4477ee
JD
2644 *
2645 * Return 0 on success or else a negative value.
ffe60014 2646 */
d41f73b7
MD
2647int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
2648{
fe4477ee
JD
2649 int ret;
2650
10a50311
JD
2651 assert(stream);
2652
fe4477ee 2653 /* Don't create anything if this is set for streaming. */
10a50311 2654 if (stream->net_seq_idx == (uint64_t) -1ULL && stream->chan->monitor) {
fe4477ee
JD
2655 ret = utils_create_stream_file(stream->chan->pathname, stream->name,
2656 stream->chan->tracefile_size, stream->tracefile_count_current,
309167d2 2657 stream->uid, stream->gid, NULL);
fe4477ee
JD
2658 if (ret < 0) {
2659 goto error;
2660 }
2661 stream->out_fd = ret;
2662 stream->tracefile_size_current = 0;
309167d2
JD
2663
2664 if (!stream->metadata_flag) {
f8f3885c
MD
2665 struct lttng_index_file *index_file;
2666
2667 index_file = lttng_index_file_create(stream->chan->pathname,
309167d2
JD
2668 stream->name, stream->uid, stream->gid,
2669 stream->chan->tracefile_size,
f8f3885c
MD
2670 stream->tracefile_count_current,
2671 CTF_INDEX_MAJOR, CTF_INDEX_MINOR);
2672 if (!index_file) {
309167d2
JD
2673 goto error;
2674 }
1b47ae58 2675 assert(!stream->index_file);
f8f3885c 2676 stream->index_file = index_file;
309167d2 2677 }
fe4477ee
JD
2678 }
2679 ret = 0;
2680
2681error:
2682 return ret;
d41f73b7 2683}
ca22feea
DG
2684
2685/*
2686 * Check if data is still being extracted from the buffers for a specific
4e9a4686
DG
2687 * stream. Consumer data lock MUST be acquired before calling this function
2688 * and the stream lock.
ca22feea 2689 *
6d805429 2690 * Return 1 if the traced data are still getting read else 0 meaning that the
ca22feea
DG
2691 * data is available for trace viewer reading.
2692 */
6d805429 2693int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
ca22feea
DG
2694{
2695 int ret;
2696
2697 assert(stream);
ffe60014 2698 assert(stream->ustream);
ca22feea 2699
6d805429 2700 DBG("UST consumer checking data pending");
c8f59ee5 2701
ca6b395f
MD
2702 if (stream->endpoint_status != CONSUMER_ENDPOINT_ACTIVE) {
2703 ret = 0;
2704 goto end;
2705 }
2706
04ef1097 2707 if (stream->chan->type == CONSUMER_CHANNEL_TYPE_METADATA) {
e6ee4eab
DG
2708 uint64_t contiguous, pushed;
2709
2710 /* Ease our life a bit. */
c585821b 2711 contiguous = stream->chan->metadata_cache->max_offset;
e6ee4eab
DG
2712 pushed = stream->ust_metadata_pushed;
2713
04ef1097
MD
2714 /*
2715 * We can simply check whether all contiguously available data
2716 * has been pushed to the ring buffer, since the push operation
2717 * is performed within get_next_subbuf(), and because both
2718 * get_next_subbuf() and put_next_subbuf() are issued atomically
2719 * thanks to the stream lock within
2720 * lttng_ustconsumer_read_subbuffer(). This basically means that
2721 * whetnever ust_metadata_pushed is incremented, the associated
2722 * metadata has been consumed from the metadata stream.
2723 */
2724 DBG("UST consumer metadata pending check: contiguous %" PRIu64 " vs pushed %" PRIu64,
e6ee4eab 2725 contiguous, pushed);
aa01b94c 2726 assert(((int64_t) (contiguous - pushed)) >= 0);
e6ee4eab 2727 if ((contiguous != pushed) ||
6acdf328 2728 (((int64_t) contiguous - pushed) > 0 || contiguous == 0)) {
04ef1097
MD
2729 ret = 1; /* Data is pending */
2730 goto end;
2731 }
2732 } else {
2733 ret = ustctl_get_next_subbuf(stream->ustream);
2734 if (ret == 0) {
2735 /*
2736 * There is still data so let's put back this
2737 * subbuffer.
2738 */
2739 ret = ustctl_put_subbuf(stream->ustream);
2740 assert(ret == 0);
2741 ret = 1; /* Data is pending */
2742 goto end;
2743 }
ca22feea
DG
2744 }
2745
6d805429
DG
2746 /* Data is NOT pending so ready to be read. */
2747 ret = 0;
ca22feea 2748
6efae65e
DG
2749end:
2750 return ret;
ca22feea 2751}
d88aee68 2752
6d574024
DG
2753/*
2754 * Stop a given metadata channel timer if enabled and close the wait fd which
2755 * is the poll pipe of the metadata stream.
2756 *
2757 * This MUST be called with the metadata channel acquired.
2758 */
2759void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel *metadata)
2760{
2761 int ret;
2762
2763 assert(metadata);
2764 assert(metadata->type == CONSUMER_CHANNEL_TYPE_METADATA);
2765
2766 DBG("Closing metadata channel key %" PRIu64, metadata->key);
2767
2768 if (metadata->switch_timer_enabled == 1) {
2769 consumer_timer_switch_stop(metadata);
2770 }
2771
2772 if (!metadata->metadata_stream) {
2773 goto end;
2774 }
2775
2776 /*
2777 * Closing write side so the thread monitoring the stream wakes up if any
2778 * and clean the metadata stream.
2779 */
2780 if (metadata->metadata_stream->ust_metadata_poll_pipe[1] >= 0) {
2781 ret = close(metadata->metadata_stream->ust_metadata_poll_pipe[1]);
2782 if (ret < 0) {
2783 PERROR("closing metadata pipe write side");
2784 }
2785 metadata->metadata_stream->ust_metadata_poll_pipe[1] = -1;
2786 }
2787
2788end:
2789 return;
2790}
2791
d88aee68
DG
2792/*
2793 * Close every metadata stream wait fd of the metadata hash table. This
2794 * function MUST be used very carefully so not to run into a race between the
2795 * metadata thread handling streams and this function closing their wait fd.
2796 *
2797 * For UST, this is used when the session daemon hangs up. Its the metadata
2798 * producer so calling this is safe because we are assured that no state change
2799 * can occur in the metadata thread for the streams in the hash table.
2800 */
6d574024 2801void lttng_ustconsumer_close_all_metadata(struct lttng_ht *metadata_ht)
d88aee68 2802{
d88aee68
DG
2803 struct lttng_ht_iter iter;
2804 struct lttng_consumer_stream *stream;
2805
2806 assert(metadata_ht);
2807 assert(metadata_ht->ht);
2808
2809 DBG("UST consumer closing all metadata streams");
2810
2811 rcu_read_lock();
2812 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream,
2813 node.node) {
9ce5646a
MD
2814
2815 health_code_update();
2816
be2b50c7 2817 pthread_mutex_lock(&stream->chan->lock);
6d574024 2818 lttng_ustconsumer_close_metadata(stream->chan);
be2b50c7
DG
2819 pthread_mutex_unlock(&stream->chan->lock);
2820
d88aee68
DG
2821 }
2822 rcu_read_unlock();
2823}
d8ef542d
MD
2824
2825void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream)
2826{
2827 int ret;
2828
2829 ret = ustctl_stream_close_wakeup_fd(stream->ustream);
2830 if (ret < 0) {
2831 ERR("Unable to close wakeup fd");
2832 }
2833}
331744e3 2834
f666ae70
MD
2835/*
2836 * Please refer to consumer-timer.c before adding any lock within this
2837 * function or any of its callees. Timers have a very strict locking
2838 * semantic with respect to teardown. Failure to respect this semantic
2839 * introduces deadlocks.
c585821b
MD
2840 *
2841 * DON'T hold the metadata lock when calling this function, else this
2842 * can cause deadlock involving consumer awaiting for metadata to be
2843 * pushed out due to concurrent interaction with the session daemon.
f666ae70 2844 */
331744e3 2845int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
94d49140 2846 struct lttng_consumer_channel *channel, int timer, int wait)
331744e3
JD
2847{
2848 struct lttcomm_metadata_request_msg request;
2849 struct lttcomm_consumer_msg msg;
0c759fc9 2850 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
93ec662e 2851 uint64_t len, key, offset, version;
331744e3
JD
2852 int ret;
2853
2854 assert(channel);
2855 assert(channel->metadata_cache);
2856
53efb85a
MD
2857 memset(&request, 0, sizeof(request));
2858
331744e3
JD
2859 /* send the metadata request to sessiond */
2860 switch (consumer_data.type) {
2861 case LTTNG_CONSUMER64_UST:
2862 request.bits_per_long = 64;
2863 break;
2864 case LTTNG_CONSUMER32_UST:
2865 request.bits_per_long = 32;
2866 break;
2867 default:
2868 request.bits_per_long = 0;
2869 break;
2870 }
2871
2872 request.session_id = channel->session_id;
1950109e 2873 request.session_id_per_pid = channel->session_id_per_pid;
567eb353
DG
2874 /*
2875 * Request the application UID here so the metadata of that application can
2876 * be sent back. The channel UID corresponds to the user UID of the session
2877 * used for the rights on the stream file(s).
2878 */
2879 request.uid = channel->ust_app_uid;
331744e3 2880 request.key = channel->key;
567eb353 2881
1950109e 2882 DBG("Sending metadata request to sessiond, session id %" PRIu64
567eb353
DG
2883 ", per-pid %" PRIu64 ", app UID %u and channek key %" PRIu64,
2884 request.session_id, request.session_id_per_pid, request.uid,
2885 request.key);
331744e3 2886
75d83e50 2887 pthread_mutex_lock(&ctx->metadata_socket_lock);
9ce5646a
MD
2888
2889 health_code_update();
2890
331744e3
JD
2891 ret = lttcomm_send_unix_sock(ctx->consumer_metadata_socket, &request,
2892 sizeof(request));
2893 if (ret < 0) {
2894 ERR("Asking metadata to sessiond");
2895 goto end;
2896 }
2897
9ce5646a
MD
2898 health_code_update();
2899
331744e3
JD
2900 /* Receive the metadata from sessiond */
2901 ret = lttcomm_recv_unix_sock(ctx->consumer_metadata_socket, &msg,
2902 sizeof(msg));
2903 if (ret != sizeof(msg)) {
8fd623e0 2904 DBG("Consumer received unexpected message size %d (expects %zu)",
331744e3
JD
2905 ret, sizeof(msg));
2906 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
2907 /*
2908 * The ret value might 0 meaning an orderly shutdown but this is ok
2909 * since the caller handles this.
2910 */
2911 goto end;
2912 }
2913
9ce5646a
MD
2914 health_code_update();
2915
331744e3
JD
2916 if (msg.cmd_type == LTTNG_ERR_UND) {
2917 /* No registry found */
2918 (void) consumer_send_status_msg(ctx->consumer_metadata_socket,
2919 ret_code);
2920 ret = 0;
2921 goto end;
2922 } else if (msg.cmd_type != LTTNG_CONSUMER_PUSH_METADATA) {
2923 ERR("Unexpected cmd_type received %d", msg.cmd_type);
2924 ret = -1;
2925 goto end;
2926 }
2927
2928 len = msg.u.push_metadata.len;
2929 key = msg.u.push_metadata.key;
2930 offset = msg.u.push_metadata.target_offset;
93ec662e 2931 version = msg.u.push_metadata.version;
331744e3
JD
2932
2933 assert(key == channel->key);
2934 if (len == 0) {
2935 DBG("No new metadata to receive for key %" PRIu64, key);
2936 }
2937
9ce5646a
MD
2938 health_code_update();
2939
331744e3
JD
2940 /* Tell session daemon we are ready to receive the metadata. */
2941 ret = consumer_send_status_msg(ctx->consumer_metadata_socket,
0c759fc9 2942 LTTCOMM_CONSUMERD_SUCCESS);
331744e3
JD
2943 if (ret < 0 || len == 0) {
2944 /*
2945 * Somehow, the session daemon is not responding anymore or there is
2946 * nothing to receive.
2947 */
2948 goto end;
2949 }
2950
9ce5646a
MD
2951 health_code_update();
2952
1eb682be 2953 ret = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket,
93ec662e 2954 key, offset, len, version, channel, timer, wait);
1eb682be 2955 if (ret >= 0) {
f2a444f1
DG
2956 /*
2957 * Only send the status msg if the sessiond is alive meaning a positive
2958 * ret code.
2959 */
1eb682be 2960 (void) consumer_send_status_msg(ctx->consumer_metadata_socket, ret);
f2a444f1 2961 }
331744e3
JD
2962 ret = 0;
2963
2964end:
9ce5646a
MD
2965 health_code_update();
2966
75d83e50 2967 pthread_mutex_unlock(&ctx->metadata_socket_lock);
331744e3
JD
2968 return ret;
2969}
70190e1c
DG
2970
2971/*
2972 * Return the ustctl call for the get stream id.
2973 */
2974int lttng_ustconsumer_get_stream_id(struct lttng_consumer_stream *stream,
2975 uint64_t *stream_id)
2976{
2977 assert(stream);
2978 assert(stream_id);
2979
2980 return ustctl_get_stream_id(stream->ustream, stream_id);
2981}
This page took 0.203888 seconds and 4 git commands to generate.