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