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