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