2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
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.
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.
26 #include <sys/socket.h>
27 #include <sys/types.h>
32 #include <common/common.h>
33 #include <common/kernel-ctl/kernel-ctl.h>
34 #include <common/sessiond-comm/sessiond-comm.h>
35 #include <common/sessiond-comm/relayd.h>
36 #include <common/compat/fcntl.h>
37 #include <common/relayd/relayd.h>
39 #include "kernel-consumer.h"
41 extern struct lttng_consumer_global_data consumer_data
;
42 extern int consumer_poll_timeout
;
43 extern volatile int consumer_quit
;
46 * Take a snapshot for a specific fd
48 * Returns 0 on success, < 0 on error
50 int lttng_kconsumer_take_snapshot(struct lttng_consumer_local_data
*ctx
,
51 struct lttng_consumer_stream
*stream
)
54 int infd
= stream
->wait_fd
;
56 ret
= kernctl_snapshot(infd
);
59 perror("Getting sub-buffer snapshot.");
66 * Get the produced position
68 * Returns 0 on success, < 0 on error
70 int lttng_kconsumer_get_produced_snapshot(
71 struct lttng_consumer_local_data
*ctx
,
72 struct lttng_consumer_stream
*stream
,
76 int infd
= stream
->wait_fd
;
78 ret
= kernctl_snapshot_get_produced(infd
, pos
);
81 perror("kernctl_snapshot_get_produced");
87 int lttng_kconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
88 int sock
, struct pollfd
*consumer_sockpoll
)
91 struct lttcomm_consumer_msg msg
;
93 ret
= lttcomm_recv_unix_sock(sock
, &msg
, sizeof(msg
));
94 if (ret
!= sizeof(msg
)) {
95 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_CMD
);
98 if (msg
.cmd_type
== LTTNG_CONSUMER_STOP
) {
102 /* relayd needs RCU read-side protection */
105 switch (msg
.cmd_type
) {
106 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET
:
108 ret
= consumer_add_relayd_socket(msg
.u
.relayd_sock
.net_index
,
109 msg
.u
.relayd_sock
.type
, ctx
, sock
, consumer_sockpoll
,
110 &msg
.u
.relayd_sock
.sock
);
113 case LTTNG_CONSUMER_ADD_CHANNEL
:
115 struct lttng_consumer_channel
*new_channel
;
117 DBG("consumer_add_channel %d", msg
.u
.channel
.channel_key
);
118 new_channel
= consumer_allocate_channel(msg
.u
.channel
.channel_key
,
120 msg
.u
.channel
.mmap_len
,
121 msg
.u
.channel
.max_sb_size
,
122 msg
.u
.channel
.nb_init_streams
);
123 if (new_channel
== NULL
) {
124 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
127 if (ctx
->on_recv_channel
!= NULL
) {
128 ret
= ctx
->on_recv_channel(new_channel
);
130 consumer_add_channel(new_channel
);
131 } else if (ret
< 0) {
135 consumer_add_channel(new_channel
);
139 case LTTNG_CONSUMER_ADD_STREAM
:
142 struct consumer_relayd_sock_pair
*relayd
= NULL
;
143 struct lttng_consumer_stream
*new_stream
;
147 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
152 /* Get stream file descriptor from socket */
153 ret
= lttcomm_recv_fds_unix_sock(sock
, &fd
, 1);
154 if (ret
!= sizeof(fd
)) {
155 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_ERROR_RECV_FD
);
160 new_stream
= consumer_allocate_stream(msg
.u
.stream
.channel_key
,
161 msg
.u
.stream
.stream_key
,
164 msg
.u
.stream
.mmap_len
,
166 msg
.u
.stream
.path_name
,
169 msg
.u
.stream
.net_index
,
170 msg
.u
.stream
.metadata_flag
,
172 if (new_stream
== NULL
) {
177 lttng_consumer_send_error(ctx
, LTTCOMM_CONSUMERD_OUTFD_ERROR
);
181 * We could not find the channel. Can happen if cpu hotplug
182 * happens while tearing down.
184 DBG3("Could not find channel");
191 * The buffer flush is done on the session daemon side for the kernel
192 * so no need for the stream "hangup_flush_done" variable to be
193 * tracked. This is important for a kernel stream since we don't rely
194 * on the flush state of the stream to read data. It's not the case for
195 * user space tracing.
197 new_stream
->hangup_flush_done
= 0;
199 /* The stream is not metadata. Get relayd reference if exists. */
200 relayd
= consumer_find_relayd(msg
.u
.stream
.net_index
);
201 if (relayd
!= NULL
) {
202 /* Add stream on the relayd */
203 pthread_mutex_lock(&relayd
->ctrl_sock_mutex
);
204 ret
= relayd_add_stream(&relayd
->control_sock
,
205 msg
.u
.stream
.name
, msg
.u
.stream
.path_name
,
206 &new_stream
->relayd_stream_id
);
207 pthread_mutex_unlock(&relayd
->ctrl_sock_mutex
);
209 consumer_del_stream(new_stream
, NULL
);
212 } else if (msg
.u
.stream
.net_index
!= -1) {
213 ERR("Network sequence index %d unknown. Not adding stream.",
214 msg
.u
.stream
.net_index
);
215 consumer_del_stream(new_stream
, NULL
);
219 if (ctx
->on_recv_stream
) {
220 ret
= ctx
->on_recv_stream(new_stream
);
222 consumer_del_stream(new_stream
, NULL
);
227 /* Send stream to the metadata thread */
228 if (new_stream
->metadata_flag
) {
230 ret
= write(ctx
->consumer_metadata_pipe
[1], &new_stream
,
232 } while (ret
< 0 && errno
== EINTR
);
234 PERROR("write metadata pipe");
235 consumer_del_stream(new_stream
, NULL
);
240 ret
= write(ctx
->consumer_poll_pipe
[1], &new_stream
,
242 } while (ret
< 0 && errno
== EINTR
);
244 PERROR("write data pipe");
245 consumer_del_stream(new_stream
, NULL
);
250 DBG("Kernel consumer_add_stream (%d)", fd
);
253 case LTTNG_CONSUMER_UPDATE_STREAM
:
258 case LTTNG_CONSUMER_DESTROY_RELAYD
:
260 uint64_t index
= msg
.u
.destroy_relayd
.net_seq_idx
;
261 struct consumer_relayd_sock_pair
*relayd
;
263 DBG("Kernel consumer destroying relayd %" PRIu64
, index
);
265 /* Get relayd reference if exists. */
266 relayd
= consumer_find_relayd(index
);
267 if (relayd
== NULL
) {
268 ERR("Unable to find relayd %" PRIu64
, index
);
273 * Each relayd socket pair has a refcount of stream attached to it
274 * which tells if the relayd is still active or not depending on the
277 * This will set the destroy flag of the relayd object and destroy it
278 * if the refcount reaches zero when called.
280 * The destroy can happen either here or when a stream fd hangs up.
282 consumer_flag_relayd_for_destroy(relayd
);
294 * Return 1 to indicate success since the 0 value can be a socket
295 * shutdown during the recv() or send() call.
301 * Consume data on a file descriptor and write it on a trace file.
303 ssize_t
lttng_kconsumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
304 struct lttng_consumer_local_data
*ctx
)
306 unsigned long len
, subbuf_size
, padding
;
309 int infd
= stream
->wait_fd
;
311 DBG("In read_subbuffer (infd : %d)", infd
);
312 /* Get the next subbuffer */
313 err
= kernctl_get_next_subbuf(infd
);
317 * This is a debug message even for single-threaded consumer,
318 * because poll() have more relaxed criterions than get subbuf,
319 * so get_subbuf may fail for short race windows where poll()
320 * would issue wakeups.
322 DBG("Reserving sub buffer failed (everything is normal, "
323 "it is due to concurrency)");
327 /* Get the full subbuffer size including padding */
328 err
= kernctl_get_padded_subbuf_size(infd
, &len
);
331 perror("Getting sub-buffer len failed.");
336 switch (stream
->output
) {
337 case LTTNG_EVENT_SPLICE
:
340 * XXX: The lttng-modules splice "actor" does not handle copying
341 * partial pages hence only using the subbuffer size without the
342 * padding makes the splice fail.
347 /* splice the subbuffer to the tracefile */
348 ret
= lttng_consumer_on_read_subbuffer_splice(ctx
, stream
, subbuf_size
,
351 * XXX: Splice does not support network streaming so the return value
352 * is simply checked against subbuf_size and not like the mmap() op.
354 if (ret
!= subbuf_size
) {
356 * display the error but continue processing to try
357 * to release the subbuffer
359 ERR("Error splicing to tracefile (ret: %zd != len: %lu)",
363 case LTTNG_EVENT_MMAP
:
364 /* Get subbuffer size without padding */
365 err
= kernctl_get_subbuf_size(infd
, &subbuf_size
);
368 perror("Getting sub-buffer len failed.");
373 /* Make sure the tracer is not gone mad on us! */
374 assert(len
>= subbuf_size
);
376 padding
= len
- subbuf_size
;
378 /* write the subbuffer to the tracefile */
379 ret
= lttng_consumer_on_read_subbuffer_mmap(ctx
, stream
, subbuf_size
,
382 * The mmap operation should write subbuf_size amount of data when
383 * network streaming or the full padding (len) size when we are _not_
386 if ((ret
!= subbuf_size
&& stream
->net_seq_idx
!= -1) ||
387 (ret
!= len
&& stream
->net_seq_idx
== -1)) {
389 * Display the error but continue processing to try to release the
392 ERR("Error writing to tracefile "
393 "(ret: %zd != len: %lu != subbuf_size: %lu)",
394 ret
, len
, subbuf_size
);
398 ERR("Unknown output method");
402 err
= kernctl_put_next_subbuf(infd
);
405 if (errno
== EFAULT
) {
406 perror("Error in unreserving sub buffer\n");
407 } else if (errno
== EIO
) {
408 /* Should never happen with newer LTTng versions */
409 perror("Reader has been pushed by the writer, last sub-buffer corrupted.");
420 int lttng_kconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
424 /* Opening the tracefile in write mode */
425 if (strlen(stream
->path_name
) > 0 && stream
->net_seq_idx
== -1) {
426 ret
= run_as_open(stream
->path_name
,
427 O_WRONLY
|O_CREAT
|O_TRUNC
,
428 S_IRWXU
|S_IRWXG
|S_IRWXO
,
429 stream
->uid
, stream
->gid
);
431 ERR("Opening %s", stream
->path_name
);
435 stream
->out_fd
= ret
;
438 if (stream
->output
== LTTNG_EVENT_MMAP
) {
439 /* get the len of the mmap region */
440 unsigned long mmap_len
;
442 ret
= kernctl_get_mmap_len(stream
->wait_fd
, &mmap_len
);
445 perror("kernctl_get_mmap_len");
448 stream
->mmap_len
= (size_t) mmap_len
;
450 stream
->mmap_base
= mmap(NULL
, stream
->mmap_len
,
451 PROT_READ
, MAP_PRIVATE
, stream
->wait_fd
, 0);
452 if (stream
->mmap_base
== MAP_FAILED
) {
453 perror("Error mmaping");
459 /* we return 0 to let the library handle the FD internally */
466 err
= close(stream
->out_fd
);