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
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; only version 2
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 #include <sys/socket.h>
29 #include <sys/types.h>
32 #include <ust/lttng-ust-ctl.h>
33 #include <lttng-sessiond-comm.h>
34 #include <lttng/lttng-ustconsumer.h>
37 extern struct lttng_consumer_global_data consumer_data
;
38 extern int consumer_poll_timeout
;
39 extern volatile int consumer_quit
;
42 * Mmap the ring buffer, read it and write the data to the tracefile.
44 * Returns the number of bytes written
46 int lttng_ustconsumer_on_read_subbuffer_mmap(
47 struct lttng_consumer_local_data
*ctx
,
48 struct lttng_consumer_stream
*stream
, unsigned long len
)
50 unsigned long mmap_offset
;
52 off_t orig_offset
= stream
->out_fd_offset
;
53 int outfd
= stream
->out_fd
;
55 /* get the offset inside the fd to mmap */
56 ret
= ustctl_get_mmap_read_offset(stream
->chan
->handle
,
57 stream
->buf
, &mmap_offset
);
60 perror("ustctl_get_mmap_read_offset");
64 ret
= write(outfd
, stream
->mmap_base
+ mmap_offset
, len
);
69 perror("Error in file write");
72 /* This won't block, but will start writeout asynchronously */
73 sync_file_range(outfd
, stream
->out_fd_offset
, ret
,
74 SYNC_FILE_RANGE_WRITE
);
75 stream
->out_fd_offset
+= ret
;
78 lttng_consumer_sync_trace_file(stream
, orig_offset
);
87 * Splice the data from the ring buffer to the tracefile.
89 * Returns the number of bytes spliced.
91 int lttng_ustconsumer_on_read_subbuffer_splice(
92 struct lttng_consumer_local_data
*ctx
,
93 struct lttng_consumer_stream
*stream
, unsigned long len
)
99 * Take a snapshot for a specific fd
101 * Returns 0 on success, < 0 on error
103 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_local_data
*ctx
,
104 struct lttng_consumer_stream
*stream
)
108 ret
= ustctl_snapshot(stream
->chan
->handle
, stream
->buf
);
111 perror("Getting sub-buffer snapshot.");
118 * Get the produced position
120 * Returns 0 on success, < 0 on error
122 int lttng_ustconsumer_get_produced_snapshot(
123 struct lttng_consumer_local_data
*ctx
,
124 struct lttng_consumer_stream
*stream
,
129 ret
= ustctl_snapshot_get_produced(stream
->chan
->handle
,
133 perror("kernctl_snapshot_get_produced");
139 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
140 int sock
, struct pollfd
*consumer_sockpoll
)
143 struct lttcomm_consumer_msg msg
;
145 ret
= lttcomm_recv_unix_sock(sock
, &msg
, sizeof(msg
));
146 if (ret
!= sizeof(msg
)) {
147 lttng_consumer_send_error(ctx
, CONSUMERD_ERROR_RECV_FD
);
150 if (msg
.cmd_type
== LTTNG_CONSUMER_STOP
) {
154 switch (msg
.cmd_type
) {
155 case LTTNG_CONSUMER_ADD_CHANNEL
:
157 struct lttng_consumer_channel
*new_channel
;
162 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
165 ret
= lttcomm_recv_fds_unix_sock(sock
, fds
, nb_fd
);
166 if (ret
!= sizeof(fds
)) {
167 lttng_consumer_send_error(ctx
, CONSUMERD_ERROR_RECV_FD
);
171 DBG("consumer_add_channel %d", msg
.u
.channel
.channel_key
);
173 new_channel
= consumer_allocate_channel(msg
.u
.channel
.channel_key
,
175 msg
.u
.channel
.mmap_len
,
176 msg
.u
.channel
.max_sb_size
);
177 if (new_channel
== NULL
) {
178 lttng_consumer_send_error(ctx
, CONSUMERD_OUTFD_ERROR
);
181 if (ctx
->on_recv_channel
!= NULL
) {
182 ret
= ctx
->on_recv_channel(new_channel
);
184 consumer_add_channel(new_channel
);
185 } else if (ret
< 0) {
189 consumer_add_channel(new_channel
);
193 case LTTNG_CONSUMER_ADD_STREAM
:
195 struct lttng_consumer_stream
*new_stream
;
200 if (lttng_consumer_poll_socket(consumer_sockpoll
) < 0) {
203 ret
= lttcomm_recv_fds_unix_sock(sock
, fds
, nb_fd
);
204 if (ret
!= sizeof(fds
)) {
205 lttng_consumer_send_error(ctx
, CONSUMERD_ERROR_RECV_FD
);
209 DBG("consumer_add_stream %s (%d,%d)", msg
.u
.stream
.path_name
,
211 new_stream
= consumer_allocate_stream(msg
.u
.stream
.channel_key
,
212 msg
.u
.stream
.stream_key
,
215 msg
.u
.stream
.mmap_len
,
217 msg
.u
.stream
.path_name
);
218 if (new_stream
== NULL
) {
219 lttng_consumer_send_error(ctx
, CONSUMERD_OUTFD_ERROR
);
222 if (ctx
->on_recv_stream
!= NULL
) {
223 ret
= ctx
->on_recv_stream(new_stream
);
225 consumer_add_stream(new_stream
);
226 } else if (ret
< 0) {
230 consumer_add_stream(new_stream
);
234 case LTTNG_CONSUMER_UPDATE_STREAM
:
236 if (ctx
->on_update_stream
!= NULL
) {
237 ret
= ctx
->on_update_stream(msg
.u
.stream
.stream_key
, msg
.u
.stream
.state
);
239 consumer_change_stream_state(msg
.u
.stream
.stream_key
, msg
.u
.stream
.state
);
240 } else if (ret
< 0) {
244 consumer_change_stream_state(msg
.u
.stream
.stream_key
,
253 /* signal the poll thread */
254 ret
= write(ctx
->consumer_poll_pipe
[1], "4", 1);
256 perror("write consumer poll");
262 int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel
*chan
)
264 struct lttng_ust_object_data obj
;
267 obj
.shm_fd
= chan
->shm_fd
;
268 obj
.wait_fd
= chan
->wait_fd
;
269 obj
.memory_map_size
= chan
->mmap_len
;
270 chan
->handle
= ustctl_map_channel(&obj
);
277 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel
*chan
)
279 ustctl_unmap_channel(chan
->handle
);
282 int lttng_ustconsumer_allocate_stream(struct lttng_consumer_stream
*stream
)
284 struct lttng_ust_object_data obj
;
288 obj
.shm_fd
= stream
->shm_fd
;
289 obj
.wait_fd
= stream
->wait_fd
;
290 obj
.memory_map_size
= stream
->mmap_len
;
291 ret
= ustctl_add_stream(stream
->chan
->handle
, &obj
);
294 stream
->buf
= ustctl_open_stream_read(stream
->chan
->handle
, stream
->cpu
);
297 stream
->mmap_base
= ustctl_get_mmap_base(stream
->chan
->handle
, stream
->buf
);
298 if (!stream
->mmap_base
) {
304 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream
*stream
)
306 ustctl_close_stream_read(stream
->chan
->handle
, stream
->buf
);