Create userspace buffers using ua_sess effective credentials
[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 2010 const struct lttng_credentials credentials = {
e5add6d0
JG
2011 .uid = msg.u.create_trace_chunk.credentials.value.uid,
2012 .gid = msg.u.create_trace_chunk.credentials.value.gid,
d2956687
JG
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,
e5add6d0
JG
2065 (time_t) msg.u.create_trace_chunk
2066 .creation_timestamp,
d2956687 2067 chunk_override_name,
e5add6d0
JG
2068 msg.u.create_trace_chunk.credentials.is_set ?
2069 &credentials :
2070 NULL,
d2956687
JG
2071 chunk_directory_handle.is_set ?
2072 &chunk_directory_handle.value :
2073 NULL);
92816cc3 2074
d2956687
JG
2075 if (chunk_directory_handle.is_set) {
2076 lttng_directory_handle_fini(
2077 &chunk_directory_handle.value);
d88744a4 2078 }
d2956687 2079 goto end_msg_sessiond;
00fb02ac 2080 }
d2956687 2081 case LTTNG_CONSUMER_CLOSE_TRACE_CHUNK:
a1ae2ea5 2082 {
d2956687
JG
2083 const uint64_t relayd_id =
2084 msg.u.close_trace_chunk.relayd_id.value;
2085
2086 ret_code = lttng_consumer_close_trace_chunk(
2087 msg.u.close_trace_chunk.relayd_id.is_set ?
2088 &relayd_id : NULL,
2089 msg.u.close_trace_chunk.session_id,
2090 msg.u.close_trace_chunk.chunk_id,
2091 (time_t) msg.u.close_trace_chunk.close_timestamp);
2092 goto end_msg_sessiond;
a1ae2ea5 2093 }
d2956687 2094 case LTTNG_CONSUMER_TRACE_CHUNK_EXISTS:
3654ed19 2095 {
d2956687
JG
2096 const uint64_t relayd_id =
2097 msg.u.trace_chunk_exists.relayd_id.value;
2098
2099 ret_code = lttng_consumer_trace_chunk_exists(
2100 msg.u.trace_chunk_exists.relayd_id.is_set ?
2101 &relayd_id : NULL,
2102 msg.u.trace_chunk_exists.session_id,
2103 msg.u.trace_chunk_exists.chunk_id);
2104 goto end_msg_sessiond;
3654ed19 2105 }
3bd1e081
MD
2106 default:
2107 break;
2108 }
3f8e211f 2109
3bd1e081 2110end_nosignal:
b0b335c8 2111 rcu_read_unlock();
4cbc1a04 2112
9ce5646a
MD
2113 health_code_update();
2114
4cbc1a04
DG
2115 /*
2116 * Return 1 to indicate success since the 0 value can be a socket
2117 * shutdown during the recv() or send() call.
2118 */
2119 return 1;
ffe60014
DG
2120
2121end_msg_sessiond:
2122 /*
2123 * The returned value here is not useful since either way we'll return 1 to
2124 * the caller because the session daemon socket management is done
2125 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
2126 */
489f70e9
MD
2127 ret = consumer_send_status_msg(sock, ret_code);
2128 if (ret < 0) {
2129 goto error_fatal;
2130 }
ffe60014 2131 rcu_read_unlock();
9ce5646a
MD
2132
2133 health_code_update();
2134
ffe60014
DG
2135 return 1;
2136end_channel_error:
2137 if (channel) {
d2956687 2138 pthread_mutex_unlock(&channel->lock);
ffe60014
DG
2139 /*
2140 * Free channel here since no one has a reference to it. We don't
2141 * free after that because a stream can store this pointer.
2142 */
2143 destroy_channel(channel);
2144 }
2145 /* We have to send a status channel message indicating an error. */
2146 ret = consumer_send_status_channel(sock, NULL);
2147 if (ret < 0) {
2148 /* Stop everything if session daemon can not be notified. */
2149 goto error_fatal;
2150 }
2151 rcu_read_unlock();
9ce5646a
MD
2152
2153 health_code_update();
2154
ffe60014
DG
2155 return 1;
2156error_fatal:
2157 rcu_read_unlock();
2158 /* This will issue a consumer stop. */
2159 return -1;
3bd1e081
MD
2160}
2161
ffe60014
DG
2162/*
2163 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
2164 * compiled out, we isolate it in this library.
2165 */
2166int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
2167 unsigned long *off)
3bd1e081 2168{
ffe60014
DG
2169 assert(stream);
2170 assert(stream->ustream);
b5c5fc29 2171
ffe60014 2172 return ustctl_get_mmap_read_offset(stream->ustream, off);
3bd1e081
MD
2173}
2174
ffe60014
DG
2175/*
2176 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
2177 * compiled out, we isolate it in this library.
2178 */
2179void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream)
d056b477 2180{
ffe60014
DG
2181 assert(stream);
2182 assert(stream->ustream);
2183
2184 return ustctl_get_mmap_base(stream->ustream);
d056b477
MD
2185}
2186
fc6d7a51
JD
2187void lttng_ustctl_flush_buffer(struct lttng_consumer_stream *stream,
2188 int producer_active)
2189{
2190 assert(stream);
2191 assert(stream->ustream);
2192
2193 ustctl_flush_buffer(stream->ustream, producer_active);
2194}
2195
ffe60014 2196/*
e9404c27 2197 * Take a snapshot for a specific stream.
ffe60014
DG
2198 *
2199 * Returns 0 on success, < 0 on error
2200 */
2201int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream)
3bd1e081 2202{
ffe60014
DG
2203 assert(stream);
2204 assert(stream->ustream);
2205
2206 return ustctl_snapshot(stream->ustream);
3bd1e081
MD
2207}
2208
e9404c27
JG
2209/*
2210 * Sample consumed and produced positions for a specific stream.
2211 *
2212 * Returns 0 on success, < 0 on error.
2213 */
2214int lttng_ustconsumer_sample_snapshot_positions(
2215 struct lttng_consumer_stream *stream)
2216{
2217 assert(stream);
2218 assert(stream->ustream);
2219
2220 return ustctl_snapshot_sample_positions(stream->ustream);
2221}
2222
ffe60014
DG
2223/*
2224 * Get the produced position
2225 *
2226 * Returns 0 on success, < 0 on error
2227 */
2228int lttng_ustconsumer_get_produced_snapshot(
2229 struct lttng_consumer_stream *stream, unsigned long *pos)
3bd1e081 2230{
ffe60014
DG
2231 assert(stream);
2232 assert(stream->ustream);
2233 assert(pos);
7a57cf92 2234
ffe60014
DG
2235 return ustctl_snapshot_get_produced(stream->ustream, pos);
2236}
7a57cf92 2237
10a50311
JD
2238/*
2239 * Get the consumed position
2240 *
2241 * Returns 0 on success, < 0 on error
2242 */
2243int lttng_ustconsumer_get_consumed_snapshot(
2244 struct lttng_consumer_stream *stream, unsigned long *pos)
2245{
2246 assert(stream);
2247 assert(stream->ustream);
2248 assert(pos);
2249
2250 return ustctl_snapshot_get_consumed(stream->ustream, pos);
2251}
2252
84a182ce
DG
2253void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream *stream,
2254 int producer)
2255{
2256 assert(stream);
2257 assert(stream->ustream);
2258
2259 ustctl_flush_buffer(stream->ustream, producer);
2260}
2261
2262int lttng_ustconsumer_get_current_timestamp(
2263 struct lttng_consumer_stream *stream, uint64_t *ts)
2264{
2265 assert(stream);
2266 assert(stream->ustream);
2267 assert(ts);
2268
2269 return ustctl_get_current_timestamp(stream->ustream, ts);
2270}
2271
fb83fe64
JD
2272int lttng_ustconsumer_get_sequence_number(
2273 struct lttng_consumer_stream *stream, uint64_t *seq)
2274{
2275 assert(stream);
2276 assert(stream->ustream);
2277 assert(seq);
2278
2279 return ustctl_get_sequence_number(stream->ustream, seq);
2280}
2281
ffe60014 2282/*
0dd01979 2283 * Called when the stream signals the consumer that it has hung up.
ffe60014
DG
2284 */
2285void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
2286{
2287 assert(stream);
2288 assert(stream->ustream);
2c1dd183 2289
0dd01979
MD
2290 pthread_mutex_lock(&stream->lock);
2291 if (!stream->quiescent) {
2292 ustctl_flush_buffer(stream->ustream, 0);
2293 stream->quiescent = true;
2294 }
2295 pthread_mutex_unlock(&stream->lock);
ffe60014
DG
2296 stream->hangup_flush_done = 1;
2297}
ee77a7b0 2298
ffe60014
DG
2299void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
2300{
4628484a
MD
2301 int i;
2302
ffe60014
DG
2303 assert(chan);
2304 assert(chan->uchan);
d2956687 2305 assert(chan->buffer_credentials.is_set);
e316aad5 2306
ea88ca2a
MD
2307 if (chan->switch_timer_enabled == 1) {
2308 consumer_timer_switch_stop(chan);
2309 }
4628484a
MD
2310 for (i = 0; i < chan->nr_stream_fds; i++) {
2311 int ret;
2312
2313 ret = close(chan->stream_fds[i]);
2314 if (ret) {
2315 PERROR("close");
2316 }
2317 if (chan->shm_path[0]) {
2318 char shm_path[PATH_MAX];
2319
2320 ret = get_stream_shm_path(shm_path, chan->shm_path, i);
2321 if (ret) {
2322 ERR("Cannot get stream shm path");
2323 }
d2956687
JG
2324 ret = run_as_unlink(shm_path,
2325 chan->buffer_credentials.value.uid,
2326 chan->buffer_credentials.value.gid);
4628484a 2327 if (ret) {
4628484a
MD
2328 PERROR("unlink %s", shm_path);
2329 }
2330 }
2331 }
3bd1e081
MD
2332}
2333
b83e03c4
MD
2334void lttng_ustconsumer_free_channel(struct lttng_consumer_channel *chan)
2335{
2336 assert(chan);
2337 assert(chan->uchan);
d2956687 2338 assert(chan->buffer_credentials.is_set);
b83e03c4
MD
2339
2340 consumer_metadata_cache_destroy(chan);
2341 ustctl_destroy_channel(chan->uchan);
ea853771
JR
2342 /* Try to rmdir all directories under shm_path root. */
2343 if (chan->root_shm_path[0]) {
602766ec 2344 (void) run_as_rmdir_recursive(chan->root_shm_path,
d2956687
JG
2345 chan->buffer_credentials.value.uid,
2346 chan->buffer_credentials.value.gid);
ea853771 2347 }
b83e03c4
MD
2348 free(chan->stream_fds);
2349}
2350
3bd1e081
MD
2351void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
2352{
ffe60014
DG
2353 assert(stream);
2354 assert(stream->ustream);
d41f73b7 2355
ea88ca2a
MD
2356 if (stream->chan->switch_timer_enabled == 1) {
2357 consumer_timer_switch_stop(stream->chan);
2358 }
ffe60014
DG
2359 ustctl_destroy_stream(stream->ustream);
2360}
d41f73b7 2361
6d574024
DG
2362int lttng_ustconsumer_get_wakeup_fd(struct lttng_consumer_stream *stream)
2363{
2364 assert(stream);
2365 assert(stream->ustream);
2366
2367 return ustctl_stream_get_wakeup_fd(stream->ustream);
2368}
2369
2370int lttng_ustconsumer_close_wakeup_fd(struct lttng_consumer_stream *stream)
2371{
2372 assert(stream);
2373 assert(stream->ustream);
2374
2375 return ustctl_stream_close_wakeup_fd(stream->ustream);
2376}
2377
309167d2
JD
2378/*
2379 * Populate index values of a UST stream. Values are set in big endian order.
2380 *
2381 * Return 0 on success or else a negative value.
2382 */
50adc264 2383static int get_index_values(struct ctf_packet_index *index,
309167d2
JD
2384 struct ustctl_consumer_stream *ustream)
2385{
2386 int ret;
2387
2388 ret = ustctl_get_timestamp_begin(ustream, &index->timestamp_begin);
2389 if (ret < 0) {
2390 PERROR("ustctl_get_timestamp_begin");
2391 goto error;
2392 }
2393 index->timestamp_begin = htobe64(index->timestamp_begin);
2394
2395 ret = ustctl_get_timestamp_end(ustream, &index->timestamp_end);
2396 if (ret < 0) {
2397 PERROR("ustctl_get_timestamp_end");
2398 goto error;
2399 }
2400 index->timestamp_end = htobe64(index->timestamp_end);
2401
2402 ret = ustctl_get_events_discarded(ustream, &index->events_discarded);
2403 if (ret < 0) {
2404 PERROR("ustctl_get_events_discarded");
2405 goto error;
2406 }
2407 index->events_discarded = htobe64(index->events_discarded);
2408
2409 ret = ustctl_get_content_size(ustream, &index->content_size);
2410 if (ret < 0) {
2411 PERROR("ustctl_get_content_size");
2412 goto error;
2413 }
2414 index->content_size = htobe64(index->content_size);
2415
2416 ret = ustctl_get_packet_size(ustream, &index->packet_size);
2417 if (ret < 0) {
2418 PERROR("ustctl_get_packet_size");
2419 goto error;
2420 }
2421 index->packet_size = htobe64(index->packet_size);
2422
2423 ret = ustctl_get_stream_id(ustream, &index->stream_id);
2424 if (ret < 0) {
2425 PERROR("ustctl_get_stream_id");
2426 goto error;
2427 }
2428 index->stream_id = htobe64(index->stream_id);
2429
234cd636
JD
2430 ret = ustctl_get_instance_id(ustream, &index->stream_instance_id);
2431 if (ret < 0) {
2432 PERROR("ustctl_get_instance_id");
2433 goto error;
2434 }
2435 index->stream_instance_id = htobe64(index->stream_instance_id);
2436
2437 ret = ustctl_get_sequence_number(ustream, &index->packet_seq_num);
2438 if (ret < 0) {
2439 PERROR("ustctl_get_sequence_number");
2440 goto error;
2441 }
2442 index->packet_seq_num = htobe64(index->packet_seq_num);
2443
309167d2
JD
2444error:
2445 return ret;
2446}
2447
93ec662e
JD
2448static
2449void metadata_stream_reset_cache(struct lttng_consumer_stream *stream,
2450 struct consumer_metadata_cache *cache)
2451{
2452 DBG("Metadata stream update to version %" PRIu64,
2453 cache->version);
2454 stream->ust_metadata_pushed = 0;
2455 stream->metadata_version = cache->version;
2456 stream->reset_metadata_flag = 1;
2457}
2458
2459/*
2460 * Check if the version of the metadata stream and metadata cache match.
2461 * If the cache got updated, reset the metadata stream.
2462 * The stream lock and metadata cache lock MUST be held.
2463 * Return 0 on success, a negative value on error.
2464 */
2465static
2466int metadata_stream_check_version(struct lttng_consumer_stream *stream)
2467{
2468 int ret = 0;
2469 struct consumer_metadata_cache *cache = stream->chan->metadata_cache;
2470
2471 if (cache->version == stream->metadata_version) {
2472 goto end;
2473 }
2474 metadata_stream_reset_cache(stream, cache);
2475
2476end:
2477 return ret;
2478}
2479
94d49140
JD
2480/*
2481 * Write up to one packet from the metadata cache to the channel.
2482 *
2483 * Returns the number of bytes pushed in the cache, or a negative value
2484 * on error.
2485 */
2486static
2487int commit_one_metadata_packet(struct lttng_consumer_stream *stream)
2488{
2489 ssize_t write_len;
2490 int ret;
2491
2492 pthread_mutex_lock(&stream->chan->metadata_cache->lock);
93ec662e
JD
2493 ret = metadata_stream_check_version(stream);
2494 if (ret < 0) {
2495 goto end;
2496 }
c585821b 2497 if (stream->chan->metadata_cache->max_offset
94d49140
JD
2498 == stream->ust_metadata_pushed) {
2499 ret = 0;
2500 goto end;
2501 }
2502
2503 write_len = ustctl_write_one_packet_to_channel(stream->chan->uchan,
2504 &stream->chan->metadata_cache->data[stream->ust_metadata_pushed],
c585821b 2505 stream->chan->metadata_cache->max_offset
94d49140
JD
2506 - stream->ust_metadata_pushed);
2507 assert(write_len != 0);
2508 if (write_len < 0) {
2509 ERR("Writing one metadata packet");
2510 ret = -1;
2511 goto end;
2512 }
2513 stream->ust_metadata_pushed += write_len;
2514
c585821b 2515 assert(stream->chan->metadata_cache->max_offset >=
94d49140
JD
2516 stream->ust_metadata_pushed);
2517 ret = write_len;
2518
0d88e046
JG
2519 /*
2520 * Switch packet (but don't open the next one) on every commit of
2521 * a metadata packet. Since the subbuffer is fully filled (with padding,
2522 * if needed), the stream is "quiescent" after this commit.
2523 */
2524 ustctl_flush_buffer(stream->ustream, 1);
2525 stream->quiescent = true;
94d49140
JD
2526end:
2527 pthread_mutex_unlock(&stream->chan->metadata_cache->lock);
2528 return ret;
2529}
2530
309167d2 2531
94d49140
JD
2532/*
2533 * Sync metadata meaning request them to the session daemon and snapshot to the
2534 * metadata thread can consumer them.
2535 *
c585821b
MD
2536 * Metadata stream lock is held here, but we need to release it when
2537 * interacting with sessiond, else we cause a deadlock with live
2538 * awaiting on metadata to be pushed out.
94d49140
JD
2539 *
2540 * Return 0 if new metadatda is available, EAGAIN if the metadata stream
2541 * is empty or a negative value on error.
2542 */
2543int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data *ctx,
2544 struct lttng_consumer_stream *metadata)
2545{
2546 int ret;
2547 int retry = 0;
2548
2549 assert(ctx);
2550 assert(metadata);
2551
c585821b 2552 pthread_mutex_unlock(&metadata->lock);
94d49140
JD
2553 /*
2554 * Request metadata from the sessiond, but don't wait for the flush
2555 * because we locked the metadata thread.
2556 */
2557 ret = lttng_ustconsumer_request_metadata(ctx, metadata->chan, 0, 0);
1caeb2eb 2558 pthread_mutex_lock(&metadata->lock);
94d49140
JD
2559 if (ret < 0) {
2560 goto end;
2561 }
2562
2563 ret = commit_one_metadata_packet(metadata);
2564 if (ret <= 0) {
2565 goto end;
2566 } else if (ret > 0) {
2567 retry = 1;
2568 }
2569
94d49140
JD
2570 ret = ustctl_snapshot(metadata->ustream);
2571 if (ret < 0) {
2572 if (errno != EAGAIN) {
2573 ERR("Sync metadata, taking UST snapshot");
2574 goto end;
2575 }
2576 DBG("No new metadata when syncing them.");
2577 /* No new metadata, exit. */
2578 ret = ENODATA;
2579 goto end;
2580 }
2581
2582 /*
2583 * After this flush, we still need to extract metadata.
2584 */
2585 if (retry) {
2586 ret = EAGAIN;
2587 }
2588
2589end:
2590 return ret;
2591}
2592
02b3d176
DG
2593/*
2594 * Return 0 on success else a negative value.
2595 */
2596static int notify_if_more_data(struct lttng_consumer_stream *stream,
2597 struct lttng_consumer_local_data *ctx)
2598{
2599 int ret;
2600 struct ustctl_consumer_stream *ustream;
2601
2602 assert(stream);
2603 assert(ctx);
2604
2605 ustream = stream->ustream;
2606
2607 /*
2608 * First, we are going to check if there is a new subbuffer available
2609 * before reading the stream wait_fd.
2610 */
2611 /* Get the next subbuffer */
2612 ret = ustctl_get_next_subbuf(ustream);
2613 if (ret) {
2614 /* No more data found, flag the stream. */
2615 stream->has_data = 0;
2616 ret = 0;
2617 goto end;
2618 }
2619
5420e5db 2620 ret = ustctl_put_subbuf(ustream);
02b3d176
DG
2621 assert(!ret);
2622
2623 /* This stream still has data. Flag it and wake up the data thread. */
2624 stream->has_data = 1;
2625
2626 if (stream->monitor && !stream->hangup_flush_done && !ctx->has_wakeup) {
2627 ssize_t writelen;
2628
2629 writelen = lttng_pipe_write(ctx->consumer_wakeup_pipe, "!", 1);
2630 if (writelen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
2631 ret = writelen;
2632 goto end;
2633 }
2634
2635 /* The wake up pipe has been notified. */
2636 ctx->has_wakeup = 1;
2637 }
2638 ret = 0;
2639
2640end:
2641 return ret;
2642}
2643
fb83fe64
JD
2644static
2645int update_stream_stats(struct lttng_consumer_stream *stream)
2646{
2647 int ret;
2648 uint64_t seq, discarded;
2649
2650 ret = ustctl_get_sequence_number(stream->ustream, &seq);
2651 if (ret < 0) {
2652 PERROR("ustctl_get_sequence_number");
2653 goto end;
2654 }
2655 /*
2656 * Start the sequence when we extract the first packet in case we don't
2657 * start at 0 (for example if a consumer is not connected to the
2658 * session immediately after the beginning).
2659 */
2660 if (stream->last_sequence_number == -1ULL) {
2661 stream->last_sequence_number = seq;
2662 } else if (seq > stream->last_sequence_number) {
2663 stream->chan->lost_packets += seq -
2664 stream->last_sequence_number - 1;
2665 } else {
2666 /* seq <= last_sequence_number */
2667 ERR("Sequence number inconsistent : prev = %" PRIu64
2668 ", current = %" PRIu64,
2669 stream->last_sequence_number, seq);
2670 ret = -1;
2671 goto end;
2672 }
2673 stream->last_sequence_number = seq;
2674
2675 ret = ustctl_get_events_discarded(stream->ustream, &discarded);
2676 if (ret < 0) {
2677 PERROR("kernctl_get_events_discarded");
2678 goto end;
2679 }
2680 if (discarded < stream->last_discarded_events) {
2681 /*
83f4233d
MJ
2682 * Overflow has occurred. We assume only one wrap-around
2683 * has occurred.
fb83fe64
JD
2684 */
2685 stream->chan->discarded_events +=
2686 (1ULL << (CAA_BITS_PER_LONG - 1)) -
2687 stream->last_discarded_events + discarded;
2688 } else {
2689 stream->chan->discarded_events += discarded -
2690 stream->last_discarded_events;
2691 }
2692 stream->last_discarded_events = discarded;
2693 ret = 0;
2694
2695end:
2696 return ret;
2697}
2698
94d49140
JD
2699/*
2700 * Read subbuffer from the given stream.
2701 *
d2956687 2702 * Stream and channel locks MUST be acquired by the caller.
94d49140
JD
2703 *
2704 * Return 0 on success else a negative value.
2705 */
d41f73b7 2706int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
d2956687 2707 struct lttng_consumer_local_data *ctx)
d41f73b7 2708{
1d4dfdef 2709 unsigned long len, subbuf_size, padding;
02d02e31 2710 int err, write_index = 1, rotation_ret;
d41f73b7 2711 long ret = 0;
ffe60014 2712 struct ustctl_consumer_stream *ustream;
50adc264 2713 struct ctf_packet_index index;
ffe60014
DG
2714
2715 assert(stream);
2716 assert(stream->ustream);
2717 assert(ctx);
d41f73b7 2718
3eb914c0 2719 DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream->wait_fd,
ffe60014
DG
2720 stream->name);
2721
2722 /* Ease our life for what's next. */
2723 ustream = stream->ustream;
d41f73b7 2724
6cd525e8 2725 /*
02b3d176
DG
2726 * We can consume the 1 byte written into the wait_fd by UST. Don't trigger
2727 * error if we cannot read this one byte (read returns 0), or if the error
2728 * is EAGAIN or EWOULDBLOCK.
2729 *
2730 * This is only done when the stream is monitored by a thread, before the
2731 * flush is done after a hangup and if the stream is not flagged with data
2732 * since there might be nothing to consume in the wait fd but still have
2733 * data available flagged by the consumer wake up pipe.
6cd525e8 2734 */
02b3d176
DG
2735 if (stream->monitor && !stream->hangup_flush_done && !stream->has_data) {
2736 char dummy;
c617c0c6
MD
2737 ssize_t readlen;
2738
6cd525e8
MD
2739 readlen = lttng_read(stream->wait_fd, &dummy, 1);
2740 if (readlen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
effcf122 2741 ret = readlen;
02d02e31
JD
2742 goto error;
2743 }
2744 }
2745
2746 /*
2747 * If the stream was flagged to be ready for rotation before we extract the
2748 * next packet, rotate it now.
2749 */
2750 if (stream->rotate_ready) {
2751 DBG("Rotate stream before extracting data");
d2956687 2752 rotation_ret = lttng_consumer_rotate_stream(ctx, stream);
02d02e31
JD
2753 if (rotation_ret < 0) {
2754 ERR("Stream rotation error");
2755 ret = -1;
2756 goto error;
effcf122 2757 }
d41f73b7
MD
2758 }
2759
04ef1097 2760retry:
d41f73b7 2761 /* Get the next subbuffer */
ffe60014 2762 err = ustctl_get_next_subbuf(ustream);
d41f73b7 2763 if (err != 0) {
04ef1097
MD
2764 /*
2765 * Populate metadata info if the existing info has
2766 * already been read.
2767 */
2768 if (stream->metadata_flag) {
94d49140
JD
2769 ret = commit_one_metadata_packet(stream);
2770 if (ret <= 0) {
02d02e31 2771 goto error;
04ef1097 2772 }
04ef1097
MD
2773 goto retry;
2774 }
2775
1d4dfdef 2776 ret = err; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
d41f73b7
MD
2777 /*
2778 * This is a debug message even for single-threaded consumer,
2779 * because poll() have more relaxed criterions than get subbuf,
2780 * so get_subbuf may fail for short race windows where poll()
2781 * would issue wakeups.
2782 */
2783 DBG("Reserving sub buffer failed (everything is normal, "
ffe60014 2784 "it is due to concurrency) [ret: %d]", err);
02d02e31 2785 goto error;
d41f73b7 2786 }
ffe60014 2787 assert(stream->chan->output == CONSUMER_CHANNEL_MMAP);
309167d2 2788
1c20f0e2 2789 if (!stream->metadata_flag) {
309167d2
JD
2790 index.offset = htobe64(stream->out_fd_offset);
2791 ret = get_index_values(&index, ustream);
2792 if (ret < 0) {
7b87473d
MD
2793 err = ustctl_put_subbuf(ustream);
2794 assert(err == 0);
02d02e31 2795 goto error;
309167d2 2796 }
fb83fe64
JD
2797
2798 /* Update the stream's sequence and discarded events count. */
2799 ret = update_stream_stats(stream);
2800 if (ret < 0) {
2801 PERROR("kernctl_get_events_discarded");
7b87473d
MD
2802 err = ustctl_put_subbuf(ustream);
2803 assert(err == 0);
02d02e31 2804 goto error;
fb83fe64 2805 }
1c20f0e2
JD
2806 } else {
2807 write_index = 0;
309167d2
JD
2808 }
2809
1d4dfdef 2810 /* Get the full padded subbuffer size */
ffe60014 2811 err = ustctl_get_padded_subbuf_size(ustream, &len);
effcf122 2812 assert(err == 0);
1d4dfdef
DG
2813
2814 /* Get subbuffer data size (without padding) */
ffe60014 2815 err = ustctl_get_subbuf_size(ustream, &subbuf_size);
1d4dfdef
DG
2816 assert(err == 0);
2817
2818 /* Make sure we don't get a subbuffer size bigger than the padded */
2819 assert(len >= subbuf_size);
2820
2821 padding = len - subbuf_size;
02d02e31 2822
d41f73b7 2823 /* write the subbuffer to the tracefile */
309167d2 2824 ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, subbuf_size, padding, &index);
91dfef6e
DG
2825 /*
2826 * The mmap operation should write subbuf_size amount of data when network
2827 * streaming or the full padding (len) size when we are _not_ streaming.
2828 */
d88aee68
DG
2829 if ((ret != subbuf_size && stream->net_seq_idx != (uint64_t) -1ULL) ||
2830 (ret != len && stream->net_seq_idx == (uint64_t) -1ULL)) {
d41f73b7 2831 /*
91dfef6e 2832 * Display the error but continue processing to try to release the
c5c45efa
DG
2833 * subbuffer. This is a DBG statement since any unexpected kill or
2834 * signal, the application gets unregistered, relayd gets closed or
2835 * anything that affects the buffer lifetime will trigger this error.
2836 * So, for the sake of the user, don't print this error since it can
2837 * happen and it is OK with the code flow.
d41f73b7 2838 */
c5c45efa 2839 DBG("Error writing to tracefile "
8fd623e0 2840 "(ret: %ld != len: %lu != subbuf_size: %lu)",
91dfef6e 2841 ret, len, subbuf_size);
309167d2 2842 write_index = 0;
d41f73b7 2843 }
ffe60014 2844 err = ustctl_put_next_subbuf(ustream);
effcf122 2845 assert(err == 0);
331744e3 2846
02b3d176
DG
2847 /*
2848 * This will consumer the byte on the wait_fd if and only if there is not
2849 * next subbuffer to be acquired.
2850 */
2851 if (!stream->metadata_flag) {
2852 ret = notify_if_more_data(stream, ctx);
2853 if (ret < 0) {
02d02e31 2854 goto error;
02b3d176
DG
2855 }
2856 }
2857
309167d2 2858 /* Write index if needed. */
1c20f0e2 2859 if (!write_index) {
02d02e31 2860 goto rotate;
1c20f0e2
JD
2861 }
2862
94d49140
JD
2863 if (stream->chan->live_timer_interval && !stream->metadata_flag) {
2864 /*
2865 * In live, block until all the metadata is sent.
2866 */
c585821b
MD
2867 pthread_mutex_lock(&stream->metadata_timer_lock);
2868 assert(!stream->missed_metadata_flush);
2869 stream->waiting_on_metadata = true;
2870 pthread_mutex_unlock(&stream->metadata_timer_lock);
2871
94d49140 2872 err = consumer_stream_sync_metadata(ctx, stream->session_id);
c585821b
MD
2873
2874 pthread_mutex_lock(&stream->metadata_timer_lock);
2875 stream->waiting_on_metadata = false;
2876 if (stream->missed_metadata_flush) {
2877 stream->missed_metadata_flush = false;
2878 pthread_mutex_unlock(&stream->metadata_timer_lock);
2879 (void) consumer_flush_ust_index(stream);
2880 } else {
2881 pthread_mutex_unlock(&stream->metadata_timer_lock);
2882 }
2883
94d49140 2884 if (err < 0) {
02d02e31 2885 goto error;
94d49140
JD
2886 }
2887 }
2888
1c20f0e2
JD
2889 assert(!stream->metadata_flag);
2890 err = consumer_stream_write_index(stream, &index);
2891 if (err < 0) {
02d02e31 2892 goto error;
309167d2
JD
2893 }
2894
02d02e31
JD
2895rotate:
2896 /*
2897 * After extracting the packet, we check if the stream is now ready to be
2898 * rotated and perform the action immediately.
2899 */
2900 rotation_ret = lttng_consumer_stream_is_rotate_ready(stream);
2901 if (rotation_ret == 1) {
d2956687 2902 rotation_ret = lttng_consumer_rotate_stream(ctx, stream);
02d02e31
JD
2903 if (rotation_ret < 0) {
2904 ERR("Stream rotation error");
2905 ret = -1;
2906 goto error;
2907 }
2908 } else if (rotation_ret < 0) {
2909 ERR("Checking if stream is ready to rotate");
2910 ret = -1;
2911 goto error;
2912 }
2913error:
d41f73b7
MD
2914 return ret;
2915}
2916
ffe60014
DG
2917/*
2918 * Called when a stream is created.
fe4477ee
JD
2919 *
2920 * Return 0 on success or else a negative value.
ffe60014 2921 */
d41f73b7
MD
2922int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
2923{
fe4477ee
JD
2924 int ret;
2925
10a50311
JD
2926 assert(stream);
2927
d2956687
JG
2928 /*
2929 * Don't create anything if this is set for streaming or if there is
2930 * no current trace chunk on the parent channel.
2931 */
2932 if (stream->net_seq_idx == (uint64_t) -1ULL && stream->chan->monitor &&
2933 stream->chan->trace_chunk) {
2934 ret = consumer_stream_create_output_files(stream, true);
2935 if (ret) {
fe4477ee
JD
2936 goto error;
2937 }
fe4477ee
JD
2938 }
2939 ret = 0;
2940
2941error:
2942 return ret;
d41f73b7 2943}
ca22feea
DG
2944
2945/*
2946 * Check if data is still being extracted from the buffers for a specific
4e9a4686
DG
2947 * stream. Consumer data lock MUST be acquired before calling this function
2948 * and the stream lock.
ca22feea 2949 *
6d805429 2950 * Return 1 if the traced data are still getting read else 0 meaning that the
ca22feea
DG
2951 * data is available for trace viewer reading.
2952 */
6d805429 2953int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
ca22feea
DG
2954{
2955 int ret;
2956
2957 assert(stream);
ffe60014 2958 assert(stream->ustream);
ca22feea 2959
6d805429 2960 DBG("UST consumer checking data pending");
c8f59ee5 2961
ca6b395f
MD
2962 if (stream->endpoint_status != CONSUMER_ENDPOINT_ACTIVE) {
2963 ret = 0;
2964 goto end;
2965 }
2966
04ef1097 2967 if (stream->chan->type == CONSUMER_CHANNEL_TYPE_METADATA) {
e6ee4eab
DG
2968 uint64_t contiguous, pushed;
2969
2970 /* Ease our life a bit. */
c585821b 2971 contiguous = stream->chan->metadata_cache->max_offset;
e6ee4eab
DG
2972 pushed = stream->ust_metadata_pushed;
2973
04ef1097
MD
2974 /*
2975 * We can simply check whether all contiguously available data
2976 * has been pushed to the ring buffer, since the push operation
2977 * is performed within get_next_subbuf(), and because both
2978 * get_next_subbuf() and put_next_subbuf() are issued atomically
2979 * thanks to the stream lock within
2980 * lttng_ustconsumer_read_subbuffer(). This basically means that
2981 * whetnever ust_metadata_pushed is incremented, the associated
2982 * metadata has been consumed from the metadata stream.
2983 */
2984 DBG("UST consumer metadata pending check: contiguous %" PRIu64 " vs pushed %" PRIu64,
e6ee4eab 2985 contiguous, pushed);
aa01b94c 2986 assert(((int64_t) (contiguous - pushed)) >= 0);
e6ee4eab 2987 if ((contiguous != pushed) ||
6acdf328 2988 (((int64_t) contiguous - pushed) > 0 || contiguous == 0)) {
04ef1097
MD
2989 ret = 1; /* Data is pending */
2990 goto end;
2991 }
2992 } else {
2993 ret = ustctl_get_next_subbuf(stream->ustream);
2994 if (ret == 0) {
2995 /*
2996 * There is still data so let's put back this
2997 * subbuffer.
2998 */
2999 ret = ustctl_put_subbuf(stream->ustream);
3000 assert(ret == 0);
3001 ret = 1; /* Data is pending */
3002 goto end;
3003 }
ca22feea
DG
3004 }
3005
6d805429
DG
3006 /* Data is NOT pending so ready to be read. */
3007 ret = 0;
ca22feea 3008
6efae65e
DG
3009end:
3010 return ret;
ca22feea 3011}
d88aee68 3012
6d574024
DG
3013/*
3014 * Stop a given metadata channel timer if enabled and close the wait fd which
3015 * is the poll pipe of the metadata stream.
3016 *
3017 * This MUST be called with the metadata channel acquired.
3018 */
3019void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel *metadata)
3020{
3021 int ret;
3022
3023 assert(metadata);
3024 assert(metadata->type == CONSUMER_CHANNEL_TYPE_METADATA);
3025
3026 DBG("Closing metadata channel key %" PRIu64, metadata->key);
3027
3028 if (metadata->switch_timer_enabled == 1) {
3029 consumer_timer_switch_stop(metadata);
3030 }
3031
3032 if (!metadata->metadata_stream) {
3033 goto end;
3034 }
3035
3036 /*
3037 * Closing write side so the thread monitoring the stream wakes up if any
3038 * and clean the metadata stream.
3039 */
3040 if (metadata->metadata_stream->ust_metadata_poll_pipe[1] >= 0) {
3041 ret = close(metadata->metadata_stream->ust_metadata_poll_pipe[1]);
3042 if (ret < 0) {
3043 PERROR("closing metadata pipe write side");
3044 }
3045 metadata->metadata_stream->ust_metadata_poll_pipe[1] = -1;
3046 }
3047
3048end:
3049 return;
3050}
3051
d88aee68
DG
3052/*
3053 * Close every metadata stream wait fd of the metadata hash table. This
3054 * function MUST be used very carefully so not to run into a race between the
3055 * metadata thread handling streams and this function closing their wait fd.
3056 *
3057 * For UST, this is used when the session daemon hangs up. Its the metadata
3058 * producer so calling this is safe because we are assured that no state change
3059 * can occur in the metadata thread for the streams in the hash table.
3060 */
6d574024 3061void lttng_ustconsumer_close_all_metadata(struct lttng_ht *metadata_ht)
d88aee68 3062{
d88aee68
DG
3063 struct lttng_ht_iter iter;
3064 struct lttng_consumer_stream *stream;
3065
3066 assert(metadata_ht);
3067 assert(metadata_ht->ht);
3068
3069 DBG("UST consumer closing all metadata streams");
3070
3071 rcu_read_lock();
3072 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream,
3073 node.node) {
9ce5646a
MD
3074
3075 health_code_update();
3076
be2b50c7 3077 pthread_mutex_lock(&stream->chan->lock);
6d574024 3078 lttng_ustconsumer_close_metadata(stream->chan);
be2b50c7
DG
3079 pthread_mutex_unlock(&stream->chan->lock);
3080
d88aee68
DG
3081 }
3082 rcu_read_unlock();
3083}
d8ef542d
MD
3084
3085void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream)
3086{
3087 int ret;
3088
3089 ret = ustctl_stream_close_wakeup_fd(stream->ustream);
3090 if (ret < 0) {
3091 ERR("Unable to close wakeup fd");
3092 }
3093}
331744e3 3094
f666ae70
MD
3095/*
3096 * Please refer to consumer-timer.c before adding any lock within this
3097 * function or any of its callees. Timers have a very strict locking
3098 * semantic with respect to teardown. Failure to respect this semantic
3099 * introduces deadlocks.
c585821b
MD
3100 *
3101 * DON'T hold the metadata lock when calling this function, else this
3102 * can cause deadlock involving consumer awaiting for metadata to be
3103 * pushed out due to concurrent interaction with the session daemon.
f666ae70 3104 */
331744e3 3105int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
94d49140 3106 struct lttng_consumer_channel *channel, int timer, int wait)
331744e3
JD
3107{
3108 struct lttcomm_metadata_request_msg request;
3109 struct lttcomm_consumer_msg msg;
0c759fc9 3110 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
93ec662e 3111 uint64_t len, key, offset, version;
331744e3
JD
3112 int ret;
3113
3114 assert(channel);
3115 assert(channel->metadata_cache);
3116
53efb85a
MD
3117 memset(&request, 0, sizeof(request));
3118
331744e3
JD
3119 /* send the metadata request to sessiond */
3120 switch (consumer_data.type) {
3121 case LTTNG_CONSUMER64_UST:
3122 request.bits_per_long = 64;
3123 break;
3124 case LTTNG_CONSUMER32_UST:
3125 request.bits_per_long = 32;
3126 break;
3127 default:
3128 request.bits_per_long = 0;
3129 break;
3130 }
3131
3132 request.session_id = channel->session_id;
1950109e 3133 request.session_id_per_pid = channel->session_id_per_pid;
567eb353
DG
3134 /*
3135 * Request the application UID here so the metadata of that application can
3136 * be sent back. The channel UID corresponds to the user UID of the session
3137 * used for the rights on the stream file(s).
3138 */
3139 request.uid = channel->ust_app_uid;
331744e3 3140 request.key = channel->key;
567eb353 3141
1950109e 3142 DBG("Sending metadata request to sessiond, session id %" PRIu64
3e25d926 3143 ", per-pid %" PRIu64 ", app UID %u and channel key %" PRIu64,
567eb353
DG
3144 request.session_id, request.session_id_per_pid, request.uid,
3145 request.key);
331744e3 3146
75d83e50 3147 pthread_mutex_lock(&ctx->metadata_socket_lock);
9ce5646a
MD
3148
3149 health_code_update();
3150
331744e3
JD
3151 ret = lttcomm_send_unix_sock(ctx->consumer_metadata_socket, &request,
3152 sizeof(request));
3153 if (ret < 0) {
3154 ERR("Asking metadata to sessiond");
3155 goto end;
3156 }
3157
9ce5646a
MD
3158 health_code_update();
3159
331744e3
JD
3160 /* Receive the metadata from sessiond */
3161 ret = lttcomm_recv_unix_sock(ctx->consumer_metadata_socket, &msg,
3162 sizeof(msg));
3163 if (ret != sizeof(msg)) {
8fd623e0 3164 DBG("Consumer received unexpected message size %d (expects %zu)",
331744e3
JD
3165 ret, sizeof(msg));
3166 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
3167 /*
3168 * The ret value might 0 meaning an orderly shutdown but this is ok
3169 * since the caller handles this.
3170 */
3171 goto end;
3172 }
3173
9ce5646a
MD
3174 health_code_update();
3175
331744e3
JD
3176 if (msg.cmd_type == LTTNG_ERR_UND) {
3177 /* No registry found */
3178 (void) consumer_send_status_msg(ctx->consumer_metadata_socket,
3179 ret_code);
3180 ret = 0;
3181 goto end;
3182 } else if (msg.cmd_type != LTTNG_CONSUMER_PUSH_METADATA) {
3183 ERR("Unexpected cmd_type received %d", msg.cmd_type);
3184 ret = -1;
3185 goto end;
3186 }
3187
3188 len = msg.u.push_metadata.len;
3189 key = msg.u.push_metadata.key;
3190 offset = msg.u.push_metadata.target_offset;
93ec662e 3191 version = msg.u.push_metadata.version;
331744e3
JD
3192
3193 assert(key == channel->key);
3194 if (len == 0) {
3195 DBG("No new metadata to receive for key %" PRIu64, key);
3196 }
3197
9ce5646a
MD
3198 health_code_update();
3199
331744e3
JD
3200 /* Tell session daemon we are ready to receive the metadata. */
3201 ret = consumer_send_status_msg(ctx->consumer_metadata_socket,
0c759fc9 3202 LTTCOMM_CONSUMERD_SUCCESS);
331744e3
JD
3203 if (ret < 0 || len == 0) {
3204 /*
3205 * Somehow, the session daemon is not responding anymore or there is
3206 * nothing to receive.
3207 */
3208 goto end;
3209 }
3210
9ce5646a
MD
3211 health_code_update();
3212
1eb682be 3213 ret = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket,
93ec662e 3214 key, offset, len, version, channel, timer, wait);
1eb682be 3215 if (ret >= 0) {
f2a444f1
DG
3216 /*
3217 * Only send the status msg if the sessiond is alive meaning a positive
3218 * ret code.
3219 */
1eb682be 3220 (void) consumer_send_status_msg(ctx->consumer_metadata_socket, ret);
f2a444f1 3221 }
331744e3
JD
3222 ret = 0;
3223
3224end:
9ce5646a
MD
3225 health_code_update();
3226
75d83e50 3227 pthread_mutex_unlock(&ctx->metadata_socket_lock);
331744e3
JD
3228 return ret;
3229}
70190e1c
DG
3230
3231/*
3232 * Return the ustctl call for the get stream id.
3233 */
3234int lttng_ustconsumer_get_stream_id(struct lttng_consumer_stream *stream,
3235 uint64_t *stream_id)
3236{
3237 assert(stream);
3238 assert(stream_id);
3239
3240 return ustctl_get_stream_id(stream->ustream, stream_id);
3241}
This page took 0.250411 seconds and 5 git commands to generate.