send the rotate pending to the relay
[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 * Copyright (C) 2017 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, version 2 only,
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #define _LGPL_SOURCE
21 #include <assert.h>
22 #include <lttng/ust-ctl.h>
23 #include <poll.h>
24 #include <pthread.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <sys/mman.h>
28 #include <sys/socket.h>
29 #include <sys/stat.h>
30 #include <sys/types.h>
31 #include <inttypes.h>
32 #include <unistd.h>
33 #include <urcu/list.h>
34 #include <signal.h>
35
36 #include <bin/lttng-consumerd/health-consumerd.h>
37 #include <common/common.h>
38 #include <common/sessiond-comm/sessiond-comm.h>
39 #include <common/relayd/relayd.h>
40 #include <common/compat/fcntl.h>
41 #include <common/compat/endian.h>
42 #include <common/consumer/consumer-metadata-cache.h>
43 #include <common/consumer/consumer-stream.h>
44 #include <common/consumer/consumer-timer.h>
45 #include <common/utils.h>
46 #include <common/index/index.h>
47
48 #include "ust-consumer.h"
49
50 #define INT_MAX_STR_LEN 12 /* includes \0 */
51
52 extern struct lttng_consumer_global_data consumer_data;
53 extern int consumer_poll_timeout;
54
55 /*
56 * Free channel object and all streams associated with it. This MUST be used
57 * only and only if the channel has _NEVER_ been added to the global channel
58 * hash table.
59 */
60 static void destroy_channel(struct lttng_consumer_channel *channel)
61 {
62 struct lttng_consumer_stream *stream, *stmp;
63
64 assert(channel);
65
66 DBG("UST consumer cleaning stream list");
67
68 cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head,
69 send_node) {
70
71 health_code_update();
72
73 cds_list_del(&stream->send_node);
74 ustctl_destroy_stream(stream->ustream);
75 free(stream);
76 }
77
78 /*
79 * If a channel is available meaning that was created before the streams
80 * were, delete it.
81 */
82 if (channel->uchan) {
83 lttng_ustconsumer_del_channel(channel);
84 lttng_ustconsumer_free_channel(channel);
85 }
86 free(channel);
87 }
88
89 /*
90 * Add channel to internal consumer state.
91 *
92 * Returns 0 on success or else a negative value.
93 */
94 static int add_channel(struct lttng_consumer_channel *channel,
95 struct lttng_consumer_local_data *ctx)
96 {
97 int ret = 0;
98
99 assert(channel);
100 assert(ctx);
101
102 if (ctx->on_recv_channel != NULL) {
103 ret = ctx->on_recv_channel(channel);
104 if (ret == 0) {
105 ret = consumer_add_channel(channel, ctx);
106 } else if (ret < 0) {
107 /* Most likely an ENOMEM. */
108 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
109 goto error;
110 }
111 } else {
112 ret = consumer_add_channel(channel, ctx);
113 }
114
115 DBG("UST consumer channel added (key: %" PRIu64 ")", channel->key);
116
117 error:
118 return ret;
119 }
120
121 /*
122 * Allocate and return a consumer channel object.
123 */
124 static struct lttng_consumer_channel *allocate_channel(uint64_t session_id,
125 const char *pathname, const char *name, uid_t uid, gid_t gid,
126 uint64_t relayd_id, uint64_t key, enum lttng_event_output output,
127 uint64_t tracefile_size, uint64_t tracefile_count,
128 uint64_t session_id_per_pid, unsigned int monitor,
129 unsigned int live_timer_interval,
130 const char *root_shm_path, const char *shm_path)
131 {
132 assert(pathname);
133 assert(name);
134
135 return consumer_allocate_channel(key, session_id, pathname, name, uid,
136 gid, relayd_id, output, tracefile_size,
137 tracefile_count, session_id_per_pid, monitor,
138 live_timer_interval, root_shm_path, shm_path);
139 }
140
141 /*
142 * Allocate and return a consumer stream object. If _alloc_ret is not NULL, the
143 * error value if applicable is set in it else it is kept untouched.
144 *
145 * Return NULL on error else the newly allocated stream object.
146 */
147 static struct lttng_consumer_stream *allocate_stream(int cpu, int key,
148 struct lttng_consumer_channel *channel,
149 struct lttng_consumer_local_data *ctx, int *_alloc_ret)
150 {
151 int alloc_ret;
152 struct lttng_consumer_stream *stream = NULL;
153
154 assert(channel);
155 assert(ctx);
156
157 stream = consumer_allocate_stream(channel->key,
158 key,
159 LTTNG_CONSUMER_ACTIVE_STREAM,
160 channel->name,
161 channel->uid,
162 channel->gid,
163 channel->relayd_id,
164 channel->session_id,
165 cpu,
166 &alloc_ret,
167 channel->type,
168 channel->monitor);
169 if (stream == NULL) {
170 switch (alloc_ret) {
171 case -ENOENT:
172 /*
173 * We could not find the channel. Can happen if cpu hotplug
174 * happens while tearing down.
175 */
176 DBG3("Could not find channel");
177 break;
178 case -ENOMEM:
179 case -EINVAL:
180 default:
181 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
182 break;
183 }
184 goto error;
185 }
186 consumer_stream_copy_ro_channel_values(stream, channel);
187 stream->chan = channel;
188
189 error:
190 if (_alloc_ret) {
191 *_alloc_ret = alloc_ret;
192 }
193 return stream;
194 }
195
196 /*
197 * Send the given stream pointer to the corresponding thread.
198 *
199 * Returns 0 on success else a negative value.
200 */
201 static int send_stream_to_thread(struct lttng_consumer_stream *stream,
202 struct lttng_consumer_local_data *ctx)
203 {
204 int ret;
205 struct lttng_pipe *stream_pipe;
206
207 /* Get the right pipe where the stream will be sent. */
208 if (stream->metadata_flag) {
209 ret = consumer_add_metadata_stream(stream);
210 if (ret) {
211 ERR("Consumer add metadata stream %" PRIu64 " failed.",
212 stream->key);
213 goto error;
214 }
215 stream_pipe = ctx->consumer_metadata_pipe;
216 } else {
217 ret = consumer_add_data_stream(stream);
218 if (ret) {
219 ERR("Consumer add stream %" PRIu64 " failed.",
220 stream->key);
221 goto error;
222 }
223 stream_pipe = ctx->consumer_data_pipe;
224 }
225
226 /*
227 * From this point on, the stream's ownership has been moved away from
228 * the channel and becomes globally visible.
229 */
230 stream->globally_visible = 1;
231
232 ret = lttng_pipe_write(stream_pipe, &stream, sizeof(stream));
233 if (ret < 0) {
234 ERR("Consumer write %s stream to pipe %d",
235 stream->metadata_flag ? "metadata" : "data",
236 lttng_pipe_get_writefd(stream_pipe));
237 if (stream->metadata_flag) {
238 consumer_del_stream_for_metadata(stream);
239 } else {
240 consumer_del_stream_for_data(stream);
241 }
242 }
243 error:
244 return ret;
245 }
246
247 static
248 int get_stream_shm_path(char *stream_shm_path, const char *shm_path, int cpu)
249 {
250 char cpu_nr[INT_MAX_STR_LEN]; /* int max len */
251 int ret;
252
253 strncpy(stream_shm_path, shm_path, PATH_MAX);
254 stream_shm_path[PATH_MAX - 1] = '\0';
255 ret = snprintf(cpu_nr, INT_MAX_STR_LEN, "%i", cpu);
256 if (ret < 0) {
257 PERROR("snprintf");
258 goto end;
259 }
260 strncat(stream_shm_path, cpu_nr,
261 PATH_MAX - strlen(stream_shm_path) - 1);
262 ret = 0;
263 end:
264 return ret;
265 }
266
267 /*
268 * Create streams for the given channel using liblttng-ust-ctl.
269 *
270 * Return 0 on success else a negative value.
271 */
272 static int create_ust_streams(struct lttng_consumer_channel *channel,
273 struct lttng_consumer_local_data *ctx)
274 {
275 int ret, cpu = 0;
276 struct ustctl_consumer_stream *ustream;
277 struct lttng_consumer_stream *stream;
278
279 assert(channel);
280 assert(ctx);
281
282 /*
283 * While a stream is available from ustctl. When NULL is returned, we've
284 * reached the end of the possible stream for the channel.
285 */
286 while ((ustream = ustctl_create_stream(channel->uchan, cpu))) {
287 int wait_fd;
288 int ust_metadata_pipe[2];
289
290 health_code_update();
291
292 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && channel->monitor) {
293 ret = utils_create_pipe_cloexec_nonblock(ust_metadata_pipe);
294 if (ret < 0) {
295 ERR("Create ust metadata poll pipe");
296 goto error;
297 }
298 wait_fd = ust_metadata_pipe[0];
299 } else {
300 wait_fd = ustctl_stream_get_wait_fd(ustream);
301 }
302
303 /* Allocate consumer stream object. */
304 stream = allocate_stream(cpu, wait_fd, channel, ctx, &ret);
305 if (!stream) {
306 goto error_alloc;
307 }
308 stream->ustream = ustream;
309 /*
310 * Store it so we can save multiple function calls afterwards since
311 * this value is used heavily in the stream threads. This is UST
312 * specific so this is why it's done after allocation.
313 */
314 stream->wait_fd = wait_fd;
315
316 /*
317 * Increment channel refcount since the channel reference has now been
318 * assigned in the allocation process above.
319 */
320 if (stream->chan->monitor) {
321 uatomic_inc(&stream->chan->refcount);
322 }
323
324 /*
325 * Order is important this is why a list is used. On error, the caller
326 * should clean this list.
327 */
328 cds_list_add_tail(&stream->send_node, &channel->streams.head);
329
330 ret = ustctl_get_max_subbuf_size(stream->ustream,
331 &stream->max_sb_size);
332 if (ret < 0) {
333 ERR("ustctl_get_max_subbuf_size failed for stream %s",
334 stream->name);
335 goto error;
336 }
337
338 /* Do actions once stream has been received. */
339 if (ctx->on_recv_stream) {
340 ret = ctx->on_recv_stream(stream);
341 if (ret < 0) {
342 goto error;
343 }
344 }
345
346 DBG("UST consumer add stream %s (key: %" PRIu64 ") with relayd id %" PRIu64,
347 stream->name, stream->key, stream->relayd_stream_id);
348
349 /* Set next CPU stream. */
350 channel->streams.count = ++cpu;
351
352 /* Keep stream reference when creating metadata. */
353 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA) {
354 channel->metadata_stream = stream;
355 if (channel->monitor) {
356 /* Set metadata poll pipe if we created one */
357 memcpy(stream->ust_metadata_poll_pipe,
358 ust_metadata_pipe,
359 sizeof(ust_metadata_pipe));
360 }
361 }
362 }
363
364 return 0;
365
366 error:
367 error_alloc:
368 return ret;
369 }
370
371 /*
372 * create_posix_shm is never called concurrently within a process.
373 */
374 static
375 int create_posix_shm(void)
376 {
377 char tmp_name[NAME_MAX];
378 int shmfd, ret;
379
380 ret = snprintf(tmp_name, NAME_MAX, "/ust-shm-consumer-%d", getpid());
381 if (ret < 0) {
382 PERROR("snprintf");
383 return -1;
384 }
385 /*
386 * Allocate shm, and immediately unlink its shm oject, keeping
387 * only the file descriptor as a reference to the object.
388 * We specifically do _not_ use the / at the beginning of the
389 * pathname so that some OS implementations can keep it local to
390 * the process (POSIX leaves this implementation-defined).
391 */
392 shmfd = shm_open(tmp_name, O_CREAT | O_EXCL | O_RDWR, 0700);
393 if (shmfd < 0) {
394 PERROR("shm_open");
395 goto error_shm_open;
396 }
397 ret = shm_unlink(tmp_name);
398 if (ret < 0 && errno != ENOENT) {
399 PERROR("shm_unlink");
400 goto error_shm_release;
401 }
402 return shmfd;
403
404 error_shm_release:
405 ret = close(shmfd);
406 if (ret) {
407 PERROR("close");
408 }
409 error_shm_open:
410 return -1;
411 }
412
413 static int open_ust_stream_fd(struct lttng_consumer_channel *channel,
414 struct ustctl_consumer_channel_attr *attr,
415 int cpu)
416 {
417 char shm_path[PATH_MAX];
418 int ret;
419
420 if (!channel->shm_path[0]) {
421 return create_posix_shm();
422 }
423 ret = get_stream_shm_path(shm_path, channel->shm_path, cpu);
424 if (ret) {
425 goto error_shm_path;
426 }
427 return run_as_open(shm_path,
428 O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR,
429 channel->uid, channel->gid);
430
431 error_shm_path:
432 return -1;
433 }
434
435 /*
436 * Create an UST channel with the given attributes and send it to the session
437 * daemon using the ust ctl API.
438 *
439 * Return 0 on success or else a negative value.
440 */
441 static int create_ust_channel(struct lttng_consumer_channel *channel,
442 struct ustctl_consumer_channel_attr *attr,
443 struct ustctl_consumer_channel **ust_chanp)
444 {
445 int ret, nr_stream_fds, i, j;
446 int *stream_fds;
447 struct ustctl_consumer_channel *ust_channel;
448
449 assert(channel);
450 assert(attr);
451 assert(ust_chanp);
452
453 DBG3("Creating channel to ustctl with attr: [overwrite: %d, "
454 "subbuf_size: %" PRIu64 ", num_subbuf: %" PRIu64 ", "
455 "switch_timer_interval: %u, read_timer_interval: %u, "
456 "output: %d, type: %d", attr->overwrite, attr->subbuf_size,
457 attr->num_subbuf, attr->switch_timer_interval,
458 attr->read_timer_interval, attr->output, attr->type);
459
460 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA)
461 nr_stream_fds = 1;
462 else
463 nr_stream_fds = ustctl_get_nr_stream_per_channel();
464 stream_fds = zmalloc(nr_stream_fds * sizeof(*stream_fds));
465 if (!stream_fds) {
466 ret = -1;
467 goto error_alloc;
468 }
469 for (i = 0; i < nr_stream_fds; i++) {
470 stream_fds[i] = open_ust_stream_fd(channel, attr, i);
471 if (stream_fds[i] < 0) {
472 ret = -1;
473 goto error_open;
474 }
475 }
476 ust_channel = ustctl_create_channel(attr, stream_fds, nr_stream_fds);
477 if (!ust_channel) {
478 ret = -1;
479 goto error_create;
480 }
481 channel->nr_stream_fds = nr_stream_fds;
482 channel->stream_fds = stream_fds;
483 *ust_chanp = ust_channel;
484
485 return 0;
486
487 error_create:
488 error_open:
489 for (j = i - 1; j >= 0; j--) {
490 int closeret;
491
492 closeret = close(stream_fds[j]);
493 if (closeret) {
494 PERROR("close");
495 }
496 if (channel->shm_path[0]) {
497 char shm_path[PATH_MAX];
498
499 closeret = get_stream_shm_path(shm_path,
500 channel->shm_path, j);
501 if (closeret) {
502 ERR("Cannot get stream shm path");
503 }
504 closeret = run_as_unlink(shm_path,
505 channel->uid, channel->gid);
506 if (closeret) {
507 PERROR("unlink %s", shm_path);
508 }
509 }
510 }
511 /* Try to rmdir all directories under shm_path root. */
512 if (channel->root_shm_path[0]) {
513 (void) run_as_rmdir_recursive(channel->root_shm_path,
514 channel->uid, channel->gid);
515 }
516 free(stream_fds);
517 error_alloc:
518 return ret;
519 }
520
521 /*
522 * Send a single given stream to the session daemon using the sock.
523 *
524 * Return 0 on success else a negative value.
525 */
526 static int send_sessiond_stream(int sock, struct lttng_consumer_stream *stream)
527 {
528 int ret;
529
530 assert(stream);
531 assert(sock >= 0);
532
533 DBG("UST consumer sending stream %" PRIu64 " to sessiond", stream->key);
534
535 /* Send stream to session daemon. */
536 ret = ustctl_send_stream_to_sessiond(sock, stream->ustream);
537 if (ret < 0) {
538 goto error;
539 }
540
541 error:
542 return ret;
543 }
544
545 /*
546 * Send channel to sessiond.
547 *
548 * Return 0 on success or else a negative value.
549 */
550 static int send_sessiond_channel(int sock,
551 struct lttng_consumer_channel *channel,
552 struct lttng_consumer_local_data *ctx, int *relayd_error)
553 {
554 int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS;
555 struct lttng_consumer_stream *stream;
556 uint64_t net_seq_idx = -1ULL;
557
558 assert(channel);
559 assert(ctx);
560 assert(sock >= 0);
561
562 DBG("UST consumer sending channel %s to sessiond", channel->name);
563
564 if (channel->relayd_id != (uint64_t) -1ULL) {
565 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
566
567 health_code_update();
568
569 /* Try to send the stream to the relayd if one is available. */
570 ret = consumer_send_relayd_stream(stream, stream->chan->pathname,
571 LTTNG_DOMAIN_UST);
572 if (ret < 0) {
573 /*
574 * Flag that the relayd was the problem here probably due to a
575 * communicaton error on the socket.
576 */
577 if (relayd_error) {
578 *relayd_error = 1;
579 }
580 ret_code = LTTCOMM_CONSUMERD_RELAYD_FAIL;
581 }
582 if (net_seq_idx == -1ULL) {
583 net_seq_idx = stream->net_seq_idx;
584 }
585 }
586 }
587
588 /* Inform sessiond that we are about to send channel and streams. */
589 ret = consumer_send_status_msg(sock, ret_code);
590 if (ret < 0 || ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
591 /*
592 * Either the session daemon is not responding or the relayd died so we
593 * stop now.
594 */
595 goto error;
596 }
597
598 /* Send channel to sessiond. */
599 ret = ustctl_send_channel_to_sessiond(sock, channel->uchan);
600 if (ret < 0) {
601 goto error;
602 }
603
604 ret = ustctl_channel_close_wakeup_fd(channel->uchan);
605 if (ret < 0) {
606 goto error;
607 }
608
609 /* The channel was sent successfully to the sessiond at this point. */
610 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
611
612 health_code_update();
613
614 /* Send stream to session daemon. */
615 ret = send_sessiond_stream(sock, stream);
616 if (ret < 0) {
617 goto error;
618 }
619 }
620
621 /* Tell sessiond there is no more stream. */
622 ret = ustctl_send_stream_to_sessiond(sock, NULL);
623 if (ret < 0) {
624 goto error;
625 }
626
627 DBG("UST consumer NULL stream sent to sessiond");
628
629 return 0;
630
631 error:
632 if (ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
633 ret = -1;
634 }
635 return ret;
636 }
637
638 /*
639 * Creates a channel and streams and add the channel it to the channel internal
640 * state. The created stream must ONLY be sent once the GET_CHANNEL command is
641 * received.
642 *
643 * Return 0 on success or else, a negative value is returned and the channel
644 * MUST be destroyed by consumer_del_channel().
645 */
646 static int ask_channel(struct lttng_consumer_local_data *ctx, int sock,
647 struct lttng_consumer_channel *channel,
648 struct ustctl_consumer_channel_attr *attr)
649 {
650 int ret;
651
652 assert(ctx);
653 assert(channel);
654 assert(attr);
655
656 /*
657 * This value is still used by the kernel consumer since for the kernel,
658 * the stream ownership is not IN the consumer so we need to have the
659 * number of left stream that needs to be initialized so we can know when
660 * to delete the channel (see consumer.c).
661 *
662 * As for the user space tracer now, the consumer creates and sends the
663 * stream to the session daemon which only sends them to the application
664 * once every stream of a channel is received making this value useless
665 * because we they will be added to the poll thread before the application
666 * receives them. This ensures that a stream can not hang up during
667 * initilization of a channel.
668 */
669 channel->nb_init_stream_left = 0;
670
671 /* The reply msg status is handled in the following call. */
672 ret = create_ust_channel(channel, attr, &channel->uchan);
673 if (ret < 0) {
674 goto end;
675 }
676
677 channel->wait_fd = ustctl_channel_get_wait_fd(channel->uchan);
678
679 /*
680 * For the snapshots (no monitor), we create the metadata streams
681 * on demand, not during the channel creation.
682 */
683 if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && !channel->monitor) {
684 ret = 0;
685 goto end;
686 }
687
688 /* Open all streams for this channel. */
689 ret = create_ust_streams(channel, ctx);
690 if (ret < 0) {
691 goto end;
692 }
693
694 end:
695 return ret;
696 }
697
698 /*
699 * Send all stream of a channel to the right thread handling it.
700 *
701 * On error, return a negative value else 0 on success.
702 */
703 static int send_streams_to_thread(struct lttng_consumer_channel *channel,
704 struct lttng_consumer_local_data *ctx)
705 {
706 int ret = 0;
707 struct lttng_consumer_stream *stream, *stmp;
708
709 assert(channel);
710 assert(ctx);
711
712 /* Send streams to the corresponding thread. */
713 cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head,
714 send_node) {
715
716 health_code_update();
717
718 /* Sending the stream to the thread. */
719 ret = send_stream_to_thread(stream, ctx);
720 if (ret < 0) {
721 /*
722 * If we are unable to send the stream to the thread, there is
723 * a big problem so just stop everything.
724 */
725 /* Remove node from the channel stream list. */
726 cds_list_del(&stream->send_node);
727 goto error;
728 }
729
730 /* Remove node from the channel stream list. */
731 cds_list_del(&stream->send_node);
732
733 }
734
735 error:
736 return ret;
737 }
738
739 /*
740 * Flush channel's streams using the given key to retrieve the channel.
741 *
742 * Return 0 on success else an LTTng error code.
743 */
744 static int flush_channel(uint64_t chan_key)
745 {
746 int ret = 0;
747 struct lttng_consumer_channel *channel;
748 struct lttng_consumer_stream *stream;
749 struct lttng_ht *ht;
750 struct lttng_ht_iter iter;
751
752 DBG("UST consumer flush channel key %" PRIu64, chan_key);
753
754 rcu_read_lock();
755 channel = consumer_find_channel(chan_key);
756 if (!channel) {
757 ERR("UST consumer flush channel %" PRIu64 " not found", chan_key);
758 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
759 goto error;
760 }
761
762 ht = consumer_data.stream_per_chan_id_ht;
763
764 /* For each stream of the channel id, flush it. */
765 cds_lfht_for_each_entry_duplicate(ht->ht,
766 ht->hash_fct(&channel->key, lttng_ht_seed), ht->match_fct,
767 &channel->key, &iter.iter, stream, node_channel_id.node) {
768
769 health_code_update();
770
771 pthread_mutex_lock(&stream->lock);
772 if (!stream->quiescent) {
773 ustctl_flush_buffer(stream->ustream, 0);
774 stream->quiescent = true;
775 }
776 pthread_mutex_unlock(&stream->lock);
777 }
778 error:
779 rcu_read_unlock();
780 return ret;
781 }
782
783 /*
784 * Clear quiescent state from channel's streams using the given key to
785 * retrieve the channel.
786 *
787 * Return 0 on success else an LTTng error code.
788 */
789 static int clear_quiescent_channel(uint64_t chan_key)
790 {
791 int ret = 0;
792 struct lttng_consumer_channel *channel;
793 struct lttng_consumer_stream *stream;
794 struct lttng_ht *ht;
795 struct lttng_ht_iter iter;
796
797 DBG("UST consumer clear quiescent channel key %" PRIu64, chan_key);
798
799 rcu_read_lock();
800 channel = consumer_find_channel(chan_key);
801 if (!channel) {
802 ERR("UST consumer clear quiescent channel %" PRIu64 " not found", chan_key);
803 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
804 goto error;
805 }
806
807 ht = consumer_data.stream_per_chan_id_ht;
808
809 /* For each stream of the channel id, clear quiescent state. */
810 cds_lfht_for_each_entry_duplicate(ht->ht,
811 ht->hash_fct(&channel->key, lttng_ht_seed), ht->match_fct,
812 &channel->key, &iter.iter, stream, node_channel_id.node) {
813
814 health_code_update();
815
816 pthread_mutex_lock(&stream->lock);
817 stream->quiescent = false;
818 pthread_mutex_unlock(&stream->lock);
819 }
820 error:
821 rcu_read_unlock();
822 return ret;
823 }
824
825 /*
826 * Close metadata stream wakeup_fd using the given key to retrieve the channel.
827 * RCU read side lock MUST be acquired before calling this function.
828 *
829 * Return 0 on success else an LTTng error code.
830 */
831 static int close_metadata(uint64_t chan_key)
832 {
833 int ret = 0;
834 struct lttng_consumer_channel *channel;
835
836 DBG("UST consumer close metadata key %" PRIu64, chan_key);
837
838 channel = consumer_find_channel(chan_key);
839 if (!channel) {
840 /*
841 * This is possible if the metadata thread has issue a delete because
842 * the endpoint point of the stream hung up. There is no way the
843 * session daemon can know about it thus use a DBG instead of an actual
844 * error.
845 */
846 DBG("UST consumer close metadata %" PRIu64 " not found", chan_key);
847 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
848 goto error;
849 }
850
851 pthread_mutex_lock(&consumer_data.lock);
852 pthread_mutex_lock(&channel->lock);
853
854 if (cds_lfht_is_node_deleted(&channel->node.node)) {
855 goto error_unlock;
856 }
857
858 lttng_ustconsumer_close_metadata(channel);
859
860 error_unlock:
861 pthread_mutex_unlock(&channel->lock);
862 pthread_mutex_unlock(&consumer_data.lock);
863 error:
864 return ret;
865 }
866
867 /*
868 * RCU read side lock MUST be acquired before calling this function.
869 *
870 * Return 0 on success else an LTTng error code.
871 */
872 static int setup_metadata(struct lttng_consumer_local_data *ctx, uint64_t key)
873 {
874 int ret;
875 struct lttng_consumer_channel *metadata;
876
877 DBG("UST consumer setup metadata key %" PRIu64, key);
878
879 metadata = consumer_find_channel(key);
880 if (!metadata) {
881 ERR("UST consumer push metadata %" PRIu64 " not found", key);
882 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
883 goto end;
884 }
885
886 /*
887 * In no monitor mode, the metadata channel has no stream(s) so skip the
888 * ownership transfer to the metadata thread.
889 */
890 if (!metadata->monitor) {
891 DBG("Metadata channel in no monitor");
892 ret = 0;
893 goto end;
894 }
895
896 /*
897 * Send metadata stream to relayd if one available. Availability is
898 * known if the stream is still in the list of the channel.
899 */
900 if (cds_list_empty(&metadata->streams.head)) {
901 ERR("Metadata channel key %" PRIu64 ", no stream available.", key);
902 ret = LTTCOMM_CONSUMERD_ERROR_METADATA;
903 goto error_no_stream;
904 }
905
906 /* Send metadata stream to relayd if needed. */
907 if (metadata->metadata_stream->net_seq_idx != (uint64_t) -1ULL) {
908 ret = consumer_send_relayd_stream(metadata->metadata_stream,
909 metadata->pathname, LTTNG_DOMAIN_UST);
910 if (ret < 0) {
911 ret = LTTCOMM_CONSUMERD_ERROR_METADATA;
912 goto error;
913 }
914 ret = consumer_send_relayd_streams_sent(
915 metadata->metadata_stream->net_seq_idx);
916 if (ret < 0) {
917 ret = LTTCOMM_CONSUMERD_RELAYD_FAIL;
918 goto error;
919 }
920 }
921
922 ret = send_streams_to_thread(metadata, ctx);
923 if (ret < 0) {
924 /*
925 * If we are unable to send the stream to the thread, there is
926 * a big problem so just stop everything.
927 */
928 ret = LTTCOMM_CONSUMERD_FATAL;
929 goto error;
930 }
931 /* List MUST be empty after or else it could be reused. */
932 assert(cds_list_empty(&metadata->streams.head));
933
934 ret = 0;
935 goto end;
936
937 error:
938 /*
939 * Delete metadata channel on error. At this point, the metadata stream can
940 * NOT be monitored by the metadata thread thus having the guarantee that
941 * the stream is still in the local stream list of the channel. This call
942 * will make sure to clean that list.
943 */
944 consumer_stream_destroy(metadata->metadata_stream, NULL);
945 cds_list_del(&metadata->metadata_stream->send_node);
946 metadata->metadata_stream = NULL;
947 error_no_stream:
948 end:
949 return ret;
950 }
951
952 /*
953 * Snapshot the whole metadata.
954 *
955 * Returns 0 on success, < 0 on error
956 */
957 static int snapshot_metadata(uint64_t key, char *path, uint64_t relayd_id,
958 struct lttng_consumer_local_data *ctx)
959 {
960 int ret = 0;
961 struct lttng_consumer_channel *metadata_channel;
962 struct lttng_consumer_stream *metadata_stream;
963
964 assert(path);
965 assert(ctx);
966
967 DBG("UST consumer snapshot metadata with key %" PRIu64 " at path %s",
968 key, path);
969
970 rcu_read_lock();
971
972 metadata_channel = consumer_find_channel(key);
973 if (!metadata_channel) {
974 ERR("UST snapshot metadata channel not found for key %" PRIu64,
975 key);
976 ret = -1;
977 goto error;
978 }
979 assert(!metadata_channel->monitor);
980
981 health_code_update();
982
983 /*
984 * Ask the sessiond if we have new metadata waiting and update the
985 * consumer metadata cache.
986 */
987 ret = lttng_ustconsumer_request_metadata(ctx, metadata_channel, 0, 1);
988 if (ret < 0) {
989 goto error;
990 }
991
992 health_code_update();
993
994 /*
995 * The metadata stream is NOT created in no monitor mode when the channel
996 * is created on a sessiond ask channel command.
997 */
998 ret = create_ust_streams(metadata_channel, ctx);
999 if (ret < 0) {
1000 goto error;
1001 }
1002
1003 metadata_stream = metadata_channel->metadata_stream;
1004 assert(metadata_stream);
1005
1006 if (relayd_id != (uint64_t) -1ULL) {
1007 metadata_stream->net_seq_idx = relayd_id;
1008 ret = consumer_send_relayd_stream(metadata_stream, path,
1009 LTTNG_DOMAIN_UST);
1010 if (ret < 0) {
1011 goto error_stream;
1012 }
1013 } else {
1014 ret = utils_create_stream_file(path, metadata_stream->name,
1015 metadata_stream->chan->tracefile_size,
1016 metadata_stream->tracefile_count_current,
1017 metadata_stream->uid, metadata_stream->gid, NULL);
1018 if (ret < 0) {
1019 goto error_stream;
1020 }
1021 metadata_stream->out_fd = ret;
1022 metadata_stream->tracefile_size_current = 0;
1023 }
1024
1025 do {
1026 health_code_update();
1027
1028 ret = lttng_consumer_read_subbuffer(metadata_stream, ctx);
1029 if (ret < 0) {
1030 goto error_stream;
1031 }
1032 } while (ret > 0);
1033
1034 error_stream:
1035 /*
1036 * Clean up the stream completly because the next snapshot will use a new
1037 * metadata stream.
1038 */
1039 consumer_stream_destroy(metadata_stream, NULL);
1040 cds_list_del(&metadata_stream->send_node);
1041 metadata_channel->metadata_stream = NULL;
1042
1043 error:
1044 rcu_read_unlock();
1045 return ret;
1046 }
1047
1048 /*
1049 * Take a snapshot of all the stream of a channel.
1050 *
1051 * Returns 0 on success, < 0 on error
1052 */
1053 static int snapshot_channel(uint64_t key, char *path, uint64_t relayd_id,
1054 uint64_t nb_packets_per_stream, struct lttng_consumer_local_data *ctx)
1055 {
1056 int ret;
1057 unsigned use_relayd = 0;
1058 unsigned long consumed_pos, produced_pos;
1059 struct lttng_consumer_channel *channel;
1060 struct lttng_consumer_stream *stream;
1061
1062 assert(path);
1063 assert(ctx);
1064
1065 rcu_read_lock();
1066
1067 if (relayd_id != (uint64_t) -1ULL) {
1068 use_relayd = 1;
1069 }
1070
1071 channel = consumer_find_channel(key);
1072 if (!channel) {
1073 ERR("UST snapshot channel not found for key %" PRIu64, key);
1074 ret = -1;
1075 goto error;
1076 }
1077 assert(!channel->monitor);
1078 DBG("UST consumer snapshot channel %" PRIu64, key);
1079
1080 cds_list_for_each_entry(stream, &channel->streams.head, send_node) {
1081 health_code_update();
1082
1083 /* Lock stream because we are about to change its state. */
1084 pthread_mutex_lock(&stream->lock);
1085 stream->net_seq_idx = relayd_id;
1086
1087 if (use_relayd) {
1088 ret = consumer_send_relayd_stream(stream, path,
1089 LTTNG_DOMAIN_UST);
1090 if (ret < 0) {
1091 goto error_unlock;
1092 }
1093 } else {
1094 ret = utils_create_stream_file(path, stream->name,
1095 stream->chan->tracefile_size,
1096 stream->tracefile_count_current,
1097 stream->uid, stream->gid, NULL);
1098 if (ret < 0) {
1099 goto error_unlock;
1100 }
1101 stream->out_fd = ret;
1102 stream->tracefile_size_current = 0;
1103
1104 DBG("UST consumer snapshot stream %s/%s (%" PRIu64 ")", path,
1105 stream->name, stream->key);
1106 }
1107
1108 /*
1109 * If tracing is active, we want to perform a "full" buffer flush.
1110 * Else, if quiescent, it has already been done by the prior stop.
1111 */
1112 if (!stream->quiescent) {
1113 ustctl_flush_buffer(stream->ustream, 0);
1114 }
1115
1116 ret = lttng_ustconsumer_take_snapshot(stream);
1117 if (ret < 0) {
1118 ERR("Taking UST snapshot");
1119 goto error_unlock;
1120 }
1121
1122 ret = lttng_ustconsumer_get_produced_snapshot(stream, &produced_pos);
1123 if (ret < 0) {
1124 ERR("Produced UST snapshot position");
1125 goto error_unlock;
1126 }
1127
1128 ret = lttng_ustconsumer_get_consumed_snapshot(stream, &consumed_pos);
1129 if (ret < 0) {
1130 ERR("Consumerd UST snapshot position");
1131 goto error_unlock;
1132 }
1133
1134 /*
1135 * The original value is sent back if max stream size is larger than
1136 * the possible size of the snapshot. Also, we assume that the session
1137 * daemon should never send a maximum stream size that is lower than
1138 * subbuffer size.
1139 */
1140 consumed_pos = consumer_get_consume_start_pos(consumed_pos,
1141 produced_pos, nb_packets_per_stream,
1142 stream->max_sb_size);
1143
1144 while (consumed_pos < produced_pos) {
1145 ssize_t read_len;
1146 unsigned long len, padded_len;
1147
1148 health_code_update();
1149
1150 DBG("UST consumer taking snapshot at pos %lu", consumed_pos);
1151
1152 ret = ustctl_get_subbuf(stream->ustream, &consumed_pos);
1153 if (ret < 0) {
1154 if (ret != -EAGAIN) {
1155 PERROR("ustctl_get_subbuf snapshot");
1156 goto error_close_stream;
1157 }
1158 DBG("UST consumer get subbuf failed. Skipping it.");
1159 consumed_pos += stream->max_sb_size;
1160 stream->chan->lost_packets++;
1161 continue;
1162 }
1163
1164 ret = ustctl_get_subbuf_size(stream->ustream, &len);
1165 if (ret < 0) {
1166 ERR("Snapshot ustctl_get_subbuf_size");
1167 goto error_put_subbuf;
1168 }
1169
1170 ret = ustctl_get_padded_subbuf_size(stream->ustream, &padded_len);
1171 if (ret < 0) {
1172 ERR("Snapshot ustctl_get_padded_subbuf_size");
1173 goto error_put_subbuf;
1174 }
1175
1176 read_len = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, len,
1177 padded_len - len, NULL);
1178 if (use_relayd) {
1179 if (read_len != len) {
1180 ret = -EPERM;
1181 goto error_put_subbuf;
1182 }
1183 } else {
1184 if (read_len != padded_len) {
1185 ret = -EPERM;
1186 goto error_put_subbuf;
1187 }
1188 }
1189
1190 ret = ustctl_put_subbuf(stream->ustream);
1191 if (ret < 0) {
1192 ERR("Snapshot ustctl_put_subbuf");
1193 goto error_close_stream;
1194 }
1195 consumed_pos += stream->max_sb_size;
1196 }
1197
1198 /* Simply close the stream so we can use it on the next snapshot. */
1199 consumer_stream_close(stream);
1200 pthread_mutex_unlock(&stream->lock);
1201 }
1202
1203 rcu_read_unlock();
1204 return 0;
1205
1206 error_put_subbuf:
1207 if (ustctl_put_subbuf(stream->ustream) < 0) {
1208 ERR("Snapshot ustctl_put_subbuf");
1209 }
1210 error_close_stream:
1211 consumer_stream_close(stream);
1212 error_unlock:
1213 pthread_mutex_unlock(&stream->lock);
1214 error:
1215 rcu_read_unlock();
1216 return ret;
1217 }
1218
1219 /*
1220 * Receive the metadata updates from the sessiond. Supports receiving
1221 * overlapping metadata, but is needs to always belong to a contiguous
1222 * range starting from 0.
1223 * Be careful about the locks held when calling this function: it needs
1224 * the metadata cache flush to concurrently progress in order to
1225 * complete.
1226 */
1227 int lttng_ustconsumer_recv_metadata(int sock, uint64_t key, uint64_t offset,
1228 uint64_t len, uint64_t version,
1229 struct lttng_consumer_channel *channel, int timer, int wait)
1230 {
1231 int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1232 char *metadata_str;
1233
1234 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key, len);
1235
1236 metadata_str = zmalloc(len * sizeof(char));
1237 if (!metadata_str) {
1238 PERROR("zmalloc metadata string");
1239 ret_code = LTTCOMM_CONSUMERD_ENOMEM;
1240 goto end;
1241 }
1242
1243 health_code_update();
1244
1245 /* Receive metadata string. */
1246 ret = lttcomm_recv_unix_sock(sock, metadata_str, len);
1247 if (ret < 0) {
1248 /* Session daemon is dead so return gracefully. */
1249 ret_code = ret;
1250 goto end_free;
1251 }
1252
1253 health_code_update();
1254
1255 pthread_mutex_lock(&channel->metadata_cache->lock);
1256 ret = consumer_metadata_cache_write(channel, offset, len, version,
1257 metadata_str);
1258 if (ret < 0) {
1259 /* Unable to handle metadata. Notify session daemon. */
1260 ret_code = LTTCOMM_CONSUMERD_ERROR_METADATA;
1261 /*
1262 * Skip metadata flush on write error since the offset and len might
1263 * not have been updated which could create an infinite loop below when
1264 * waiting for the metadata cache to be flushed.
1265 */
1266 pthread_mutex_unlock(&channel->metadata_cache->lock);
1267 goto end_free;
1268 }
1269 pthread_mutex_unlock(&channel->metadata_cache->lock);
1270
1271 if (!wait) {
1272 goto end_free;
1273 }
1274 while (consumer_metadata_cache_flushed(channel, offset + len, timer)) {
1275 DBG("Waiting for metadata to be flushed");
1276
1277 health_code_update();
1278
1279 usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME);
1280 }
1281
1282 end_free:
1283 free(metadata_str);
1284 end:
1285 return ret_code;
1286 }
1287
1288 /*
1289 * Receive command from session daemon and process it.
1290 *
1291 * Return 1 on success else a negative value or 0.
1292 */
1293 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
1294 int sock, struct pollfd *consumer_sockpoll)
1295 {
1296 ssize_t ret;
1297 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1298 struct lttcomm_consumer_msg msg;
1299 struct lttng_consumer_channel *channel = NULL;
1300
1301 health_code_update();
1302
1303 ret = lttcomm_recv_unix_sock(sock, &msg, sizeof(msg));
1304 if (ret != sizeof(msg)) {
1305 DBG("Consumer received unexpected message size %zd (expects %zu)",
1306 ret, sizeof(msg));
1307 /*
1308 * The ret value might 0 meaning an orderly shutdown but this is ok
1309 * since the caller handles this.
1310 */
1311 if (ret > 0) {
1312 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
1313 ret = -1;
1314 }
1315 return ret;
1316 }
1317
1318 health_code_update();
1319
1320 /* deprecated */
1321 assert(msg.cmd_type != LTTNG_CONSUMER_STOP);
1322
1323 health_code_update();
1324
1325 /* relayd needs RCU read-side lock */
1326 rcu_read_lock();
1327
1328 switch (msg.cmd_type) {
1329 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET:
1330 {
1331 /* Session daemon status message are handled in the following call. */
1332 consumer_add_relayd_socket(msg.u.relayd_sock.net_index,
1333 msg.u.relayd_sock.type, ctx, sock, consumer_sockpoll,
1334 &msg.u.relayd_sock.sock, msg.u.relayd_sock.session_id,
1335 msg.u.relayd_sock.relayd_session_id);
1336 goto end_nosignal;
1337 }
1338 case LTTNG_CONSUMER_DESTROY_RELAYD:
1339 {
1340 uint64_t index = msg.u.destroy_relayd.net_seq_idx;
1341 struct consumer_relayd_sock_pair *relayd;
1342
1343 DBG("UST consumer destroying relayd %" PRIu64, index);
1344
1345 /* Get relayd reference if exists. */
1346 relayd = consumer_find_relayd(index);
1347 if (relayd == NULL) {
1348 DBG("Unable to find relayd %" PRIu64, index);
1349 ret_code = LTTCOMM_CONSUMERD_RELAYD_FAIL;
1350 }
1351
1352 /*
1353 * Each relayd socket pair has a refcount of stream attached to it
1354 * which tells if the relayd is still active or not depending on the
1355 * refcount value.
1356 *
1357 * This will set the destroy flag of the relayd object and destroy it
1358 * if the refcount reaches zero when called.
1359 *
1360 * The destroy can happen either here or when a stream fd hangs up.
1361 */
1362 if (relayd) {
1363 consumer_flag_relayd_for_destroy(relayd);
1364 }
1365
1366 goto end_msg_sessiond;
1367 }
1368 case LTTNG_CONSUMER_UPDATE_STREAM:
1369 {
1370 rcu_read_unlock();
1371 return -ENOSYS;
1372 }
1373 case LTTNG_CONSUMER_DATA_PENDING:
1374 {
1375 int ret, is_data_pending;
1376 uint64_t id = msg.u.data_pending.session_id;
1377
1378 DBG("UST consumer data pending command for id %" PRIu64, id);
1379
1380 is_data_pending = consumer_data_pending(id);
1381
1382 /* Send back returned value to session daemon */
1383 ret = lttcomm_send_unix_sock(sock, &is_data_pending,
1384 sizeof(is_data_pending));
1385 if (ret < 0) {
1386 DBG("Error when sending the data pending ret code: %d", ret);
1387 goto error_fatal;
1388 }
1389
1390 /*
1391 * No need to send back a status message since the data pending
1392 * returned value is the response.
1393 */
1394 break;
1395 }
1396 case LTTNG_CONSUMER_ASK_CHANNEL_CREATION:
1397 {
1398 int ret;
1399 struct ustctl_consumer_channel_attr attr;
1400
1401 /* Create a plain object and reserve a channel key. */
1402 channel = allocate_channel(msg.u.ask_channel.session_id,
1403 msg.u.ask_channel.pathname, msg.u.ask_channel.name,
1404 msg.u.ask_channel.uid, msg.u.ask_channel.gid,
1405 msg.u.ask_channel.relayd_id, msg.u.ask_channel.key,
1406 (enum lttng_event_output) msg.u.ask_channel.output,
1407 msg.u.ask_channel.tracefile_size,
1408 msg.u.ask_channel.tracefile_count,
1409 msg.u.ask_channel.session_id_per_pid,
1410 msg.u.ask_channel.monitor,
1411 msg.u.ask_channel.live_timer_interval,
1412 msg.u.ask_channel.root_shm_path,
1413 msg.u.ask_channel.shm_path);
1414 if (!channel) {
1415 goto end_channel_error;
1416 }
1417
1418 /*
1419 * Assign UST application UID to the channel. This value is ignored for
1420 * per PID buffers. This is specific to UST thus setting this after the
1421 * allocation.
1422 */
1423 channel->ust_app_uid = msg.u.ask_channel.ust_app_uid;
1424
1425 /* Build channel attributes from received message. */
1426 attr.subbuf_size = msg.u.ask_channel.subbuf_size;
1427 attr.num_subbuf = msg.u.ask_channel.num_subbuf;
1428 attr.overwrite = msg.u.ask_channel.overwrite;
1429 attr.switch_timer_interval = msg.u.ask_channel.switch_timer_interval;
1430 attr.read_timer_interval = msg.u.ask_channel.read_timer_interval;
1431 attr.chan_id = msg.u.ask_channel.chan_id;
1432 memcpy(attr.uuid, msg.u.ask_channel.uuid, sizeof(attr.uuid));
1433 attr.blocking_timeout= msg.u.ask_channel.blocking_timeout;
1434
1435 /* Match channel buffer type to the UST abi. */
1436 switch (msg.u.ask_channel.output) {
1437 case LTTNG_EVENT_MMAP:
1438 default:
1439 attr.output = LTTNG_UST_MMAP;
1440 break;
1441 }
1442
1443 /* Translate and save channel type. */
1444 switch (msg.u.ask_channel.type) {
1445 case LTTNG_UST_CHAN_PER_CPU:
1446 channel->type = CONSUMER_CHANNEL_TYPE_DATA;
1447 attr.type = LTTNG_UST_CHAN_PER_CPU;
1448 /*
1449 * Set refcount to 1 for owner. Below, we will
1450 * pass ownership to the
1451 * consumer_thread_channel_poll() thread.
1452 */
1453 channel->refcount = 1;
1454 break;
1455 case LTTNG_UST_CHAN_METADATA:
1456 channel->type = CONSUMER_CHANNEL_TYPE_METADATA;
1457 attr.type = LTTNG_UST_CHAN_METADATA;
1458 break;
1459 default:
1460 assert(0);
1461 goto error_fatal;
1462 };
1463
1464 health_code_update();
1465
1466 ret = ask_channel(ctx, sock, channel, &attr);
1467 if (ret < 0) {
1468 goto end_channel_error;
1469 }
1470
1471 if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) {
1472 ret = consumer_metadata_cache_allocate(channel);
1473 if (ret < 0) {
1474 ERR("Allocating metadata cache");
1475 goto end_channel_error;
1476 }
1477 consumer_timer_switch_start(channel, attr.switch_timer_interval);
1478 attr.switch_timer_interval = 0;
1479 } else {
1480 int monitor_start_ret;
1481
1482 consumer_timer_live_start(channel,
1483 msg.u.ask_channel.live_timer_interval);
1484 monitor_start_ret = consumer_timer_monitor_start(
1485 channel,
1486 msg.u.ask_channel.monitor_timer_interval);
1487 if (monitor_start_ret < 0) {
1488 ERR("Starting channel monitoring timer failed");
1489 goto end_channel_error;
1490 }
1491 }
1492
1493 health_code_update();
1494
1495 /*
1496 * Add the channel to the internal state AFTER all streams were created
1497 * and successfully sent to session daemon. This way, all streams must
1498 * be ready before this channel is visible to the threads.
1499 * If add_channel succeeds, ownership of the channel is
1500 * passed to consumer_thread_channel_poll().
1501 */
1502 ret = add_channel(channel, ctx);
1503 if (ret < 0) {
1504 if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) {
1505 if (channel->switch_timer_enabled == 1) {
1506 consumer_timer_switch_stop(channel);
1507 }
1508 consumer_metadata_cache_destroy(channel);
1509 }
1510 if (channel->live_timer_enabled == 1) {
1511 consumer_timer_live_stop(channel);
1512 }
1513 if (channel->monitor_timer_enabled == 1) {
1514 consumer_timer_monitor_stop(channel);
1515 }
1516 goto end_channel_error;
1517 }
1518
1519 health_code_update();
1520
1521 /*
1522 * Channel and streams are now created. Inform the session daemon that
1523 * everything went well and should wait to receive the channel and
1524 * streams with ustctl API.
1525 */
1526 ret = consumer_send_status_channel(sock, channel);
1527 if (ret < 0) {
1528 /*
1529 * There is probably a problem on the socket.
1530 */
1531 goto error_fatal;
1532 }
1533
1534 break;
1535 }
1536 case LTTNG_CONSUMER_GET_CHANNEL:
1537 {
1538 int ret, relayd_err = 0;
1539 uint64_t key = msg.u.get_channel.key;
1540 struct lttng_consumer_channel *channel;
1541
1542 channel = consumer_find_channel(key);
1543 if (!channel) {
1544 ERR("UST consumer get channel key %" PRIu64 " not found", key);
1545 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
1546 goto end_msg_sessiond;
1547 }
1548
1549 health_code_update();
1550
1551 /* Send everything to sessiond. */
1552 ret = send_sessiond_channel(sock, channel, ctx, &relayd_err);
1553 if (ret < 0) {
1554 if (relayd_err) {
1555 /*
1556 * We were unable to send to the relayd the stream so avoid
1557 * sending back a fatal error to the thread since this is OK
1558 * and the consumer can continue its work. The above call
1559 * has sent the error status message to the sessiond.
1560 */
1561 goto end_nosignal;
1562 }
1563 /*
1564 * The communicaton was broken hence there is a bad state between
1565 * the consumer and sessiond so stop everything.
1566 */
1567 goto error_fatal;
1568 }
1569
1570 health_code_update();
1571
1572 /*
1573 * In no monitor mode, the streams ownership is kept inside the channel
1574 * so don't send them to the data thread.
1575 */
1576 if (!channel->monitor) {
1577 goto end_msg_sessiond;
1578 }
1579
1580 ret = send_streams_to_thread(channel, ctx);
1581 if (ret < 0) {
1582 /*
1583 * If we are unable to send the stream to the thread, there is
1584 * a big problem so just stop everything.
1585 */
1586 goto error_fatal;
1587 }
1588 /* List MUST be empty after or else it could be reused. */
1589 assert(cds_list_empty(&channel->streams.head));
1590 goto end_msg_sessiond;
1591 }
1592 case LTTNG_CONSUMER_DESTROY_CHANNEL:
1593 {
1594 uint64_t key = msg.u.destroy_channel.key;
1595
1596 /*
1597 * Only called if streams have not been sent to stream
1598 * manager thread. However, channel has been sent to
1599 * channel manager thread.
1600 */
1601 notify_thread_del_channel(ctx, key);
1602 goto end_msg_sessiond;
1603 }
1604 case LTTNG_CONSUMER_CLOSE_METADATA:
1605 {
1606 int ret;
1607
1608 ret = close_metadata(msg.u.close_metadata.key);
1609 if (ret != 0) {
1610 ret_code = ret;
1611 }
1612
1613 goto end_msg_sessiond;
1614 }
1615 case LTTNG_CONSUMER_FLUSH_CHANNEL:
1616 {
1617 int ret;
1618
1619 ret = flush_channel(msg.u.flush_channel.key);
1620 if (ret != 0) {
1621 ret_code = ret;
1622 }
1623
1624 goto end_msg_sessiond;
1625 }
1626 case LTTNG_CONSUMER_CLEAR_QUIESCENT_CHANNEL:
1627 {
1628 int ret;
1629
1630 ret = clear_quiescent_channel(
1631 msg.u.clear_quiescent_channel.key);
1632 if (ret != 0) {
1633 ret_code = ret;
1634 }
1635
1636 goto end_msg_sessiond;
1637 }
1638 case LTTNG_CONSUMER_PUSH_METADATA:
1639 {
1640 int ret;
1641 uint64_t len = msg.u.push_metadata.len;
1642 uint64_t key = msg.u.push_metadata.key;
1643 uint64_t offset = msg.u.push_metadata.target_offset;
1644 uint64_t version = msg.u.push_metadata.version;
1645 struct lttng_consumer_channel *channel;
1646
1647 DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key,
1648 len);
1649
1650 channel = consumer_find_channel(key);
1651 if (!channel) {
1652 /*
1653 * This is possible if the metadata creation on the consumer side
1654 * is in flight vis-a-vis a concurrent push metadata from the
1655 * session daemon. Simply return that the channel failed and the
1656 * session daemon will handle that message correctly considering
1657 * that this race is acceptable thus the DBG() statement here.
1658 */
1659 DBG("UST consumer push metadata %" PRIu64 " not found", key);
1660 ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL;
1661 goto end_msg_sessiond;
1662 }
1663
1664 health_code_update();
1665
1666 if (!len) {
1667 /*
1668 * There is nothing to receive. We have simply
1669 * checked whether the channel can be found.
1670 */
1671 ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1672 goto end_msg_sessiond;
1673 }
1674
1675 /* Tell session daemon we are ready to receive the metadata. */
1676 ret = consumer_send_status_msg(sock, LTTCOMM_CONSUMERD_SUCCESS);
1677 if (ret < 0) {
1678 /* Somehow, the session daemon is not responding anymore. */
1679 goto error_fatal;
1680 }
1681
1682 health_code_update();
1683
1684 /* Wait for more data. */
1685 health_poll_entry();
1686 ret = lttng_consumer_poll_socket(consumer_sockpoll);
1687 health_poll_exit();
1688 if (ret) {
1689 goto error_fatal;
1690 }
1691
1692 health_code_update();
1693
1694 ret = lttng_ustconsumer_recv_metadata(sock, key, offset,
1695 len, version, channel, 0, 1);
1696 if (ret < 0) {
1697 /* error receiving from sessiond */
1698 goto error_fatal;
1699 } else {
1700 ret_code = ret;
1701 goto end_msg_sessiond;
1702 }
1703 }
1704 case LTTNG_CONSUMER_SETUP_METADATA:
1705 {
1706 int ret;
1707
1708 ret = setup_metadata(ctx, msg.u.setup_metadata.key);
1709 if (ret) {
1710 ret_code = ret;
1711 }
1712 goto end_msg_sessiond;
1713 }
1714 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL:
1715 {
1716 if (msg.u.snapshot_channel.metadata) {
1717 ret = snapshot_metadata(msg.u.snapshot_channel.key,
1718 msg.u.snapshot_channel.pathname,
1719 msg.u.snapshot_channel.relayd_id,
1720 ctx);
1721 if (ret < 0) {
1722 ERR("Snapshot metadata failed");
1723 ret_code = LTTCOMM_CONSUMERD_ERROR_METADATA;
1724 }
1725 } else {
1726 ret = snapshot_channel(msg.u.snapshot_channel.key,
1727 msg.u.snapshot_channel.pathname,
1728 msg.u.snapshot_channel.relayd_id,
1729 msg.u.snapshot_channel.nb_packets_per_stream,
1730 ctx);
1731 if (ret < 0) {
1732 ERR("Snapshot channel failed");
1733 ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL;
1734 }
1735 }
1736
1737 health_code_update();
1738 ret = consumer_send_status_msg(sock, ret_code);
1739 if (ret < 0) {
1740 /* Somehow, the session daemon is not responding anymore. */
1741 goto end_nosignal;
1742 }
1743 health_code_update();
1744 break;
1745 }
1746 case LTTNG_CONSUMER_DISCARDED_EVENTS:
1747 {
1748 int ret = 0;
1749 uint64_t discarded_events;
1750 struct lttng_ht_iter iter;
1751 struct lttng_ht *ht;
1752 struct lttng_consumer_stream *stream;
1753 uint64_t id = msg.u.discarded_events.session_id;
1754 uint64_t key = msg.u.discarded_events.channel_key;
1755
1756 DBG("UST consumer discarded events command for session id %"
1757 PRIu64, id);
1758 rcu_read_lock();
1759 pthread_mutex_lock(&consumer_data.lock);
1760
1761 ht = consumer_data.stream_list_ht;
1762
1763 /*
1764 * We only need a reference to the channel, but they are not
1765 * directly indexed, so we just use the first matching stream
1766 * to extract the information we need, we default to 0 if not
1767 * found (no events are dropped if the channel is not yet in
1768 * use).
1769 */
1770 discarded_events = 0;
1771 cds_lfht_for_each_entry_duplicate(ht->ht,
1772 ht->hash_fct(&id, lttng_ht_seed),
1773 ht->match_fct, &id,
1774 &iter.iter, stream, node_session_id.node) {
1775 if (stream->chan->key == key) {
1776 discarded_events = stream->chan->discarded_events;
1777 break;
1778 }
1779 }
1780 pthread_mutex_unlock(&consumer_data.lock);
1781 rcu_read_unlock();
1782
1783 DBG("UST consumer discarded events command for session id %"
1784 PRIu64 ", channel key %" PRIu64, id, key);
1785
1786 health_code_update();
1787
1788 /* Send back returned value to session daemon */
1789 ret = lttcomm_send_unix_sock(sock, &discarded_events, sizeof(discarded_events));
1790 if (ret < 0) {
1791 PERROR("send discarded events");
1792 goto error_fatal;
1793 }
1794
1795 break;
1796 }
1797 case LTTNG_CONSUMER_LOST_PACKETS:
1798 {
1799 int ret;
1800 uint64_t lost_packets;
1801 struct lttng_ht_iter iter;
1802 struct lttng_ht *ht;
1803 struct lttng_consumer_stream *stream;
1804 uint64_t id = msg.u.lost_packets.session_id;
1805 uint64_t key = msg.u.lost_packets.channel_key;
1806
1807 DBG("UST consumer lost packets command for session id %"
1808 PRIu64, id);
1809 rcu_read_lock();
1810 pthread_mutex_lock(&consumer_data.lock);
1811
1812 ht = consumer_data.stream_list_ht;
1813
1814 /*
1815 * We only need a reference to the channel, but they are not
1816 * directly indexed, so we just use the first matching stream
1817 * to extract the information we need, we default to 0 if not
1818 * found (no packets lost if the channel is not yet in use).
1819 */
1820 lost_packets = 0;
1821 cds_lfht_for_each_entry_duplicate(ht->ht,
1822 ht->hash_fct(&id, lttng_ht_seed),
1823 ht->match_fct, &id,
1824 &iter.iter, stream, node_session_id.node) {
1825 if (stream->chan->key == key) {
1826 lost_packets = stream->chan->lost_packets;
1827 break;
1828 }
1829 }
1830 pthread_mutex_unlock(&consumer_data.lock);
1831 rcu_read_unlock();
1832
1833 DBG("UST consumer lost packets command for session id %"
1834 PRIu64 ", channel key %" PRIu64, id, key);
1835
1836 health_code_update();
1837
1838 /* Send back returned value to session daemon */
1839 ret = lttcomm_send_unix_sock(sock, &lost_packets,
1840 sizeof(lost_packets));
1841 if (ret < 0) {
1842 PERROR("send lost packets");
1843 goto error_fatal;
1844 }
1845
1846 break;
1847 }
1848 case LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE:
1849 {
1850 int channel_monitor_pipe;
1851
1852 ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1853 /* Successfully received the command's type. */
1854 ret = consumer_send_status_msg(sock, ret_code);
1855 if (ret < 0) {
1856 goto error_fatal;
1857 }
1858
1859 ret = lttcomm_recv_fds_unix_sock(sock, &channel_monitor_pipe,
1860 1);
1861 if (ret != sizeof(channel_monitor_pipe)) {
1862 ERR("Failed to receive channel monitor pipe");
1863 goto error_fatal;
1864 }
1865
1866 DBG("Received channel monitor pipe (%d)", channel_monitor_pipe);
1867 ret = consumer_timer_thread_set_channel_monitor_pipe(
1868 channel_monitor_pipe);
1869 if (!ret) {
1870 int flags;
1871
1872 ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1873 /* Set the pipe as non-blocking. */
1874 ret = fcntl(channel_monitor_pipe, F_GETFL, 0);
1875 if (ret == -1) {
1876 PERROR("fcntl get flags of the channel monitoring pipe");
1877 goto error_fatal;
1878 }
1879 flags = ret;
1880
1881 ret = fcntl(channel_monitor_pipe, F_SETFL,
1882 flags | O_NONBLOCK);
1883 if (ret == -1) {
1884 PERROR("fcntl set O_NONBLOCK flag of the channel monitoring pipe");
1885 goto error_fatal;
1886 }
1887 DBG("Channel monitor pipe set as non-blocking");
1888 } else {
1889 ret_code = LTTCOMM_CONSUMERD_ALREADY_SET;
1890 }
1891 goto end_msg_sessiond;
1892 }
1893 case LTTNG_CONSUMER_SET_CHANNEL_ROTATE_PIPE:
1894 {
1895 int channel_rotate_pipe;
1896 int flags;
1897
1898 ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1899 /* Successfully received the command's type. */
1900 ret = consumer_send_status_msg(sock, ret_code);
1901 if (ret < 0) {
1902 goto error_fatal;
1903 }
1904
1905 ret = lttcomm_recv_fds_unix_sock(sock, &channel_rotate_pipe,
1906 1);
1907 if (ret != sizeof(channel_rotate_pipe)) {
1908 ERR("Failed to receive channel rotate pipe");
1909 goto error_fatal;
1910 }
1911
1912 DBG("Received channel rotate pipe (%d)", channel_rotate_pipe);
1913 ctx->channel_rotate_pipe = channel_rotate_pipe;
1914 /* Set the pipe as non-blocking. */
1915 ret = fcntl(channel_rotate_pipe, F_GETFL, 0);
1916 if (ret == -1) {
1917 PERROR("fcntl get flags of the channel rotate pipe");
1918 goto error_fatal;
1919 }
1920 flags = ret;
1921
1922 ret = fcntl(channel_rotate_pipe, F_SETFL,
1923 flags | O_NONBLOCK);
1924 if (ret == -1) {
1925 PERROR("fcntl set O_NONBLOCK flag of the channel rotate pipe");
1926 goto error_fatal;
1927 }
1928 DBG("Channel rotate pipe set as non-blocking");
1929 ret_code = LTTCOMM_CONSUMERD_SUCCESS;
1930 ret = consumer_send_status_msg(sock, ret_code);
1931 if (ret < 0) {
1932 goto error_fatal;
1933 }
1934 break;
1935 }
1936 case LTTNG_CONSUMER_ROTATE_CHANNEL:
1937 {
1938 ret = lttng_consumer_rotate_channel(msg.u.rotate_channel.key,
1939 msg.u.rotate_channel.pathname,
1940 msg.u.rotate_channel.relayd_id,
1941 msg.u.rotate_channel.metadata,
1942 msg.u.rotate_channel.new_chunk_id,
1943 ctx);
1944 if (ret < 0) {
1945 ERR("Rotate channel failed");
1946 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
1947 }
1948
1949 health_code_update();
1950
1951 ret = consumer_send_status_msg(sock, ret_code);
1952 if (ret < 0) {
1953 /* Somehow, the session daemon is not responding anymore. */
1954 goto end_nosignal;
1955 }
1956
1957 /*
1958 * Rotate the streams that are ready right now.
1959 * FIXME: this is a second consecutive iteration over the
1960 * streams in a channel, there is probably a better way to
1961 * handle this, but it needs to be after the
1962 * consumer_send_status_msg() call.
1963 */
1964 ret = lttng_consumer_rotate_ready_streams(
1965 msg.u.rotate_channel.key, ctx);
1966 if (ret < 0) {
1967 ERR("Rotate channel failed");
1968 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
1969 }
1970 break;
1971 }
1972 case LTTNG_CONSUMER_ROTATE_RENAME:
1973 {
1974 DBG("Consumer rename session %" PRIu64 " after rotation",
1975 msg.u.rotate_rename.session_id);
1976 ret = lttng_consumer_rotate_rename(msg.u.rotate_rename.current_path,
1977 msg.u.rotate_rename.new_path,
1978 msg.u.rotate_rename.uid,
1979 msg.u.rotate_rename.gid,
1980 msg.u.rotate_rename.relayd_id);
1981 if (ret < 0) {
1982 ERR("Rotate rename failed");
1983 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
1984 }
1985
1986 health_code_update();
1987
1988 ret = consumer_send_status_msg(sock, ret_code);
1989 if (ret < 0) {
1990 /* Somehow, the session daemon is not responding anymore. */
1991 goto end_nosignal;
1992 }
1993
1994 }
1995 case LTTNG_CONSUMER_ROTATE_PENDING_RELAY:
1996 {
1997 DBG("Consumer rotate pending on relay for session %" PRIu64,
1998 msg.u.rotate_pending_relay.session_id);
1999 ret = lttng_consumer_rotate_pending_relay(
2000 msg.u.rotate_pending_relay.session_id,
2001 msg.u.rotate_pending_relay.relayd_id,
2002 msg.u.rotate_pending_relay.chunk_id);
2003 if (ret < 0) {
2004 ERR("Rotate pending relay failed");
2005 ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND;
2006 }
2007
2008 health_code_update();
2009
2010 ret = consumer_send_status_msg(sock, ret_code);
2011 if (ret < 0) {
2012 /* Somehow, the session daemon is not responding anymore. */
2013 goto end_nosignal;
2014 }
2015
2016 }
2017 default:
2018 break;
2019 }
2020
2021 end_nosignal:
2022 rcu_read_unlock();
2023
2024 health_code_update();
2025
2026 /*
2027 * Return 1 to indicate success since the 0 value can be a socket
2028 * shutdown during the recv() or send() call.
2029 */
2030 return 1;
2031
2032 end_msg_sessiond:
2033 /*
2034 * The returned value here is not useful since either way we'll return 1 to
2035 * the caller because the session daemon socket management is done
2036 * elsewhere. Returning a negative code or 0 will shutdown the consumer.
2037 */
2038 ret = consumer_send_status_msg(sock, ret_code);
2039 if (ret < 0) {
2040 goto error_fatal;
2041 }
2042 rcu_read_unlock();
2043
2044 health_code_update();
2045
2046 return 1;
2047 end_channel_error:
2048 if (channel) {
2049 /*
2050 * Free channel here since no one has a reference to it. We don't
2051 * free after that because a stream can store this pointer.
2052 */
2053 destroy_channel(channel);
2054 }
2055 /* We have to send a status channel message indicating an error. */
2056 ret = consumer_send_status_channel(sock, NULL);
2057 if (ret < 0) {
2058 /* Stop everything if session daemon can not be notified. */
2059 goto error_fatal;
2060 }
2061 rcu_read_unlock();
2062
2063 health_code_update();
2064
2065 return 1;
2066 error_fatal:
2067 rcu_read_unlock();
2068 /* This will issue a consumer stop. */
2069 return -1;
2070 }
2071
2072 /*
2073 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
2074 * compiled out, we isolate it in this library.
2075 */
2076 int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
2077 unsigned long *off)
2078 {
2079 assert(stream);
2080 assert(stream->ustream);
2081
2082 return ustctl_get_mmap_read_offset(stream->ustream, off);
2083 }
2084
2085 /*
2086 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
2087 * compiled out, we isolate it in this library.
2088 */
2089 void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream)
2090 {
2091 assert(stream);
2092 assert(stream->ustream);
2093
2094 return ustctl_get_mmap_base(stream->ustream);
2095 }
2096
2097 void lttng_ustctl_flush_buffer(struct lttng_consumer_stream *stream,
2098 int producer_active)
2099 {
2100 assert(stream);
2101 assert(stream->ustream);
2102
2103 ustctl_flush_buffer(stream->ustream, producer_active);
2104 }
2105
2106 /*
2107 * Take a snapshot for a specific stream.
2108 *
2109 * Returns 0 on success, < 0 on error
2110 */
2111 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream)
2112 {
2113 assert(stream);
2114 assert(stream->ustream);
2115
2116 return ustctl_snapshot(stream->ustream);
2117 }
2118
2119 /*
2120 * Sample consumed and produced positions for a specific stream.
2121 *
2122 * Returns 0 on success, < 0 on error.
2123 */
2124 int lttng_ustconsumer_sample_snapshot_positions(
2125 struct lttng_consumer_stream *stream)
2126 {
2127 assert(stream);
2128 assert(stream->ustream);
2129
2130 return ustctl_snapshot_sample_positions(stream->ustream);
2131 }
2132
2133 /*
2134 * Get the produced position
2135 *
2136 * Returns 0 on success, < 0 on error
2137 */
2138 int lttng_ustconsumer_get_produced_snapshot(
2139 struct lttng_consumer_stream *stream, unsigned long *pos)
2140 {
2141 assert(stream);
2142 assert(stream->ustream);
2143 assert(pos);
2144
2145 return ustctl_snapshot_get_produced(stream->ustream, pos);
2146 }
2147
2148 /*
2149 * Get the consumed position
2150 *
2151 * Returns 0 on success, < 0 on error
2152 */
2153 int lttng_ustconsumer_get_consumed_snapshot(
2154 struct lttng_consumer_stream *stream, unsigned long *pos)
2155 {
2156 assert(stream);
2157 assert(stream->ustream);
2158 assert(pos);
2159
2160 return ustctl_snapshot_get_consumed(stream->ustream, pos);
2161 }
2162
2163 void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream *stream,
2164 int producer)
2165 {
2166 assert(stream);
2167 assert(stream->ustream);
2168
2169 ustctl_flush_buffer(stream->ustream, producer);
2170 }
2171
2172 int lttng_ustconsumer_get_current_timestamp(
2173 struct lttng_consumer_stream *stream, uint64_t *ts)
2174 {
2175 assert(stream);
2176 assert(stream->ustream);
2177 assert(ts);
2178
2179 return ustctl_get_current_timestamp(stream->ustream, ts);
2180 }
2181
2182 int lttng_ustconsumer_get_sequence_number(
2183 struct lttng_consumer_stream *stream, uint64_t *seq)
2184 {
2185 assert(stream);
2186 assert(stream->ustream);
2187 assert(seq);
2188
2189 return ustctl_get_sequence_number(stream->ustream, seq);
2190 }
2191
2192 /*
2193 * Called when the stream signals the consumer that it has hung up.
2194 */
2195 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
2196 {
2197 assert(stream);
2198 assert(stream->ustream);
2199
2200 pthread_mutex_lock(&stream->lock);
2201 if (!stream->quiescent) {
2202 ustctl_flush_buffer(stream->ustream, 0);
2203 stream->quiescent = true;
2204 }
2205 pthread_mutex_unlock(&stream->lock);
2206 stream->hangup_flush_done = 1;
2207 }
2208
2209 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
2210 {
2211 int i;
2212
2213 assert(chan);
2214 assert(chan->uchan);
2215
2216 if (chan->switch_timer_enabled == 1) {
2217 consumer_timer_switch_stop(chan);
2218 }
2219 for (i = 0; i < chan->nr_stream_fds; i++) {
2220 int ret;
2221
2222 ret = close(chan->stream_fds[i]);
2223 if (ret) {
2224 PERROR("close");
2225 }
2226 if (chan->shm_path[0]) {
2227 char shm_path[PATH_MAX];
2228
2229 ret = get_stream_shm_path(shm_path, chan->shm_path, i);
2230 if (ret) {
2231 ERR("Cannot get stream shm path");
2232 }
2233 ret = run_as_unlink(shm_path, chan->uid, chan->gid);
2234 if (ret) {
2235 PERROR("unlink %s", shm_path);
2236 }
2237 }
2238 }
2239 }
2240
2241 void lttng_ustconsumer_free_channel(struct lttng_consumer_channel *chan)
2242 {
2243 assert(chan);
2244 assert(chan->uchan);
2245
2246 consumer_metadata_cache_destroy(chan);
2247 ustctl_destroy_channel(chan->uchan);
2248 /* Try to rmdir all directories under shm_path root. */
2249 if (chan->root_shm_path[0]) {
2250 (void) run_as_rmdir_recursive(chan->root_shm_path,
2251 chan->uid, chan->gid);
2252 }
2253 free(chan->stream_fds);
2254 }
2255
2256 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
2257 {
2258 assert(stream);
2259 assert(stream->ustream);
2260
2261 if (stream->chan->switch_timer_enabled == 1) {
2262 consumer_timer_switch_stop(stream->chan);
2263 }
2264 ustctl_destroy_stream(stream->ustream);
2265 }
2266
2267 int lttng_ustconsumer_get_wakeup_fd(struct lttng_consumer_stream *stream)
2268 {
2269 assert(stream);
2270 assert(stream->ustream);
2271
2272 return ustctl_stream_get_wakeup_fd(stream->ustream);
2273 }
2274
2275 int lttng_ustconsumer_close_wakeup_fd(struct lttng_consumer_stream *stream)
2276 {
2277 assert(stream);
2278 assert(stream->ustream);
2279
2280 return ustctl_stream_close_wakeup_fd(stream->ustream);
2281 }
2282
2283 /*
2284 * Populate index values of a UST stream. Values are set in big endian order.
2285 *
2286 * Return 0 on success or else a negative value.
2287 */
2288 static int get_index_values(struct ctf_packet_index *index,
2289 struct ustctl_consumer_stream *ustream)
2290 {
2291 int ret;
2292
2293 ret = ustctl_get_timestamp_begin(ustream, &index->timestamp_begin);
2294 if (ret < 0) {
2295 PERROR("ustctl_get_timestamp_begin");
2296 goto error;
2297 }
2298 index->timestamp_begin = htobe64(index->timestamp_begin);
2299
2300 ret = ustctl_get_timestamp_end(ustream, &index->timestamp_end);
2301 if (ret < 0) {
2302 PERROR("ustctl_get_timestamp_end");
2303 goto error;
2304 }
2305 index->timestamp_end = htobe64(index->timestamp_end);
2306
2307 ret = ustctl_get_events_discarded(ustream, &index->events_discarded);
2308 if (ret < 0) {
2309 PERROR("ustctl_get_events_discarded");
2310 goto error;
2311 }
2312 index->events_discarded = htobe64(index->events_discarded);
2313
2314 ret = ustctl_get_content_size(ustream, &index->content_size);
2315 if (ret < 0) {
2316 PERROR("ustctl_get_content_size");
2317 goto error;
2318 }
2319 index->content_size = htobe64(index->content_size);
2320
2321 ret = ustctl_get_packet_size(ustream, &index->packet_size);
2322 if (ret < 0) {
2323 PERROR("ustctl_get_packet_size");
2324 goto error;
2325 }
2326 index->packet_size = htobe64(index->packet_size);
2327
2328 ret = ustctl_get_stream_id(ustream, &index->stream_id);
2329 if (ret < 0) {
2330 PERROR("ustctl_get_stream_id");
2331 goto error;
2332 }
2333 index->stream_id = htobe64(index->stream_id);
2334
2335 ret = ustctl_get_instance_id(ustream, &index->stream_instance_id);
2336 if (ret < 0) {
2337 PERROR("ustctl_get_instance_id");
2338 goto error;
2339 }
2340 index->stream_instance_id = htobe64(index->stream_instance_id);
2341
2342 ret = ustctl_get_sequence_number(ustream, &index->packet_seq_num);
2343 if (ret < 0) {
2344 PERROR("ustctl_get_sequence_number");
2345 goto error;
2346 }
2347 index->packet_seq_num = htobe64(index->packet_seq_num);
2348
2349 error:
2350 return ret;
2351 }
2352
2353 static
2354 void metadata_stream_reset_cache(struct lttng_consumer_stream *stream,
2355 struct consumer_metadata_cache *cache)
2356 {
2357 DBG("Metadata stream update to version %" PRIu64,
2358 cache->version);
2359 stream->ust_metadata_pushed = 0;
2360 stream->metadata_version = cache->version;
2361 stream->reset_metadata_flag = 1;
2362 }
2363
2364 /*
2365 * Check if the version of the metadata stream and metadata cache match.
2366 * If the cache got updated, reset the metadata stream.
2367 * The stream lock and metadata cache lock MUST be held.
2368 * Return 0 on success, a negative value on error.
2369 */
2370 static
2371 int metadata_stream_check_version(struct lttng_consumer_stream *stream)
2372 {
2373 int ret = 0;
2374 struct consumer_metadata_cache *cache = stream->chan->metadata_cache;
2375
2376 if (cache->version == stream->metadata_version) {
2377 goto end;
2378 }
2379 metadata_stream_reset_cache(stream, cache);
2380
2381 end:
2382 return ret;
2383 }
2384
2385 /*
2386 * Write up to one packet from the metadata cache to the channel.
2387 *
2388 * Returns the number of bytes pushed in the cache, or a negative value
2389 * on error.
2390 */
2391 static
2392 int commit_one_metadata_packet(struct lttng_consumer_stream *stream)
2393 {
2394 ssize_t write_len;
2395 int ret;
2396
2397 pthread_mutex_lock(&stream->chan->metadata_cache->lock);
2398 ret = metadata_stream_check_version(stream);
2399 if (ret < 0) {
2400 goto end;
2401 }
2402 if (stream->chan->metadata_cache->max_offset
2403 == stream->ust_metadata_pushed) {
2404 ret = 0;
2405 goto end;
2406 }
2407
2408 write_len = ustctl_write_one_packet_to_channel(stream->chan->uchan,
2409 &stream->chan->metadata_cache->data[stream->ust_metadata_pushed],
2410 stream->chan->metadata_cache->max_offset
2411 - stream->ust_metadata_pushed);
2412 assert(write_len != 0);
2413 if (write_len < 0) {
2414 ERR("Writing one metadata packet");
2415 ret = -1;
2416 goto end;
2417 }
2418 stream->ust_metadata_pushed += write_len;
2419
2420 assert(stream->chan->metadata_cache->max_offset >=
2421 stream->ust_metadata_pushed);
2422 ret = write_len;
2423
2424 end:
2425 pthread_mutex_unlock(&stream->chan->metadata_cache->lock);
2426 return ret;
2427 }
2428
2429
2430 /*
2431 * Sync metadata meaning request them to the session daemon and snapshot to the
2432 * metadata thread can consumer them.
2433 *
2434 * Metadata stream lock is held here, but we need to release it when
2435 * interacting with sessiond, else we cause a deadlock with live
2436 * awaiting on metadata to be pushed out.
2437 *
2438 * Return 0 if new metadatda is available, EAGAIN if the metadata stream
2439 * is empty or a negative value on error.
2440 */
2441 int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data *ctx,
2442 struct lttng_consumer_stream *metadata)
2443 {
2444 int ret;
2445 int retry = 0;
2446
2447 assert(ctx);
2448 assert(metadata);
2449
2450 pthread_mutex_unlock(&metadata->lock);
2451 /*
2452 * Request metadata from the sessiond, but don't wait for the flush
2453 * because we locked the metadata thread.
2454 */
2455 ret = lttng_ustconsumer_request_metadata(ctx, metadata->chan, 0, 0);
2456 pthread_mutex_lock(&metadata->lock);
2457 if (ret < 0) {
2458 goto end;
2459 }
2460
2461 ret = commit_one_metadata_packet(metadata);
2462 if (ret <= 0) {
2463 goto end;
2464 } else if (ret > 0) {
2465 retry = 1;
2466 }
2467
2468 ustctl_flush_buffer(metadata->ustream, 1);
2469 ret = ustctl_snapshot(metadata->ustream);
2470 if (ret < 0) {
2471 if (errno != EAGAIN) {
2472 ERR("Sync metadata, taking UST snapshot");
2473 goto end;
2474 }
2475 DBG("No new metadata when syncing them.");
2476 /* No new metadata, exit. */
2477 ret = ENODATA;
2478 goto end;
2479 }
2480
2481 /*
2482 * After this flush, we still need to extract metadata.
2483 */
2484 if (retry) {
2485 ret = EAGAIN;
2486 }
2487
2488 end:
2489 return ret;
2490 }
2491
2492 /*
2493 * Return 0 on success else a negative value.
2494 */
2495 static int notify_if_more_data(struct lttng_consumer_stream *stream,
2496 struct lttng_consumer_local_data *ctx)
2497 {
2498 int ret;
2499 struct ustctl_consumer_stream *ustream;
2500
2501 assert(stream);
2502 assert(ctx);
2503
2504 ustream = stream->ustream;
2505
2506 /*
2507 * First, we are going to check if there is a new subbuffer available
2508 * before reading the stream wait_fd.
2509 */
2510 /* Get the next subbuffer */
2511 ret = ustctl_get_next_subbuf(ustream);
2512 if (ret) {
2513 /* No more data found, flag the stream. */
2514 stream->has_data = 0;
2515 ret = 0;
2516 goto end;
2517 }
2518
2519 ret = ustctl_put_subbuf(ustream);
2520 assert(!ret);
2521
2522 /* This stream still has data. Flag it and wake up the data thread. */
2523 stream->has_data = 1;
2524
2525 if (stream->monitor && !stream->hangup_flush_done && !ctx->has_wakeup) {
2526 ssize_t writelen;
2527
2528 writelen = lttng_pipe_write(ctx->consumer_wakeup_pipe, "!", 1);
2529 if (writelen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
2530 ret = writelen;
2531 goto end;
2532 }
2533
2534 /* The wake up pipe has been notified. */
2535 ctx->has_wakeup = 1;
2536 }
2537 ret = 0;
2538
2539 end:
2540 return ret;
2541 }
2542
2543 static
2544 int update_stream_stats(struct lttng_consumer_stream *stream)
2545 {
2546 int ret;
2547 uint64_t seq, discarded;
2548
2549 ret = ustctl_get_sequence_number(stream->ustream, &seq);
2550 if (ret < 0) {
2551 PERROR("ustctl_get_sequence_number");
2552 goto end;
2553 }
2554 /*
2555 * Start the sequence when we extract the first packet in case we don't
2556 * start at 0 (for example if a consumer is not connected to the
2557 * session immediately after the beginning).
2558 */
2559 if (stream->last_sequence_number == -1ULL) {
2560 stream->last_sequence_number = seq;
2561 } else if (seq > stream->last_sequence_number) {
2562 stream->chan->lost_packets += seq -
2563 stream->last_sequence_number - 1;
2564 } else {
2565 /* seq <= last_sequence_number */
2566 ERR("Sequence number inconsistent : prev = %" PRIu64
2567 ", current = %" PRIu64,
2568 stream->last_sequence_number, seq);
2569 ret = -1;
2570 goto end;
2571 }
2572 stream->last_sequence_number = seq;
2573
2574 ret = ustctl_get_events_discarded(stream->ustream, &discarded);
2575 if (ret < 0) {
2576 PERROR("kernctl_get_events_discarded");
2577 goto end;
2578 }
2579 if (discarded < stream->last_discarded_events) {
2580 /*
2581 * Overflow has occurred. We assume only one wrap-around
2582 * has occurred.
2583 */
2584 stream->chan->discarded_events +=
2585 (1ULL << (CAA_BITS_PER_LONG - 1)) -
2586 stream->last_discarded_events + discarded;
2587 } else {
2588 stream->chan->discarded_events += discarded -
2589 stream->last_discarded_events;
2590 }
2591 stream->last_discarded_events = discarded;
2592 ret = 0;
2593
2594 end:
2595 return ret;
2596 }
2597
2598 /*
2599 * Read subbuffer from the given stream.
2600 *
2601 * Stream lock MUST be acquired.
2602 *
2603 * Return 0 on success else a negative value.
2604 */
2605 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
2606 struct lttng_consumer_local_data *ctx)
2607 {
2608 unsigned long len, subbuf_size, padding;
2609 int err, write_index = 1, rotation_ret, rotate_ready;
2610 long ret = 0;
2611 struct ustctl_consumer_stream *ustream;
2612 struct ctf_packet_index index;
2613
2614 assert(stream);
2615 assert(stream->ustream);
2616 assert(ctx);
2617
2618 DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream->wait_fd,
2619 stream->name);
2620
2621 /* Ease our life for what's next. */
2622 ustream = stream->ustream;
2623
2624 /*
2625 * We can consume the 1 byte written into the wait_fd by UST. Don't trigger
2626 * error if we cannot read this one byte (read returns 0), or if the error
2627 * is EAGAIN or EWOULDBLOCK.
2628 *
2629 * This is only done when the stream is monitored by a thread, before the
2630 * flush is done after a hangup and if the stream is not flagged with data
2631 * since there might be nothing to consume in the wait fd but still have
2632 * data available flagged by the consumer wake up pipe.
2633 */
2634 if (stream->monitor && !stream->hangup_flush_done && !stream->has_data) {
2635 char dummy;
2636 ssize_t readlen;
2637
2638 readlen = lttng_read(stream->wait_fd, &dummy, 1);
2639 if (readlen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) {
2640 ret = readlen;
2641 goto error;
2642 }
2643 }
2644
2645 retry:
2646 /* Get the next subbuffer */
2647 err = ustctl_get_next_subbuf(ustream);
2648 if (err != 0) {
2649 /*
2650 * Populate metadata info if the existing info has
2651 * already been read.
2652 */
2653 if (stream->metadata_flag) {
2654 ret = commit_one_metadata_packet(stream);
2655 if (ret <= 0) {
2656 goto error;
2657 }
2658 ustctl_flush_buffer(stream->ustream, 1);
2659 goto retry;
2660 }
2661
2662 ret = err; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
2663 /*
2664 * This is a debug message even for single-threaded consumer,
2665 * because poll() have more relaxed criterions than get subbuf,
2666 * so get_subbuf may fail for short race windows where poll()
2667 * would issue wakeups.
2668 */
2669 DBG("Reserving sub buffer failed (everything is normal, "
2670 "it is due to concurrency) [ret: %d]", err);
2671 goto error;
2672 }
2673 assert(stream->chan->output == CONSUMER_CHANNEL_MMAP);
2674
2675 if (!stream->metadata_flag) {
2676 index.offset = htobe64(stream->out_fd_offset);
2677 ret = get_index_values(&index, ustream);
2678 if (ret < 0) {
2679 err = ustctl_put_subbuf(ustream);
2680 assert(err == 0);
2681 goto error;
2682 }
2683
2684 /* Update the stream's sequence and discarded events count. */
2685 ret = update_stream_stats(stream);
2686 if (ret < 0) {
2687 PERROR("kernctl_get_events_discarded");
2688 err = ustctl_put_subbuf(ustream);
2689 assert(err == 0);
2690 goto error;
2691 }
2692 } else {
2693 write_index = 0;
2694 }
2695
2696 /* Get the full padded subbuffer size */
2697 err = ustctl_get_padded_subbuf_size(ustream, &len);
2698 assert(err == 0);
2699
2700 /* Get subbuffer data size (without padding) */
2701 err = ustctl_get_subbuf_size(ustream, &subbuf_size);
2702 assert(err == 0);
2703
2704 /* Make sure we don't get a subbuffer size bigger than the padded */
2705 assert(len >= subbuf_size);
2706
2707 padding = len - subbuf_size;
2708
2709 rotate_ready = lttng_consumer_stream_is_rotate_ready(stream, len);
2710 if (rotate_ready < 0) {
2711 ERR("Failed to check if stream is ready for rotation");
2712 ret = -1;
2713 err = ustctl_put_subbuf(ustream);
2714 assert(err == 0);
2715 goto error;
2716 }
2717 stream->rotate_ready = rotate_ready;
2718
2719 /* write the subbuffer to the tracefile */
2720 ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, subbuf_size, padding, &index);
2721 /*
2722 * The mmap operation should write subbuf_size amount of data when network
2723 * streaming or the full padding (len) size when we are _not_ streaming.
2724 */
2725 if ((ret != subbuf_size && stream->net_seq_idx != (uint64_t) -1ULL) ||
2726 (ret != len && stream->net_seq_idx == (uint64_t) -1ULL)) {
2727 /*
2728 * Display the error but continue processing to try to release the
2729 * subbuffer. This is a DBG statement since any unexpected kill or
2730 * signal, the application gets unregistered, relayd gets closed or
2731 * anything that affects the buffer lifetime will trigger this error.
2732 * So, for the sake of the user, don't print this error since it can
2733 * happen and it is OK with the code flow.
2734 */
2735 DBG("Error writing to tracefile "
2736 "(ret: %ld != len: %lu != subbuf_size: %lu)",
2737 ret, len, subbuf_size);
2738 write_index = 0;
2739 }
2740 err = ustctl_put_next_subbuf(ustream);
2741 assert(err == 0);
2742
2743 /*
2744 * This will consumer the byte on the wait_fd if and only if there is not
2745 * next subbuffer to be acquired.
2746 */
2747 if (!stream->metadata_flag) {
2748 ret = notify_if_more_data(stream, ctx);
2749 if (ret < 0) {
2750 goto error;
2751 }
2752 }
2753
2754 /* Write index if needed. */
2755 if (!write_index) {
2756 goto rotate;
2757 }
2758
2759 if (stream->chan->live_timer_interval && !stream->metadata_flag) {
2760 /*
2761 * In live, block until all the metadata is sent.
2762 */
2763 pthread_mutex_lock(&stream->metadata_timer_lock);
2764 assert(!stream->missed_metadata_flush);
2765 stream->waiting_on_metadata = true;
2766 pthread_mutex_unlock(&stream->metadata_timer_lock);
2767
2768 err = consumer_stream_sync_metadata(ctx, stream->session_id);
2769
2770 pthread_mutex_lock(&stream->metadata_timer_lock);
2771 stream->waiting_on_metadata = false;
2772 if (stream->missed_metadata_flush) {
2773 stream->missed_metadata_flush = false;
2774 pthread_mutex_unlock(&stream->metadata_timer_lock);
2775 (void) consumer_flush_ust_index(stream);
2776 } else {
2777 pthread_mutex_unlock(&stream->metadata_timer_lock);
2778 }
2779
2780 if (err < 0) {
2781 goto error;
2782 }
2783 }
2784
2785 assert(!stream->metadata_flag);
2786 err = consumer_stream_write_index(stream, &index);
2787 if (err < 0) {
2788 goto error;
2789 }
2790
2791 rotate:
2792 if (stream->rotate_ready) {
2793 rotation_ret = lttng_consumer_rotate_stream(ctx, stream);
2794 if (rotation_ret < 0) {
2795 ret = -1;
2796 ERR("Stream rotation error");
2797 goto error;
2798 }
2799 }
2800 error:
2801 return ret;
2802 }
2803
2804 /*
2805 * Called when a stream is created.
2806 *
2807 * Return 0 on success or else a negative value.
2808 */
2809 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
2810 {
2811 int ret;
2812
2813 assert(stream);
2814
2815 /* Don't create anything if this is set for streaming. */
2816 if (stream->net_seq_idx == (uint64_t) -1ULL && stream->chan->monitor) {
2817 ret = utils_create_stream_file(stream->chan->pathname, stream->name,
2818 stream->chan->tracefile_size, stream->tracefile_count_current,
2819 stream->uid, stream->gid, NULL);
2820 if (ret < 0) {
2821 goto error;
2822 }
2823 stream->out_fd = ret;
2824 stream->tracefile_size_current = 0;
2825
2826 if (!stream->metadata_flag) {
2827 struct lttng_index_file *index_file;
2828
2829 index_file = lttng_index_file_create(stream->chan->pathname,
2830 stream->name, stream->uid, stream->gid,
2831 stream->chan->tracefile_size,
2832 stream->tracefile_count_current,
2833 CTF_INDEX_MAJOR, CTF_INDEX_MINOR);
2834 if (!index_file) {
2835 goto error;
2836 }
2837 assert(!stream->index_file);
2838 stream->index_file = index_file;
2839 }
2840 }
2841 ret = 0;
2842
2843 error:
2844 return ret;
2845 }
2846
2847 /*
2848 * Check if data is still being extracted from the buffers for a specific
2849 * stream. Consumer data lock MUST be acquired before calling this function
2850 * and the stream lock.
2851 *
2852 * Return 1 if the traced data are still getting read else 0 meaning that the
2853 * data is available for trace viewer reading.
2854 */
2855 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
2856 {
2857 int ret;
2858
2859 assert(stream);
2860 assert(stream->ustream);
2861
2862 DBG("UST consumer checking data pending");
2863
2864 if (stream->endpoint_status != CONSUMER_ENDPOINT_ACTIVE) {
2865 ret = 0;
2866 goto end;
2867 }
2868
2869 if (stream->chan->type == CONSUMER_CHANNEL_TYPE_METADATA) {
2870 uint64_t contiguous, pushed;
2871
2872 /* Ease our life a bit. */
2873 contiguous = stream->chan->metadata_cache->max_offset;
2874 pushed = stream->ust_metadata_pushed;
2875
2876 /*
2877 * We can simply check whether all contiguously available data
2878 * has been pushed to the ring buffer, since the push operation
2879 * is performed within get_next_subbuf(), and because both
2880 * get_next_subbuf() and put_next_subbuf() are issued atomically
2881 * thanks to the stream lock within
2882 * lttng_ustconsumer_read_subbuffer(). This basically means that
2883 * whetnever ust_metadata_pushed is incremented, the associated
2884 * metadata has been consumed from the metadata stream.
2885 */
2886 DBG("UST consumer metadata pending check: contiguous %" PRIu64 " vs pushed %" PRIu64,
2887 contiguous, pushed);
2888 assert(((int64_t) (contiguous - pushed)) >= 0);
2889 if ((contiguous != pushed) ||
2890 (((int64_t) contiguous - pushed) > 0 || contiguous == 0)) {
2891 ret = 1; /* Data is pending */
2892 goto end;
2893 }
2894 } else {
2895 ret = ustctl_get_next_subbuf(stream->ustream);
2896 if (ret == 0) {
2897 /*
2898 * There is still data so let's put back this
2899 * subbuffer.
2900 */
2901 ret = ustctl_put_subbuf(stream->ustream);
2902 assert(ret == 0);
2903 ret = 1; /* Data is pending */
2904 goto end;
2905 }
2906 }
2907
2908 /* Data is NOT pending so ready to be read. */
2909 ret = 0;
2910
2911 end:
2912 return ret;
2913 }
2914
2915 /*
2916 * Stop a given metadata channel timer if enabled and close the wait fd which
2917 * is the poll pipe of the metadata stream.
2918 *
2919 * This MUST be called with the metadata channel acquired.
2920 */
2921 void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel *metadata)
2922 {
2923 int ret;
2924
2925 assert(metadata);
2926 assert(metadata->type == CONSUMER_CHANNEL_TYPE_METADATA);
2927
2928 DBG("Closing metadata channel key %" PRIu64, metadata->key);
2929
2930 if (metadata->switch_timer_enabled == 1) {
2931 consumer_timer_switch_stop(metadata);
2932 }
2933
2934 if (!metadata->metadata_stream) {
2935 goto end;
2936 }
2937
2938 /*
2939 * Closing write side so the thread monitoring the stream wakes up if any
2940 * and clean the metadata stream.
2941 */
2942 if (metadata->metadata_stream->ust_metadata_poll_pipe[1] >= 0) {
2943 ret = close(metadata->metadata_stream->ust_metadata_poll_pipe[1]);
2944 if (ret < 0) {
2945 PERROR("closing metadata pipe write side");
2946 }
2947 metadata->metadata_stream->ust_metadata_poll_pipe[1] = -1;
2948 }
2949
2950 end:
2951 return;
2952 }
2953
2954 /*
2955 * Close every metadata stream wait fd of the metadata hash table. This
2956 * function MUST be used very carefully so not to run into a race between the
2957 * metadata thread handling streams and this function closing their wait fd.
2958 *
2959 * For UST, this is used when the session daemon hangs up. Its the metadata
2960 * producer so calling this is safe because we are assured that no state change
2961 * can occur in the metadata thread for the streams in the hash table.
2962 */
2963 void lttng_ustconsumer_close_all_metadata(struct lttng_ht *metadata_ht)
2964 {
2965 struct lttng_ht_iter iter;
2966 struct lttng_consumer_stream *stream;
2967
2968 assert(metadata_ht);
2969 assert(metadata_ht->ht);
2970
2971 DBG("UST consumer closing all metadata streams");
2972
2973 rcu_read_lock();
2974 cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream,
2975 node.node) {
2976
2977 health_code_update();
2978
2979 pthread_mutex_lock(&stream->chan->lock);
2980 lttng_ustconsumer_close_metadata(stream->chan);
2981 pthread_mutex_unlock(&stream->chan->lock);
2982
2983 }
2984 rcu_read_unlock();
2985 }
2986
2987 void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream)
2988 {
2989 int ret;
2990
2991 ret = ustctl_stream_close_wakeup_fd(stream->ustream);
2992 if (ret < 0) {
2993 ERR("Unable to close wakeup fd");
2994 }
2995 }
2996
2997 /*
2998 * Please refer to consumer-timer.c before adding any lock within this
2999 * function or any of its callees. Timers have a very strict locking
3000 * semantic with respect to teardown. Failure to respect this semantic
3001 * introduces deadlocks.
3002 *
3003 * DON'T hold the metadata lock when calling this function, else this
3004 * can cause deadlock involving consumer awaiting for metadata to be
3005 * pushed out due to concurrent interaction with the session daemon.
3006 */
3007 int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
3008 struct lttng_consumer_channel *channel, int timer, int wait)
3009 {
3010 struct lttcomm_metadata_request_msg request;
3011 struct lttcomm_consumer_msg msg;
3012 enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS;
3013 uint64_t len, key, offset, version;
3014 int ret;
3015
3016 assert(channel);
3017 assert(channel->metadata_cache);
3018
3019 memset(&request, 0, sizeof(request));
3020
3021 /* send the metadata request to sessiond */
3022 switch (consumer_data.type) {
3023 case LTTNG_CONSUMER64_UST:
3024 request.bits_per_long = 64;
3025 break;
3026 case LTTNG_CONSUMER32_UST:
3027 request.bits_per_long = 32;
3028 break;
3029 default:
3030 request.bits_per_long = 0;
3031 break;
3032 }
3033
3034 request.session_id = channel->session_id;
3035 request.session_id_per_pid = channel->session_id_per_pid;
3036 /*
3037 * Request the application UID here so the metadata of that application can
3038 * be sent back. The channel UID corresponds to the user UID of the session
3039 * used for the rights on the stream file(s).
3040 */
3041 request.uid = channel->ust_app_uid;
3042 request.key = channel->key;
3043
3044 DBG("Sending metadata request to sessiond, session id %" PRIu64
3045 ", per-pid %" PRIu64 ", app UID %u and channek key %" PRIu64,
3046 request.session_id, request.session_id_per_pid, request.uid,
3047 request.key);
3048
3049 pthread_mutex_lock(&ctx->metadata_socket_lock);
3050
3051 health_code_update();
3052
3053 ret = lttcomm_send_unix_sock(ctx->consumer_metadata_socket, &request,
3054 sizeof(request));
3055 if (ret < 0) {
3056 ERR("Asking metadata to sessiond");
3057 goto end;
3058 }
3059
3060 health_code_update();
3061
3062 /* Receive the metadata from sessiond */
3063 ret = lttcomm_recv_unix_sock(ctx->consumer_metadata_socket, &msg,
3064 sizeof(msg));
3065 if (ret != sizeof(msg)) {
3066 DBG("Consumer received unexpected message size %d (expects %zu)",
3067 ret, sizeof(msg));
3068 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
3069 /*
3070 * The ret value might 0 meaning an orderly shutdown but this is ok
3071 * since the caller handles this.
3072 */
3073 goto end;
3074 }
3075
3076 health_code_update();
3077
3078 if (msg.cmd_type == LTTNG_ERR_UND) {
3079 /* No registry found */
3080 (void) consumer_send_status_msg(ctx->consumer_metadata_socket,
3081 ret_code);
3082 ret = 0;
3083 goto end;
3084 } else if (msg.cmd_type != LTTNG_CONSUMER_PUSH_METADATA) {
3085 ERR("Unexpected cmd_type received %d", msg.cmd_type);
3086 ret = -1;
3087 goto end;
3088 }
3089
3090 len = msg.u.push_metadata.len;
3091 key = msg.u.push_metadata.key;
3092 offset = msg.u.push_metadata.target_offset;
3093 version = msg.u.push_metadata.version;
3094
3095 assert(key == channel->key);
3096 if (len == 0) {
3097 DBG("No new metadata to receive for key %" PRIu64, key);
3098 }
3099
3100 health_code_update();
3101
3102 /* Tell session daemon we are ready to receive the metadata. */
3103 ret = consumer_send_status_msg(ctx->consumer_metadata_socket,
3104 LTTCOMM_CONSUMERD_SUCCESS);
3105 if (ret < 0 || len == 0) {
3106 /*
3107 * Somehow, the session daemon is not responding anymore or there is
3108 * nothing to receive.
3109 */
3110 goto end;
3111 }
3112
3113 health_code_update();
3114
3115 ret = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket,
3116 key, offset, len, version, channel, timer, wait);
3117 if (ret >= 0) {
3118 /*
3119 * Only send the status msg if the sessiond is alive meaning a positive
3120 * ret code.
3121 */
3122 (void) consumer_send_status_msg(ctx->consumer_metadata_socket, ret);
3123 }
3124 ret = 0;
3125
3126 end:
3127 health_code_update();
3128
3129 pthread_mutex_unlock(&ctx->metadata_socket_lock);
3130 return ret;
3131 }
3132
3133 /*
3134 * Return the ustctl call for the get stream id.
3135 */
3136 int lttng_ustconsumer_get_stream_id(struct lttng_consumer_stream *stream,
3137 uint64_t *stream_id)
3138 {
3139 assert(stream);
3140 assert(stream_id);
3141
3142 return ustctl_get_stream_id(stream->ustream, stream_id);
3143 }
This page took 0.097902 seconds and 5 git commands to generate.