Clarify limitations of the --syscall flag with enable-event command
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.c
CommitLineData
3bd1e081
MD
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
d14d33bf
AM
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
3bd1e081
MD
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
d14d33bf
AM
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3bd1e081
MD
17 */
18
19#define _GNU_SOURCE
20#include <assert.h>
f02e1e8a 21#include <lttng/ust-ctl.h>
3bd1e081
MD
22#include <poll.h>
23#include <pthread.h>
24#include <stdlib.h>
25#include <string.h>
26#include <sys/mman.h>
27#include <sys/socket.h>
dbb5dfe6 28#include <sys/stat.h>
3bd1e081 29#include <sys/types.h>
77c7c900 30#include <inttypes.h>
3bd1e081 31#include <unistd.h>
ffe60014 32#include <urcu/list.h>
331744e3 33#include <signal.h>
0857097f 34
51a9e1c7 35#include <bin/lttng-consumerd/health-consumerd.h>
990570ed 36#include <common/common.h>
10a8a223 37#include <common/sessiond-comm/sessiond-comm.h>
00e2e675 38#include <common/relayd/relayd.h>
dbb5dfe6 39#include <common/compat/fcntl.h>
331744e3 40#include <common/consumer-metadata-cache.h>
10a50311 41#include <common/consumer-stream.h>
331744e3 42#include <common/consumer-timer.h>
fe4477ee 43#include <common/utils.h>
309167d2 44#include <common/index/index.h>
10a8a223
DG
45
46#include "ust-consumer.h"
3bd1e081
MD
47
48extern struct lttng_consumer_global_data consumer_data;
49extern int consumer_poll_timeout;
50extern volatile int consumer_quit;
51
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
61 assert(channel);
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
ffe60014
DG
70 cds_list_del(&stream->send_node);
71 ustctl_destroy_stream(stream->ustream);
72 free(stream);
73 }
74
75 /*
76 * If a channel is available meaning that was created before the streams
77 * were, delete it.
78 */
79 if (channel->uchan) {
80 lttng_ustconsumer_del_channel(channel);
81 }
82 free(channel);
83}
3bd1e081
MD
84
85/*
ffe60014 86 * Add channel to internal consumer state.
3bd1e081 87 *
ffe60014 88 * Returns 0 on success or else a negative value.
3bd1e081 89 */
ffe60014
DG
90static int add_channel(struct lttng_consumer_channel *channel,
91 struct lttng_consumer_local_data *ctx)
3bd1e081
MD
92{
93 int ret = 0;
94
ffe60014
DG
95 assert(channel);
96 assert(ctx);
97
98 if (ctx->on_recv_channel != NULL) {
99 ret = ctx->on_recv_channel(channel);
100 if (ret == 0) {
d8ef542d 101 ret = consumer_add_channel(channel, ctx);
ffe60014
DG
102 } else if (ret < 0) {
103 /* Most likely an ENOMEM. */
104 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
105 goto error;
106 }
107 } else {
d8ef542d 108 ret = consumer_add_channel(channel, ctx);
3bd1e081
MD
109 }
110
d88aee68 111 DBG("UST consumer channel added (key: %" PRIu64 ")", channel->key);
ffe60014
DG
112
113error:
3bd1e081
MD
114 return ret;
115}
116
117/*
ffe60014
DG
118 * Allocate and return a consumer channel object.
119 */
120static struct lttng_consumer_channel *allocate_channel(uint64_t session_id,
121 const char *pathname, const char *name, uid_t uid, gid_t gid,
da009f2c 122 uint64_t relayd_id, uint64_t key, enum lttng_event_output output,
2bba9e53 123 uint64_t tracefile_size, uint64_t tracefile_count,
ecc48a90
JD
124 uint64_t session_id_per_pid, unsigned int monitor,
125 unsigned int live_timer_interval)
ffe60014
DG
126{
127 assert(pathname);
128 assert(name);
129
1950109e
JD
130 return consumer_allocate_channel(key, session_id, pathname, name, uid,
131 gid, relayd_id, output, tracefile_size,
ecc48a90 132 tracefile_count, session_id_per_pid, monitor, live_timer_interval);
ffe60014
DG
133}
134
135/*
136 * Allocate and return a consumer stream object. If _alloc_ret is not NULL, the
137 * error value if applicable is set in it else it is kept untouched.
3bd1e081 138 *
ffe60014 139 * Return NULL on error else the newly allocated stream object.
3bd1e081 140 */
ffe60014
DG
141static struct lttng_consumer_stream *allocate_stream(int cpu, int key,
142 struct lttng_consumer_channel *channel,
143 struct lttng_consumer_local_data *ctx, int *_alloc_ret)
144{
145 int alloc_ret;
146 struct lttng_consumer_stream *stream = NULL;
147
148 assert(channel);
149 assert(ctx);
150
151 stream = consumer_allocate_stream(channel->key,
152 key,
153 LTTNG_CONSUMER_ACTIVE_STREAM,
154 channel->name,
155 channel->uid,
156 channel->gid,
157 channel->relayd_id,
158 channel->session_id,
159 cpu,
160 &alloc_ret,
4891ece8
DG
161 channel->type,
162 channel->monitor);
ffe60014
DG
163 if (stream == NULL) {
164 switch (alloc_ret) {
165 case -ENOENT:
166 /*
167 * We could not find the channel. Can happen if cpu hotplug
168 * happens while tearing down.
169 */
170 DBG3("Could not find channel");
171 break;
172 case -ENOMEM:
173 case -EINVAL:
174 default:
175 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
176 break;
177 }
178 goto error;
179 }
180
181 stream->chan = channel;
182
183error:
184 if (_alloc_ret) {
185 *_alloc_ret = alloc_ret;
186 }
187 return stream;
188}
189
190/*
191 * Send the given stream pointer to the corresponding thread.
192 *
193 * Returns 0 on success else a negative value.
194 */
195static int send_stream_to_thread(struct lttng_consumer_stream *stream,
196 struct lttng_consumer_local_data *ctx)
197{
dae10966
DG
198 int ret;
199 struct lttng_pipe *stream_pipe;
ffe60014
DG
200
201 /* Get the right pipe where the stream will be sent. */
202 if (stream->metadata_flag) {
5ab66908
MD
203 ret = consumer_add_metadata_stream(stream);
204 if (ret) {
205 ERR("Consumer add metadata stream %" PRIu64 " failed.",
206 stream->key);
207 goto error;
208 }
dae10966 209 stream_pipe = ctx->consumer_metadata_pipe;
ffe60014 210 } else {
5ab66908
MD
211 ret = consumer_add_data_stream(stream);
212 if (ret) {
213 ERR("Consumer add stream %" PRIu64 " failed.",
214 stream->key);
215 goto error;
216 }
dae10966 217 stream_pipe = ctx->consumer_data_pipe;
ffe60014
DG
218 }
219
5ab66908
MD
220 /*
221 * From this point on, the stream's ownership has been moved away from
222 * the channel and becomes globally visible.
223 */
224 stream->globally_visible = 1;
225
dae10966 226 ret = lttng_pipe_write(stream_pipe, &stream, sizeof(stream));
ffe60014 227 if (ret < 0) {
dae10966
DG
228 ERR("Consumer write %s stream to pipe %d",
229 stream->metadata_flag ? "metadata" : "data",
230 lttng_pipe_get_writefd(stream_pipe));
5ab66908
MD
231 if (stream->metadata_flag) {
232 consumer_del_stream_for_metadata(stream);
233 } else {
234 consumer_del_stream_for_data(stream);
235 }
ffe60014 236 }
5ab66908 237error:
ffe60014
DG
238 return ret;
239}
240
d88aee68
DG
241/*
242 * Create streams for the given channel using liblttng-ust-ctl.
243 *
244 * Return 0 on success else a negative value.
245 */
ffe60014
DG
246static int create_ust_streams(struct lttng_consumer_channel *channel,
247 struct lttng_consumer_local_data *ctx)
248{
249 int ret, cpu = 0;
250 struct ustctl_consumer_stream *ustream;
251 struct lttng_consumer_stream *stream;
252
253 assert(channel);
254 assert(ctx);
255
256 /*
257 * While a stream is available from ustctl. When NULL is returned, we've
258 * reached the end of the possible stream for the channel.
259 */
260 while ((ustream = ustctl_create_stream(channel->uchan, cpu))) {
261 int wait_fd;
04ef1097 262 int ust_metadata_pipe[2];
ffe60014 263
9ce5646a
MD
264 health_code_update();
265
04ef1097
MD
266 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && channel->monitor) {
267 ret = utils_create_pipe_cloexec_nonblock(ust_metadata_pipe);
268 if (ret < 0) {
269 ERR("Create ust metadata poll pipe");
270 goto error;
271 }
272 wait_fd = ust_metadata_pipe[0];
273 } else {
274 wait_fd = ustctl_stream_get_wait_fd(ustream);
275 }
ffe60014
DG
276
277 /* Allocate consumer stream object. */
278 stream = allocate_stream(cpu, wait_fd, channel, ctx, &ret);
279 if (!stream) {
280 goto error_alloc;
281 }
282 stream->ustream = ustream;
283 /*
284 * Store it so we can save multiple function calls afterwards since
285 * this value is used heavily in the stream threads. This is UST
286 * specific so this is why it's done after allocation.
287 */
288 stream->wait_fd = wait_fd;
289
b31398bb
DG
290 /*
291 * Increment channel refcount since the channel reference has now been
292 * assigned in the allocation process above.
293 */
10a50311
JD
294 if (stream->chan->monitor) {
295 uatomic_inc(&stream->chan->refcount);
296 }
b31398bb 297
ffe60014
DG
298 /*
299 * Order is important this is why a list is used. On error, the caller
300 * should clean this list.
301 */
302 cds_list_add_tail(&stream->send_node, &channel->streams.head);
303
304 ret = ustctl_get_max_subbuf_size(stream->ustream,
305 &stream->max_sb_size);
306 if (ret < 0) {
307 ERR("ustctl_get_max_subbuf_size failed for stream %s",
308 stream->name);
309 goto error;
310 }
311
312 /* Do actions once stream has been received. */
313 if (ctx->on_recv_stream) {
314 ret = ctx->on_recv_stream(stream);
315 if (ret < 0) {
316 goto error;
317 }
318 }
319
d88aee68 320 DBG("UST consumer add stream %s (key: %" PRIu64 ") with relayd id %" PRIu64,
ffe60014
DG
321 stream->name, stream->key, stream->relayd_stream_id);
322
323 /* Set next CPU stream. */
324 channel->streams.count = ++cpu;
d88aee68
DG
325
326 /* Keep stream reference when creating metadata. */
327 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA) {
328 channel->metadata_stream = stream;
04ef1097
MD
329 stream->ust_metadata_poll_pipe[0] = ust_metadata_pipe[0];
330 stream->ust_metadata_poll_pipe[1] = ust_metadata_pipe[1];
d88aee68 331 }
ffe60014
DG
332 }
333
334 return 0;
335
336error:
337error_alloc:
338 return ret;
339}
340
341/*
342 * Create an UST channel with the given attributes and send it to the session
343 * daemon using the ust ctl API.
344 *
345 * Return 0 on success or else a negative value.
346 */
347static int create_ust_channel(struct ustctl_consumer_channel_attr *attr,
348 struct ustctl_consumer_channel **chanp)
349{
350 int ret;
351 struct ustctl_consumer_channel *channel;
352
353 assert(attr);
354 assert(chanp);
355
356 DBG3("Creating channel to ustctl with attr: [overwrite: %d, "
357 "subbuf_size: %" PRIu64 ", num_subbuf: %" PRIu64 ", "
358 "switch_timer_interval: %u, read_timer_interval: %u, "
359 "output: %d, type: %d", attr->overwrite, attr->subbuf_size,
360 attr->num_subbuf, attr->switch_timer_interval,
361 attr->read_timer_interval, attr->output, attr->type);
362
363 channel = ustctl_create_channel(attr);
364 if (!channel) {
365 ret = -1;
366 goto error_create;
367 }
368
369 *chanp = channel;
370
371 return 0;
372
373error_create:
374 return ret;
375}
376
d88aee68
DG
377/*
378 * Send a single given stream to the session daemon using the sock.
379 *
380 * Return 0 on success else a negative value.
381 */
ffe60014
DG
382static int send_sessiond_stream(int sock, struct lttng_consumer_stream *stream)
383{
384 int ret;
385
386 assert(stream);
387 assert(sock >= 0);
388
3eb914c0 389 DBG("UST consumer sending stream %" PRIu64 " to sessiond", stream->key);
ffe60014
DG
390
391 /* Send stream to session daemon. */
392 ret = ustctl_send_stream_to_sessiond(sock, stream->ustream);
393 if (ret < 0) {
394 goto error;
395 }
396
ffe60014
DG
397error:
398 return ret;
399}
400
401/*
402 * Send channel to sessiond.
403 *
d88aee68 404 * Return 0 on success or else a negative value.
ffe60014
DG
405 */
406static int send_sessiond_channel(int sock,
407 struct lttng_consumer_channel *channel,
408 struct lttng_consumer_local_data *ctx, int *relayd_error)
409{
0c759fc9 410 int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS;
ffe60014 411 struct lttng_consumer_stream *stream;
a4baae1b 412 uint64_t net_seq_idx = -1ULL;
ffe60014
DG
413
414 assert(channel);
415 assert(ctx);
416 assert(sock >= 0);
417
418 DBG("UST consumer sending channel %s to sessiond", channel->name);
419
62285ea4
DG
420 if (channel->relayd_id != (uint64_t) -1ULL) {
421 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
9ce5646a
MD
422
423 health_code_update();
424
62285ea4
DG
425 /* Try to send the stream to the relayd if one is available. */
426 ret = consumer_send_relayd_stream(stream, stream->chan->pathname);
427 if (ret < 0) {
428 /*
429 * Flag that the relayd was the problem here probably due to a
430 * communicaton error on the socket.
431 */
432 if (relayd_error) {
433 *relayd_error = 1;
434 }
435 ret_code = LTTNG_ERR_RELAYD_CONNECT_FAIL;
ffe60014 436 }
a4baae1b
JD
437 if (net_seq_idx == -1ULL) {
438 net_seq_idx = stream->net_seq_idx;
439 }
440 }
f2a444f1 441 }
ffe60014 442
f2a444f1
DG
443 /* Inform sessiond that we are about to send channel and streams. */
444 ret = consumer_send_status_msg(sock, ret_code);
0c759fc9 445 if (ret < 0 || ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
f2a444f1
DG
446 /*
447 * Either the session daemon is not responding or the relayd died so we
448 * stop now.
449 */
450 goto error;
451 }
452
453 /* Send channel to sessiond. */
454 ret = ustctl_send_channel_to_sessiond(sock, channel->uchan);
455 if (ret < 0) {
456 goto error;
457 }
458
459 ret = ustctl_channel_close_wakeup_fd(channel->uchan);
460 if (ret < 0) {
461 goto error;
462 }
463
464 /* The channel was sent successfully to the sessiond at this point. */
465 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
9ce5646a
MD
466
467 health_code_update();
468
ffe60014
DG
469 /* Send stream to session daemon. */
470 ret = send_sessiond_stream(sock, stream);
471 if (ret < 0) {
472 goto error;
473 }
474 }
475
476 /* Tell sessiond there is no more stream. */
477 ret = ustctl_send_stream_to_sessiond(sock, NULL);
478 if (ret < 0) {
479 goto error;
480 }
481
482 DBG("UST consumer NULL stream sent to sessiond");
483
484 return 0;
485
486error:
0c759fc9 487 if (ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
f2a444f1
DG
488 ret = -1;
489 }
ffe60014
DG
490 return ret;
491}
492
493/*
494 * Creates a channel and streams and add the channel it to the channel internal
495 * state. The created stream must ONLY be sent once the GET_CHANNEL command is
496 * received.
497 *
498 * Return 0 on success or else, a negative value is returned and the channel
499 * MUST be destroyed by consumer_del_channel().
500 */
501static int ask_channel(struct lttng_consumer_local_data *ctx, int sock,
502 struct lttng_consumer_channel *channel,
503 struct ustctl_consumer_channel_attr *attr)
3bd1e081
MD
504{
505 int ret;
506
ffe60014
DG
507 assert(ctx);
508 assert(channel);
509 assert(attr);
510
511 /*
512 * This value is still used by the kernel consumer since for the kernel,
513 * the stream ownership is not IN the consumer so we need to have the
514 * number of left stream that needs to be initialized so we can know when
515 * to delete the channel (see consumer.c).
516 *
517 * As for the user space tracer now, the consumer creates and sends the
518 * stream to the session daemon which only sends them to the application
519 * once every stream of a channel is received making this value useless
520 * because we they will be added to the poll thread before the application
521 * receives them. This ensures that a stream can not hang up during
522 * initilization of a channel.
523 */
524 channel->nb_init_stream_left = 0;
525
526 /* The reply msg status is handled in the following call. */
527 ret = create_ust_channel(attr, &channel->uchan);
528 if (ret < 0) {
10a50311 529 goto end;
3bd1e081
MD
530 }
531
d8ef542d
MD
532 channel->wait_fd = ustctl_channel_get_wait_fd(channel->uchan);
533
10a50311
JD
534 /*
535 * For the snapshots (no monitor), we create the metadata streams
536 * on demand, not during the channel creation.
537 */
538 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && !channel->monitor) {
539 ret = 0;
540 goto end;
541 }
542
ffe60014
DG
543 /* Open all streams for this channel. */
544 ret = create_ust_streams(channel, ctx);
545 if (ret < 0) {
10a50311 546 goto end;
ffe60014
DG
547 }
548
10a50311 549end:
3bd1e081
MD
550 return ret;
551}
552
d88aee68
DG
553/*
554 * Send all stream of a channel to the right thread handling it.
555 *
556 * On error, return a negative value else 0 on success.
557 */
558static int send_streams_to_thread(struct lttng_consumer_channel *channel,
559 struct lttng_consumer_local_data *ctx)
560{
561 int ret = 0;
562 struct lttng_consumer_stream *stream, *stmp;
563
564 assert(channel);
565 assert(ctx);
566
567 /* Send streams to the corresponding thread. */
568 cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head,
569 send_node) {
9ce5646a
MD
570
571 health_code_update();
572
d88aee68
DG
573 /* Sending the stream to the thread. */
574 ret = send_stream_to_thread(stream, ctx);
575 if (ret < 0) {
576 /*
577 * If we are unable to send the stream to the thread, there is
578 * a big problem so just stop everything.
579 */
5ab66908
MD
580 /* Remove node from the channel stream list. */
581 cds_list_del(&stream->send_node);
d88aee68
DG
582 goto error;
583 }
584
585 /* Remove node from the channel stream list. */
586 cds_list_del(&stream->send_node);
4891ece8 587
d88aee68
DG
588 }
589
590error:
591 return ret;
592}
593
7972aab2
DG
594/*
595 * Flush channel's streams using the given key to retrieve the channel.
596 *
597 * Return 0 on success else an LTTng error code.
598 */
599static int flush_channel(uint64_t chan_key)
600{
601 int ret = 0;
602 struct lttng_consumer_channel *channel;
603 struct lttng_consumer_stream *stream;
604 struct lttng_ht *ht;
605 struct lttng_ht_iter iter;
606
8fd623e0 607 DBG("UST consumer flush channel key %" PRIu64, chan_key);
7972aab2 608
a500c257 609 rcu_read_lock();
7972aab2
DG
610 channel = consumer_find_channel(chan_key);
611 if (!channel) {
8fd623e0 612 ERR("UST consumer flush channel %" PRIu64 " not found", chan_key);
7972aab2
DG
613 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
614 goto error;
615 }
616
617 ht = consumer_data.stream_per_chan_id_ht;
618
619 /* For each stream of the channel id, flush it. */
7972aab2
DG
620 cds_lfht_for_each_entry_duplicate(ht->ht,
621 ht->hash_fct(&channel->key, lttng_ht_seed), ht->match_fct,
622 &channel->key, &iter.iter, stream, node_channel_id.node) {
9ce5646a
MD
623
624 health_code_update();
625
b8086166 626 ustctl_flush_buffer(stream->ustream, 1);
7972aab2 627 }
7972aab2 628error:
a500c257 629 rcu_read_unlock();
7972aab2
DG
630 return ret;
631}
632
d88aee68
DG
633/*
634 * Close metadata stream wakeup_fd using the given key to retrieve the channel.
a500c257 635 * RCU read side lock MUST be acquired before calling this function.
d88aee68
DG
636 *
637 * Return 0 on success else an LTTng error code.
638 */
639static int close_metadata(uint64_t chan_key)
640{
ea88ca2a 641 int ret = 0;
d88aee68
DG
642 struct lttng_consumer_channel *channel;
643
8fd623e0 644 DBG("UST consumer close metadata key %" PRIu64, chan_key);
d88aee68
DG
645
646 channel = consumer_find_channel(chan_key);
647 if (!channel) {
84cc9aa0
DG
648 /*
649 * This is possible if the metadata thread has issue a delete because
650 * the endpoint point of the stream hung up. There is no way the
651 * session daemon can know about it thus use a DBG instead of an actual
652 * error.
653 */
654 DBG("UST consumer close metadata %" PRIu64 " not found", chan_key);
d88aee68
DG
655 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
656 goto error;
657 }
658
ea88ca2a 659 pthread_mutex_lock(&consumer_data.lock);
a9838785 660 pthread_mutex_lock(&channel->lock);
73811ecc
DG
661
662 if (cds_lfht_is_node_deleted(&channel->node.node)) {
663 goto error_unlock;
664 }
665
6d574024 666 lttng_ustconsumer_close_metadata(channel);
d88aee68 667
ea88ca2a 668error_unlock:
a9838785 669 pthread_mutex_unlock(&channel->lock);
ea88ca2a 670 pthread_mutex_unlock(&consumer_data.lock);
d88aee68
DG
671error:
672 return ret;
673}
674
675/*
676 * RCU read side lock MUST be acquired before calling this function.
677 *
678 * Return 0 on success else an LTTng error code.
679 */
680static int setup_metadata(struct lttng_consumer_local_data *ctx, uint64_t key)
681{
682 int ret;
683 struct lttng_consumer_channel *metadata;
684
8fd623e0 685 DBG("UST consumer setup metadata key %" PRIu64, key);
d88aee68
DG
686
687 metadata = consumer_find_channel(key);
688 if (!metadata) {
689 ERR("UST consumer push metadata %" PRIu64 " not found", key);
690 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
10a50311
JD
691 goto end;
692 }
693
694 /*
695 * In no monitor mode, the metadata channel has no stream(s) so skip the
696 * ownership transfer to the metadata thread.
697 */
698 if (!metadata->monitor) {
699 DBG("Metadata channel in no monitor");
700 ret = 0;
701 goto end;
d88aee68
DG
702 }
703
704 /*
705 * Send metadata stream to relayd if one available. Availability is
706 * known if the stream is still in the list of the channel.
707 */
708 if (cds_list_empty(&metadata->streams.head)) {
709 ERR("Metadata channel key %" PRIu64 ", no stream available.", key);
710 ret = LTTCOMM_CONSUMERD_ERROR_METADATA;
f5a0c9cf 711 goto error_no_stream;
d88aee68
DG
712 }
713
714 /* Send metadata stream to relayd if needed. */
62285ea4
DG
715 if (metadata->metadata_stream->net_seq_idx != (uint64_t) -1ULL) {
716 ret = consumer_send_relayd_stream(metadata->metadata_stream,
717 metadata->pathname);
718 if (ret < 0) {
719 ret = LTTCOMM_CONSUMERD_ERROR_METADATA;
720 goto error;
721 }
601262d6
JD
722 ret = consumer_send_relayd_streams_sent(
723 metadata->metadata_stream->net_seq_idx);
724 if (ret < 0) {
725 ret = LTTCOMM_CONSUMERD_RELAYD_FAIL;
726 goto error;
727 }
d88aee68
DG
728 }
729
730 ret = send_streams_to_thread(metadata, ctx);
731 if (ret < 0) {
732 /*
733 * If we are unable to send the stream to the thread, there is
734 * a big problem so just stop everything.
735 */
736 ret = LTTCOMM_CONSUMERD_FATAL;
737 goto error;
738 }
739 /* List MUST be empty after or else it could be reused. */
740 assert(cds_list_empty(&metadata->streams.head));
741
10a50311
JD
742 ret = 0;
743 goto end;
d88aee68
DG
744
745error:
f2a444f1
DG
746 /*
747 * Delete metadata channel on error. At this point, the metadata stream can
748 * NOT be monitored by the metadata thread thus having the guarantee that
749 * the stream is still in the local stream list of the channel. This call
750 * will make sure to clean that list.
751 */
f5a0c9cf 752 consumer_stream_destroy(metadata->metadata_stream, NULL);
212d67a2
DG
753 cds_list_del(&metadata->metadata_stream->send_node);
754 metadata->metadata_stream = NULL;
f5a0c9cf 755error_no_stream:
10a50311
JD
756end:
757 return ret;
758}
759
760/*
761 * Snapshot the whole metadata.
762 *
763 * Returns 0 on success, < 0 on error
764 */
765static int snapshot_metadata(uint64_t key, char *path, uint64_t relayd_id,
766 struct lttng_consumer_local_data *ctx)
767{
768 int ret = 0;
10a50311
JD
769 struct lttng_consumer_channel *metadata_channel;
770 struct lttng_consumer_stream *metadata_stream;
771
772 assert(path);
773 assert(ctx);
774
775 DBG("UST consumer snapshot metadata with key %" PRIu64 " at path %s",
776 key, path);
777
778 rcu_read_lock();
779
780 metadata_channel = consumer_find_channel(key);
781 if (!metadata_channel) {
6a00837f
MD
782 ERR("UST snapshot metadata channel not found for key %" PRIu64,
783 key);
10a50311
JD
784 ret = -1;
785 goto error;
786 }
787 assert(!metadata_channel->monitor);
788
9ce5646a
MD
789 health_code_update();
790
10a50311
JD
791 /*
792 * Ask the sessiond if we have new metadata waiting and update the
793 * consumer metadata cache.
794 */
94d49140 795 ret = lttng_ustconsumer_request_metadata(ctx, metadata_channel, 0, 1);
10a50311
JD
796 if (ret < 0) {
797 goto error;
798 }
799
9ce5646a
MD
800 health_code_update();
801
10a50311
JD
802 /*
803 * The metadata stream is NOT created in no monitor mode when the channel
804 * is created on a sessiond ask channel command.
805 */
806 ret = create_ust_streams(metadata_channel, ctx);
807 if (ret < 0) {
808 goto error;
809 }
810
811 metadata_stream = metadata_channel->metadata_stream;
812 assert(metadata_stream);
813
814 if (relayd_id != (uint64_t) -1ULL) {
815 metadata_stream->net_seq_idx = relayd_id;
816 ret = consumer_send_relayd_stream(metadata_stream, path);
817 if (ret < 0) {
818 goto error_stream;
819 }
820 } else {
821 ret = utils_create_stream_file(path, metadata_stream->name,
822 metadata_stream->chan->tracefile_size,
823 metadata_stream->tracefile_count_current,
309167d2 824 metadata_stream->uid, metadata_stream->gid, NULL);
10a50311
JD
825 if (ret < 0) {
826 goto error_stream;
827 }
828 metadata_stream->out_fd = ret;
829 metadata_stream->tracefile_size_current = 0;
830 }
831
04ef1097 832 do {
9ce5646a
MD
833 health_code_update();
834
10a50311
JD
835 ret = lttng_consumer_read_subbuffer(metadata_stream, ctx);
836 if (ret < 0) {
94d49140 837 goto error_stream;
10a50311 838 }
04ef1097 839 } while (ret > 0);
10a50311 840
10a50311
JD
841error_stream:
842 /*
843 * Clean up the stream completly because the next snapshot will use a new
844 * metadata stream.
845 */
10a50311 846 consumer_stream_destroy(metadata_stream, NULL);
212d67a2 847 cds_list_del(&metadata_stream->send_node);
10a50311
JD
848 metadata_channel->metadata_stream = NULL;
849
850error:
851 rcu_read_unlock();
852 return ret;
853}
854
855/*
856 * Take a snapshot of all the stream of a channel.
857 *
858 * Returns 0 on success, < 0 on error
859 */
860static int snapshot_channel(uint64_t key, char *path, uint64_t relayd_id,
5c786ded 861 uint64_t max_stream_size, struct lttng_consumer_local_data *ctx)
10a50311
JD
862{
863 int ret;
864 unsigned use_relayd = 0;
865 unsigned long consumed_pos, produced_pos;
866 struct lttng_consumer_channel *channel;
867 struct lttng_consumer_stream *stream;
868
869 assert(path);
870 assert(ctx);
871
872 rcu_read_lock();
873
874 if (relayd_id != (uint64_t) -1ULL) {
875 use_relayd = 1;
876 }
877
878 channel = consumer_find_channel(key);
879 if (!channel) {
6a00837f 880 ERR("UST snapshot channel not found for key %" PRIu64, key);
10a50311
JD
881 ret = -1;
882 goto error;
883 }
884 assert(!channel->monitor);
6a00837f 885 DBG("UST consumer snapshot channel %" PRIu64, key);
10a50311
JD
886
887 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
9ce5646a
MD
888
889 health_code_update();
890
10a50311
JD
891 /* Lock stream because we are about to change its state. */
892 pthread_mutex_lock(&stream->lock);
893 stream->net_seq_idx = relayd_id;
894
895 if (use_relayd) {
896 ret = consumer_send_relayd_stream(stream, path);
897 if (ret < 0) {
898 goto error_unlock;
899 }
900 } else {
901 ret = utils_create_stream_file(path, stream->name,
902 stream->chan->tracefile_size,
903 stream->tracefile_count_current,
309167d2 904 stream->uid, stream->gid, NULL);
10a50311
JD
905 if (ret < 0) {
906 goto error_unlock;
907 }
908 stream->out_fd = ret;
909 stream->tracefile_size_current = 0;
910
911 DBG("UST consumer snapshot stream %s/%s (%" PRIu64 ")", path,
912 stream->name, stream->key);
913 }
a4baae1b
JD
914 if (relayd_id != -1ULL) {
915 ret = consumer_send_relayd_streams_sent(relayd_id);
916 if (ret < 0) {
917 goto error_unlock;
918 }
919 }
10a50311
JD
920
921 ustctl_flush_buffer(stream->ustream, 1);
922
923 ret = lttng_ustconsumer_take_snapshot(stream);
924 if (ret < 0) {
925 ERR("Taking UST snapshot");
926 goto error_unlock;
927 }
928
929 ret = lttng_ustconsumer_get_produced_snapshot(stream, &produced_pos);
930 if (ret < 0) {
931 ERR("Produced UST snapshot position");
932 goto error_unlock;
933 }
934
935 ret = lttng_ustconsumer_get_consumed_snapshot(stream, &consumed_pos);
936 if (ret < 0) {
937 ERR("Consumerd UST snapshot position");
938 goto error_unlock;
939 }
940
5c786ded
JD
941 /*
942 * The original value is sent back if max stream size is larger than
943 * the possible size of the snapshot. Also, we asume that the session
944 * daemon should never send a maximum stream size that is lower than
945 * subbuffer size.
946 */
947 consumed_pos = consumer_get_consumed_maxsize(consumed_pos,
948 produced_pos, max_stream_size);
949
10a50311
JD
950 while (consumed_pos < produced_pos) {
951 ssize_t read_len;
952 unsigned long len, padded_len;
953
9ce5646a
MD
954 health_code_update();
955
10a50311
JD
956 DBG("UST consumer taking snapshot at pos %lu", consumed_pos);
957
958 ret = ustctl_get_subbuf(stream->ustream, &consumed_pos);
959 if (ret < 0) {
960 if (ret != -EAGAIN) {
961 PERROR("ustctl_get_subbuf snapshot");
962 goto error_close_stream;
963 }
964 DBG("UST consumer get subbuf failed. Skipping it.");
965 consumed_pos += stream->max_sb_size;
966 continue;
967 }
968
969 ret = ustctl_get_subbuf_size(stream->ustream, &len);
970 if (ret < 0) {
971 ERR("Snapshot ustctl_get_subbuf_size");
972 goto error_put_subbuf;
973 }
974
975 ret = ustctl_get_padded_subbuf_size(stream->ustream, &padded_len);
976 if (ret < 0) {
977 ERR("Snapshot ustctl_get_padded_subbuf_size");
978 goto error_put_subbuf;
979 }
980
981 read_len = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, len,
309167d2 982 padded_len - len, NULL);
10a50311
JD
983 if (use_relayd) {
984 if (read_len != len) {
56591bac 985 ret = -EPERM;
10a50311
JD
986 goto error_put_subbuf;
987 }
988 } else {
989 if (read_len != padded_len) {
56591bac 990 ret = -EPERM;
10a50311
JD
991 goto error_put_subbuf;
992 }
993 }
994
995 ret = ustctl_put_subbuf(stream->ustream);
996 if (ret < 0) {
997 ERR("Snapshot ustctl_put_subbuf");
998 goto error_close_stream;
999 }
1000 consumed_pos += stream->max_sb_size;
1001 }
1002
1003 /* Simply close the stream so we can use it on the next snapshot. */
1004 consumer_stream_close(stream);
1005 pthread_mutex_unlock(&stream->lock);
1006 }
1007
1008 rcu_read_unlock();
1009 return 0;
1010
1011error_put_subbuf:
1012 if (ustctl_put_subbuf(stream->ustream) < 0) {
1013 ERR("Snapshot ustctl_put_subbuf");
1014 }
1015error_close_stream:
1016 consumer_stream_close(stream);
1017error_unlock:
1018 pthread_mutex_unlock(&stream->lock);
1019error:
1020 rcu_read_unlock();
d88aee68
DG
1021 return ret;
1022}
1023
331744e3
JD
1024/*
1025 * Receive the metadata updates from the sessiond.
1026 */
1027int lttng_ustconsumer_recv_metadata(int sock, uint64_t key, uint64_t offset,
5e41ebe1 1028 uint64_t len, struct lttng_consumer_channel *channel,
94d49140 1029 int timer, int wait)
331744e3 1030{
0c759fc9 1031 int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS;
331744e3
JD
1032 char *metadata_str;
1033
8fd623e0 1034 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key, len);
331744e3
JD
1035
1036 metadata_str = zmalloc(len * sizeof(char));
1037 if (!metadata_str) {
1038 PERROR("zmalloc metadata string");
1039 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
1040 goto end;
1041 }
1042
9ce5646a
MD
1043 health_code_update();
1044
331744e3
JD
1045 /* Receive metadata string. */
1046 ret = lttcomm_recv_unix_sock(sock, metadata_str, len);
1047 if (ret < 0) {
1048 /* Session daemon is dead so return gracefully. */
1049 ret_code = ret;
1050 goto end_free;
1051 }
1052
9ce5646a
MD
1053 health_code_update();
1054
331744e3
JD
1055 pthread_mutex_lock(&channel->metadata_cache->lock);
1056 ret = consumer_metadata_cache_write(channel, offset, len, metadata_str);
1057 if (ret < 0) {
1058 /* Unable to handle metadata. Notify session daemon. */
1059 ret_code = LTTCOMM_CONSUMERD_ERROR_METADATA;
a32bd775
DG
1060 /*
1061 * Skip metadata flush on write error since the offset and len might
1062 * not have been updated which could create an infinite loop below when
1063 * waiting for the metadata cache to be flushed.
1064 */
1065 pthread_mutex_unlock(&channel->metadata_cache->lock);
a32bd775 1066 goto end_free;
331744e3
JD
1067 }
1068 pthread_mutex_unlock(&channel->metadata_cache->lock);
1069
94d49140
JD
1070 if (!wait) {
1071 goto end_free;
1072 }
5e41ebe1 1073 while (consumer_metadata_cache_flushed(channel, offset + len, timer)) {
331744e3 1074 DBG("Waiting for metadata to be flushed");
9ce5646a
MD
1075
1076 health_code_update();
1077
331744e3
JD
1078 usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME);
1079 }
1080
1081end_free:
1082 free(metadata_str);
1083end:
1084 return ret_code;
1085}
1086
4cbc1a04
DG
1087/*
1088 * Receive command from session daemon and process it.
1089 *
1090 * Return 1 on success else a negative value or 0.
1091 */
3bd1e081
MD
1092int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
1093 int sock, struct pollfd *consumer_sockpoll)
1094{
1095 ssize_t ret;
0c759fc9 1096 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
3bd1e081 1097 struct lttcomm_consumer_msg msg;
ffe60014 1098 struct lttng_consumer_channel *channel = NULL;
3bd1e081 1099
9ce5646a
MD
1100 health_code_update();
1101
3bd1e081
MD
1102 ret = lttcomm_recv_unix_sock(sock, &msg, sizeof(msg));
1103 if (ret != sizeof(msg)) {
173af62f
DG
1104 DBG("Consumer received unexpected message size %zd (expects %zu)",
1105 ret, sizeof(msg));
3be74084
DG
1106 /*
1107 * The ret value might 0 meaning an orderly shutdown but this is ok
1108 * since the caller handles this.
1109 */
489f70e9 1110 if (ret > 0) {
c6857fcf 1111 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
489f70e9
MD
1112 ret = -1;
1113 }
3bd1e081
MD
1114 return ret;
1115 }
9ce5646a
MD
1116
1117 health_code_update();
1118
84382d49
MD
1119 /* deprecated */
1120 assert(msg.cmd_type != LTTNG_CONSUMER_STOP);
3bd1e081 1121
9ce5646a
MD
1122 health_code_update();
1123
3f8e211f 1124 /* relayd needs RCU read-side lock */
b0b335c8
MD
1125 rcu_read_lock();
1126
3bd1e081 1127 switch (msg.cmd_type) {
00e2e675
DG
1128 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET:
1129 {
f50f23d9 1130 /* Session daemon status message are handled in the following call. */
7735ef9e
DG
1131 ret = consumer_add_relayd_socket(msg.u.relayd_sock.net_index,
1132 msg.u.relayd_sock.type, ctx, sock, consumer_sockpoll,
d3e2ba59
JD
1133 &msg.u.relayd_sock.sock, msg.u.relayd_sock.session_id,
1134 msg.u.relayd_sock.relayd_session_id);
00e2e675
DG
1135 goto end_nosignal;
1136 }
173af62f
DG
1137 case LTTNG_CONSUMER_DESTROY_RELAYD:
1138 {
a6ba4fe1 1139 uint64_t index = msg.u.destroy_relayd.net_seq_idx;
173af62f
DG
1140 struct consumer_relayd_sock_pair *relayd;
1141
a6ba4fe1 1142 DBG("UST consumer destroying relayd %" PRIu64, index);
173af62f
DG
1143
1144 /* Get relayd reference if exists. */
a6ba4fe1 1145 relayd = consumer_find_relayd(index);
173af62f 1146 if (relayd == NULL) {
3448e266 1147 DBG("Unable to find relayd %" PRIu64, index);
f50f23d9 1148 ret_code = LTTNG_ERR_NO_CONSUMER;
173af62f
DG
1149 }
1150
a6ba4fe1
DG
1151 /*
1152 * Each relayd socket pair has a refcount of stream attached to it
1153 * which tells if the relayd is still active or not depending on the
1154 * refcount value.
1155 *
1156 * This will set the destroy flag of the relayd object and destroy it
1157 * if the refcount reaches zero when called.
1158 *
1159 * The destroy can happen either here or when a stream fd hangs up.
1160 */
f50f23d9
DG
1161 if (relayd) {
1162 consumer_flag_relayd_for_destroy(relayd);
1163 }
1164
d88aee68 1165 goto end_msg_sessiond;
173af62f 1166 }
3bd1e081
MD
1167 case LTTNG_CONSUMER_UPDATE_STREAM:
1168 {
3f8e211f 1169 rcu_read_unlock();
7ad0a0cb 1170 return -ENOSYS;
3bd1e081 1171 }
6d805429 1172 case LTTNG_CONSUMER_DATA_PENDING:
53632229 1173 {
3be74084 1174 int ret, is_data_pending;
6d805429 1175 uint64_t id = msg.u.data_pending.session_id;
ca22feea 1176
6d805429 1177 DBG("UST consumer data pending command for id %" PRIu64, id);
ca22feea 1178
3be74084 1179 is_data_pending = consumer_data_pending(id);
ca22feea
DG
1180
1181 /* Send back returned value to session daemon */
3be74084
DG
1182 ret = lttcomm_send_unix_sock(sock, &is_data_pending,
1183 sizeof(is_data_pending));
ca22feea 1184 if (ret < 0) {
3be74084 1185 DBG("Error when sending the data pending ret code: %d", ret);
489f70e9 1186 goto error_fatal;
ca22feea 1187 }
f50f23d9
DG
1188
1189 /*
1190 * No need to send back a status message since the data pending
1191 * returned value is the response.
1192 */
ca22feea 1193 break;
53632229 1194 }
ffe60014
DG
1195 case LTTNG_CONSUMER_ASK_CHANNEL_CREATION:
1196 {
1197 int ret;
1198 struct ustctl_consumer_channel_attr attr;
1199
1200 /* Create a plain object and reserve a channel key. */
1201 channel = allocate_channel(msg.u.ask_channel.session_id,
1202 msg.u.ask_channel.pathname, msg.u.ask_channel.name,
1203 msg.u.ask_channel.uid, msg.u.ask_channel.gid,
1204 msg.u.ask_channel.relayd_id, msg.u.ask_channel.key,
1624d5b7
JD
1205 (enum lttng_event_output) msg.u.ask_channel.output,
1206 msg.u.ask_channel.tracefile_size,
2bba9e53 1207 msg.u.ask_channel.tracefile_count,
1950109e 1208 msg.u.ask_channel.session_id_per_pid,
ecc48a90
JD
1209 msg.u.ask_channel.monitor,
1210 msg.u.ask_channel.live_timer_interval);
ffe60014
DG
1211 if (!channel) {
1212 goto end_channel_error;
1213 }
1214
567eb353
DG
1215 /*
1216 * Assign UST application UID to the channel. This value is ignored for
1217 * per PID buffers. This is specific to UST thus setting this after the
1218 * allocation.
1219 */
1220 channel->ust_app_uid = msg.u.ask_channel.ust_app_uid;
1221
ffe60014
DG
1222 /* Build channel attributes from received message. */
1223 attr.subbuf_size = msg.u.ask_channel.subbuf_size;
1224 attr.num_subbuf = msg.u.ask_channel.num_subbuf;
1225 attr.overwrite = msg.u.ask_channel.overwrite;
1226 attr.switch_timer_interval = msg.u.ask_channel.switch_timer_interval;
1227 attr.read_timer_interval = msg.u.ask_channel.read_timer_interval;
7972aab2 1228 attr.chan_id = msg.u.ask_channel.chan_id;
ffe60014
DG
1229 memcpy(attr.uuid, msg.u.ask_channel.uuid, sizeof(attr.uuid));
1230
0c759fc9
DG
1231 /* Match channel buffer type to the UST abi. */
1232 switch (msg.u.ask_channel.output) {
1233 case LTTNG_EVENT_MMAP:
1234 default:
1235 attr.output = LTTNG_UST_MMAP;
1236 break;
1237 }
1238
ffe60014
DG
1239 /* Translate and save channel type. */
1240 switch (msg.u.ask_channel.type) {
1241 case LTTNG_UST_CHAN_PER_CPU:
1242 channel->type = CONSUMER_CHANNEL_TYPE_DATA;
1243 attr.type = LTTNG_UST_CHAN_PER_CPU;
8633d6e3
MD
1244 /*
1245 * Set refcount to 1 for owner. Below, we will
1246 * pass ownership to the
1247 * consumer_thread_channel_poll() thread.
1248 */
1249 channel->refcount = 1;
ffe60014
DG
1250 break;
1251 case LTTNG_UST_CHAN_METADATA:
1252 channel->type = CONSUMER_CHANNEL_TYPE_METADATA;
1253 attr.type = LTTNG_UST_CHAN_METADATA;
1254 break;
1255 default:
1256 assert(0);
1257 goto error_fatal;
1258 };
1259
9ce5646a
MD
1260 health_code_update();
1261
ffe60014
DG
1262 ret = ask_channel(ctx, sock, channel, &attr);
1263 if (ret < 0) {
1264 goto end_channel_error;
1265 }
1266
fc643247
MD
1267 if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) {
1268 ret = consumer_metadata_cache_allocate(channel);
1269 if (ret < 0) {
1270 ERR("Allocating metadata cache");
1271 goto end_channel_error;
1272 }
1273 consumer_timer_switch_start(channel, attr.switch_timer_interval);
1274 attr.switch_timer_interval = 0;
94d49140
JD
1275 } else {
1276 consumer_timer_live_start(channel,
1277 msg.u.ask_channel.live_timer_interval);
fc643247
MD
1278 }
1279
9ce5646a
MD
1280 health_code_update();
1281
ffe60014
DG
1282 /*
1283 * Add the channel to the internal state AFTER all streams were created
1284 * and successfully sent to session daemon. This way, all streams must
1285 * be ready before this channel is visible to the threads.
fc643247
MD
1286 * If add_channel succeeds, ownership of the channel is
1287 * passed to consumer_thread_channel_poll().
ffe60014
DG
1288 */
1289 ret = add_channel(channel, ctx);
1290 if (ret < 0) {
ea88ca2a
MD
1291 if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) {
1292 if (channel->switch_timer_enabled == 1) {
1293 consumer_timer_switch_stop(channel);
1294 }
1295 consumer_metadata_cache_destroy(channel);
1296 }
d3e2ba59
JD
1297 if (channel->live_timer_enabled == 1) {
1298 consumer_timer_live_stop(channel);
1299 }
ffe60014
DG
1300 goto end_channel_error;
1301 }
1302
9ce5646a
MD
1303 health_code_update();
1304
ffe60014
DG
1305 /*
1306 * Channel and streams are now created. Inform the session daemon that
1307 * everything went well and should wait to receive the channel and
1308 * streams with ustctl API.
1309 */
1310 ret = consumer_send_status_channel(sock, channel);
1311 if (ret < 0) {
1312 /*
489f70e9 1313 * There is probably a problem on the socket.
ffe60014 1314 */
489f70e9 1315 goto error_fatal;
ffe60014
DG
1316 }
1317
1318 break;
1319 }
1320 case LTTNG_CONSUMER_GET_CHANNEL:
1321 {
1322 int ret, relayd_err = 0;
d88aee68 1323 uint64_t key = msg.u.get_channel.key;
ffe60014 1324 struct lttng_consumer_channel *channel;
ffe60014
DG
1325
1326 channel = consumer_find_channel(key);
1327 if (!channel) {
8fd623e0 1328 ERR("UST consumer get channel key %" PRIu64 " not found", key);
ffe60014
DG
1329 ret_code = LTTNG_ERR_UST_CHAN_NOT_FOUND;
1330 goto end_msg_sessiond;
1331 }
1332
9ce5646a
MD
1333 health_code_update();
1334
ffe60014
DG
1335 /* Send everything to sessiond. */
1336 ret = send_sessiond_channel(sock, channel, ctx, &relayd_err);
1337 if (ret < 0) {
1338 if (relayd_err) {
1339 /*
1340 * We were unable to send to the relayd the stream so avoid
1341 * sending back a fatal error to the thread since this is OK
f2a444f1
DG
1342 * and the consumer can continue its work. The above call
1343 * has sent the error status message to the sessiond.
ffe60014 1344 */
f2a444f1 1345 goto end_nosignal;
ffe60014
DG
1346 }
1347 /*
1348 * The communicaton was broken hence there is a bad state between
1349 * the consumer and sessiond so stop everything.
1350 */
1351 goto error_fatal;
1352 }
1353
9ce5646a
MD
1354 health_code_update();
1355
10a50311
JD
1356 /*
1357 * In no monitor mode, the streams ownership is kept inside the channel
1358 * so don't send them to the data thread.
1359 */
1360 if (!channel->monitor) {
1361 goto end_msg_sessiond;
1362 }
1363
d88aee68
DG
1364 ret = send_streams_to_thread(channel, ctx);
1365 if (ret < 0) {
1366 /*
1367 * If we are unable to send the stream to the thread, there is
1368 * a big problem so just stop everything.
1369 */
1370 goto error_fatal;
ffe60014 1371 }
ffe60014
DG
1372 /* List MUST be empty after or else it could be reused. */
1373 assert(cds_list_empty(&channel->streams.head));
d88aee68
DG
1374 goto end_msg_sessiond;
1375 }
1376 case LTTNG_CONSUMER_DESTROY_CHANNEL:
1377 {
1378 uint64_t key = msg.u.destroy_channel.key;
d88aee68 1379
a0cbdd2e
MD
1380 /*
1381 * Only called if streams have not been sent to stream
1382 * manager thread. However, channel has been sent to
1383 * channel manager thread.
1384 */
1385 notify_thread_del_channel(ctx, key);
d88aee68 1386 goto end_msg_sessiond;
ffe60014 1387 }
d88aee68
DG
1388 case LTTNG_CONSUMER_CLOSE_METADATA:
1389 {
1390 int ret;
1391
1392 ret = close_metadata(msg.u.close_metadata.key);
1393 if (ret != 0) {
1394 ret_code = ret;
1395 }
1396
1397 goto end_msg_sessiond;
1398 }
7972aab2
DG
1399 case LTTNG_CONSUMER_FLUSH_CHANNEL:
1400 {
1401 int ret;
1402
1403 ret = flush_channel(msg.u.flush_channel.key);
1404 if (ret != 0) {
1405 ret_code = ret;
1406 }
1407
1408 goto end_msg_sessiond;
1409 }
d88aee68 1410 case LTTNG_CONSUMER_PUSH_METADATA:
ffe60014
DG
1411 {
1412 int ret;
d88aee68 1413 uint64_t len = msg.u.push_metadata.len;
d88aee68 1414 uint64_t key = msg.u.push_metadata.key;
331744e3 1415 uint64_t offset = msg.u.push_metadata.target_offset;
ffe60014
DG
1416 struct lttng_consumer_channel *channel;
1417
8fd623e0
DG
1418 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key,
1419 len);
ffe60014
DG
1420
1421 channel = consumer_find_channel(key);
1422 if (!channel) {
000baf6a
DG
1423 /*
1424 * This is possible if the metadata creation on the consumer side
1425 * is in flight vis-a-vis a concurrent push metadata from the
1426 * session daemon. Simply return that the channel failed and the
1427 * session daemon will handle that message correctly considering
1428 * that this race is acceptable thus the DBG() statement here.
1429 */
1430 DBG("UST consumer push metadata %" PRIu64 " not found", key);
1431 ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL;
4a2eb0ca 1432 goto end_msg_sessiond;
d88aee68
DG
1433 }
1434
9ce5646a
MD
1435 health_code_update();
1436
d88aee68 1437 /* Tell session daemon we are ready to receive the metadata. */
0c759fc9 1438 ret = consumer_send_status_msg(sock, LTTCOMM_CONSUMERD_SUCCESS);
ffe60014
DG
1439 if (ret < 0) {
1440 /* Somehow, the session daemon is not responding anymore. */
d88aee68
DG
1441 goto error_fatal;
1442 }
1443
9ce5646a
MD
1444 health_code_update();
1445
d88aee68 1446 /* Wait for more data. */
9ce5646a
MD
1447 health_poll_entry();
1448 ret = lttng_consumer_poll_socket(consumer_sockpoll);
1449 health_poll_exit();
84382d49 1450 if (ret) {
489f70e9 1451 goto error_fatal;
d88aee68
DG
1452 }
1453
9ce5646a
MD
1454 health_code_update();
1455
331744e3 1456 ret = lttng_ustconsumer_recv_metadata(sock, key, offset,
94d49140 1457 len, channel, 0, 1);
d88aee68 1458 if (ret < 0) {
331744e3 1459 /* error receiving from sessiond */
489f70e9 1460 goto error_fatal;
331744e3
JD
1461 } else {
1462 ret_code = ret;
d88aee68
DG
1463 goto end_msg_sessiond;
1464 }
d88aee68
DG
1465 }
1466 case LTTNG_CONSUMER_SETUP_METADATA:
1467 {
1468 int ret;
1469
1470 ret = setup_metadata(ctx, msg.u.setup_metadata.key);
1471 if (ret) {
1472 ret_code = ret;
1473 }
1474 goto end_msg_sessiond;
ffe60014 1475 }
6dc3064a
DG
1476 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL:
1477 {
10a50311
JD
1478 if (msg.u.snapshot_channel.metadata) {
1479 ret = snapshot_metadata(msg.u.snapshot_channel.key,
1480 msg.u.snapshot_channel.pathname,
1481 msg.u.snapshot_channel.relayd_id,
1482 ctx);
1483 if (ret < 0) {
1484 ERR("Snapshot metadata failed");
1485 ret_code = LTTNG_ERR_UST_META_FAIL;
1486 }
1487 } else {
1488 ret = snapshot_channel(msg.u.snapshot_channel.key,
1489 msg.u.snapshot_channel.pathname,
1490 msg.u.snapshot_channel.relayd_id,
5c786ded 1491 msg.u.snapshot_channel.max_stream_size,
10a50311
JD
1492 ctx);
1493 if (ret < 0) {
1494 ERR("Snapshot channel failed");
1495 ret_code = LTTNG_ERR_UST_CHAN_FAIL;
1496 }
1497 }
1498
9ce5646a 1499 health_code_update();
6dc3064a
DG
1500 ret = consumer_send_status_msg(sock, ret_code);
1501 if (ret < 0) {
1502 /* Somehow, the session daemon is not responding anymore. */
1503 goto end_nosignal;
1504 }
9ce5646a 1505 health_code_update();
6dc3064a
DG
1506 break;
1507 }
3bd1e081
MD
1508 default:
1509 break;
1510 }
3f8e211f 1511
3bd1e081 1512end_nosignal:
b0b335c8 1513 rcu_read_unlock();
4cbc1a04 1514
9ce5646a
MD
1515 health_code_update();
1516
4cbc1a04
DG
1517 /*
1518 * Return 1 to indicate success since the 0 value can be a socket
1519 * shutdown during the recv() or send() call.
1520 */
1521 return 1;
ffe60014
DG
1522
1523end_msg_sessiond:
1524 /*
1525 * The returned value here is not useful since either way we'll return 1 to
1526 * the caller because the session daemon socket management is done
1527 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
1528 */
489f70e9
MD
1529 ret = consumer_send_status_msg(sock, ret_code);
1530 if (ret < 0) {
1531 goto error_fatal;
1532 }
ffe60014 1533 rcu_read_unlock();
9ce5646a
MD
1534
1535 health_code_update();
1536
ffe60014
DG
1537 return 1;
1538end_channel_error:
1539 if (channel) {
1540 /*
1541 * Free channel here since no one has a reference to it. We don't
1542 * free after that because a stream can store this pointer.
1543 */
1544 destroy_channel(channel);
1545 }
1546 /* We have to send a status channel message indicating an error. */
1547 ret = consumer_send_status_channel(sock, NULL);
1548 if (ret < 0) {
1549 /* Stop everything if session daemon can not be notified. */
1550 goto error_fatal;
1551 }
1552 rcu_read_unlock();
9ce5646a
MD
1553
1554 health_code_update();
1555
ffe60014
DG
1556 return 1;
1557error_fatal:
1558 rcu_read_unlock();
1559 /* This will issue a consumer stop. */
1560 return -1;
3bd1e081
MD
1561}
1562
ffe60014
DG
1563/*
1564 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1565 * compiled out, we isolate it in this library.
1566 */
1567int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
1568 unsigned long *off)
3bd1e081 1569{
ffe60014
DG
1570 assert(stream);
1571 assert(stream->ustream);
b5c5fc29 1572
ffe60014 1573 return ustctl_get_mmap_read_offset(stream->ustream, off);
3bd1e081
MD
1574}
1575
ffe60014
DG
1576/*
1577 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1578 * compiled out, we isolate it in this library.
1579 */
1580void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream)
d056b477 1581{
ffe60014
DG
1582 assert(stream);
1583 assert(stream->ustream);
1584
1585 return ustctl_get_mmap_base(stream->ustream);
d056b477
MD
1586}
1587
ffe60014
DG
1588/*
1589 * Take a snapshot for a specific fd
1590 *
1591 * Returns 0 on success, < 0 on error
1592 */
1593int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream)
3bd1e081 1594{
ffe60014
DG
1595 assert(stream);
1596 assert(stream->ustream);
1597
1598 return ustctl_snapshot(stream->ustream);
3bd1e081
MD
1599}
1600
ffe60014
DG
1601/*
1602 * Get the produced position
1603 *
1604 * Returns 0 on success, < 0 on error
1605 */
1606int lttng_ustconsumer_get_produced_snapshot(
1607 struct lttng_consumer_stream *stream, unsigned long *pos)
3bd1e081 1608{
ffe60014
DG
1609 assert(stream);
1610 assert(stream->ustream);
1611 assert(pos);
7a57cf92 1612
ffe60014
DG
1613 return ustctl_snapshot_get_produced(stream->ustream, pos);
1614}
7a57cf92 1615
10a50311
JD
1616/*
1617 * Get the consumed position
1618 *
1619 * Returns 0 on success, < 0 on error
1620 */
1621int lttng_ustconsumer_get_consumed_snapshot(
1622 struct lttng_consumer_stream *stream, unsigned long *pos)
1623{
1624 assert(stream);
1625 assert(stream->ustream);
1626 assert(pos);
1627
1628 return ustctl_snapshot_get_consumed(stream->ustream, pos);
1629}
1630
84a182ce
DG
1631void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream *stream,
1632 int producer)
1633{
1634 assert(stream);
1635 assert(stream->ustream);
1636
1637 ustctl_flush_buffer(stream->ustream, producer);
1638}
1639
1640int lttng_ustconsumer_get_current_timestamp(
1641 struct lttng_consumer_stream *stream, uint64_t *ts)
1642{
1643 assert(stream);
1644 assert(stream->ustream);
1645 assert(ts);
1646
1647 return ustctl_get_current_timestamp(stream->ustream, ts);
1648}
1649
ffe60014
DG
1650/*
1651 * Called when the stream signal the consumer that it has hang up.
1652 */
1653void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
1654{
1655 assert(stream);
1656 assert(stream->ustream);
2c1dd183 1657
ffe60014
DG
1658 ustctl_flush_buffer(stream->ustream, 0);
1659 stream->hangup_flush_done = 1;
1660}
ee77a7b0 1661
ffe60014
DG
1662void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
1663{
1664 assert(chan);
1665 assert(chan->uchan);
e316aad5 1666
ea88ca2a
MD
1667 if (chan->switch_timer_enabled == 1) {
1668 consumer_timer_switch_stop(chan);
1669 }
1670 consumer_metadata_cache_destroy(chan);
ffe60014 1671 ustctl_destroy_channel(chan->uchan);
3bd1e081
MD
1672}
1673
1674void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
1675{
ffe60014
DG
1676 assert(stream);
1677 assert(stream->ustream);
d41f73b7 1678
ea88ca2a
MD
1679 if (stream->chan->switch_timer_enabled == 1) {
1680 consumer_timer_switch_stop(stream->chan);
1681 }
ffe60014
DG
1682 ustctl_destroy_stream(stream->ustream);
1683}
d41f73b7 1684
6d574024
DG
1685int lttng_ustconsumer_get_wakeup_fd(struct lttng_consumer_stream *stream)
1686{
1687 assert(stream);
1688 assert(stream->ustream);
1689
1690 return ustctl_stream_get_wakeup_fd(stream->ustream);
1691}
1692
1693int lttng_ustconsumer_close_wakeup_fd(struct lttng_consumer_stream *stream)
1694{
1695 assert(stream);
1696 assert(stream->ustream);
1697
1698 return ustctl_stream_close_wakeup_fd(stream->ustream);
1699}
1700
309167d2
JD
1701/*
1702 * Populate index values of a UST stream. Values are set in big endian order.
1703 *
1704 * Return 0 on success or else a negative value.
1705 */
50adc264 1706static int get_index_values(struct ctf_packet_index *index,
309167d2
JD
1707 struct ustctl_consumer_stream *ustream)
1708{
1709 int ret;
1710
1711 ret = ustctl_get_timestamp_begin(ustream, &index->timestamp_begin);
1712 if (ret < 0) {
1713 PERROR("ustctl_get_timestamp_begin");
1714 goto error;
1715 }
1716 index->timestamp_begin = htobe64(index->timestamp_begin);
1717
1718 ret = ustctl_get_timestamp_end(ustream, &index->timestamp_end);
1719 if (ret < 0) {
1720 PERROR("ustctl_get_timestamp_end");
1721 goto error;
1722 }
1723 index->timestamp_end = htobe64(index->timestamp_end);
1724
1725 ret = ustctl_get_events_discarded(ustream, &index->events_discarded);
1726 if (ret < 0) {
1727 PERROR("ustctl_get_events_discarded");
1728 goto error;
1729 }
1730 index->events_discarded = htobe64(index->events_discarded);
1731
1732 ret = ustctl_get_content_size(ustream, &index->content_size);
1733 if (ret < 0) {
1734 PERROR("ustctl_get_content_size");
1735 goto error;
1736 }
1737 index->content_size = htobe64(index->content_size);
1738
1739 ret = ustctl_get_packet_size(ustream, &index->packet_size);
1740 if (ret < 0) {
1741 PERROR("ustctl_get_packet_size");
1742 goto error;
1743 }
1744 index->packet_size = htobe64(index->packet_size);
1745
1746 ret = ustctl_get_stream_id(ustream, &index->stream_id);
1747 if (ret < 0) {
1748 PERROR("ustctl_get_stream_id");
1749 goto error;
1750 }
1751 index->stream_id = htobe64(index->stream_id);
1752
1753error:
1754 return ret;
1755}
1756
94d49140
JD
1757/*
1758 * Write up to one packet from the metadata cache to the channel.
1759 *
1760 * Returns the number of bytes pushed in the cache, or a negative value
1761 * on error.
1762 */
1763static
1764int commit_one_metadata_packet(struct lttng_consumer_stream *stream)
1765{
1766 ssize_t write_len;
1767 int ret;
1768
1769 pthread_mutex_lock(&stream->chan->metadata_cache->lock);
1770 if (stream->chan->metadata_cache->contiguous
1771 == stream->ust_metadata_pushed) {
1772 ret = 0;
1773 goto end;
1774 }
1775
1776 write_len = ustctl_write_one_packet_to_channel(stream->chan->uchan,
1777 &stream->chan->metadata_cache->data[stream->ust_metadata_pushed],
1778 stream->chan->metadata_cache->contiguous
1779 - stream->ust_metadata_pushed);
1780 assert(write_len != 0);
1781 if (write_len < 0) {
1782 ERR("Writing one metadata packet");
1783 ret = -1;
1784 goto end;
1785 }
1786 stream->ust_metadata_pushed += write_len;
1787
1788 assert(stream->chan->metadata_cache->contiguous >=
1789 stream->ust_metadata_pushed);
1790 ret = write_len;
1791
1792end:
1793 pthread_mutex_unlock(&stream->chan->metadata_cache->lock);
1794 return ret;
1795}
1796
309167d2 1797
94d49140
JD
1798/*
1799 * Sync metadata meaning request them to the session daemon and snapshot to the
1800 * metadata thread can consumer them.
1801 *
1802 * Metadata stream lock MUST be acquired.
1803 *
1804 * Return 0 if new metadatda is available, EAGAIN if the metadata stream
1805 * is empty or a negative value on error.
1806 */
1807int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data *ctx,
1808 struct lttng_consumer_stream *metadata)
1809{
1810 int ret;
1811 int retry = 0;
1812
1813 assert(ctx);
1814 assert(metadata);
1815
1816 /*
1817 * Request metadata from the sessiond, but don't wait for the flush
1818 * because we locked the metadata thread.
1819 */
1820 ret = lttng_ustconsumer_request_metadata(ctx, metadata->chan, 0, 0);
1821 if (ret < 0) {
1822 goto end;
1823 }
1824
1825 ret = commit_one_metadata_packet(metadata);
1826 if (ret <= 0) {
1827 goto end;
1828 } else if (ret > 0) {
1829 retry = 1;
1830 }
1831
1832 ustctl_flush_buffer(metadata->ustream, 1);
1833 ret = ustctl_snapshot(metadata->ustream);
1834 if (ret < 0) {
1835 if (errno != EAGAIN) {
1836 ERR("Sync metadata, taking UST snapshot");
1837 goto end;
1838 }
1839 DBG("No new metadata when syncing them.");
1840 /* No new metadata, exit. */
1841 ret = ENODATA;
1842 goto end;
1843 }
1844
1845 /*
1846 * After this flush, we still need to extract metadata.
1847 */
1848 if (retry) {
1849 ret = EAGAIN;
1850 }
1851
1852end:
1853 return ret;
1854}
1855
02b3d176
DG
1856/*
1857 * Return 0 on success else a negative value.
1858 */
1859static int notify_if_more_data(struct lttng_consumer_stream *stream,
1860 struct lttng_consumer_local_data *ctx)
1861{
1862 int ret;
1863 struct ustctl_consumer_stream *ustream;
1864
1865 assert(stream);
1866 assert(ctx);
1867
1868 ustream = stream->ustream;
1869
1870 /*
1871 * First, we are going to check if there is a new subbuffer available
1872 * before reading the stream wait_fd.
1873 */
1874 /* Get the next subbuffer */
1875 ret = ustctl_get_next_subbuf(ustream);
1876 if (ret) {
1877 /* No more data found, flag the stream. */
1878 stream->has_data = 0;
1879 ret = 0;
1880 goto end;
1881 }
1882
1883 ret = ustctl_put_next_subbuf(ustream);
1884 assert(!ret);
1885
1886 /* This stream still has data. Flag it and wake up the data thread. */
1887 stream->has_data = 1;
1888
1889 if (stream->monitor && !stream->hangup_flush_done && !ctx->has_wakeup) {
1890 ssize_t writelen;
1891
1892 writelen = lttng_pipe_write(ctx->consumer_wakeup_pipe, "!", 1);
1893 if (writelen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
1894 ret = writelen;
1895 goto end;
1896 }
1897
1898 /* The wake up pipe has been notified. */
1899 ctx->has_wakeup = 1;
1900 }
1901 ret = 0;
1902
1903end:
1904 return ret;
1905}
1906
94d49140
JD
1907/*
1908 * Read subbuffer from the given stream.
1909 *
1910 * Stream lock MUST be acquired.
1911 *
1912 * Return 0 on success else a negative value.
1913 */
d41f73b7
MD
1914int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
1915 struct lttng_consumer_local_data *ctx)
1916{
1d4dfdef 1917 unsigned long len, subbuf_size, padding;
1c20f0e2 1918 int err, write_index = 1;
d41f73b7 1919 long ret = 0;
ffe60014 1920 struct ustctl_consumer_stream *ustream;
50adc264 1921 struct ctf_packet_index index;
ffe60014
DG
1922
1923 assert(stream);
1924 assert(stream->ustream);
1925 assert(ctx);
d41f73b7 1926
3eb914c0 1927 DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream->wait_fd,
ffe60014
DG
1928 stream->name);
1929
1930 /* Ease our life for what's next. */
1931 ustream = stream->ustream;
d41f73b7 1932
6cd525e8 1933 /*
02b3d176
DG
1934 * We can consume the 1 byte written into the wait_fd by UST. Don't trigger
1935 * error if we cannot read this one byte (read returns 0), or if the error
1936 * is EAGAIN or EWOULDBLOCK.
1937 *
1938 * This is only done when the stream is monitored by a thread, before the
1939 * flush is done after a hangup and if the stream is not flagged with data
1940 * since there might be nothing to consume in the wait fd but still have
1941 * data available flagged by the consumer wake up pipe.
6cd525e8 1942 */
02b3d176
DG
1943 if (stream->monitor && !stream->hangup_flush_done && !stream->has_data) {
1944 char dummy;
c617c0c6
MD
1945 ssize_t readlen;
1946
6cd525e8
MD
1947 readlen = lttng_read(stream->wait_fd, &dummy, 1);
1948 if (readlen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
effcf122
MD
1949 ret = readlen;
1950 goto end;
1951 }
d41f73b7
MD
1952 }
1953
04ef1097 1954retry:
d41f73b7 1955 /* Get the next subbuffer */
ffe60014 1956 err = ustctl_get_next_subbuf(ustream);
d41f73b7 1957 if (err != 0) {
04ef1097
MD
1958 /*
1959 * Populate metadata info if the existing info has
1960 * already been read.
1961 */
1962 if (stream->metadata_flag) {
94d49140
JD
1963 ret = commit_one_metadata_packet(stream);
1964 if (ret <= 0) {
04ef1097
MD
1965 goto end;
1966 }
04ef1097
MD
1967 ustctl_flush_buffer(stream->ustream, 1);
1968 goto retry;
1969 }
1970
1d4dfdef 1971 ret = err; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
d41f73b7
MD
1972 /*
1973 * This is a debug message even for single-threaded consumer,
1974 * because poll() have more relaxed criterions than get subbuf,
1975 * so get_subbuf may fail for short race windows where poll()
1976 * would issue wakeups.
1977 */
1978 DBG("Reserving sub buffer failed (everything is normal, "
ffe60014 1979 "it is due to concurrency) [ret: %d]", err);
d41f73b7
MD
1980 goto end;
1981 }
ffe60014 1982 assert(stream->chan->output == CONSUMER_CHANNEL_MMAP);
309167d2 1983
1c20f0e2 1984 if (!stream->metadata_flag) {
309167d2
JD
1985 index.offset = htobe64(stream->out_fd_offset);
1986 ret = get_index_values(&index, ustream);
1987 if (ret < 0) {
1988 goto end;
1989 }
1c20f0e2
JD
1990 } else {
1991 write_index = 0;
309167d2
JD
1992 }
1993
1d4dfdef 1994 /* Get the full padded subbuffer size */
ffe60014 1995 err = ustctl_get_padded_subbuf_size(ustream, &len);
effcf122 1996 assert(err == 0);
1d4dfdef
DG
1997
1998 /* Get subbuffer data size (without padding) */
ffe60014 1999 err = ustctl_get_subbuf_size(ustream, &subbuf_size);
1d4dfdef
DG
2000 assert(err == 0);
2001
2002 /* Make sure we don't get a subbuffer size bigger than the padded */
2003 assert(len >= subbuf_size);
2004
2005 padding = len - subbuf_size;
d41f73b7 2006 /* write the subbuffer to the tracefile */
309167d2 2007 ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, subbuf_size, padding, &index);
91dfef6e
DG
2008 /*
2009 * The mmap operation should write subbuf_size amount of data when network
2010 * streaming or the full padding (len) size when we are _not_ streaming.
2011 */
d88aee68
DG
2012 if ((ret != subbuf_size && stream->net_seq_idx != (uint64_t) -1ULL) ||
2013 (ret != len && stream->net_seq_idx == (uint64_t) -1ULL)) {
d41f73b7 2014 /*
91dfef6e 2015 * Display the error but continue processing to try to release the
c5c45efa
DG
2016 * subbuffer. This is a DBG statement since any unexpected kill or
2017 * signal, the application gets unregistered, relayd gets closed or
2018 * anything that affects the buffer lifetime will trigger this error.
2019 * So, for the sake of the user, don't print this error since it can
2020 * happen and it is OK with the code flow.
d41f73b7 2021 */
c5c45efa 2022 DBG("Error writing to tracefile "
8fd623e0 2023 "(ret: %ld != len: %lu != subbuf_size: %lu)",
91dfef6e 2024 ret, len, subbuf_size);
309167d2 2025 write_index = 0;
d41f73b7 2026 }
ffe60014 2027 err = ustctl_put_next_subbuf(ustream);
effcf122 2028 assert(err == 0);
331744e3 2029
02b3d176
DG
2030 /*
2031 * This will consumer the byte on the wait_fd if and only if there is not
2032 * next subbuffer to be acquired.
2033 */
2034 if (!stream->metadata_flag) {
2035 ret = notify_if_more_data(stream, ctx);
2036 if (ret < 0) {
2037 goto end;
2038 }
2039 }
2040
309167d2 2041 /* Write index if needed. */
1c20f0e2
JD
2042 if (!write_index) {
2043 goto end;
2044 }
2045
94d49140
JD
2046 if (stream->chan->live_timer_interval && !stream->metadata_flag) {
2047 /*
2048 * In live, block until all the metadata is sent.
2049 */
2050 err = consumer_stream_sync_metadata(ctx, stream->session_id);
2051 if (err < 0) {
2052 goto end;
2053 }
2054 }
2055
1c20f0e2
JD
2056 assert(!stream->metadata_flag);
2057 err = consumer_stream_write_index(stream, &index);
2058 if (err < 0) {
2059 goto end;
309167d2
JD
2060 }
2061
d41f73b7
MD
2062end:
2063 return ret;
2064}
2065
ffe60014
DG
2066/*
2067 * Called when a stream is created.
fe4477ee
JD
2068 *
2069 * Return 0 on success or else a negative value.
ffe60014 2070 */
d41f73b7
MD
2071int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
2072{
fe4477ee
JD
2073 int ret;
2074
10a50311
JD
2075 assert(stream);
2076
fe4477ee 2077 /* Don't create anything if this is set for streaming. */
10a50311 2078 if (stream->net_seq_idx == (uint64_t) -1ULL && stream->chan->monitor) {
fe4477ee
JD
2079 ret = utils_create_stream_file(stream->chan->pathname, stream->name,
2080 stream->chan->tracefile_size, stream->tracefile_count_current,
309167d2 2081 stream->uid, stream->gid, NULL);
fe4477ee
JD
2082 if (ret < 0) {
2083 goto error;
2084 }
2085 stream->out_fd = ret;
2086 stream->tracefile_size_current = 0;
309167d2
JD
2087
2088 if (!stream->metadata_flag) {
2089 ret = index_create_file(stream->chan->pathname,
2090 stream->name, stream->uid, stream->gid,
2091 stream->chan->tracefile_size,
2092 stream->tracefile_count_current);
2093 if (ret < 0) {
2094 goto error;
2095 }
2096 stream->index_fd = ret;
2097 }
fe4477ee
JD
2098 }
2099 ret = 0;
2100
2101error:
2102 return ret;
d41f73b7 2103}
ca22feea
DG
2104
2105/*
2106 * Check if data is still being extracted from the buffers for a specific
4e9a4686
DG
2107 * stream. Consumer data lock MUST be acquired before calling this function
2108 * and the stream lock.
ca22feea 2109 *
6d805429 2110 * Return 1 if the traced data are still getting read else 0 meaning that the
ca22feea
DG
2111 * data is available for trace viewer reading.
2112 */
6d805429 2113int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
ca22feea
DG
2114{
2115 int ret;
2116
2117 assert(stream);
ffe60014 2118 assert(stream->ustream);
ca22feea 2119
6d805429 2120 DBG("UST consumer checking data pending");
c8f59ee5 2121
ca6b395f
MD
2122 if (stream->endpoint_status != CONSUMER_ENDPOINT_ACTIVE) {
2123 ret = 0;
2124 goto end;
2125 }
2126
04ef1097 2127 if (stream->chan->type == CONSUMER_CHANNEL_TYPE_METADATA) {
e6ee4eab
DG
2128 uint64_t contiguous, pushed;
2129
2130 /* Ease our life a bit. */
2131 contiguous = stream->chan->metadata_cache->contiguous;
2132 pushed = stream->ust_metadata_pushed;
2133
04ef1097
MD
2134 /*
2135 * We can simply check whether all contiguously available data
2136 * has been pushed to the ring buffer, since the push operation
2137 * is performed within get_next_subbuf(), and because both
2138 * get_next_subbuf() and put_next_subbuf() are issued atomically
2139 * thanks to the stream lock within
2140 * lttng_ustconsumer_read_subbuffer(). This basically means that
2141 * whetnever ust_metadata_pushed is incremented, the associated
2142 * metadata has been consumed from the metadata stream.
2143 */
2144 DBG("UST consumer metadata pending check: contiguous %" PRIu64 " vs pushed %" PRIu64,
e6ee4eab 2145 contiguous, pushed);
6acdf328 2146 assert(((int64_t) contiguous - pushed) >= 0);
e6ee4eab 2147 if ((contiguous != pushed) ||
6acdf328 2148 (((int64_t) contiguous - pushed) > 0 || contiguous == 0)) {
04ef1097
MD
2149 ret = 1; /* Data is pending */
2150 goto end;
2151 }
2152 } else {
2153 ret = ustctl_get_next_subbuf(stream->ustream);
2154 if (ret == 0) {
2155 /*
2156 * There is still data so let's put back this
2157 * subbuffer.
2158 */
2159 ret = ustctl_put_subbuf(stream->ustream);
2160 assert(ret == 0);
2161 ret = 1; /* Data is pending */
2162 goto end;
2163 }
ca22feea
DG
2164 }
2165
6d805429
DG
2166 /* Data is NOT pending so ready to be read. */
2167 ret = 0;
ca22feea 2168
6efae65e
DG
2169end:
2170 return ret;
ca22feea 2171}
d88aee68 2172
6d574024
DG
2173/*
2174 * Stop a given metadata channel timer if enabled and close the wait fd which
2175 * is the poll pipe of the metadata stream.
2176 *
2177 * This MUST be called with the metadata channel acquired.
2178 */
2179void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel *metadata)
2180{
2181 int ret;
2182
2183 assert(metadata);
2184 assert(metadata->type == CONSUMER_CHANNEL_TYPE_METADATA);
2185
2186 DBG("Closing metadata channel key %" PRIu64, metadata->key);
2187
2188 if (metadata->switch_timer_enabled == 1) {
2189 consumer_timer_switch_stop(metadata);
2190 }
2191
2192 if (!metadata->metadata_stream) {
2193 goto end;
2194 }
2195
2196 /*
2197 * Closing write side so the thread monitoring the stream wakes up if any
2198 * and clean the metadata stream.
2199 */
2200 if (metadata->metadata_stream->ust_metadata_poll_pipe[1] >= 0) {
2201 ret = close(metadata->metadata_stream->ust_metadata_poll_pipe[1]);
2202 if (ret < 0) {
2203 PERROR("closing metadata pipe write side");
2204 }
2205 metadata->metadata_stream->ust_metadata_poll_pipe[1] = -1;
2206 }
2207
2208end:
2209 return;
2210}
2211
d88aee68
DG
2212/*
2213 * Close every metadata stream wait fd of the metadata hash table. This
2214 * function MUST be used very carefully so not to run into a race between the
2215 * metadata thread handling streams and this function closing their wait fd.
2216 *
2217 * For UST, this is used when the session daemon hangs up. Its the metadata
2218 * producer so calling this is safe because we are assured that no state change
2219 * can occur in the metadata thread for the streams in the hash table.
2220 */
6d574024 2221void lttng_ustconsumer_close_all_metadata(struct lttng_ht *metadata_ht)
d88aee68 2222{
d88aee68
DG
2223 struct lttng_ht_iter iter;
2224 struct lttng_consumer_stream *stream;
2225
2226 assert(metadata_ht);
2227 assert(metadata_ht->ht);
2228
2229 DBG("UST consumer closing all metadata streams");
2230
2231 rcu_read_lock();
2232 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream,
2233 node.node) {
9ce5646a
MD
2234
2235 health_code_update();
2236
be2b50c7 2237 pthread_mutex_lock(&stream->chan->lock);
6d574024 2238 lttng_ustconsumer_close_metadata(stream->chan);
be2b50c7
DG
2239 pthread_mutex_unlock(&stream->chan->lock);
2240
d88aee68
DG
2241 }
2242 rcu_read_unlock();
2243}
d8ef542d
MD
2244
2245void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream)
2246{
2247 int ret;
2248
2249 ret = ustctl_stream_close_wakeup_fd(stream->ustream);
2250 if (ret < 0) {
2251 ERR("Unable to close wakeup fd");
2252 }
2253}
331744e3 2254
f666ae70
MD
2255/*
2256 * Please refer to consumer-timer.c before adding any lock within this
2257 * function or any of its callees. Timers have a very strict locking
2258 * semantic with respect to teardown. Failure to respect this semantic
2259 * introduces deadlocks.
2260 */
331744e3 2261int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
94d49140 2262 struct lttng_consumer_channel *channel, int timer, int wait)
331744e3
JD
2263{
2264 struct lttcomm_metadata_request_msg request;
2265 struct lttcomm_consumer_msg msg;
0c759fc9 2266 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
331744e3
JD
2267 uint64_t len, key, offset;
2268 int ret;
2269
2270 assert(channel);
2271 assert(channel->metadata_cache);
2272
53efb85a
MD
2273 memset(&request, 0, sizeof(request));
2274
331744e3
JD
2275 /* send the metadata request to sessiond */
2276 switch (consumer_data.type) {
2277 case LTTNG_CONSUMER64_UST:
2278 request.bits_per_long = 64;
2279 break;
2280 case LTTNG_CONSUMER32_UST:
2281 request.bits_per_long = 32;
2282 break;
2283 default:
2284 request.bits_per_long = 0;
2285 break;
2286 }
2287
2288 request.session_id = channel->session_id;
1950109e 2289 request.session_id_per_pid = channel->session_id_per_pid;
567eb353
DG
2290 /*
2291 * Request the application UID here so the metadata of that application can
2292 * be sent back. The channel UID corresponds to the user UID of the session
2293 * used for the rights on the stream file(s).
2294 */
2295 request.uid = channel->ust_app_uid;
331744e3 2296 request.key = channel->key;
567eb353 2297
1950109e 2298 DBG("Sending metadata request to sessiond, session id %" PRIu64
567eb353
DG
2299 ", per-pid %" PRIu64 ", app UID %u and channek key %" PRIu64,
2300 request.session_id, request.session_id_per_pid, request.uid,
2301 request.key);
331744e3 2302
75d83e50 2303 pthread_mutex_lock(&ctx->metadata_socket_lock);
9ce5646a
MD
2304
2305 health_code_update();
2306
331744e3
JD
2307 ret = lttcomm_send_unix_sock(ctx->consumer_metadata_socket, &request,
2308 sizeof(request));
2309 if (ret < 0) {
2310 ERR("Asking metadata to sessiond");
2311 goto end;
2312 }
2313
9ce5646a
MD
2314 health_code_update();
2315
331744e3
JD
2316 /* Receive the metadata from sessiond */
2317 ret = lttcomm_recv_unix_sock(ctx->consumer_metadata_socket, &msg,
2318 sizeof(msg));
2319 if (ret != sizeof(msg)) {
8fd623e0 2320 DBG("Consumer received unexpected message size %d (expects %zu)",
331744e3
JD
2321 ret, sizeof(msg));
2322 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
2323 /*
2324 * The ret value might 0 meaning an orderly shutdown but this is ok
2325 * since the caller handles this.
2326 */
2327 goto end;
2328 }
2329
9ce5646a
MD
2330 health_code_update();
2331
331744e3
JD
2332 if (msg.cmd_type == LTTNG_ERR_UND) {
2333 /* No registry found */
2334 (void) consumer_send_status_msg(ctx->consumer_metadata_socket,
2335 ret_code);
2336 ret = 0;
2337 goto end;
2338 } else if (msg.cmd_type != LTTNG_CONSUMER_PUSH_METADATA) {
2339 ERR("Unexpected cmd_type received %d", msg.cmd_type);
2340 ret = -1;
2341 goto end;
2342 }
2343
2344 len = msg.u.push_metadata.len;
2345 key = msg.u.push_metadata.key;
2346 offset = msg.u.push_metadata.target_offset;
2347
2348 assert(key == channel->key);
2349 if (len == 0) {
2350 DBG("No new metadata to receive for key %" PRIu64, key);
2351 }
2352
9ce5646a
MD
2353 health_code_update();
2354
331744e3
JD
2355 /* Tell session daemon we are ready to receive the metadata. */
2356 ret = consumer_send_status_msg(ctx->consumer_metadata_socket,
0c759fc9 2357 LTTCOMM_CONSUMERD_SUCCESS);
331744e3
JD
2358 if (ret < 0 || len == 0) {
2359 /*
2360 * Somehow, the session daemon is not responding anymore or there is
2361 * nothing to receive.
2362 */
2363 goto end;
2364 }
2365
9ce5646a
MD
2366 health_code_update();
2367
1eb682be 2368 ret = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket,
94d49140 2369 key, offset, len, channel, timer, wait);
1eb682be 2370 if (ret >= 0) {
f2a444f1
DG
2371 /*
2372 * Only send the status msg if the sessiond is alive meaning a positive
2373 * ret code.
2374 */
1eb682be 2375 (void) consumer_send_status_msg(ctx->consumer_metadata_socket, ret);
f2a444f1 2376 }
331744e3
JD
2377 ret = 0;
2378
2379end:
9ce5646a
MD
2380 health_code_update();
2381
75d83e50 2382 pthread_mutex_unlock(&ctx->metadata_socket_lock);
331744e3
JD
2383 return ret;
2384}
This page took 0.168624 seconds and 5 git commands to generate.