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