Fix: intialization of ust_metadata_poll_pipe to garbage value
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.c
1 /*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
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.
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 *
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.
17 */
18
19 #define _GNU_SOURCE
20 #include <assert.h>
21 #include <lttng/ust-ctl.h>
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>
28 #include <sys/stat.h>
29 #include <sys/types.h>
30 #include <inttypes.h>
31 #include <unistd.h>
32 #include <urcu/list.h>
33 #include <signal.h>
34
35 #include <bin/lttng-consumerd/health-consumerd.h>
36 #include <common/common.h>
37 #include <common/sessiond-comm/sessiond-comm.h>
38 #include <common/relayd/relayd.h>
39 #include <common/compat/fcntl.h>
40 #include <common/compat/endian.h>
41 #include <common/consumer-metadata-cache.h>
42 #include <common/consumer-stream.h>
43 #include <common/consumer-timer.h>
44 #include <common/utils.h>
45 #include <common/index/index.h>
46
47 #include "ust-consumer.h"
48
49 extern struct lttng_consumer_global_data consumer_data;
50 extern int consumer_poll_timeout;
51 extern volatile int consumer_quit;
52
53 /*
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.
57 */
58 static void destroy_channel(struct lttng_consumer_channel *channel)
59 {
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) {
68
69 health_code_update();
70
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 }
85
86 /*
87 * Add channel to internal consumer state.
88 *
89 * Returns 0 on success or else a negative value.
90 */
91 static int add_channel(struct lttng_consumer_channel *channel,
92 struct lttng_consumer_local_data *ctx)
93 {
94 int ret = 0;
95
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) {
102 ret = consumer_add_channel(channel, ctx);
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 {
109 ret = consumer_add_channel(channel, ctx);
110 }
111
112 DBG("UST consumer channel added (key: %" PRIu64 ")", channel->key);
113
114 error:
115 return ret;
116 }
117
118 /*
119 * Allocate and return a consumer channel object.
120 */
121 static struct lttng_consumer_channel *allocate_channel(uint64_t session_id,
122 const char *pathname, const char *name, uid_t uid, gid_t gid,
123 uint64_t relayd_id, uint64_t key, enum lttng_event_output output,
124 uint64_t tracefile_size, uint64_t tracefile_count,
125 uint64_t session_id_per_pid, unsigned int monitor,
126 unsigned int live_timer_interval)
127 {
128 assert(pathname);
129 assert(name);
130
131 return consumer_allocate_channel(key, session_id, pathname, name, uid,
132 gid, relayd_id, output, tracefile_size,
133 tracefile_count, session_id_per_pid, monitor, live_timer_interval);
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.
139 *
140 * Return NULL on error else the newly allocated stream object.
141 */
142 static 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,
162 channel->type,
163 channel->monitor);
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
184 error:
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 */
196 static int send_stream_to_thread(struct lttng_consumer_stream *stream,
197 struct lttng_consumer_local_data *ctx)
198 {
199 int ret;
200 struct lttng_pipe *stream_pipe;
201
202 /* Get the right pipe where the stream will be sent. */
203 if (stream->metadata_flag) {
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 }
210 stream_pipe = ctx->consumer_metadata_pipe;
211 } else {
212 ret = consumer_add_data_stream(stream);
213 if (ret) {
214 ERR("Consumer add stream %" PRIu64 " failed.",
215 stream->key);
216 goto error;
217 }
218 stream_pipe = ctx->consumer_data_pipe;
219 }
220
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
227 ret = lttng_pipe_write(stream_pipe, &stream, sizeof(stream));
228 if (ret < 0) {
229 ERR("Consumer write %s stream to pipe %d",
230 stream->metadata_flag ? "metadata" : "data",
231 lttng_pipe_get_writefd(stream_pipe));
232 if (stream->metadata_flag) {
233 consumer_del_stream_for_metadata(stream);
234 } else {
235 consumer_del_stream_for_data(stream);
236 }
237 }
238 error:
239 return ret;
240 }
241
242 /*
243 * Create streams for the given channel using liblttng-ust-ctl.
244 *
245 * Return 0 on success else a negative value.
246 */
247 static 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;
263 int ust_metadata_pipe[2];
264
265 health_code_update();
266
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 }
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
291 /*
292 * Increment channel refcount since the channel reference has now been
293 * assigned in the allocation process above.
294 */
295 if (stream->chan->monitor) {
296 uatomic_inc(&stream->chan->refcount);
297 }
298
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
321 DBG("UST consumer add stream %s (key: %" PRIu64 ") with relayd id %" PRIu64,
322 stream->name, stream->key, stream->relayd_stream_id);
323
324 /* Set next CPU stream. */
325 channel->streams.count = ++cpu;
326
327 /* Keep stream reference when creating metadata. */
328 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA) {
329 channel->metadata_stream = stream;
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 }
336 }
337 }
338
339 return 0;
340
341 error:
342 error_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 */
352 static 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
378 error_create:
379 return ret;
380 }
381
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 */
387 static int send_sessiond_stream(int sock, struct lttng_consumer_stream *stream)
388 {
389 int ret;
390
391 assert(stream);
392 assert(sock >= 0);
393
394 DBG("UST consumer sending stream %" PRIu64 " to sessiond", stream->key);
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
402 error:
403 return ret;
404 }
405
406 /*
407 * Send channel to sessiond.
408 *
409 * Return 0 on success or else a negative value.
410 */
411 static int send_sessiond_channel(int sock,
412 struct lttng_consumer_channel *channel,
413 struct lttng_consumer_local_data *ctx, int *relayd_error)
414 {
415 int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS;
416 struct lttng_consumer_stream *stream;
417 uint64_t net_seq_idx = -1ULL;
418
419 assert(channel);
420 assert(ctx);
421 assert(sock >= 0);
422
423 DBG("UST consumer sending channel %s to sessiond", channel->name);
424
425 if (channel->relayd_id != (uint64_t) -1ULL) {
426 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
427
428 health_code_update();
429
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;
441 }
442 if (net_seq_idx == -1ULL) {
443 net_seq_idx = stream->net_seq_idx;
444 }
445 }
446 }
447
448 /* Inform sessiond that we are about to send channel and streams. */
449 ret = consumer_send_status_msg(sock, ret_code);
450 if (ret < 0 || ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
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) {
471
472 health_code_update();
473
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
491 error:
492 if (ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
493 ret = -1;
494 }
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 */
506 static int ask_channel(struct lttng_consumer_local_data *ctx, int sock,
507 struct lttng_consumer_channel *channel,
508 struct ustctl_consumer_channel_attr *attr)
509 {
510 int ret;
511
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) {
534 goto end;
535 }
536
537 channel->wait_fd = ustctl_channel_get_wait_fd(channel->uchan);
538
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
548 /* Open all streams for this channel. */
549 ret = create_ust_streams(channel, ctx);
550 if (ret < 0) {
551 goto end;
552 }
553
554 end:
555 return ret;
556 }
557
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 */
563 static 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) {
575
576 health_code_update();
577
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 */
585 /* Remove node from the channel stream list. */
586 cds_list_del(&stream->send_node);
587 goto error;
588 }
589
590 /* Remove node from the channel stream list. */
591 cds_list_del(&stream->send_node);
592
593 }
594
595 error:
596 return ret;
597 }
598
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 */
604 static 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
612 DBG("UST consumer flush channel key %" PRIu64, chan_key);
613
614 rcu_read_lock();
615 channel = consumer_find_channel(chan_key);
616 if (!channel) {
617 ERR("UST consumer flush channel %" PRIu64 " not found", chan_key);
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. */
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) {
628
629 health_code_update();
630
631 ustctl_flush_buffer(stream->ustream, 1);
632 }
633 error:
634 rcu_read_unlock();
635 return ret;
636 }
637
638 /*
639 * Close metadata stream wakeup_fd using the given key to retrieve the channel.
640 * RCU read side lock MUST be acquired before calling this function.
641 *
642 * Return 0 on success else an LTTng error code.
643 */
644 static int close_metadata(uint64_t chan_key)
645 {
646 int ret = 0;
647 struct lttng_consumer_channel *channel;
648
649 DBG("UST consumer close metadata key %" PRIu64, chan_key);
650
651 channel = consumer_find_channel(chan_key);
652 if (!channel) {
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);
660 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
661 goto error;
662 }
663
664 pthread_mutex_lock(&consumer_data.lock);
665 pthread_mutex_lock(&channel->lock);
666
667 if (cds_lfht_is_node_deleted(&channel->node.node)) {
668 goto error_unlock;
669 }
670
671 lttng_ustconsumer_close_metadata(channel);
672
673 error_unlock:
674 pthread_mutex_unlock(&channel->lock);
675 pthread_mutex_unlock(&consumer_data.lock);
676 error:
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 */
685 static int setup_metadata(struct lttng_consumer_local_data *ctx, uint64_t key)
686 {
687 int ret;
688 struct lttng_consumer_channel *metadata;
689
690 DBG("UST consumer setup metadata key %" PRIu64, key);
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;
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;
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;
716 goto error_no_stream;
717 }
718
719 /* Send metadata stream to relayd if needed. */
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 }
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 }
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
747 ret = 0;
748 goto end;
749
750 error:
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 */
757 consumer_stream_destroy(metadata->metadata_stream, NULL);
758 cds_list_del(&metadata->metadata_stream->send_node);
759 metadata->metadata_stream = NULL;
760 error_no_stream:
761 end:
762 return ret;
763 }
764
765 /*
766 * Snapshot the whole metadata.
767 *
768 * Returns 0 on success, < 0 on error
769 */
770 static int snapshot_metadata(uint64_t key, char *path, uint64_t relayd_id,
771 struct lttng_consumer_local_data *ctx)
772 {
773 int ret = 0;
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) {
787 ERR("UST snapshot metadata channel not found for key %" PRIu64,
788 key);
789 ret = -1;
790 goto error;
791 }
792 assert(!metadata_channel->monitor);
793
794 health_code_update();
795
796 /*
797 * Ask the sessiond if we have new metadata waiting and update the
798 * consumer metadata cache.
799 */
800 ret = lttng_ustconsumer_request_metadata(ctx, metadata_channel, 0, 1);
801 if (ret < 0) {
802 goto error;
803 }
804
805 health_code_update();
806
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,
829 metadata_stream->uid, metadata_stream->gid, NULL);
830 if (ret < 0) {
831 goto error_stream;
832 }
833 metadata_stream->out_fd = ret;
834 metadata_stream->tracefile_size_current = 0;
835 }
836
837 do {
838 health_code_update();
839
840 ret = lttng_consumer_read_subbuffer(metadata_stream, ctx);
841 if (ret < 0) {
842 goto error_stream;
843 }
844 } while (ret > 0);
845
846 error_stream:
847 /*
848 * Clean up the stream completly because the next snapshot will use a new
849 * metadata stream.
850 */
851 consumer_stream_destroy(metadata_stream, NULL);
852 cds_list_del(&metadata_stream->send_node);
853 metadata_channel->metadata_stream = NULL;
854
855 error:
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 */
865 static int snapshot_channel(uint64_t key, char *path, uint64_t relayd_id,
866 uint64_t nb_packets_per_stream, struct lttng_consumer_local_data *ctx)
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) {
885 ERR("UST snapshot channel not found for key %" PRIu64, key);
886 ret = -1;
887 goto error;
888 }
889 assert(!channel->monitor);
890 DBG("UST consumer snapshot channel %" PRIu64, key);
891
892 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
893
894 health_code_update();
895
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,
909 stream->uid, stream->gid, NULL);
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 }
919 if (relayd_id != -1ULL) {
920 ret = consumer_send_relayd_streams_sent(relayd_id);
921 if (ret < 0) {
922 goto error_unlock;
923 }
924 }
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
946 /*
947 * The original value is sent back if max stream size is larger than
948 * the possible size of the snapshot. Also, we assume that the session
949 * daemon should never send a maximum stream size that is lower than
950 * subbuffer size.
951 */
952 consumed_pos = consumer_get_consume_start_pos(consumed_pos,
953 produced_pos, nb_packets_per_stream,
954 stream->max_sb_size);
955
956 while (consumed_pos < produced_pos) {
957 ssize_t read_len;
958 unsigned long len, padded_len;
959
960 health_code_update();
961
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,
988 padded_len - len, NULL);
989 if (use_relayd) {
990 if (read_len != len) {
991 ret = -EPERM;
992 goto error_put_subbuf;
993 }
994 } else {
995 if (read_len != padded_len) {
996 ret = -EPERM;
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
1017 error_put_subbuf:
1018 if (ustctl_put_subbuf(stream->ustream) < 0) {
1019 ERR("Snapshot ustctl_put_subbuf");
1020 }
1021 error_close_stream:
1022 consumer_stream_close(stream);
1023 error_unlock:
1024 pthread_mutex_unlock(&stream->lock);
1025 error:
1026 rcu_read_unlock();
1027 return ret;
1028 }
1029
1030 /*
1031 * Receive the metadata updates from the sessiond.
1032 */
1033 int lttng_ustconsumer_recv_metadata(int sock, uint64_t key, uint64_t offset,
1034 uint64_t len, struct lttng_consumer_channel *channel,
1035 int timer, int wait)
1036 {
1037 int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1038 char *metadata_str;
1039
1040 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key, len);
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
1049 health_code_update();
1050
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
1059 health_code_update();
1060
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;
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);
1072 goto end_free;
1073 }
1074 pthread_mutex_unlock(&channel->metadata_cache->lock);
1075
1076 if (!wait) {
1077 goto end_free;
1078 }
1079 while (consumer_metadata_cache_flushed(channel, offset + len, timer)) {
1080 DBG("Waiting for metadata to be flushed");
1081
1082 health_code_update();
1083
1084 usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME);
1085 }
1086
1087 end_free:
1088 free(metadata_str);
1089 end:
1090 return ret_code;
1091 }
1092
1093 /*
1094 * Receive command from session daemon and process it.
1095 *
1096 * Return 1 on success else a negative value or 0.
1097 */
1098 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
1099 int sock, struct pollfd *consumer_sockpoll)
1100 {
1101 ssize_t ret;
1102 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1103 struct lttcomm_consumer_msg msg;
1104 struct lttng_consumer_channel *channel = NULL;
1105
1106 health_code_update();
1107
1108 ret = lttcomm_recv_unix_sock(sock, &msg, sizeof(msg));
1109 if (ret != sizeof(msg)) {
1110 DBG("Consumer received unexpected message size %zd (expects %zu)",
1111 ret, sizeof(msg));
1112 /*
1113 * The ret value might 0 meaning an orderly shutdown but this is ok
1114 * since the caller handles this.
1115 */
1116 if (ret > 0) {
1117 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
1118 ret = -1;
1119 }
1120 return ret;
1121 }
1122
1123 health_code_update();
1124
1125 /* deprecated */
1126 assert(msg.cmd_type != LTTNG_CONSUMER_STOP);
1127
1128 health_code_update();
1129
1130 /* relayd needs RCU read-side lock */
1131 rcu_read_lock();
1132
1133 switch (msg.cmd_type) {
1134 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET:
1135 {
1136 /* Session daemon status message are handled in the following call. */
1137 ret = consumer_add_relayd_socket(msg.u.relayd_sock.net_index,
1138 msg.u.relayd_sock.type, ctx, sock, consumer_sockpoll,
1139 &msg.u.relayd_sock.sock, msg.u.relayd_sock.session_id,
1140 msg.u.relayd_sock.relayd_session_id);
1141 goto end_nosignal;
1142 }
1143 case LTTNG_CONSUMER_DESTROY_RELAYD:
1144 {
1145 uint64_t index = msg.u.destroy_relayd.net_seq_idx;
1146 struct consumer_relayd_sock_pair *relayd;
1147
1148 DBG("UST consumer destroying relayd %" PRIu64, index);
1149
1150 /* Get relayd reference if exists. */
1151 relayd = consumer_find_relayd(index);
1152 if (relayd == NULL) {
1153 DBG("Unable to find relayd %" PRIu64, index);
1154 ret_code = LTTCOMM_CONSUMERD_RELAYD_FAIL;
1155 }
1156
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 */
1167 if (relayd) {
1168 consumer_flag_relayd_for_destroy(relayd);
1169 }
1170
1171 goto end_msg_sessiond;
1172 }
1173 case LTTNG_CONSUMER_UPDATE_STREAM:
1174 {
1175 rcu_read_unlock();
1176 return -ENOSYS;
1177 }
1178 case LTTNG_CONSUMER_DATA_PENDING:
1179 {
1180 int ret, is_data_pending;
1181 uint64_t id = msg.u.data_pending.session_id;
1182
1183 DBG("UST consumer data pending command for id %" PRIu64, id);
1184
1185 is_data_pending = consumer_data_pending(id);
1186
1187 /* Send back returned value to session daemon */
1188 ret = lttcomm_send_unix_sock(sock, &is_data_pending,
1189 sizeof(is_data_pending));
1190 if (ret < 0) {
1191 DBG("Error when sending the data pending ret code: %d", ret);
1192 goto error_fatal;
1193 }
1194
1195 /*
1196 * No need to send back a status message since the data pending
1197 * returned value is the response.
1198 */
1199 break;
1200 }
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,
1211 (enum lttng_event_output) msg.u.ask_channel.output,
1212 msg.u.ask_channel.tracefile_size,
1213 msg.u.ask_channel.tracefile_count,
1214 msg.u.ask_channel.session_id_per_pid,
1215 msg.u.ask_channel.monitor,
1216 msg.u.ask_channel.live_timer_interval);
1217 if (!channel) {
1218 goto end_channel_error;
1219 }
1220
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
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;
1234 attr.chan_id = msg.u.ask_channel.chan_id;
1235 memcpy(attr.uuid, msg.u.ask_channel.uuid, sizeof(attr.uuid));
1236
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
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;
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;
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
1266 health_code_update();
1267
1268 ret = ask_channel(ctx, sock, channel, &attr);
1269 if (ret < 0) {
1270 goto end_channel_error;
1271 }
1272
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;
1281 } else {
1282 consumer_timer_live_start(channel,
1283 msg.u.ask_channel.live_timer_interval);
1284 }
1285
1286 health_code_update();
1287
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.
1292 * If add_channel succeeds, ownership of the channel is
1293 * passed to consumer_thread_channel_poll().
1294 */
1295 ret = add_channel(channel, ctx);
1296 if (ret < 0) {
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 }
1303 if (channel->live_timer_enabled == 1) {
1304 consumer_timer_live_stop(channel);
1305 }
1306 goto end_channel_error;
1307 }
1308
1309 health_code_update();
1310
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 /*
1319 * There is probably a problem on the socket.
1320 */
1321 goto error_fatal;
1322 }
1323
1324 break;
1325 }
1326 case LTTNG_CONSUMER_GET_CHANNEL:
1327 {
1328 int ret, relayd_err = 0;
1329 uint64_t key = msg.u.get_channel.key;
1330 struct lttng_consumer_channel *channel;
1331
1332 channel = consumer_find_channel(key);
1333 if (!channel) {
1334 ERR("UST consumer get channel key %" PRIu64 " not found", key);
1335 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
1336 goto end_msg_sessiond;
1337 }
1338
1339 health_code_update();
1340
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
1348 * and the consumer can continue its work. The above call
1349 * has sent the error status message to the sessiond.
1350 */
1351 goto end_nosignal;
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
1360 health_code_update();
1361
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
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;
1377 }
1378 /* List MUST be empty after or else it could be reused. */
1379 assert(cds_list_empty(&channel->streams.head));
1380 goto end_msg_sessiond;
1381 }
1382 case LTTNG_CONSUMER_DESTROY_CHANNEL:
1383 {
1384 uint64_t key = msg.u.destroy_channel.key;
1385
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);
1392 goto end_msg_sessiond;
1393 }
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 }
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 }
1416 case LTTNG_CONSUMER_PUSH_METADATA:
1417 {
1418 int ret;
1419 uint64_t len = msg.u.push_metadata.len;
1420 uint64_t key = msg.u.push_metadata.key;
1421 uint64_t offset = msg.u.push_metadata.target_offset;
1422 struct lttng_consumer_channel *channel;
1423
1424 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key,
1425 len);
1426
1427 channel = consumer_find_channel(key);
1428 if (!channel) {
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;
1438 goto end_msg_sessiond;
1439 }
1440
1441 health_code_update();
1442
1443 /* Tell session daemon we are ready to receive the metadata. */
1444 ret = consumer_send_status_msg(sock, LTTCOMM_CONSUMERD_SUCCESS);
1445 if (ret < 0) {
1446 /* Somehow, the session daemon is not responding anymore. */
1447 goto error_fatal;
1448 }
1449
1450 health_code_update();
1451
1452 /* Wait for more data. */
1453 health_poll_entry();
1454 ret = lttng_consumer_poll_socket(consumer_sockpoll);
1455 health_poll_exit();
1456 if (ret) {
1457 goto error_fatal;
1458 }
1459
1460 health_code_update();
1461
1462 ret = lttng_ustconsumer_recv_metadata(sock, key, offset,
1463 len, channel, 0, 1);
1464 if (ret < 0) {
1465 /* error receiving from sessiond */
1466 goto error_fatal;
1467 } else {
1468 ret_code = ret;
1469 goto end_msg_sessiond;
1470 }
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;
1481 }
1482 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL:
1483 {
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");
1491 ret_code = LTTCOMM_CONSUMERD_ERROR_METADATA;
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,
1497 msg.u.snapshot_channel.nb_packets_per_stream,
1498 ctx);
1499 if (ret < 0) {
1500 ERR("Snapshot channel failed");
1501 ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL;
1502 }
1503 }
1504
1505 health_code_update();
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 }
1511 health_code_update();
1512 break;
1513 }
1514 default:
1515 break;
1516 }
1517
1518 end_nosignal:
1519 rcu_read_unlock();
1520
1521 health_code_update();
1522
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;
1528
1529 end_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 */
1535 ret = consumer_send_status_msg(sock, ret_code);
1536 if (ret < 0) {
1537 goto error_fatal;
1538 }
1539 rcu_read_unlock();
1540
1541 health_code_update();
1542
1543 return 1;
1544 end_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();
1559
1560 health_code_update();
1561
1562 return 1;
1563 error_fatal:
1564 rcu_read_unlock();
1565 /* This will issue a consumer stop. */
1566 return -1;
1567 }
1568
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 */
1573 int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
1574 unsigned long *off)
1575 {
1576 assert(stream);
1577 assert(stream->ustream);
1578
1579 return ustctl_get_mmap_read_offset(stream->ustream, off);
1580 }
1581
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 */
1586 void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream)
1587 {
1588 assert(stream);
1589 assert(stream->ustream);
1590
1591 return ustctl_get_mmap_base(stream->ustream);
1592 }
1593
1594 /*
1595 * Take a snapshot for a specific fd
1596 *
1597 * Returns 0 on success, < 0 on error
1598 */
1599 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream)
1600 {
1601 assert(stream);
1602 assert(stream->ustream);
1603
1604 return ustctl_snapshot(stream->ustream);
1605 }
1606
1607 /*
1608 * Get the produced position
1609 *
1610 * Returns 0 on success, < 0 on error
1611 */
1612 int lttng_ustconsumer_get_produced_snapshot(
1613 struct lttng_consumer_stream *stream, unsigned long *pos)
1614 {
1615 assert(stream);
1616 assert(stream->ustream);
1617 assert(pos);
1618
1619 return ustctl_snapshot_get_produced(stream->ustream, pos);
1620 }
1621
1622 /*
1623 * Get the consumed position
1624 *
1625 * Returns 0 on success, < 0 on error
1626 */
1627 int 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
1637 void 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
1646 int 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
1656 /*
1657 * Called when the stream signal the consumer that it has hang up.
1658 */
1659 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
1660 {
1661 assert(stream);
1662 assert(stream->ustream);
1663
1664 ustctl_flush_buffer(stream->ustream, 0);
1665 stream->hangup_flush_done = 1;
1666 }
1667
1668 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
1669 {
1670 assert(chan);
1671 assert(chan->uchan);
1672
1673 if (chan->switch_timer_enabled == 1) {
1674 consumer_timer_switch_stop(chan);
1675 }
1676 consumer_metadata_cache_destroy(chan);
1677 ustctl_destroy_channel(chan->uchan);
1678 }
1679
1680 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
1681 {
1682 assert(stream);
1683 assert(stream->ustream);
1684
1685 if (stream->chan->switch_timer_enabled == 1) {
1686 consumer_timer_switch_stop(stream->chan);
1687 }
1688 ustctl_destroy_stream(stream->ustream);
1689 }
1690
1691 int 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
1699 int 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
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 */
1712 static int get_index_values(struct ctf_packet_index *index,
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
1759 error:
1760 return ret;
1761 }
1762
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 */
1769 static
1770 int 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
1798 end:
1799 pthread_mutex_unlock(&stream->chan->metadata_cache->lock);
1800 return ret;
1801 }
1802
1803
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 */
1813 int 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
1858 end:
1859 return ret;
1860 }
1861
1862 /*
1863 * Return 0 on success else a negative value.
1864 */
1865 static 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
1889 ret = ustctl_put_subbuf(ustream);
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
1909 end:
1910 return ret;
1911 }
1912
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 */
1920 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
1921 struct lttng_consumer_local_data *ctx)
1922 {
1923 unsigned long len, subbuf_size, padding;
1924 int err, write_index = 1;
1925 long ret = 0;
1926 struct ustctl_consumer_stream *ustream;
1927 struct ctf_packet_index index;
1928
1929 assert(stream);
1930 assert(stream->ustream);
1931 assert(ctx);
1932
1933 DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream->wait_fd,
1934 stream->name);
1935
1936 /* Ease our life for what's next. */
1937 ustream = stream->ustream;
1938
1939 /*
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.
1948 */
1949 if (stream->monitor && !stream->hangup_flush_done && !stream->has_data) {
1950 char dummy;
1951 ssize_t readlen;
1952
1953 readlen = lttng_read(stream->wait_fd, &dummy, 1);
1954 if (readlen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
1955 ret = readlen;
1956 goto end;
1957 }
1958 }
1959
1960 retry:
1961 /* Get the next subbuffer */
1962 err = ustctl_get_next_subbuf(ustream);
1963 if (err != 0) {
1964 /*
1965 * Populate metadata info if the existing info has
1966 * already been read.
1967 */
1968 if (stream->metadata_flag) {
1969 ret = commit_one_metadata_packet(stream);
1970 if (ret <= 0) {
1971 goto end;
1972 }
1973 ustctl_flush_buffer(stream->ustream, 1);
1974 goto retry;
1975 }
1976
1977 ret = err; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
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, "
1985 "it is due to concurrency) [ret: %d]", err);
1986 goto end;
1987 }
1988 assert(stream->chan->output == CONSUMER_CHANNEL_MMAP);
1989
1990 if (!stream->metadata_flag) {
1991 index.offset = htobe64(stream->out_fd_offset);
1992 ret = get_index_values(&index, ustream);
1993 if (ret < 0) {
1994 goto end;
1995 }
1996 } else {
1997 write_index = 0;
1998 }
1999
2000 /* Get the full padded subbuffer size */
2001 err = ustctl_get_padded_subbuf_size(ustream, &len);
2002 assert(err == 0);
2003
2004 /* Get subbuffer data size (without padding) */
2005 err = ustctl_get_subbuf_size(ustream, &subbuf_size);
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;
2012 /* write the subbuffer to the tracefile */
2013 ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, subbuf_size, padding, &index);
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 */
2018 if ((ret != subbuf_size && stream->net_seq_idx != (uint64_t) -1ULL) ||
2019 (ret != len && stream->net_seq_idx == (uint64_t) -1ULL)) {
2020 /*
2021 * Display the error but continue processing to try to release the
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.
2027 */
2028 DBG("Error writing to tracefile "
2029 "(ret: %ld != len: %lu != subbuf_size: %lu)",
2030 ret, len, subbuf_size);
2031 write_index = 0;
2032 }
2033 err = ustctl_put_next_subbuf(ustream);
2034 assert(err == 0);
2035
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
2047 /* Write index if needed. */
2048 if (!write_index) {
2049 goto end;
2050 }
2051
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
2062 assert(!stream->metadata_flag);
2063 err = consumer_stream_write_index(stream, &index);
2064 if (err < 0) {
2065 goto end;
2066 }
2067
2068 end:
2069 return ret;
2070 }
2071
2072 /*
2073 * Called when a stream is created.
2074 *
2075 * Return 0 on success or else a negative value.
2076 */
2077 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
2078 {
2079 int ret;
2080
2081 assert(stream);
2082
2083 /* Don't create anything if this is set for streaming. */
2084 if (stream->net_seq_idx == (uint64_t) -1ULL && stream->chan->monitor) {
2085 ret = utils_create_stream_file(stream->chan->pathname, stream->name,
2086 stream->chan->tracefile_size, stream->tracefile_count_current,
2087 stream->uid, stream->gid, NULL);
2088 if (ret < 0) {
2089 goto error;
2090 }
2091 stream->out_fd = ret;
2092 stream->tracefile_size_current = 0;
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 }
2104 }
2105 ret = 0;
2106
2107 error:
2108 return ret;
2109 }
2110
2111 /*
2112 * Check if data is still being extracted from the buffers for a specific
2113 * stream. Consumer data lock MUST be acquired before calling this function
2114 * and the stream lock.
2115 *
2116 * Return 1 if the traced data are still getting read else 0 meaning that the
2117 * data is available for trace viewer reading.
2118 */
2119 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
2120 {
2121 int ret;
2122
2123 assert(stream);
2124 assert(stream->ustream);
2125
2126 DBG("UST consumer checking data pending");
2127
2128 if (stream->endpoint_status != CONSUMER_ENDPOINT_ACTIVE) {
2129 ret = 0;
2130 goto end;
2131 }
2132
2133 if (stream->chan->type == CONSUMER_CHANNEL_TYPE_METADATA) {
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
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,
2151 contiguous, pushed);
2152 assert(((int64_t) (contiguous - pushed)) >= 0);
2153 if ((contiguous != pushed) ||
2154 (((int64_t) contiguous - pushed) > 0 || contiguous == 0)) {
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 }
2170 }
2171
2172 /* Data is NOT pending so ready to be read. */
2173 ret = 0;
2174
2175 end:
2176 return ret;
2177 }
2178
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 */
2185 void 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
2214 end:
2215 return;
2216 }
2217
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 */
2227 void lttng_ustconsumer_close_all_metadata(struct lttng_ht *metadata_ht)
2228 {
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) {
2240
2241 health_code_update();
2242
2243 pthread_mutex_lock(&stream->chan->lock);
2244 lttng_ustconsumer_close_metadata(stream->chan);
2245 pthread_mutex_unlock(&stream->chan->lock);
2246
2247 }
2248 rcu_read_unlock();
2249 }
2250
2251 void 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 }
2260
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 */
2267 int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
2268 struct lttng_consumer_channel *channel, int timer, int wait)
2269 {
2270 struct lttcomm_metadata_request_msg request;
2271 struct lttcomm_consumer_msg msg;
2272 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
2273 uint64_t len, key, offset;
2274 int ret;
2275
2276 assert(channel);
2277 assert(channel->metadata_cache);
2278
2279 memset(&request, 0, sizeof(request));
2280
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;
2295 request.session_id_per_pid = channel->session_id_per_pid;
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;
2302 request.key = channel->key;
2303
2304 DBG("Sending metadata request to sessiond, session id %" PRIu64
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);
2308
2309 pthread_mutex_lock(&ctx->metadata_socket_lock);
2310
2311 health_code_update();
2312
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
2320 health_code_update();
2321
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)) {
2326 DBG("Consumer received unexpected message size %d (expects %zu)",
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
2336 health_code_update();
2337
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
2359 health_code_update();
2360
2361 /* Tell session daemon we are ready to receive the metadata. */
2362 ret = consumer_send_status_msg(ctx->consumer_metadata_socket,
2363 LTTCOMM_CONSUMERD_SUCCESS);
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
2372 health_code_update();
2373
2374 ret = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket,
2375 key, offset, len, channel, timer, wait);
2376 if (ret >= 0) {
2377 /*
2378 * Only send the status msg if the sessiond is alive meaning a positive
2379 * ret code.
2380 */
2381 (void) consumer_send_status_msg(ctx->consumer_metadata_socket, ret);
2382 }
2383 ret = 0;
2384
2385 end:
2386 health_code_update();
2387
2388 pthread_mutex_unlock(&ctx->metadata_socket_lock);
2389 return ret;
2390 }
2391
2392 /*
2393 * Return the ustctl call for the get stream id.
2394 */
2395 int 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.081164 seconds and 4 git commands to generate.