document lttng_ustconsumer_request_metadata locking constraints
[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 <common/common.h>
36 #include <common/sessiond-comm/sessiond-comm.h>
37 #include <common/relayd/relayd.h>
38 #include <common/compat/fcntl.h>
39 #include <common/consumer-metadata-cache.h>
40 #include <common/consumer-stream.h>
41 #include <common/consumer-timer.h>
42 #include <common/utils.h>
43
44 #include "ust-consumer.h"
45
46 extern struct lttng_consumer_global_data consumer_data;
47 extern int consumer_poll_timeout;
48 extern volatile int consumer_quit;
49
50 /*
51 * Free channel object and all streams associated with it. This MUST be used
52 * only and only if the channel has _NEVER_ been added to the global channel
53 * hash table.
54 */
55 static void destroy_channel(struct lttng_consumer_channel *channel)
56 {
57 struct lttng_consumer_stream *stream, *stmp;
58
59 assert(channel);
60
61 DBG("UST consumer cleaning stream list");
62
63 cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head,
64 send_node) {
65 cds_list_del(&stream->send_node);
66 ustctl_destroy_stream(stream->ustream);
67 free(stream);
68 }
69
70 /*
71 * If a channel is available meaning that was created before the streams
72 * were, delete it.
73 */
74 if (channel->uchan) {
75 lttng_ustconsumer_del_channel(channel);
76 }
77 free(channel);
78 }
79
80 /*
81 * Add channel to internal consumer state.
82 *
83 * Returns 0 on success or else a negative value.
84 */
85 static int add_channel(struct lttng_consumer_channel *channel,
86 struct lttng_consumer_local_data *ctx)
87 {
88 int ret = 0;
89
90 assert(channel);
91 assert(ctx);
92
93 if (ctx->on_recv_channel != NULL) {
94 ret = ctx->on_recv_channel(channel);
95 if (ret == 0) {
96 ret = consumer_add_channel(channel, ctx);
97 } else if (ret < 0) {
98 /* Most likely an ENOMEM. */
99 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
100 goto error;
101 }
102 } else {
103 ret = consumer_add_channel(channel, ctx);
104 }
105
106 DBG("UST consumer channel added (key: %" PRIu64 ")", channel->key);
107
108 error:
109 return ret;
110 }
111
112 /*
113 * Allocate and return a consumer channel object.
114 */
115 static struct lttng_consumer_channel *allocate_channel(uint64_t session_id,
116 const char *pathname, const char *name, uid_t uid, gid_t gid,
117 uint64_t relayd_id, uint64_t key, enum lttng_event_output output,
118 uint64_t tracefile_size, uint64_t tracefile_count,
119 uint64_t session_id_per_pid, unsigned int monitor)
120 {
121 assert(pathname);
122 assert(name);
123
124 return consumer_allocate_channel(key, session_id, pathname, name, uid,
125 gid, relayd_id, output, tracefile_size,
126 tracefile_count, session_id_per_pid, monitor);
127 }
128
129 /*
130 * Allocate and return a consumer stream object. If _alloc_ret is not NULL, the
131 * error value if applicable is set in it else it is kept untouched.
132 *
133 * Return NULL on error else the newly allocated stream object.
134 */
135 static struct lttng_consumer_stream *allocate_stream(int cpu, int key,
136 struct lttng_consumer_channel *channel,
137 struct lttng_consumer_local_data *ctx, int *_alloc_ret)
138 {
139 int alloc_ret;
140 struct lttng_consumer_stream *stream = NULL;
141
142 assert(channel);
143 assert(ctx);
144
145 stream = consumer_allocate_stream(channel->key,
146 key,
147 LTTNG_CONSUMER_ACTIVE_STREAM,
148 channel->name,
149 channel->uid,
150 channel->gid,
151 channel->relayd_id,
152 channel->session_id,
153 cpu,
154 &alloc_ret,
155 channel->type,
156 channel->monitor);
157 if (stream == NULL) {
158 switch (alloc_ret) {
159 case -ENOENT:
160 /*
161 * We could not find the channel. Can happen if cpu hotplug
162 * happens while tearing down.
163 */
164 DBG3("Could not find channel");
165 break;
166 case -ENOMEM:
167 case -EINVAL:
168 default:
169 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
170 break;
171 }
172 goto error;
173 }
174
175 stream->chan = channel;
176
177 error:
178 if (_alloc_ret) {
179 *_alloc_ret = alloc_ret;
180 }
181 return stream;
182 }
183
184 /*
185 * Send the given stream pointer to the corresponding thread.
186 *
187 * Returns 0 on success else a negative value.
188 */
189 static int send_stream_to_thread(struct lttng_consumer_stream *stream,
190 struct lttng_consumer_local_data *ctx)
191 {
192 int ret;
193 struct lttng_pipe *stream_pipe;
194
195 /* Get the right pipe where the stream will be sent. */
196 if (stream->metadata_flag) {
197 stream_pipe = ctx->consumer_metadata_pipe;
198 } else {
199 stream_pipe = ctx->consumer_data_pipe;
200 }
201
202 ret = lttng_pipe_write(stream_pipe, &stream, sizeof(stream));
203 if (ret < 0) {
204 ERR("Consumer write %s stream to pipe %d",
205 stream->metadata_flag ? "metadata" : "data",
206 lttng_pipe_get_writefd(stream_pipe));
207 }
208
209 return ret;
210 }
211
212 /*
213 * Create streams for the given channel using liblttng-ust-ctl.
214 *
215 * Return 0 on success else a negative value.
216 */
217 static int create_ust_streams(struct lttng_consumer_channel *channel,
218 struct lttng_consumer_local_data *ctx)
219 {
220 int ret, cpu = 0;
221 struct ustctl_consumer_stream *ustream;
222 struct lttng_consumer_stream *stream;
223
224 assert(channel);
225 assert(ctx);
226
227 /*
228 * While a stream is available from ustctl. When NULL is returned, we've
229 * reached the end of the possible stream for the channel.
230 */
231 while ((ustream = ustctl_create_stream(channel->uchan, cpu))) {
232 int wait_fd;
233 int ust_metadata_pipe[2];
234
235 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && channel->monitor) {
236 ret = utils_create_pipe_cloexec_nonblock(ust_metadata_pipe);
237 if (ret < 0) {
238 ERR("Create ust metadata poll pipe");
239 goto error;
240 }
241 wait_fd = ust_metadata_pipe[0];
242 } else {
243 wait_fd = ustctl_stream_get_wait_fd(ustream);
244 }
245
246 /* Allocate consumer stream object. */
247 stream = allocate_stream(cpu, wait_fd, channel, ctx, &ret);
248 if (!stream) {
249 goto error_alloc;
250 }
251 stream->ustream = ustream;
252 /*
253 * Store it so we can save multiple function calls afterwards since
254 * this value is used heavily in the stream threads. This is UST
255 * specific so this is why it's done after allocation.
256 */
257 stream->wait_fd = wait_fd;
258
259 /*
260 * Increment channel refcount since the channel reference has now been
261 * assigned in the allocation process above.
262 */
263 if (stream->chan->monitor) {
264 uatomic_inc(&stream->chan->refcount);
265 }
266
267 /*
268 * Order is important this is why a list is used. On error, the caller
269 * should clean this list.
270 */
271 cds_list_add_tail(&stream->send_node, &channel->streams.head);
272
273 ret = ustctl_get_max_subbuf_size(stream->ustream,
274 &stream->max_sb_size);
275 if (ret < 0) {
276 ERR("ustctl_get_max_subbuf_size failed for stream %s",
277 stream->name);
278 goto error;
279 }
280
281 /* Do actions once stream has been received. */
282 if (ctx->on_recv_stream) {
283 ret = ctx->on_recv_stream(stream);
284 if (ret < 0) {
285 goto error;
286 }
287 }
288
289 DBG("UST consumer add stream %s (key: %" PRIu64 ") with relayd id %" PRIu64,
290 stream->name, stream->key, stream->relayd_stream_id);
291
292 /* Set next CPU stream. */
293 channel->streams.count = ++cpu;
294
295 /* Keep stream reference when creating metadata. */
296 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA) {
297 channel->metadata_stream = stream;
298 stream->ust_metadata_poll_pipe[0] = ust_metadata_pipe[0];
299 stream->ust_metadata_poll_pipe[1] = ust_metadata_pipe[1];
300 }
301 }
302
303 return 0;
304
305 error:
306 error_alloc:
307 return ret;
308 }
309
310 /*
311 * Create an UST channel with the given attributes and send it to the session
312 * daemon using the ust ctl API.
313 *
314 * Return 0 on success or else a negative value.
315 */
316 static int create_ust_channel(struct ustctl_consumer_channel_attr *attr,
317 struct ustctl_consumer_channel **chanp)
318 {
319 int ret;
320 struct ustctl_consumer_channel *channel;
321
322 assert(attr);
323 assert(chanp);
324
325 DBG3("Creating channel to ustctl with attr: [overwrite: %d, "
326 "subbuf_size: %" PRIu64 ", num_subbuf: %" PRIu64 ", "
327 "switch_timer_interval: %u, read_timer_interval: %u, "
328 "output: %d, type: %d", attr->overwrite, attr->subbuf_size,
329 attr->num_subbuf, attr->switch_timer_interval,
330 attr->read_timer_interval, attr->output, attr->type);
331
332 channel = ustctl_create_channel(attr);
333 if (!channel) {
334 ret = -1;
335 goto error_create;
336 }
337
338 *chanp = channel;
339
340 return 0;
341
342 error_create:
343 return ret;
344 }
345
346 /*
347 * Send a single given stream to the session daemon using the sock.
348 *
349 * Return 0 on success else a negative value.
350 */
351 static int send_sessiond_stream(int sock, struct lttng_consumer_stream *stream)
352 {
353 int ret;
354
355 assert(stream);
356 assert(sock >= 0);
357
358 DBG("UST consumer sending stream %" PRIu64 " to sessiond", stream->key);
359
360 /* Send stream to session daemon. */
361 ret = ustctl_send_stream_to_sessiond(sock, stream->ustream);
362 if (ret < 0) {
363 goto error;
364 }
365
366 error:
367 return ret;
368 }
369
370 /*
371 * Send channel to sessiond.
372 *
373 * Return 0 on success or else a negative value.
374 */
375 static int send_sessiond_channel(int sock,
376 struct lttng_consumer_channel *channel,
377 struct lttng_consumer_local_data *ctx, int *relayd_error)
378 {
379 int ret, ret_code = LTTNG_OK;
380 struct lttng_consumer_stream *stream;
381
382 assert(channel);
383 assert(ctx);
384 assert(sock >= 0);
385
386 DBG("UST consumer sending channel %s to sessiond", channel->name);
387
388 if (channel->relayd_id != (uint64_t) -1ULL) {
389 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
390 /* Try to send the stream to the relayd if one is available. */
391 ret = consumer_send_relayd_stream(stream, stream->chan->pathname);
392 if (ret < 0) {
393 /*
394 * Flag that the relayd was the problem here probably due to a
395 * communicaton error on the socket.
396 */
397 if (relayd_error) {
398 *relayd_error = 1;
399 }
400 ret_code = LTTNG_ERR_RELAYD_CONNECT_FAIL;
401 }
402 }
403 }
404
405 /* Inform sessiond that we are about to send channel and streams. */
406 ret = consumer_send_status_msg(sock, ret_code);
407 if (ret < 0 || ret_code != LTTNG_OK) {
408 /*
409 * Either the session daemon is not responding or the relayd died so we
410 * stop now.
411 */
412 goto error;
413 }
414
415 /* Send channel to sessiond. */
416 ret = ustctl_send_channel_to_sessiond(sock, channel->uchan);
417 if (ret < 0) {
418 goto error;
419 }
420
421 ret = ustctl_channel_close_wakeup_fd(channel->uchan);
422 if (ret < 0) {
423 goto error;
424 }
425
426 /* The channel was sent successfully to the sessiond at this point. */
427 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
428 /* Send stream to session daemon. */
429 ret = send_sessiond_stream(sock, stream);
430 if (ret < 0) {
431 goto error;
432 }
433 }
434
435 /* Tell sessiond there is no more stream. */
436 ret = ustctl_send_stream_to_sessiond(sock, NULL);
437 if (ret < 0) {
438 goto error;
439 }
440
441 DBG("UST consumer NULL stream sent to sessiond");
442
443 return 0;
444
445 error:
446 if (ret_code != LTTNG_OK) {
447 ret = -1;
448 }
449 return ret;
450 }
451
452 /*
453 * Creates a channel and streams and add the channel it to the channel internal
454 * state. The created stream must ONLY be sent once the GET_CHANNEL command is
455 * received.
456 *
457 * Return 0 on success or else, a negative value is returned and the channel
458 * MUST be destroyed by consumer_del_channel().
459 */
460 static int ask_channel(struct lttng_consumer_local_data *ctx, int sock,
461 struct lttng_consumer_channel *channel,
462 struct ustctl_consumer_channel_attr *attr)
463 {
464 int ret;
465
466 assert(ctx);
467 assert(channel);
468 assert(attr);
469
470 /*
471 * This value is still used by the kernel consumer since for the kernel,
472 * the stream ownership is not IN the consumer so we need to have the
473 * number of left stream that needs to be initialized so we can know when
474 * to delete the channel (see consumer.c).
475 *
476 * As for the user space tracer now, the consumer creates and sends the
477 * stream to the session daemon which only sends them to the application
478 * once every stream of a channel is received making this value useless
479 * because we they will be added to the poll thread before the application
480 * receives them. This ensures that a stream can not hang up during
481 * initilization of a channel.
482 */
483 channel->nb_init_stream_left = 0;
484
485 /* The reply msg status is handled in the following call. */
486 ret = create_ust_channel(attr, &channel->uchan);
487 if (ret < 0) {
488 goto end;
489 }
490
491 channel->wait_fd = ustctl_channel_get_wait_fd(channel->uchan);
492
493 /*
494 * For the snapshots (no monitor), we create the metadata streams
495 * on demand, not during the channel creation.
496 */
497 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && !channel->monitor) {
498 ret = 0;
499 goto end;
500 }
501
502 /* Open all streams for this channel. */
503 ret = create_ust_streams(channel, ctx);
504 if (ret < 0) {
505 goto end;
506 }
507
508 end:
509 return ret;
510 }
511
512 /*
513 * Send all stream of a channel to the right thread handling it.
514 *
515 * On error, return a negative value else 0 on success.
516 */
517 static int send_streams_to_thread(struct lttng_consumer_channel *channel,
518 struct lttng_consumer_local_data *ctx)
519 {
520 int ret = 0;
521 struct lttng_consumer_stream *stream, *stmp;
522
523 assert(channel);
524 assert(ctx);
525
526 /* Send streams to the corresponding thread. */
527 cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head,
528 send_node) {
529 /* Sending the stream to the thread. */
530 ret = send_stream_to_thread(stream, ctx);
531 if (ret < 0) {
532 /*
533 * If we are unable to send the stream to the thread, there is
534 * a big problem so just stop everything.
535 */
536 goto error;
537 }
538
539 /* Remove node from the channel stream list. */
540 cds_list_del(&stream->send_node);
541
542 /*
543 * From this point on, the stream's ownership has been moved away from
544 * the channel and becomes globally visible.
545 */
546 stream->globally_visible = 1;
547 }
548
549 error:
550 return ret;
551 }
552
553 /*
554 * Flush channel's streams using the given key to retrieve the channel.
555 *
556 * Return 0 on success else an LTTng error code.
557 */
558 static int flush_channel(uint64_t chan_key)
559 {
560 int ret = 0;
561 struct lttng_consumer_channel *channel;
562 struct lttng_consumer_stream *stream;
563 struct lttng_ht *ht;
564 struct lttng_ht_iter iter;
565
566 DBG("UST consumer flush channel key %" PRIu64, chan_key);
567
568 rcu_read_lock();
569 channel = consumer_find_channel(chan_key);
570 if (!channel) {
571 ERR("UST consumer flush channel %" PRIu64 " not found", chan_key);
572 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
573 goto error;
574 }
575
576 ht = consumer_data.stream_per_chan_id_ht;
577
578 /* For each stream of the channel id, flush it. */
579 cds_lfht_for_each_entry_duplicate(ht->ht,
580 ht->hash_fct(&channel->key, lttng_ht_seed), ht->match_fct,
581 &channel->key, &iter.iter, stream, node_channel_id.node) {
582 ustctl_flush_buffer(stream->ustream, 1);
583 }
584 error:
585 rcu_read_unlock();
586 return ret;
587 }
588
589 /*
590 * Close metadata stream wakeup_fd using the given key to retrieve the channel.
591 * RCU read side lock MUST be acquired before calling this function.
592 *
593 * Return 0 on success else an LTTng error code.
594 */
595 static int close_metadata(uint64_t chan_key)
596 {
597 int ret = 0;
598 struct lttng_consumer_channel *channel;
599
600 DBG("UST consumer close metadata key %" PRIu64, chan_key);
601
602 channel = consumer_find_channel(chan_key);
603 if (!channel) {
604 /*
605 * This is possible if the metadata thread has issue a delete because
606 * the endpoint point of the stream hung up. There is no way the
607 * session daemon can know about it thus use a DBG instead of an actual
608 * error.
609 */
610 DBG("UST consumer close metadata %" PRIu64 " not found", chan_key);
611 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
612 goto error;
613 }
614
615 pthread_mutex_lock(&consumer_data.lock);
616 pthread_mutex_lock(&channel->lock);
617
618 if (cds_lfht_is_node_deleted(&channel->node.node)) {
619 goto error_unlock;
620 }
621
622 if (channel->switch_timer_enabled == 1) {
623 DBG("Deleting timer on metadata channel");
624 consumer_timer_switch_stop(channel);
625 }
626
627 if (channel->metadata_stream) {
628 ret = ustctl_stream_close_wakeup_fd(channel->metadata_stream->ustream);
629 if (ret < 0) {
630 ERR("UST consumer unable to close fd of metadata (ret: %d)", ret);
631 ret = LTTCOMM_CONSUMERD_ERROR_METADATA;
632 goto error_unlock;
633 }
634 if (channel->monitor) {
635 /* close the read-side in consumer_del_metadata_stream */
636 ret = close(channel->metadata_stream->ust_metadata_poll_pipe[1]);
637 if (ret < 0) {
638 PERROR("Close UST metadata write-side poll pipe");
639 }
640 }
641 }
642
643 error_unlock:
644 pthread_mutex_unlock(&channel->lock);
645 pthread_mutex_unlock(&consumer_data.lock);
646 error:
647 return ret;
648 }
649
650 /*
651 * RCU read side lock MUST be acquired before calling this function.
652 *
653 * Return 0 on success else an LTTng error code.
654 */
655 static int setup_metadata(struct lttng_consumer_local_data *ctx, uint64_t key)
656 {
657 int ret;
658 struct lttng_consumer_channel *metadata;
659
660 DBG("UST consumer setup metadata key %" PRIu64, key);
661
662 metadata = consumer_find_channel(key);
663 if (!metadata) {
664 ERR("UST consumer push metadata %" PRIu64 " not found", key);
665 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
666 goto end;
667 }
668
669 /*
670 * In no monitor mode, the metadata channel has no stream(s) so skip the
671 * ownership transfer to the metadata thread.
672 */
673 if (!metadata->monitor) {
674 DBG("Metadata channel in no monitor");
675 ret = 0;
676 goto end;
677 }
678
679 /*
680 * Send metadata stream to relayd if one available. Availability is
681 * known if the stream is still in the list of the channel.
682 */
683 if (cds_list_empty(&metadata->streams.head)) {
684 ERR("Metadata channel key %" PRIu64 ", no stream available.", key);
685 ret = LTTCOMM_CONSUMERD_ERROR_METADATA;
686 goto error_no_stream;
687 }
688
689 /* Send metadata stream to relayd if needed. */
690 if (metadata->metadata_stream->net_seq_idx != (uint64_t) -1ULL) {
691 ret = consumer_send_relayd_stream(metadata->metadata_stream,
692 metadata->pathname);
693 if (ret < 0) {
694 ret = LTTCOMM_CONSUMERD_ERROR_METADATA;
695 goto error;
696 }
697 }
698
699 ret = send_streams_to_thread(metadata, ctx);
700 if (ret < 0) {
701 /*
702 * If we are unable to send the stream to the thread, there is
703 * a big problem so just stop everything.
704 */
705 ret = LTTCOMM_CONSUMERD_FATAL;
706 goto error;
707 }
708 /* List MUST be empty after or else it could be reused. */
709 assert(cds_list_empty(&metadata->streams.head));
710
711 ret = 0;
712 goto end;
713
714 error:
715 /*
716 * Delete metadata channel on error. At this point, the metadata stream can
717 * NOT be monitored by the metadata thread thus having the guarantee that
718 * the stream is still in the local stream list of the channel. This call
719 * will make sure to clean that list.
720 */
721 cds_list_del(&metadata->metadata_stream->send_node);
722 consumer_stream_destroy(metadata->metadata_stream, NULL);
723 error_no_stream:
724 end:
725 return ret;
726 }
727
728 /*
729 * Snapshot the whole metadata.
730 *
731 * Returns 0 on success, < 0 on error
732 */
733 static int snapshot_metadata(uint64_t key, char *path, uint64_t relayd_id,
734 struct lttng_consumer_local_data *ctx)
735 {
736 int ret = 0;
737 struct lttng_consumer_channel *metadata_channel;
738 struct lttng_consumer_stream *metadata_stream;
739
740 assert(path);
741 assert(ctx);
742
743 DBG("UST consumer snapshot metadata with key %" PRIu64 " at path %s",
744 key, path);
745
746 rcu_read_lock();
747
748 metadata_channel = consumer_find_channel(key);
749 if (!metadata_channel) {
750 ERR("UST snapshot metadata channel not found for key %lu", key);
751 ret = -1;
752 goto error;
753 }
754 assert(!metadata_channel->monitor);
755
756 /*
757 * Ask the sessiond if we have new metadata waiting and update the
758 * consumer metadata cache.
759 */
760 ret = lttng_ustconsumer_request_metadata(ctx, metadata_channel);
761 if (ret < 0) {
762 goto error;
763 }
764
765 /*
766 * The metadata stream is NOT created in no monitor mode when the channel
767 * is created on a sessiond ask channel command.
768 */
769 ret = create_ust_streams(metadata_channel, ctx);
770 if (ret < 0) {
771 goto error;
772 }
773
774 metadata_stream = metadata_channel->metadata_stream;
775 assert(metadata_stream);
776
777 if (relayd_id != (uint64_t) -1ULL) {
778 metadata_stream->net_seq_idx = relayd_id;
779 ret = consumer_send_relayd_stream(metadata_stream, path);
780 if (ret < 0) {
781 goto error_stream;
782 }
783 } else {
784 ret = utils_create_stream_file(path, metadata_stream->name,
785 metadata_stream->chan->tracefile_size,
786 metadata_stream->tracefile_count_current,
787 metadata_stream->uid, metadata_stream->gid);
788 if (ret < 0) {
789 goto error_stream;
790 }
791 metadata_stream->out_fd = ret;
792 metadata_stream->tracefile_size_current = 0;
793 }
794
795 pthread_mutex_lock(&metadata_channel->metadata_cache->lock);
796
797 do {
798 ret = lttng_consumer_read_subbuffer(metadata_stream, ctx);
799 if (ret < 0) {
800 goto error_unlock;
801 }
802 } while (ret > 0);
803
804 error_unlock:
805 pthread_mutex_unlock(&metadata_channel->metadata_cache->lock);
806
807 error_stream:
808 /*
809 * Clean up the stream completly because the next snapshot will use a new
810 * metadata stream.
811 */
812 cds_list_del(&metadata_stream->send_node);
813 consumer_stream_destroy(metadata_stream, NULL);
814 metadata_channel->metadata_stream = NULL;
815
816 error:
817 rcu_read_unlock();
818 return ret;
819 }
820
821 /*
822 * Take a snapshot of all the stream of a channel.
823 *
824 * Returns 0 on success, < 0 on error
825 */
826 static int snapshot_channel(uint64_t key, char *path, uint64_t relayd_id,
827 uint64_t max_stream_size, struct lttng_consumer_local_data *ctx)
828 {
829 int ret;
830 unsigned use_relayd = 0;
831 unsigned long consumed_pos, produced_pos;
832 struct lttng_consumer_channel *channel;
833 struct lttng_consumer_stream *stream;
834
835 assert(path);
836 assert(ctx);
837
838 rcu_read_lock();
839
840 if (relayd_id != (uint64_t) -1ULL) {
841 use_relayd = 1;
842 }
843
844 channel = consumer_find_channel(key);
845 if (!channel) {
846 ERR("UST snapshot channel not found for key %lu", key);
847 ret = -1;
848 goto error;
849 }
850 assert(!channel->monitor);
851 DBG("UST consumer snapshot channel %lu", key);
852
853 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
854 /* Lock stream because we are about to change its state. */
855 pthread_mutex_lock(&stream->lock);
856 stream->net_seq_idx = relayd_id;
857
858 if (use_relayd) {
859 ret = consumer_send_relayd_stream(stream, path);
860 if (ret < 0) {
861 goto error_unlock;
862 }
863 } else {
864 ret = utils_create_stream_file(path, stream->name,
865 stream->chan->tracefile_size,
866 stream->tracefile_count_current,
867 stream->uid, stream->gid);
868 if (ret < 0) {
869 goto error_unlock;
870 }
871 stream->out_fd = ret;
872 stream->tracefile_size_current = 0;
873
874 DBG("UST consumer snapshot stream %s/%s (%" PRIu64 ")", path,
875 stream->name, stream->key);
876 }
877
878 ustctl_flush_buffer(stream->ustream, 1);
879
880 ret = lttng_ustconsumer_take_snapshot(stream);
881 if (ret < 0) {
882 ERR("Taking UST snapshot");
883 goto error_unlock;
884 }
885
886 ret = lttng_ustconsumer_get_produced_snapshot(stream, &produced_pos);
887 if (ret < 0) {
888 ERR("Produced UST snapshot position");
889 goto error_unlock;
890 }
891
892 ret = lttng_ustconsumer_get_consumed_snapshot(stream, &consumed_pos);
893 if (ret < 0) {
894 ERR("Consumerd UST snapshot position");
895 goto error_unlock;
896 }
897
898 /*
899 * The original value is sent back if max stream size is larger than
900 * the possible size of the snapshot. Also, we asume that the session
901 * daemon should never send a maximum stream size that is lower than
902 * subbuffer size.
903 */
904 consumed_pos = consumer_get_consumed_maxsize(consumed_pos,
905 produced_pos, max_stream_size);
906
907 while (consumed_pos < produced_pos) {
908 ssize_t read_len;
909 unsigned long len, padded_len;
910
911 DBG("UST consumer taking snapshot at pos %lu", consumed_pos);
912
913 ret = ustctl_get_subbuf(stream->ustream, &consumed_pos);
914 if (ret < 0) {
915 if (ret != -EAGAIN) {
916 PERROR("ustctl_get_subbuf snapshot");
917 goto error_close_stream;
918 }
919 DBG("UST consumer get subbuf failed. Skipping it.");
920 consumed_pos += stream->max_sb_size;
921 continue;
922 }
923
924 ret = ustctl_get_subbuf_size(stream->ustream, &len);
925 if (ret < 0) {
926 ERR("Snapshot ustctl_get_subbuf_size");
927 goto error_put_subbuf;
928 }
929
930 ret = ustctl_get_padded_subbuf_size(stream->ustream, &padded_len);
931 if (ret < 0) {
932 ERR("Snapshot ustctl_get_padded_subbuf_size");
933 goto error_put_subbuf;
934 }
935
936 read_len = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, len,
937 padded_len - len);
938 if (use_relayd) {
939 if (read_len != len) {
940 ret = -1;
941 goto error_put_subbuf;
942 }
943 } else {
944 if (read_len != padded_len) {
945 ret = -1;
946 goto error_put_subbuf;
947 }
948 }
949
950 ret = ustctl_put_subbuf(stream->ustream);
951 if (ret < 0) {
952 ERR("Snapshot ustctl_put_subbuf");
953 goto error_close_stream;
954 }
955 consumed_pos += stream->max_sb_size;
956 }
957
958 /* Simply close the stream so we can use it on the next snapshot. */
959 consumer_stream_close(stream);
960 pthread_mutex_unlock(&stream->lock);
961 }
962
963 rcu_read_unlock();
964 return 0;
965
966 error_put_subbuf:
967 if (ustctl_put_subbuf(stream->ustream) < 0) {
968 ERR("Snapshot ustctl_put_subbuf");
969 }
970 error_close_stream:
971 consumer_stream_close(stream);
972 error_unlock:
973 pthread_mutex_unlock(&stream->lock);
974 error:
975 rcu_read_unlock();
976 return ret;
977 }
978
979 /*
980 * Receive the metadata updates from the sessiond.
981 */
982 int lttng_ustconsumer_recv_metadata(int sock, uint64_t key, uint64_t offset,
983 uint64_t len, struct lttng_consumer_channel *channel)
984 {
985 int ret, ret_code = LTTNG_OK;
986 char *metadata_str;
987
988 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key, len);
989
990 metadata_str = zmalloc(len * sizeof(char));
991 if (!metadata_str) {
992 PERROR("zmalloc metadata string");
993 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
994 goto end;
995 }
996
997 /* Receive metadata string. */
998 ret = lttcomm_recv_unix_sock(sock, metadata_str, len);
999 if (ret < 0) {
1000 /* Session daemon is dead so return gracefully. */
1001 ret_code = ret;
1002 goto end_free;
1003 }
1004
1005 pthread_mutex_lock(&channel->metadata_cache->lock);
1006 ret = consumer_metadata_cache_write(channel, offset, len, metadata_str);
1007 if (ret < 0) {
1008 /* Unable to handle metadata. Notify session daemon. */
1009 ret_code = LTTCOMM_CONSUMERD_ERROR_METADATA;
1010 /*
1011 * Skip metadata flush on write error since the offset and len might
1012 * not have been updated which could create an infinite loop below when
1013 * waiting for the metadata cache to be flushed.
1014 */
1015 pthread_mutex_unlock(&channel->metadata_cache->lock);
1016 goto end_free;
1017 }
1018 pthread_mutex_unlock(&channel->metadata_cache->lock);
1019
1020 while (consumer_metadata_cache_flushed(channel, offset + len)) {
1021 DBG("Waiting for metadata to be flushed");
1022 usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME);
1023 }
1024
1025 end_free:
1026 free(metadata_str);
1027 end:
1028 return ret_code;
1029 }
1030
1031 /*
1032 * Receive command from session daemon and process it.
1033 *
1034 * Return 1 on success else a negative value or 0.
1035 */
1036 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
1037 int sock, struct pollfd *consumer_sockpoll)
1038 {
1039 ssize_t ret;
1040 enum lttng_error_code ret_code = LTTNG_OK;
1041 struct lttcomm_consumer_msg msg;
1042 struct lttng_consumer_channel *channel = NULL;
1043
1044 ret = lttcomm_recv_unix_sock(sock, &msg, sizeof(msg));
1045 if (ret != sizeof(msg)) {
1046 DBG("Consumer received unexpected message size %zd (expects %zu)",
1047 ret, sizeof(msg));
1048 /*
1049 * The ret value might 0 meaning an orderly shutdown but this is ok
1050 * since the caller handles this.
1051 */
1052 if (ret > 0) {
1053 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
1054 ret = -1;
1055 }
1056 return ret;
1057 }
1058 if (msg.cmd_type == LTTNG_CONSUMER_STOP) {
1059 /*
1060 * Notify the session daemon that the command is completed.
1061 *
1062 * On transport layer error, the function call will print an error
1063 * message so handling the returned code is a bit useless since we
1064 * return an error code anyway.
1065 */
1066 (void) consumer_send_status_msg(sock, ret_code);
1067 return -ENOENT;
1068 }
1069
1070 /* relayd needs RCU read-side lock */
1071 rcu_read_lock();
1072
1073 switch (msg.cmd_type) {
1074 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET:
1075 {
1076 /* Session daemon status message are handled in the following call. */
1077 ret = consumer_add_relayd_socket(msg.u.relayd_sock.net_index,
1078 msg.u.relayd_sock.type, ctx, sock, consumer_sockpoll,
1079 &msg.u.relayd_sock.sock, msg.u.relayd_sock.session_id);
1080 goto end_nosignal;
1081 }
1082 case LTTNG_CONSUMER_DESTROY_RELAYD:
1083 {
1084 uint64_t index = msg.u.destroy_relayd.net_seq_idx;
1085 struct consumer_relayd_sock_pair *relayd;
1086
1087 DBG("UST consumer destroying relayd %" PRIu64, index);
1088
1089 /* Get relayd reference if exists. */
1090 relayd = consumer_find_relayd(index);
1091 if (relayd == NULL) {
1092 DBG("Unable to find relayd %" PRIu64, index);
1093 ret_code = LTTNG_ERR_NO_CONSUMER;
1094 }
1095
1096 /*
1097 * Each relayd socket pair has a refcount of stream attached to it
1098 * which tells if the relayd is still active or not depending on the
1099 * refcount value.
1100 *
1101 * This will set the destroy flag of the relayd object and destroy it
1102 * if the refcount reaches zero when called.
1103 *
1104 * The destroy can happen either here or when a stream fd hangs up.
1105 */
1106 if (relayd) {
1107 consumer_flag_relayd_for_destroy(relayd);
1108 }
1109
1110 goto end_msg_sessiond;
1111 }
1112 case LTTNG_CONSUMER_UPDATE_STREAM:
1113 {
1114 rcu_read_unlock();
1115 return -ENOSYS;
1116 }
1117 case LTTNG_CONSUMER_DATA_PENDING:
1118 {
1119 int ret, is_data_pending;
1120 uint64_t id = msg.u.data_pending.session_id;
1121
1122 DBG("UST consumer data pending command for id %" PRIu64, id);
1123
1124 is_data_pending = consumer_data_pending(id);
1125
1126 /* Send back returned value to session daemon */
1127 ret = lttcomm_send_unix_sock(sock, &is_data_pending,
1128 sizeof(is_data_pending));
1129 if (ret < 0) {
1130 DBG("Error when sending the data pending ret code: %d", ret);
1131 goto error_fatal;
1132 }
1133
1134 /*
1135 * No need to send back a status message since the data pending
1136 * returned value is the response.
1137 */
1138 break;
1139 }
1140 case LTTNG_CONSUMER_ASK_CHANNEL_CREATION:
1141 {
1142 int ret;
1143 struct ustctl_consumer_channel_attr attr;
1144
1145 /* Create a plain object and reserve a channel key. */
1146 channel = allocate_channel(msg.u.ask_channel.session_id,
1147 msg.u.ask_channel.pathname, msg.u.ask_channel.name,
1148 msg.u.ask_channel.uid, msg.u.ask_channel.gid,
1149 msg.u.ask_channel.relayd_id, msg.u.ask_channel.key,
1150 (enum lttng_event_output) msg.u.ask_channel.output,
1151 msg.u.ask_channel.tracefile_size,
1152 msg.u.ask_channel.tracefile_count,
1153 msg.u.ask_channel.session_id_per_pid,
1154 msg.u.ask_channel.monitor);
1155 if (!channel) {
1156 goto end_channel_error;
1157 }
1158
1159 /* Build channel attributes from received message. */
1160 attr.subbuf_size = msg.u.ask_channel.subbuf_size;
1161 attr.num_subbuf = msg.u.ask_channel.num_subbuf;
1162 attr.overwrite = msg.u.ask_channel.overwrite;
1163 attr.switch_timer_interval = msg.u.ask_channel.switch_timer_interval;
1164 attr.read_timer_interval = msg.u.ask_channel.read_timer_interval;
1165 attr.chan_id = msg.u.ask_channel.chan_id;
1166 attr.output = msg.u.ask_channel.output;
1167 memcpy(attr.uuid, msg.u.ask_channel.uuid, sizeof(attr.uuid));
1168
1169 /* Translate and save channel type. */
1170 switch (msg.u.ask_channel.type) {
1171 case LTTNG_UST_CHAN_PER_CPU:
1172 channel->type = CONSUMER_CHANNEL_TYPE_DATA;
1173 attr.type = LTTNG_UST_CHAN_PER_CPU;
1174 /*
1175 * Set refcount to 1 for owner. Below, we will
1176 * pass ownership to the
1177 * consumer_thread_channel_poll() thread.
1178 */
1179 channel->refcount = 1;
1180 break;
1181 case LTTNG_UST_CHAN_METADATA:
1182 channel->type = CONSUMER_CHANNEL_TYPE_METADATA;
1183 attr.type = LTTNG_UST_CHAN_METADATA;
1184 break;
1185 default:
1186 assert(0);
1187 goto error_fatal;
1188 };
1189
1190 ret = ask_channel(ctx, sock, channel, &attr);
1191 if (ret < 0) {
1192 goto end_channel_error;
1193 }
1194
1195 if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) {
1196 ret = consumer_metadata_cache_allocate(channel);
1197 if (ret < 0) {
1198 ERR("Allocating metadata cache");
1199 goto end_channel_error;
1200 }
1201 consumer_timer_switch_start(channel, attr.switch_timer_interval);
1202 attr.switch_timer_interval = 0;
1203 }
1204
1205 /*
1206 * Add the channel to the internal state AFTER all streams were created
1207 * and successfully sent to session daemon. This way, all streams must
1208 * be ready before this channel is visible to the threads.
1209 * If add_channel succeeds, ownership of the channel is
1210 * passed to consumer_thread_channel_poll().
1211 */
1212 ret = add_channel(channel, ctx);
1213 if (ret < 0) {
1214 if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) {
1215 if (channel->switch_timer_enabled == 1) {
1216 consumer_timer_switch_stop(channel);
1217 }
1218 consumer_metadata_cache_destroy(channel);
1219 }
1220 goto end_channel_error;
1221 }
1222
1223 /*
1224 * Channel and streams are now created. Inform the session daemon that
1225 * everything went well and should wait to receive the channel and
1226 * streams with ustctl API.
1227 */
1228 ret = consumer_send_status_channel(sock, channel);
1229 if (ret < 0) {
1230 /*
1231 * There is probably a problem on the socket.
1232 */
1233 goto error_fatal;
1234 }
1235
1236 break;
1237 }
1238 case LTTNG_CONSUMER_GET_CHANNEL:
1239 {
1240 int ret, relayd_err = 0;
1241 uint64_t key = msg.u.get_channel.key;
1242 struct lttng_consumer_channel *channel;
1243
1244 channel = consumer_find_channel(key);
1245 if (!channel) {
1246 ERR("UST consumer get channel key %" PRIu64 " not found", key);
1247 ret_code = LTTNG_ERR_UST_CHAN_NOT_FOUND;
1248 goto end_msg_sessiond;
1249 }
1250
1251 /* Send everything to sessiond. */
1252 ret = send_sessiond_channel(sock, channel, ctx, &relayd_err);
1253 if (ret < 0) {
1254 if (relayd_err) {
1255 /*
1256 * We were unable to send to the relayd the stream so avoid
1257 * sending back a fatal error to the thread since this is OK
1258 * and the consumer can continue its work. The above call
1259 * has sent the error status message to the sessiond.
1260 */
1261 goto end_nosignal;
1262 }
1263 /*
1264 * The communicaton was broken hence there is a bad state between
1265 * the consumer and sessiond so stop everything.
1266 */
1267 goto error_fatal;
1268 }
1269
1270 /*
1271 * In no monitor mode, the streams ownership is kept inside the channel
1272 * so don't send them to the data thread.
1273 */
1274 if (!channel->monitor) {
1275 goto end_msg_sessiond;
1276 }
1277
1278 ret = send_streams_to_thread(channel, ctx);
1279 if (ret < 0) {
1280 /*
1281 * If we are unable to send the stream to the thread, there is
1282 * a big problem so just stop everything.
1283 */
1284 goto error_fatal;
1285 }
1286 /* List MUST be empty after or else it could be reused. */
1287 assert(cds_list_empty(&channel->streams.head));
1288 goto end_msg_sessiond;
1289 }
1290 case LTTNG_CONSUMER_DESTROY_CHANNEL:
1291 {
1292 uint64_t key = msg.u.destroy_channel.key;
1293
1294 /*
1295 * Only called if streams have not been sent to stream
1296 * manager thread. However, channel has been sent to
1297 * channel manager thread.
1298 */
1299 notify_thread_del_channel(ctx, key);
1300 goto end_msg_sessiond;
1301 }
1302 case LTTNG_CONSUMER_CLOSE_METADATA:
1303 {
1304 int ret;
1305
1306 ret = close_metadata(msg.u.close_metadata.key);
1307 if (ret != 0) {
1308 ret_code = ret;
1309 }
1310
1311 goto end_msg_sessiond;
1312 }
1313 case LTTNG_CONSUMER_FLUSH_CHANNEL:
1314 {
1315 int ret;
1316
1317 ret = flush_channel(msg.u.flush_channel.key);
1318 if (ret != 0) {
1319 ret_code = ret;
1320 }
1321
1322 goto end_msg_sessiond;
1323 }
1324 case LTTNG_CONSUMER_PUSH_METADATA:
1325 {
1326 int ret;
1327 uint64_t len = msg.u.push_metadata.len;
1328 uint64_t key = msg.u.push_metadata.key;
1329 uint64_t offset = msg.u.push_metadata.target_offset;
1330 struct lttng_consumer_channel *channel;
1331
1332 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key,
1333 len);
1334
1335 channel = consumer_find_channel(key);
1336 if (!channel) {
1337 ERR("UST consumer push metadata %" PRIu64 " not found", key);
1338 ret_code = LTTNG_ERR_UST_CHAN_NOT_FOUND;
1339 goto end_msg_sessiond;
1340 }
1341
1342 /* Tell session daemon we are ready to receive the metadata. */
1343 ret = consumer_send_status_msg(sock, LTTNG_OK);
1344 if (ret < 0) {
1345 /* Somehow, the session daemon is not responding anymore. */
1346 goto error_fatal;
1347 }
1348
1349 /* Wait for more data. */
1350 if (lttng_consumer_poll_socket(consumer_sockpoll) < 0) {
1351 goto error_fatal;
1352 }
1353
1354 ret = lttng_ustconsumer_recv_metadata(sock, key, offset,
1355 len, channel);
1356 if (ret < 0) {
1357 /* error receiving from sessiond */
1358 goto error_fatal;
1359 } else {
1360 ret_code = ret;
1361 goto end_msg_sessiond;
1362 }
1363 }
1364 case LTTNG_CONSUMER_SETUP_METADATA:
1365 {
1366 int ret;
1367
1368 ret = setup_metadata(ctx, msg.u.setup_metadata.key);
1369 if (ret) {
1370 ret_code = ret;
1371 }
1372 goto end_msg_sessiond;
1373 }
1374 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL:
1375 {
1376 if (msg.u.snapshot_channel.metadata) {
1377 ret = snapshot_metadata(msg.u.snapshot_channel.key,
1378 msg.u.snapshot_channel.pathname,
1379 msg.u.snapshot_channel.relayd_id,
1380 ctx);
1381 if (ret < 0) {
1382 ERR("Snapshot metadata failed");
1383 ret_code = LTTNG_ERR_UST_META_FAIL;
1384 }
1385 } else {
1386 ret = snapshot_channel(msg.u.snapshot_channel.key,
1387 msg.u.snapshot_channel.pathname,
1388 msg.u.snapshot_channel.relayd_id,
1389 msg.u.snapshot_channel.max_stream_size,
1390 ctx);
1391 if (ret < 0) {
1392 ERR("Snapshot channel failed");
1393 ret_code = LTTNG_ERR_UST_CHAN_FAIL;
1394 }
1395 }
1396
1397 ret = consumer_send_status_msg(sock, ret_code);
1398 if (ret < 0) {
1399 /* Somehow, the session daemon is not responding anymore. */
1400 goto end_nosignal;
1401 }
1402 break;
1403 }
1404 default:
1405 break;
1406 }
1407
1408 end_nosignal:
1409 rcu_read_unlock();
1410
1411 /*
1412 * Return 1 to indicate success since the 0 value can be a socket
1413 * shutdown during the recv() or send() call.
1414 */
1415 return 1;
1416
1417 end_msg_sessiond:
1418 /*
1419 * The returned value here is not useful since either way we'll return 1 to
1420 * the caller because the session daemon socket management is done
1421 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
1422 */
1423 ret = consumer_send_status_msg(sock, ret_code);
1424 if (ret < 0) {
1425 goto error_fatal;
1426 }
1427 rcu_read_unlock();
1428 return 1;
1429 end_channel_error:
1430 if (channel) {
1431 /*
1432 * Free channel here since no one has a reference to it. We don't
1433 * free after that because a stream can store this pointer.
1434 */
1435 destroy_channel(channel);
1436 }
1437 /* We have to send a status channel message indicating an error. */
1438 ret = consumer_send_status_channel(sock, NULL);
1439 if (ret < 0) {
1440 /* Stop everything if session daemon can not be notified. */
1441 goto error_fatal;
1442 }
1443 rcu_read_unlock();
1444 return 1;
1445 error_fatal:
1446 rcu_read_unlock();
1447 /* This will issue a consumer stop. */
1448 return -1;
1449 }
1450
1451 /*
1452 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1453 * compiled out, we isolate it in this library.
1454 */
1455 int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
1456 unsigned long *off)
1457 {
1458 assert(stream);
1459 assert(stream->ustream);
1460
1461 return ustctl_get_mmap_read_offset(stream->ustream, off);
1462 }
1463
1464 /*
1465 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
1466 * compiled out, we isolate it in this library.
1467 */
1468 void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream)
1469 {
1470 assert(stream);
1471 assert(stream->ustream);
1472
1473 return ustctl_get_mmap_base(stream->ustream);
1474 }
1475
1476 /*
1477 * Take a snapshot for a specific fd
1478 *
1479 * Returns 0 on success, < 0 on error
1480 */
1481 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream)
1482 {
1483 assert(stream);
1484 assert(stream->ustream);
1485
1486 return ustctl_snapshot(stream->ustream);
1487 }
1488
1489 /*
1490 * Get the produced position
1491 *
1492 * Returns 0 on success, < 0 on error
1493 */
1494 int lttng_ustconsumer_get_produced_snapshot(
1495 struct lttng_consumer_stream *stream, unsigned long *pos)
1496 {
1497 assert(stream);
1498 assert(stream->ustream);
1499 assert(pos);
1500
1501 return ustctl_snapshot_get_produced(stream->ustream, pos);
1502 }
1503
1504 /*
1505 * Get the consumed position
1506 *
1507 * Returns 0 on success, < 0 on error
1508 */
1509 int lttng_ustconsumer_get_consumed_snapshot(
1510 struct lttng_consumer_stream *stream, unsigned long *pos)
1511 {
1512 assert(stream);
1513 assert(stream->ustream);
1514 assert(pos);
1515
1516 return ustctl_snapshot_get_consumed(stream->ustream, pos);
1517 }
1518
1519 /*
1520 * Called when the stream signal the consumer that it has hang up.
1521 */
1522 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
1523 {
1524 assert(stream);
1525 assert(stream->ustream);
1526
1527 ustctl_flush_buffer(stream->ustream, 0);
1528 stream->hangup_flush_done = 1;
1529 }
1530
1531 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
1532 {
1533 assert(chan);
1534 assert(chan->uchan);
1535
1536 if (chan->switch_timer_enabled == 1) {
1537 consumer_timer_switch_stop(chan);
1538 }
1539 consumer_metadata_cache_destroy(chan);
1540 ustctl_destroy_channel(chan->uchan);
1541 }
1542
1543 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
1544 {
1545 assert(stream);
1546 assert(stream->ustream);
1547
1548 if (stream->chan->switch_timer_enabled == 1) {
1549 consumer_timer_switch_stop(stream->chan);
1550 }
1551 ustctl_destroy_stream(stream->ustream);
1552 }
1553
1554 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
1555 struct lttng_consumer_local_data *ctx)
1556 {
1557 unsigned long len, subbuf_size, padding;
1558 int err;
1559 long ret = 0;
1560 char dummy;
1561 struct ustctl_consumer_stream *ustream;
1562
1563 assert(stream);
1564 assert(stream->ustream);
1565 assert(ctx);
1566
1567 DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream->wait_fd,
1568 stream->name);
1569
1570 /* Ease our life for what's next. */
1571 ustream = stream->ustream;
1572
1573 /* We can consume the 1 byte written into the wait_fd by UST */
1574 if (stream->monitor && !stream->hangup_flush_done) {
1575 ssize_t readlen;
1576
1577 do {
1578 readlen = read(stream->wait_fd, &dummy, 1);
1579 } while (readlen == -1 && errno == EINTR);
1580 if (readlen == -1 && errno != EAGAIN && errno != EWOULDBLOCK) {
1581 ret = readlen;
1582 goto end;
1583 }
1584 }
1585
1586 retry:
1587 /* Get the next subbuffer */
1588 err = ustctl_get_next_subbuf(ustream);
1589 if (err != 0) {
1590 /*
1591 * Populate metadata info if the existing info has
1592 * already been read.
1593 */
1594 if (stream->metadata_flag) {
1595 ssize_t write_len;
1596
1597 if (stream->chan->metadata_cache->contiguous
1598 == stream->ust_metadata_pushed) {
1599 ret = 0;
1600 goto end;
1601 }
1602
1603 write_len = ustctl_write_one_packet_to_channel(stream->chan->uchan,
1604 &stream->chan->metadata_cache->data[stream->ust_metadata_pushed],
1605 stream->chan->metadata_cache->contiguous
1606 - stream->ust_metadata_pushed);
1607 assert(write_len != 0);
1608 if (write_len < 0) {
1609 ERR("Writing one metadata packet");
1610 ret = -1;
1611 goto end;
1612 }
1613 stream->ust_metadata_pushed += write_len;
1614 ustctl_flush_buffer(stream->ustream, 1);
1615 goto retry;
1616 }
1617
1618 ret = err; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
1619 /*
1620 * This is a debug message even for single-threaded consumer,
1621 * because poll() have more relaxed criterions than get subbuf,
1622 * so get_subbuf may fail for short race windows where poll()
1623 * would issue wakeups.
1624 */
1625 DBG("Reserving sub buffer failed (everything is normal, "
1626 "it is due to concurrency) [ret: %d]", err);
1627 goto end;
1628 }
1629 assert(stream->chan->output == CONSUMER_CHANNEL_MMAP);
1630 /* Get the full padded subbuffer size */
1631 err = ustctl_get_padded_subbuf_size(ustream, &len);
1632 assert(err == 0);
1633
1634 /* Get subbuffer data size (without padding) */
1635 err = ustctl_get_subbuf_size(ustream, &subbuf_size);
1636 assert(err == 0);
1637
1638 /* Make sure we don't get a subbuffer size bigger than the padded */
1639 assert(len >= subbuf_size);
1640
1641 padding = len - subbuf_size;
1642 /* write the subbuffer to the tracefile */
1643 ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, subbuf_size, padding);
1644 /*
1645 * The mmap operation should write subbuf_size amount of data when network
1646 * streaming or the full padding (len) size when we are _not_ streaming.
1647 */
1648 if ((ret != subbuf_size && stream->net_seq_idx != (uint64_t) -1ULL) ||
1649 (ret != len && stream->net_seq_idx == (uint64_t) -1ULL)) {
1650 /*
1651 * Display the error but continue processing to try to release the
1652 * subbuffer. This is a DBG statement since any unexpected kill or
1653 * signal, the application gets unregistered, relayd gets closed or
1654 * anything that affects the buffer lifetime will trigger this error.
1655 * So, for the sake of the user, don't print this error since it can
1656 * happen and it is OK with the code flow.
1657 */
1658 DBG("Error writing to tracefile "
1659 "(ret: %ld != len: %lu != subbuf_size: %lu)",
1660 ret, len, subbuf_size);
1661 }
1662 err = ustctl_put_next_subbuf(ustream);
1663 assert(err == 0);
1664
1665 end:
1666 return ret;
1667 }
1668
1669 /*
1670 * Called when a stream is created.
1671 *
1672 * Return 0 on success or else a negative value.
1673 */
1674 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
1675 {
1676 int ret;
1677
1678 assert(stream);
1679
1680 /* Don't create anything if this is set for streaming. */
1681 if (stream->net_seq_idx == (uint64_t) -1ULL && stream->chan->monitor) {
1682 ret = utils_create_stream_file(stream->chan->pathname, stream->name,
1683 stream->chan->tracefile_size, stream->tracefile_count_current,
1684 stream->uid, stream->gid);
1685 if (ret < 0) {
1686 goto error;
1687 }
1688 stream->out_fd = ret;
1689 stream->tracefile_size_current = 0;
1690 }
1691 ret = 0;
1692
1693 error:
1694 return ret;
1695 }
1696
1697 /*
1698 * Check if data is still being extracted from the buffers for a specific
1699 * stream. Consumer data lock MUST be acquired before calling this function
1700 * and the stream lock.
1701 *
1702 * Return 1 if the traced data are still getting read else 0 meaning that the
1703 * data is available for trace viewer reading.
1704 */
1705 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
1706 {
1707 int ret;
1708
1709 assert(stream);
1710 assert(stream->ustream);
1711
1712 DBG("UST consumer checking data pending");
1713
1714 if (stream->endpoint_status != CONSUMER_ENDPOINT_ACTIVE) {
1715 ret = 0;
1716 goto end;
1717 }
1718
1719 if (stream->chan->type == CONSUMER_CHANNEL_TYPE_METADATA) {
1720 /*
1721 * We can simply check whether all contiguously available data
1722 * has been pushed to the ring buffer, since the push operation
1723 * is performed within get_next_subbuf(), and because both
1724 * get_next_subbuf() and put_next_subbuf() are issued atomically
1725 * thanks to the stream lock within
1726 * lttng_ustconsumer_read_subbuffer(). This basically means that
1727 * whetnever ust_metadata_pushed is incremented, the associated
1728 * metadata has been consumed from the metadata stream.
1729 */
1730 DBG("UST consumer metadata pending check: contiguous %" PRIu64 " vs pushed %" PRIu64,
1731 stream->chan->metadata_cache->contiguous,
1732 stream->ust_metadata_pushed);
1733 if (stream->chan->metadata_cache->contiguous
1734 != stream->ust_metadata_pushed) {
1735 ret = 1; /* Data is pending */
1736 goto end;
1737 }
1738 } else {
1739 ret = ustctl_get_next_subbuf(stream->ustream);
1740 if (ret == 0) {
1741 /*
1742 * There is still data so let's put back this
1743 * subbuffer.
1744 */
1745 ret = ustctl_put_subbuf(stream->ustream);
1746 assert(ret == 0);
1747 ret = 1; /* Data is pending */
1748 goto end;
1749 }
1750 }
1751
1752 /* Data is NOT pending so ready to be read. */
1753 ret = 0;
1754
1755 end:
1756 return ret;
1757 }
1758
1759 /*
1760 * Close every metadata stream wait fd of the metadata hash table. This
1761 * function MUST be used very carefully so not to run into a race between the
1762 * metadata thread handling streams and this function closing their wait fd.
1763 *
1764 * For UST, this is used when the session daemon hangs up. Its the metadata
1765 * producer so calling this is safe because we are assured that no state change
1766 * can occur in the metadata thread for the streams in the hash table.
1767 */
1768 void lttng_ustconsumer_close_metadata(struct lttng_ht *metadata_ht)
1769 {
1770 int ret;
1771 struct lttng_ht_iter iter;
1772 struct lttng_consumer_stream *stream;
1773
1774 assert(metadata_ht);
1775 assert(metadata_ht->ht);
1776
1777 DBG("UST consumer closing all metadata streams");
1778
1779 rcu_read_lock();
1780 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream,
1781 node.node) {
1782 int fd = stream->wait_fd;
1783
1784 /*
1785 * Whatever happens here we have to continue to try to close every
1786 * streams. Let's report at least the error on failure.
1787 */
1788 ret = ustctl_stream_close_wakeup_fd(stream->ustream);
1789 if (ret) {
1790 ERR("Unable to close metadata stream fd %d ret %d", fd, ret);
1791 }
1792 DBG("Metadata wait fd %d closed", fd);
1793 }
1794 rcu_read_unlock();
1795 }
1796
1797 void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream)
1798 {
1799 int ret;
1800
1801 ret = ustctl_stream_close_wakeup_fd(stream->ustream);
1802 if (ret < 0) {
1803 ERR("Unable to close wakeup fd");
1804 }
1805 }
1806
1807 /*
1808 * Please refer to consumer-timer.c before adding any lock within this
1809 * function or any of its callees. Timers have a very strict locking
1810 * semantic with respect to teardown. Failure to respect this semantic
1811 * introduces deadlocks.
1812 */
1813 int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
1814 struct lttng_consumer_channel *channel)
1815 {
1816 struct lttcomm_metadata_request_msg request;
1817 struct lttcomm_consumer_msg msg;
1818 enum lttng_error_code ret_code = LTTNG_OK;
1819 uint64_t len, key, offset;
1820 int ret;
1821
1822 assert(channel);
1823 assert(channel->metadata_cache);
1824
1825 /* send the metadata request to sessiond */
1826 switch (consumer_data.type) {
1827 case LTTNG_CONSUMER64_UST:
1828 request.bits_per_long = 64;
1829 break;
1830 case LTTNG_CONSUMER32_UST:
1831 request.bits_per_long = 32;
1832 break;
1833 default:
1834 request.bits_per_long = 0;
1835 break;
1836 }
1837
1838 request.session_id = channel->session_id;
1839 request.session_id_per_pid = channel->session_id_per_pid;
1840 request.uid = channel->uid;
1841 request.key = channel->key;
1842 DBG("Sending metadata request to sessiond, session id %" PRIu64
1843 ", per-pid %" PRIu64,
1844 channel->session_id,
1845 channel->session_id_per_pid);
1846
1847 pthread_mutex_lock(&ctx->metadata_socket_lock);
1848 ret = lttcomm_send_unix_sock(ctx->consumer_metadata_socket, &request,
1849 sizeof(request));
1850 if (ret < 0) {
1851 ERR("Asking metadata to sessiond");
1852 goto end;
1853 }
1854
1855 /* Receive the metadata from sessiond */
1856 ret = lttcomm_recv_unix_sock(ctx->consumer_metadata_socket, &msg,
1857 sizeof(msg));
1858 if (ret != sizeof(msg)) {
1859 DBG("Consumer received unexpected message size %d (expects %zu)",
1860 ret, sizeof(msg));
1861 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
1862 /*
1863 * The ret value might 0 meaning an orderly shutdown but this is ok
1864 * since the caller handles this.
1865 */
1866 goto end;
1867 }
1868
1869 if (msg.cmd_type == LTTNG_ERR_UND) {
1870 /* No registry found */
1871 (void) consumer_send_status_msg(ctx->consumer_metadata_socket,
1872 ret_code);
1873 ret = 0;
1874 goto end;
1875 } else if (msg.cmd_type != LTTNG_CONSUMER_PUSH_METADATA) {
1876 ERR("Unexpected cmd_type received %d", msg.cmd_type);
1877 ret = -1;
1878 goto end;
1879 }
1880
1881 len = msg.u.push_metadata.len;
1882 key = msg.u.push_metadata.key;
1883 offset = msg.u.push_metadata.target_offset;
1884
1885 assert(key == channel->key);
1886 if (len == 0) {
1887 DBG("No new metadata to receive for key %" PRIu64, key);
1888 }
1889
1890 /* Tell session daemon we are ready to receive the metadata. */
1891 ret = consumer_send_status_msg(ctx->consumer_metadata_socket,
1892 LTTNG_OK);
1893 if (ret < 0 || len == 0) {
1894 /*
1895 * Somehow, the session daemon is not responding anymore or there is
1896 * nothing to receive.
1897 */
1898 goto end;
1899 }
1900
1901 ret_code = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket,
1902 key, offset, len, channel);
1903 if (ret_code >= 0) {
1904 /*
1905 * Only send the status msg if the sessiond is alive meaning a positive
1906 * ret code.
1907 */
1908 (void) consumer_send_status_msg(ctx->consumer_metadata_socket, ret_code);
1909 }
1910 ret = 0;
1911
1912 end:
1913 pthread_mutex_unlock(&ctx->metadata_socket_lock);
1914 return ret;
1915 }
This page took 0.109683 seconds and 4 git commands to generate.