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