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>
31 #include <common/common.h>
32 #include <common/kernel-ctl/kernel-ctl.h>
33 #include <common/sessiond-comm/sessiond-comm.h>
34 #include <common/sessiond-comm/relayd.h>
35 #include <common/compat/fcntl.h>
36 #include <common/relayd/relayd.h>
38 #include "kernel-consumer.h"
40 extern struct lttng_consumer_global_data consumer_data
;
41 extern int consumer_poll_timeout
;
42 extern volatile int consumer_quit
;
45 * Take a snapshot for a specific fd
47 * Returns 0 on success, < 0 on error
49 int lttng_kconsumer_take_snapshot(struct lttng_consumer_local_data
*ctx
,
50 struct lttng_consumer_stream
*stream
)
53 int infd
= stream
->wait_fd
;
55 ret
= kernctl_snapshot(infd
);
58 perror("Getting sub-buffer snapshot.");
65 * Get the produced position
67 * Returns 0 on success, < 0 on error
69 int lttng_kconsumer_get_produced_snapshot(
70 struct lttng_consumer_local_data
*ctx
,
71 struct lttng_consumer_stream
*stream
,
75 int infd
= stream
->wait_fd
;
77 ret
= kernctl_snapshot_get_produced(infd
, pos
);
80 perror("kernctl_snapshot_get_produced");
86 int lttng_kconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
87 int sock
, struct pollfd
*consumer_sockpoll
)
90 struct lttcomm_consumer_msg msg
;
92 ret
= lttcomm_recv_unix_sock(sock
, &msg
, sizeof(msg
));
93 if (ret
!= sizeof(msg
)) {
94 lttng_consumer_send_error(ctx
, CONSUMERD_ERROR_RECV_CMD
);
97 if (msg
.cmd_type
== LTTNG_CONSUMER_STOP
) {
101 /* relayd needs RCU read-side protection */
104 switch (msg
.cmd_type
) {
105 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET
:
108 struct consumer_relayd_sock_pair
*relayd
;
110 DBG("Consumer adding relayd socket");
112 /* Get relayd reference if exists. */
113 relayd
= consumer_find_relayd(msg
.u
.relayd_sock
.net_index
);
114 if (relayd
== NULL
) {
115 /* Not found. Allocate one. */
116 relayd
= consumer_allocate_relayd_sock_pair(
117 msg
.u
.relayd_sock
.net_index
);
118 if (relayd
== NULL
) {
119 lttng_consumer_send_error(ctx
, CONSUMERD_OUTFD_ERROR
);
124 /* Poll on consumer socket. */
125 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
129 /* Get relayd socket from session daemon */
130 ret
= lttcomm_recv_fds_unix_sock(sock
, &fd
, 1);
131 if (ret
!= sizeof(fd
)) {
132 lttng_consumer_send_error(ctx
, CONSUMERD_ERROR_RECV_FD
);
136 /* Copy socket information and received FD */
137 switch (msg
.u
.relayd_sock
.type
) {
138 case LTTNG_STREAM_CONTROL
:
139 /* Copy received lttcomm socket */
140 lttcomm_copy_sock(&relayd
->control_sock
, &msg
.u
.relayd_sock
.sock
);
142 ret
= lttcomm_create_sock(&relayd
->control_sock
);
147 /* Close the created socket fd which is useless */
148 close(relayd
->control_sock
.fd
);
150 /* Assign new file descriptor */
151 relayd
->control_sock
.fd
= fd
;
153 case LTTNG_STREAM_DATA
:
154 /* Copy received lttcomm socket */
155 lttcomm_copy_sock(&relayd
->data_sock
, &msg
.u
.relayd_sock
.sock
);
156 ret
= lttcomm_create_sock(&relayd
->data_sock
);
161 /* Close the created socket fd which is useless */
162 close(relayd
->data_sock
.fd
);
164 /* Assign new file descriptor */
165 relayd
->data_sock
.fd
= fd
;
168 ERR("Unknown relayd socket type");
172 DBG("Consumer %s socket created successfully with net idx %d (fd: %d)",
173 msg
.u
.relayd_sock
.type
== LTTNG_STREAM_CONTROL
? "control" : "data",
174 relayd
->net_seq_idx
, fd
);
177 * Add relayd socket pair to consumer data hashtable. If object already
178 * exists or on error, the function gracefully returns.
180 consumer_add_relayd(relayd
);
184 case LTTNG_CONSUMER_ADD_CHANNEL
:
186 struct lttng_consumer_channel
*new_channel
;
188 DBG("consumer_add_channel %d", msg
.u
.channel
.channel_key
);
189 new_channel
= consumer_allocate_channel(msg
.u
.channel
.channel_key
,
191 msg
.u
.channel
.mmap_len
,
192 msg
.u
.channel
.max_sb_size
);
193 if (new_channel
== NULL
) {
194 lttng_consumer_send_error(ctx
, CONSUMERD_OUTFD_ERROR
);
197 if (ctx
->on_recv_channel
!= NULL
) {
198 ret
= ctx
->on_recv_channel(new_channel
);
200 consumer_add_channel(new_channel
);
201 } else if (ret
< 0) {
205 consumer_add_channel(new_channel
);
209 case LTTNG_CONSUMER_ADD_STREAM
:
212 struct consumer_relayd_sock_pair
*relayd
= NULL
;
213 struct lttng_consumer_stream
*new_stream
;
216 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
220 /* Get stream file descriptor from socket */
221 ret
= lttcomm_recv_fds_unix_sock(sock
, &fd
, 1);
222 if (ret
!= sizeof(fd
)) {
223 lttng_consumer_send_error(ctx
, CONSUMERD_ERROR_RECV_FD
);
227 new_stream
= consumer_allocate_stream(msg
.u
.stream
.channel_key
,
228 msg
.u
.stream
.stream_key
,
231 msg
.u
.stream
.mmap_len
,
233 msg
.u
.stream
.path_name
,
236 msg
.u
.stream
.net_index
,
237 msg
.u
.stream
.metadata_flag
);
238 if (new_stream
== NULL
) {
239 lttng_consumer_send_error(ctx
, CONSUMERD_OUTFD_ERROR
);
243 /* The stream is not metadata. Get relayd reference if exists. */
244 relayd
= consumer_find_relayd(msg
.u
.stream
.net_index
);
245 if (relayd
!= NULL
) {
246 /* Add stream on the relayd */
247 pthread_mutex_lock(&relayd
->ctrl_sock_mutex
);
248 ret
= relayd_add_stream(&relayd
->control_sock
,
249 msg
.u
.stream
.name
, msg
.u
.stream
.path_name
,
250 &new_stream
->relayd_stream_id
);
251 pthread_mutex_unlock(&relayd
->ctrl_sock_mutex
);
255 } else if (msg
.u
.stream
.net_index
!= -1) {
256 ERR("Network sequence index %d unknown. Not adding stream.",
257 msg
.u
.stream
.net_index
);
262 if (ctx
->on_recv_stream
!= NULL
) {
263 ret
= ctx
->on_recv_stream(new_stream
);
265 consumer_add_stream(new_stream
);
266 } else if (ret
< 0) {
270 consumer_add_stream(new_stream
);
273 DBG("Kernel consumer_add_stream (%d)", fd
);
276 case LTTNG_CONSUMER_UPDATE_STREAM
:
278 if (ctx
->on_update_stream
!= NULL
) {
279 ret
= ctx
->on_update_stream(msg
.u
.stream
.stream_key
, msg
.u
.stream
.state
);
281 consumer_change_stream_state(msg
.u
.stream
.stream_key
, msg
.u
.stream
.state
);
282 } else if (ret
< 0) {
286 consumer_change_stream_state(msg
.u
.stream
.stream_key
,
296 * Wake-up the other end by writing a null byte in the pipe
297 * (non-blocking). Important note: Because writing into the
298 * pipe is non-blocking (and therefore we allow dropping wakeup
299 * data, as long as there is wakeup data present in the pipe
300 * buffer to wake up the other end), the other end should
301 * perform the following sequence for waiting:
302 * 1) empty the pipe (reads).
303 * 2) perform update operation.
304 * 3) wait on the pipe (poll).
307 ret
= write(ctx
->consumer_poll_pipe
[1], "", 1);
308 } while (ret
< 0 && errno
== EINTR
);
315 * Consume data on a file descriptor and write it on a trace file.
317 ssize_t
lttng_kconsumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
318 struct lttng_consumer_local_data
*ctx
)
323 int infd
= stream
->wait_fd
;
325 DBG("In read_subbuffer (infd : %d)", infd
);
326 /* Get the next subbuffer */
327 err
= kernctl_get_next_subbuf(infd
);
330 * This is a debug message even for single-threaded consumer,
331 * because poll() have more relaxed criterions than get subbuf,
332 * so get_subbuf may fail for short race windows where poll()
333 * would issue wakeups.
335 DBG("Reserving sub buffer failed (everything is normal, "
336 "it is due to concurrency)");
340 switch (stream
->output
) {
341 case LTTNG_EVENT_SPLICE
:
342 /* read the whole subbuffer */
343 err
= kernctl_get_padded_subbuf_size(infd
, &len
);
346 perror("Getting sub-buffer len failed.");
350 /* splice the subbuffer to the tracefile */
351 ret
= lttng_consumer_on_read_subbuffer_splice(ctx
, stream
, len
);
354 * display the error but continue processing to try
355 * to release the subbuffer
357 ERR("Error splicing to tracefile (ret: %ld != len: %ld)",
362 case LTTNG_EVENT_MMAP
:
363 /* read the used subbuffer size */
364 err
= kernctl_get_padded_subbuf_size(infd
, &len
);
367 perror("Getting sub-buffer len failed.");
370 /* write the subbuffer to the tracefile */
371 ret
= lttng_consumer_on_read_subbuffer_mmap(ctx
, stream
, len
);
374 * display the error but continue processing to try
375 * to release the subbuffer
377 ERR("Error writing to tracefile");
381 ERR("Unknown output method");
385 err
= kernctl_put_next_subbuf(infd
);
388 if (errno
== EFAULT
) {
389 perror("Error in unreserving sub buffer\n");
390 } else if (errno
== EIO
) {
391 /* Should never happen with newer LTTng versions */
392 perror("Reader has been pushed by the writer, last sub-buffer corrupted.");
401 int lttng_kconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
405 /* Opening the tracefile in write mode */
406 if (strlen(stream
->path_name
) > 0 && stream
->net_seq_idx
== -1) {
407 ret
= run_as_open(stream
->path_name
,
408 O_WRONLY
|O_CREAT
|O_TRUNC
,
409 S_IRWXU
|S_IRWXG
|S_IRWXO
,
410 stream
->uid
, stream
->gid
);
412 ERR("Opening %s", stream
->path_name
);
416 stream
->out_fd
= ret
;
419 if (stream
->output
== LTTNG_EVENT_MMAP
) {
420 /* get the len of the mmap region */
421 unsigned long mmap_len
;
423 ret
= kernctl_get_mmap_len(stream
->wait_fd
, &mmap_len
);
426 perror("kernctl_get_mmap_len");
429 stream
->mmap_len
= (size_t) mmap_len
;
431 stream
->mmap_base
= mmap(NULL
, stream
->mmap_len
,
432 PROT_READ
, MAP_PRIVATE
, stream
->wait_fd
, 0);
433 if (stream
->mmap_base
== MAP_FAILED
) {
434 perror("Error mmaping");
440 /* we return 0 to let the library handle the FD internally */
447 err
= close(stream
->out_fd
);