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