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