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