Fix: consumer handling of metadata for relayd
[lttng-tools.git] / src / common / kernel-consumer / kernel-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>
3bd1e081
MD
21#include <poll.h>
22#include <pthread.h>
23#include <stdlib.h>
24#include <string.h>
25#include <sys/mman.h>
26#include <sys/socket.h>
27#include <sys/types.h>
77c7c900 28#include <inttypes.h>
3bd1e081 29#include <unistd.h>
dbb5dfe6 30#include <sys/stat.h>
3bd1e081 31
990570ed 32#include <common/common.h>
10a8a223 33#include <common/kernel-ctl/kernel-ctl.h>
10a8a223 34#include <common/sessiond-comm/sessiond-comm.h>
00e2e675 35#include <common/sessiond-comm/relayd.h>
dbb5dfe6 36#include <common/compat/fcntl.h>
acdb9057 37#include <common/pipe.h>
00e2e675 38#include <common/relayd/relayd.h>
fe4477ee 39#include <common/utils.h>
07b86b52 40#include <common/consumer-stream.h>
0857097f 41
10a8a223 42#include "kernel-consumer.h"
3bd1e081
MD
43
44extern struct lttng_consumer_global_data consumer_data;
45extern int consumer_poll_timeout;
46extern volatile int consumer_quit;
47
3bd1e081
MD
48/*
49 * Take a snapshot for a specific fd
50 *
51 * Returns 0 on success, < 0 on error
52 */
ffe60014 53int lttng_kconsumer_take_snapshot(struct lttng_consumer_stream *stream)
3bd1e081
MD
54{
55 int ret = 0;
56 int infd = stream->wait_fd;
57
58 ret = kernctl_snapshot(infd);
59 if (ret != 0) {
87dc6a9c 60 errno = -ret;
3bd1e081
MD
61 perror("Getting sub-buffer snapshot.");
62 }
63
64 return ret;
65}
66
67/*
68 * Get the produced position
69 *
70 * Returns 0 on success, < 0 on error
71 */
ffe60014 72int lttng_kconsumer_get_produced_snapshot(struct lttng_consumer_stream *stream,
3bd1e081
MD
73 unsigned long *pos)
74{
75 int ret;
76 int infd = stream->wait_fd;
77
78 ret = kernctl_snapshot_get_produced(infd, pos);
79 if (ret != 0) {
87dc6a9c 80 errno = -ret;
3bd1e081
MD
81 perror("kernctl_snapshot_get_produced");
82 }
83
84 return ret;
85}
86
07b86b52
JD
87/*
88 * Get the consumerd position
89 *
90 * Returns 0 on success, < 0 on error
91 */
92int lttng_kconsumer_get_consumed_snapshot(struct lttng_consumer_stream *stream,
93 unsigned long *pos)
94{
95 int ret;
96 int infd = stream->wait_fd;
97
98 ret = kernctl_snapshot_get_consumed(infd, pos);
99 if (ret != 0) {
100 errno = -ret;
101 perror("kernctl_snapshot_get_consumed");
102 }
103
104 return ret;
105}
106
107/*
108 * Find a relayd and send the stream
109 *
110 * Returns 0 on success, < 0 on error
111 */
112static
113int send_relayd_stream(struct lttng_consumer_stream *stream, char *path)
114{
115 struct consumer_relayd_sock_pair *relayd;
116 int ret = 0;
117 char *stream_path;
118
119 if (path != NULL) {
120 stream_path = path;
121 } else {
122 stream_path = stream->chan->pathname;
123 }
124 /* The stream is not metadata. Get relayd reference if exists. */
125 rcu_read_lock();
126 relayd = consumer_find_relayd(stream->net_seq_idx);
127 if (relayd != NULL) {
128 /* Add stream on the relayd */
129 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
130 ret = relayd_add_stream(&relayd->control_sock,
131 stream->name, stream_path,
132 &stream->relayd_stream_id,
133 stream->chan->tracefile_size,
134 stream->chan->tracefile_count);
135 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
136 if (ret < 0) {
137 goto end;
138 }
139 uatomic_inc(&relayd->refcount);
140 } else if (stream->net_seq_idx != (uint64_t) -1ULL) {
141 ERR("Network sequence index %" PRIu64 " unknown. Not adding stream.",
142 stream->net_seq_idx);
143 ret = -1;
144 goto end;
145 }
146
147end:
148 rcu_read_unlock();
149 return ret;
150}
151
152/*
153 * Find a relayd and close the stream
154 */
155static
156void close_relayd_stream(struct lttng_consumer_stream *stream)
157{
158 struct consumer_relayd_sock_pair *relayd;
159
160 /* The stream is not metadata. Get relayd reference if exists. */
161 rcu_read_lock();
162 relayd = consumer_find_relayd(stream->net_seq_idx);
163 if (relayd != NULL) {
164 consumer_stream_relayd_close(stream, relayd);
165 }
166 rcu_read_unlock();
167}
168
169/*
170 * Take a snapshot of all the stream of a channel
171 *
172 * Returns 0 on success, < 0 on error
173 */
174int lttng_kconsumer_snapshot_channel(uint64_t key, char *path,
175 uint64_t relayd_id, struct lttng_consumer_local_data *ctx)
176{
177 int ret;
178 unsigned long consumed_pos, produced_pos;
179 struct lttng_consumer_channel *channel;
180 struct lttng_consumer_stream *stream;
181
182 DBG("Kernel consumer snapshot channel %lu", key);
183
184 rcu_read_lock();
185
186 channel = consumer_find_channel(key);
187 if (!channel) {
188 ERR("No channel found for key %lu", key);
189 ret = -1;
190 goto end;
191 }
192
193 /* Splice is not supported yet for channel snapshot. */
194 if (channel->output != CONSUMER_CHANNEL_MMAP) {
195 ERR("Unsupported output %d", channel->output);
196 ret = -1;
197 goto end;
198 }
199
200 cds_list_for_each_entry(stream, &channel->stream_no_monitor_list.head,
201 no_monitor_node) {
202 /*
203 * Lock stream because we are about to change its state.
204 */
205 pthread_mutex_lock(&stream->lock);
206
207 stream->net_seq_idx = relayd_id;
208 channel->relayd_id = relayd_id;
209 if (relayd_id != (uint64_t) -1ULL) {
210 ret = send_relayd_stream(stream, path);
211 if (ret < 0) {
212 ERR("sending stream to relayd");
213 goto end_unlock;
214 }
215 DBG("Stream %s sent to the relayd", stream->name);
216 } else {
217 ret = utils_create_stream_file(path, stream->name,
218 stream->chan->tracefile_size, stream->tracefile_count_current,
219 stream->uid, stream->gid);
220 if (ret < 0) {
221 ERR("utils_create_stream_file");
222 goto end_unlock;
223 }
224
225 stream->out_fd = ret;
226 stream->tracefile_size_current = 0;
227
228 DBG("Kernel consumer snapshot stream %s/%s (%lu)", path,
229 stream->name, stream->key);
230 }
231
232 ret = kernctl_buffer_flush(stream->wait_fd);
233 if (ret < 0) {
234 ERR("Failed to flush kernel metadata stream");
235 goto end_unlock;
236 }
237
238 ret = lttng_kconsumer_take_snapshot(stream);
239 if (ret < 0) {
240 ERR("Taking kernel snapshot");
241 goto end_unlock;
242 }
243
244 ret = lttng_kconsumer_get_produced_snapshot(stream, &produced_pos);
245 if (ret < 0) {
246 ERR("Produced kernel snapshot position");
247 goto end_unlock;
248 }
249
250 ret = lttng_kconsumer_get_consumed_snapshot(stream, &consumed_pos);
251 if (ret < 0) {
252 ERR("Consumerd kernel snapshot position");
253 goto end_unlock;
254 }
255
256 if (stream->max_sb_size == 0) {
257 ret = kernctl_get_max_subbuf_size(stream->wait_fd,
258 &stream->max_sb_size);
259 if (ret < 0) {
260 ERR("Getting kernel max_sb_size");
261 goto end_unlock;
262 }
263 }
264
265 while (consumed_pos < produced_pos) {
266 ssize_t read_len;
267 unsigned long len, padded_len;
268
269 DBG("Kernel consumer taking snapshot at pos %lu", consumed_pos);
270
271 ret = kernctl_get_subbuf(stream->wait_fd, &consumed_pos);
272 if (ret < 0) {
273 if (errno != EAGAIN) {
274 PERROR("kernctl_get_subbuf snapshot");
275 goto end_unlock;
276 }
277 DBG("Kernel consumer get subbuf failed. Skipping it.");
278 consumed_pos += stream->max_sb_size;
279 continue;
280 }
281
282 ret = kernctl_get_subbuf_size(stream->wait_fd, &len);
283 if (ret < 0) {
284 ERR("Snapshot kernctl_get_subbuf_size");
285 goto end_unlock;
286 }
287
288 ret = kernctl_get_padded_subbuf_size(stream->wait_fd, &padded_len);
289 if (ret < 0) {
290 ERR("Snapshot kernctl_get_padded_subbuf_size");
291 goto end_unlock;
292 }
293
294 read_len = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, len,
295 padded_len - len);
296 /*
297 * We write the padded len in local tracefiles but the
298 * data len when using a relay.
299 * Display the error but continue processing to try to
300 * release the subbuffer.
301 */
302 if (relayd_id != (uint64_t) -1ULL) {
303 if (read_len != len) {
304 ERR("Error sending to the relay (ret: %zd != len: %lu)",
305 read_len, len);
306 }
307 } else {
308 if (read_len != padded_len) {
309 ERR("Error writing to tracefile (ret: %zd != len: %lu)",
310 read_len, padded_len);
311 }
312 }
313
314 ret = kernctl_put_subbuf(stream->wait_fd);
315 if (ret < 0) {
316 ERR("Snapshot kernctl_put_subbuf");
317 goto end_unlock;
318 }
319 consumed_pos += stream->max_sb_size;
320 }
321
322 if (relayd_id == (uint64_t) -1ULL) {
323 ret = close(stream->out_fd);
324 if (ret < 0) {
325 PERROR("Kernel consumer snapshot close out_fd");
326 goto end_unlock;
327 }
328 stream->out_fd = -1;
329 } else {
330 close_relayd_stream(stream);
331 stream->net_seq_idx = (uint64_t) -1ULL;
332 }
333 pthread_mutex_unlock(&stream->lock);
334 }
335
336 /* All good! */
337 ret = 0;
338 goto end;
339
340end_unlock:
341 pthread_mutex_unlock(&stream->lock);
342end:
343 rcu_read_unlock();
344 return ret;
345}
346
347/*
348 * Read the whole metadata available for a snapshot.
349 *
350 * Returns 0 on success, < 0 on error
351 */
352int lttng_kconsumer_snapshot_metadata(uint64_t key, char *path,
e2039c7a 353 uint64_t relayd_id, struct lttng_consumer_local_data *ctx)
07b86b52
JD
354{
355 struct lttng_consumer_channel *metadata_channel;
356 struct lttng_consumer_stream *metadata_stream;
357 int ret;
358
359 DBG("Kernel consumer snapshot metadata with key %" PRIu64 " at path %s",
360 key, path);
361
362 rcu_read_lock();
363
364 metadata_channel = consumer_find_channel(key);
365 if (!metadata_channel) {
366 ERR("Snapshot kernel metadata channel not found for key %lu", key);
367 ret = -1;
368 goto end;
369 }
370
371 metadata_stream = metadata_channel->metadata_stream;
372 assert(metadata_stream);
373
e2039c7a
JD
374 if (relayd_id != (uint64_t) -1ULL) {
375 ret = send_relayd_stream(metadata_stream, path);
376 if (ret < 0) {
377 ERR("sending stream to relayd");
378 }
379 DBG("Stream %s sent to the relayd", metadata_stream->name);
380 } else {
381 ret = utils_create_stream_file(path, metadata_stream->name,
382 metadata_stream->chan->tracefile_size,
383 metadata_stream->tracefile_count_current,
384 metadata_stream->uid, metadata_stream->gid);
385 if (ret < 0) {
386 goto end;
387 }
388 metadata_stream->out_fd = ret;
07b86b52 389 }
07b86b52
JD
390
391 ret = 0;
392 while (ret >= 0) {
393 ret = lttng_kconsumer_read_subbuffer(metadata_stream, ctx);
394 if (ret < 0) {
395 if (ret != -EPERM) {
396 ERR("Kernel snapshot reading subbuffer");
397 goto end;
398 }
399 /* "ret" is negative at this point so we will exit the loop. */
400 continue;
401 }
402 }
403
e2039c7a
JD
404 if (relayd_id == (uint64_t) -1ULL) {
405 ret = close(metadata_stream->out_fd);
406 if (ret < 0) {
407 PERROR("Kernel consumer snapshot close out_fd");
408 goto end;
409 }
410 metadata_stream->out_fd = -1;
411 } else {
412 close_relayd_stream(metadata_stream);
413 metadata_stream->net_seq_idx = (uint64_t) -1ULL;
414 }
415
07b86b52
JD
416 ret = 0;
417end:
418 rcu_read_unlock();
419 return ret;
420}
421
1803a064
MD
422/*
423 * Receive command from session daemon and process it.
424 *
425 * Return 1 on success else a negative value or 0.
426 */
3bd1e081
MD
427int lttng_kconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
428 int sock, struct pollfd *consumer_sockpoll)
429{
430 ssize_t ret;
f50f23d9 431 enum lttng_error_code ret_code = LTTNG_OK;
3bd1e081
MD
432 struct lttcomm_consumer_msg msg;
433
434 ret = lttcomm_recv_unix_sock(sock, &msg, sizeof(msg));
435 if (ret != sizeof(msg)) {
f73fabfd 436 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD);
1803a064
MD
437 if (ret > 0) {
438 ret = -1;
439 }
3bd1e081
MD
440 return ret;
441 }
442 if (msg.cmd_type == LTTNG_CONSUMER_STOP) {
f50f23d9
DG
443 /*
444 * Notify the session daemon that the command is completed.
445 *
446 * On transport layer error, the function call will print an error
447 * message so handling the returned code is a bit useless since we
448 * return an error code anyway.
449 */
450 (void) consumer_send_status_msg(sock, ret_code);
3bd1e081
MD
451 return -ENOENT;
452 }
453
b0b335c8
MD
454 /* relayd needs RCU read-side protection */
455 rcu_read_lock();
456
3bd1e081 457 switch (msg.cmd_type) {
00e2e675
DG
458 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET:
459 {
f50f23d9 460 /* Session daemon status message are handled in the following call. */
7735ef9e
DG
461 ret = consumer_add_relayd_socket(msg.u.relayd_sock.net_index,
462 msg.u.relayd_sock.type, ctx, sock, consumer_sockpoll,
46e6455f 463 &msg.u.relayd_sock.sock, msg.u.relayd_sock.session_id);
00e2e675
DG
464 goto end_nosignal;
465 }
3bd1e081
MD
466 case LTTNG_CONSUMER_ADD_CHANNEL:
467 {
468 struct lttng_consumer_channel *new_channel;
e43c41c5 469 int ret_recv;
3bd1e081 470
f50f23d9
DG
471 /* First send a status message before receiving the fds. */
472 ret = consumer_send_status_msg(sock, ret_code);
473 if (ret < 0) {
474 /* Somehow, the session daemon is not responding anymore. */
1803a064 475 goto error_fatal;
f50f23d9 476 }
d88aee68 477 DBG("consumer_add_channel %" PRIu64, msg.u.channel.channel_key);
3bd1e081 478 new_channel = consumer_allocate_channel(msg.u.channel.channel_key,
ffe60014
DG
479 msg.u.channel.session_id, msg.u.channel.pathname,
480 msg.u.channel.name, msg.u.channel.uid, msg.u.channel.gid,
1624d5b7
JD
481 msg.u.channel.relayd_id, msg.u.channel.output,
482 msg.u.channel.tracefile_size,
2bba9e53
DG
483 msg.u.channel.tracefile_count,
484 msg.u.channel.monitor);
3bd1e081 485 if (new_channel == NULL) {
f73fabfd 486 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
3bd1e081
MD
487 goto end_nosignal;
488 }
ffe60014
DG
489 new_channel->nb_init_stream_left = msg.u.channel.nb_init_streams;
490
491 /* Translate and save channel type. */
492 switch (msg.u.channel.type) {
493 case CONSUMER_CHANNEL_TYPE_DATA:
494 case CONSUMER_CHANNEL_TYPE_METADATA:
495 new_channel->type = msg.u.channel.type;
496 break;
497 default:
498 assert(0);
499 goto end_nosignal;
500 };
501
3bd1e081 502 if (ctx->on_recv_channel != NULL) {
e43c41c5
JD
503 ret_recv = ctx->on_recv_channel(new_channel);
504 if (ret_recv == 0) {
505 ret = consumer_add_channel(new_channel, ctx);
506 } else if (ret_recv < 0) {
3bd1e081
MD
507 goto end_nosignal;
508 }
509 } else {
e43c41c5 510 ret = consumer_add_channel(new_channel, ctx);
3bd1e081 511 }
e43c41c5
JD
512
513 /* If we received an error in add_channel, we need to report it. */
821fffb2 514 if (ret < 0) {
1803a064
MD
515 ret = consumer_send_status_msg(sock, ret);
516 if (ret < 0) {
517 goto error_fatal;
518 }
e43c41c5
JD
519 goto end_nosignal;
520 }
521
3bd1e081
MD
522 goto end_nosignal;
523 }
524 case LTTNG_CONSUMER_ADD_STREAM:
525 {
dae10966
DG
526 int fd;
527 struct lttng_pipe *stream_pipe;
00e2e675 528 struct lttng_consumer_stream *new_stream;
ffe60014 529 struct lttng_consumer_channel *channel;
c80048c6 530 int alloc_ret = 0;
3bd1e081 531
ffe60014
DG
532 /*
533 * Get stream's channel reference. Needed when adding the stream to the
534 * global hash table.
535 */
536 channel = consumer_find_channel(msg.u.stream.channel_key);
537 if (!channel) {
538 /*
539 * We could not find the channel. Can happen if cpu hotplug
540 * happens while tearing down.
541 */
d88aee68 542 ERR("Unable to find channel key %" PRIu64, msg.u.stream.channel_key);
ffe60014
DG
543 ret_code = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
544 }
545
f50f23d9
DG
546 /* First send a status message before receiving the fds. */
547 ret = consumer_send_status_msg(sock, ret_code);
1803a064
MD
548 if (ret < 0) {
549 /*
550 * Somehow, the session daemon is not responding
551 * anymore.
552 */
553 goto error_fatal;
554 }
555 if (ret_code != LTTNG_OK) {
ffe60014 556 /*
1803a064 557 * Channel was not found.
ffe60014 558 */
f50f23d9
DG
559 goto end_nosignal;
560 }
561
3bd1e081
MD
562 /* block */
563 if (lttng_consumer_poll_socket(consumer_sockpoll) < 0) {
3f8e211f 564 rcu_read_unlock();
3bd1e081
MD
565 return -EINTR;
566 }
00e2e675
DG
567
568 /* Get stream file descriptor from socket */
f2fc6720
MD
569 ret = lttcomm_recv_fds_unix_sock(sock, &fd, 1);
570 if (ret != sizeof(fd)) {
f73fabfd 571 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_FD);
3f8e211f 572 rcu_read_unlock();
3bd1e081
MD
573 return ret;
574 }
3bd1e081 575
f50f23d9
DG
576 /*
577 * Send status code to session daemon only if the recv works. If the
578 * above recv() failed, the session daemon is notified through the
579 * error socket and the teardown is eventually done.
580 */
581 ret = consumer_send_status_msg(sock, ret_code);
582 if (ret < 0) {
583 /* Somehow, the session daemon is not responding anymore. */
584 goto end_nosignal;
585 }
586
ffe60014
DG
587 new_stream = consumer_allocate_stream(channel->key,
588 fd,
589 LTTNG_CONSUMER_ACTIVE_STREAM,
590 channel->name,
591 channel->uid,
592 channel->gid,
593 channel->relayd_id,
594 channel->session_id,
595 msg.u.stream.cpu,
596 &alloc_ret,
597 channel->type);
3bd1e081 598 if (new_stream == NULL) {
c80048c6
MD
599 switch (alloc_ret) {
600 case -ENOMEM:
601 case -EINVAL:
602 default:
603 lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR);
604 break;
c80048c6 605 }
3f8e211f 606 goto end_nosignal;
3bd1e081 607 }
ffe60014
DG
608 new_stream->chan = channel;
609 new_stream->wait_fd = fd;
07b86b52
JD
610 switch (channel->output) {
611 case CONSUMER_CHANNEL_SPLICE:
612 new_stream->output = LTTNG_EVENT_SPLICE;
613 break;
614 case CONSUMER_CHANNEL_MMAP:
615 new_stream->output = LTTNG_EVENT_MMAP;
616 break;
617 default:
618 ERR("Stream output unknown %d", channel->output);
619 goto end_nosignal;
620 }
00e2e675 621
a0c83db9
DG
622 /*
623 * We've just assigned the channel to the stream so increment the
07b86b52
JD
624 * refcount right now. We don't need to increment the refcount for
625 * streams in no monitor because we handle manually the cleanup of
626 * those. It is very important to make sure there is NO prior
627 * consumer_del_stream() calls or else the refcount will be unbalanced.
a0c83db9 628 */
07b86b52
JD
629 if (channel->monitor) {
630 uatomic_inc(&new_stream->chan->refcount);
631 }
9d9353f9 632
fb3a43a9
DG
633 /*
634 * The buffer flush is done on the session daemon side for the kernel
635 * so no need for the stream "hangup_flush_done" variable to be
636 * tracked. This is important for a kernel stream since we don't rely
637 * on the flush state of the stream to read data. It's not the case for
638 * user space tracing.
639 */
640 new_stream->hangup_flush_done = 0;
641
633d0084
DG
642 if (ctx->on_recv_stream) {
643 ret = ctx->on_recv_stream(new_stream);
644 if (ret < 0) {
e316aad5 645 consumer_del_stream(new_stream, NULL);
633d0084 646 goto end_nosignal;
fb3a43a9 647 }
633d0084 648 }
fb3a43a9 649
07b86b52
JD
650 if (new_stream->metadata_flag) {
651 channel->metadata_stream = new_stream;
652 }
653
2bba9e53
DG
654 /* Do not monitor this stream. */
655 if (!channel->monitor) {
6dc3064a
DG
656 DBG("Kernel consumer add stream %s in no monitor mode with"
657 "relayd id %" PRIu64, new_stream->name,
658 new_stream->relayd_stream_id);
07b86b52
JD
659 cds_list_add(&new_stream->no_monitor_node,
660 &channel->stream_no_monitor_list.head);
6dc3064a
DG
661 break;
662 }
663
e2039c7a
JD
664 ret = send_relayd_stream(new_stream, NULL);
665 if (ret < 0) {
666 consumer_del_stream(new_stream, NULL);
667 goto end_nosignal;
668 }
669
50f8ae69 670 /* Get the right pipe where the stream will be sent. */
633d0084 671 if (new_stream->metadata_flag) {
dae10966 672 stream_pipe = ctx->consumer_metadata_pipe;
3bd1e081 673 } else {
dae10966 674 stream_pipe = ctx->consumer_data_pipe;
50f8ae69
DG
675 }
676
dae10966 677 ret = lttng_pipe_write(stream_pipe, &new_stream, sizeof(new_stream));
50f8ae69 678 if (ret < 0) {
dae10966 679 ERR("Consumer write %s stream to pipe %d",
50f8ae69 680 new_stream->metadata_flag ? "metadata" : "data",
dae10966 681 lttng_pipe_get_writefd(stream_pipe));
50f8ae69
DG
682 consumer_del_stream(new_stream, NULL);
683 goto end_nosignal;
3bd1e081 684 }
00e2e675 685
50f8ae69 686 DBG("Kernel consumer ADD_STREAM %s (fd: %d) with relayd id %" PRIu64,
ffe60014 687 new_stream->name, fd, new_stream->relayd_stream_id);
3bd1e081
MD
688 break;
689 }
690 case LTTNG_CONSUMER_UPDATE_STREAM:
691 {
3f8e211f
DG
692 rcu_read_unlock();
693 return -ENOSYS;
694 }
695 case LTTNG_CONSUMER_DESTROY_RELAYD:
696 {
a6ba4fe1 697 uint64_t index = msg.u.destroy_relayd.net_seq_idx;
3f8e211f
DG
698 struct consumer_relayd_sock_pair *relayd;
699
a6ba4fe1 700 DBG("Kernel consumer destroying relayd %" PRIu64, index);
3f8e211f
DG
701
702 /* Get relayd reference if exists. */
a6ba4fe1 703 relayd = consumer_find_relayd(index);
3f8e211f 704 if (relayd == NULL) {
3448e266 705 DBG("Unable to find relayd %" PRIu64, index);
f50f23d9 706 ret_code = LTTNG_ERR_NO_CONSUMER;
3bd1e081 707 }
3f8e211f 708
a6ba4fe1
DG
709 /*
710 * Each relayd socket pair has a refcount of stream attached to it
711 * which tells if the relayd is still active or not depending on the
712 * refcount value.
713 *
714 * This will set the destroy flag of the relayd object and destroy it
715 * if the refcount reaches zero when called.
716 *
717 * The destroy can happen either here or when a stream fd hangs up.
718 */
f50f23d9
DG
719 if (relayd) {
720 consumer_flag_relayd_for_destroy(relayd);
721 }
722
723 ret = consumer_send_status_msg(sock, ret_code);
724 if (ret < 0) {
725 /* Somehow, the session daemon is not responding anymore. */
1803a064 726 goto error_fatal;
f50f23d9 727 }
3f8e211f 728
3f8e211f 729 goto end_nosignal;
3bd1e081 730 }
6d805429 731 case LTTNG_CONSUMER_DATA_PENDING:
53632229 732 {
c8f59ee5 733 int32_t ret;
6d805429 734 uint64_t id = msg.u.data_pending.session_id;
c8f59ee5 735
6d805429 736 DBG("Kernel consumer data pending command for id %" PRIu64, id);
c8f59ee5 737
6d805429 738 ret = consumer_data_pending(id);
c8f59ee5
DG
739
740 /* Send back returned value to session daemon */
741 ret = lttcomm_send_unix_sock(sock, &ret, sizeof(ret));
742 if (ret < 0) {
6d805429 743 PERROR("send data pending ret code");
1803a064 744 goto error_fatal;
c8f59ee5 745 }
f50f23d9
DG
746
747 /*
748 * No need to send back a status message since the data pending
749 * returned value is the response.
750 */
c8f59ee5 751 break;
53632229 752 }
6dc3064a
DG
753 case LTTNG_CONSUMER_SNAPSHOT_CHANNEL:
754 {
07b86b52
JD
755 if (msg.u.snapshot_channel.metadata == 1) {
756 ret = lttng_kconsumer_snapshot_metadata(msg.u.snapshot_channel.key,
e2039c7a
JD
757 msg.u.snapshot_channel.pathname,
758 msg.u.snapshot_channel.relayd_id, ctx);
07b86b52
JD
759 if (ret < 0) {
760 ERR("Snapshot metadata failed");
761 ret_code = LTTNG_ERR_KERN_META_FAIL;
762 }
763 } else {
764 ret = lttng_kconsumer_snapshot_channel(msg.u.snapshot_channel.key,
765 msg.u.snapshot_channel.pathname,
766 msg.u.snapshot_channel.relayd_id, ctx);
767 if (ret < 0) {
768 ERR("Snapshot channel failed");
769 ret_code = LTTNG_ERR_KERN_CHAN_FAIL;
770 }
771 }
772
6dc3064a
DG
773 ret = consumer_send_status_msg(sock, ret_code);
774 if (ret < 0) {
775 /* Somehow, the session daemon is not responding anymore. */
776 goto end_nosignal;
777 }
778 break;
779 }
07b86b52
JD
780 case LTTNG_CONSUMER_DESTROY_CHANNEL:
781 {
782 uint64_t key = msg.u.destroy_channel.key;
783 struct lttng_consumer_channel *channel;
784
785 channel = consumer_find_channel(key);
786 if (!channel) {
787 ERR("Kernel consumer destroy channel %" PRIu64 " not found", key);
788 ret_code = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
789 }
790
791 ret = consumer_send_status_msg(sock, ret_code);
792 if (ret < 0) {
793 /* Somehow, the session daemon is not responding anymore. */
794 goto end_nosignal;
795 }
796
797 /*
798 * This command should ONLY be issued for channel with streams set in
799 * no monitor mode.
800 */
801 assert(!channel->monitor);
802
803 /*
804 * The refcount should ALWAYS be 0 in the case of a channel in no
805 * monitor mode.
806 */
807 assert(!uatomic_sub_return(&channel->refcount, 1));
808
809 consumer_del_channel(channel);
810
811 goto end_nosignal;
812 }
3bd1e081 813 default:
3f8e211f 814 goto end_nosignal;
3bd1e081 815 }
3f8e211f 816
3bd1e081 817end_nosignal:
b0b335c8 818 rcu_read_unlock();
4cbc1a04
DG
819
820 /*
821 * Return 1 to indicate success since the 0 value can be a socket
822 * shutdown during the recv() or send() call.
823 */
824 return 1;
1803a064
MD
825
826error_fatal:
827 rcu_read_unlock();
828 /* This will issue a consumer stop. */
829 return -1;
3bd1e081 830}
d41f73b7
MD
831
832/*
833 * Consume data on a file descriptor and write it on a trace file.
834 */
4078b776 835ssize_t lttng_kconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
d41f73b7
MD
836 struct lttng_consumer_local_data *ctx)
837{
1d4dfdef 838 unsigned long len, subbuf_size, padding;
d41f73b7 839 int err;
4078b776 840 ssize_t ret = 0;
d41f73b7
MD
841 int infd = stream->wait_fd;
842
843 DBG("In read_subbuffer (infd : %d)", infd);
844 /* Get the next subbuffer */
845 err = kernctl_get_next_subbuf(infd);
846 if (err != 0) {
1d4dfdef 847 ret = err;
d41f73b7
MD
848 /*
849 * This is a debug message even for single-threaded consumer,
850 * because poll() have more relaxed criterions than get subbuf,
851 * so get_subbuf may fail for short race windows where poll()
852 * would issue wakeups.
853 */
854 DBG("Reserving sub buffer failed (everything is normal, "
855 "it is due to concurrency)");
856 goto end;
857 }
858
1d4dfdef
DG
859 /* Get the full subbuffer size including padding */
860 err = kernctl_get_padded_subbuf_size(infd, &len);
861 if (err != 0) {
862 errno = -err;
863 perror("Getting sub-buffer len failed.");
864 ret = err;
865 goto end;
866 }
867
ffe60014 868 switch (stream->chan->output) {
07b86b52 869 case CONSUMER_CHANNEL_SPLICE:
1d4dfdef
DG
870 /*
871 * XXX: The lttng-modules splice "actor" does not handle copying
872 * partial pages hence only using the subbuffer size without the
873 * padding makes the splice fail.
874 */
875 subbuf_size = len;
876 padding = 0;
877
878 /* splice the subbuffer to the tracefile */
91dfef6e
DG
879 ret = lttng_consumer_on_read_subbuffer_splice(ctx, stream, subbuf_size,
880 padding);
881 /*
882 * XXX: Splice does not support network streaming so the return value
883 * is simply checked against subbuf_size and not like the mmap() op.
884 */
1d4dfdef
DG
885 if (ret != subbuf_size) {
886 /*
887 * display the error but continue processing to try
888 * to release the subbuffer
889 */
890 ERR("Error splicing to tracefile (ret: %zd != len: %lu)",
891 ret, subbuf_size);
892 }
893 break;
07b86b52 894 case CONSUMER_CHANNEL_MMAP:
1d4dfdef
DG
895 /* Get subbuffer size without padding */
896 err = kernctl_get_subbuf_size(infd, &subbuf_size);
897 if (err != 0) {
898 errno = -err;
899 perror("Getting sub-buffer len failed.");
900 ret = err;
901 goto end;
902 }
47e81c02 903
1d4dfdef
DG
904 /* Make sure the tracer is not gone mad on us! */
905 assert(len >= subbuf_size);
906
907 padding = len - subbuf_size;
908
909 /* write the subbuffer to the tracefile */
91dfef6e
DG
910 ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, subbuf_size,
911 padding);
912 /*
913 * The mmap operation should write subbuf_size amount of data when
914 * network streaming or the full padding (len) size when we are _not_
915 * streaming.
916 */
d88aee68
DG
917 if ((ret != subbuf_size && stream->net_seq_idx != (uint64_t) -1ULL) ||
918 (ret != len && stream->net_seq_idx == (uint64_t) -1ULL)) {
1d4dfdef 919 /*
91dfef6e
DG
920 * Display the error but continue processing to try to release the
921 * subbuffer
1d4dfdef 922 */
91dfef6e
DG
923 ERR("Error writing to tracefile "
924 "(ret: %zd != len: %lu != subbuf_size: %lu)",
925 ret, len, subbuf_size);
1d4dfdef
DG
926 }
927 break;
928 default:
929 ERR("Unknown output method");
930 ret = -1;
d41f73b7
MD
931 }
932
933 err = kernctl_put_next_subbuf(infd);
934 if (err != 0) {
21073eaa 935 errno = -err;
d41f73b7
MD
936 if (errno == EFAULT) {
937 perror("Error in unreserving sub buffer\n");
938 } else if (errno == EIO) {
939 /* Should never happen with newer LTTng versions */
940 perror("Reader has been pushed by the writer, last sub-buffer corrupted.");
941 }
21073eaa
DG
942
943 ret = -err;
d41f73b7
MD
944 goto end;
945 }
946
947end:
948 return ret;
949}
950
951int lttng_kconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
952{
953 int ret;
ffe60014
DG
954
955 assert(stream);
956
2bba9e53
DG
957 /*
958 * Don't create anything if this is set for streaming or should not be
959 * monitored.
960 */
961 if (stream->net_seq_idx == (uint64_t) -1ULL && stream->chan->monitor) {
fe4477ee
JD
962 ret = utils_create_stream_file(stream->chan->pathname, stream->name,
963 stream->chan->tracefile_size, stream->tracefile_count_current,
964 stream->uid, stream->gid);
965 if (ret < 0) {
966 goto error;
967 }
968 stream->out_fd = ret;
969 stream->tracefile_size_current = 0;
ffe60014 970 }
d41f73b7 971
d41f73b7
MD
972 if (stream->output == LTTNG_EVENT_MMAP) {
973 /* get the len of the mmap region */
974 unsigned long mmap_len;
975
976 ret = kernctl_get_mmap_len(stream->wait_fd, &mmap_len);
977 if (ret != 0) {
87dc6a9c 978 errno = -ret;
ffe60014 979 PERROR("kernctl_get_mmap_len");
d41f73b7
MD
980 goto error_close_fd;
981 }
982 stream->mmap_len = (size_t) mmap_len;
983
ffe60014
DG
984 stream->mmap_base = mmap(NULL, stream->mmap_len, PROT_READ,
985 MAP_PRIVATE, stream->wait_fd, 0);
d41f73b7 986 if (stream->mmap_base == MAP_FAILED) {
ffe60014 987 PERROR("Error mmaping");
d41f73b7
MD
988 ret = -1;
989 goto error_close_fd;
990 }
991 }
992
993 /* we return 0 to let the library handle the FD internally */
994 return 0;
995
996error_close_fd:
997 {
998 int err;
999
1000 err = close(stream->out_fd);
1001 assert(!err);
1002 }
1003error:
1004 return ret;
1005}
1006
ca22feea
DG
1007/*
1008 * Check if data is still being extracted from the buffers for a specific
4e9a4686
DG
1009 * stream. Consumer data lock MUST be acquired before calling this function
1010 * and the stream lock.
ca22feea 1011 *
6d805429 1012 * Return 1 if the traced data are still getting read else 0 meaning that the
ca22feea
DG
1013 * data is available for trace viewer reading.
1014 */
6d805429 1015int lttng_kconsumer_data_pending(struct lttng_consumer_stream *stream)
ca22feea
DG
1016{
1017 int ret;
1018
1019 assert(stream);
1020
ca22feea
DG
1021 ret = kernctl_get_next_subbuf(stream->wait_fd);
1022 if (ret == 0) {
1023 /* There is still data so let's put back this subbuffer. */
1024 ret = kernctl_put_subbuf(stream->wait_fd);
1025 assert(ret == 0);
6d805429 1026 ret = 1; /* Data is pending */
4e9a4686 1027 goto end;
ca22feea
DG
1028 }
1029
6d805429
DG
1030 /* Data is NOT pending and ready to be read. */
1031 ret = 0;
ca22feea 1032
6efae65e
DG
1033end:
1034 return ret;
ca22feea 1035}
This page took 0.083943 seconds and 4 git commands to generate.