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