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