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