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