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