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