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