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