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