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