a8872aaf33481239df05e39c5b6c29851cd83586
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.c
1 /*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
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.
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 *
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.
17 */
18
19 #define _GNU_SOURCE
20 #include <assert.h>
21 #include <lttng/ust-ctl.h>
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>
28 #include <sys/stat.h>
29 #include <sys/types.h>
30 #include <inttypes.h>
31 #include <unistd.h>
32
33 #include <common/common.h>
34 #include <common/sessiond-comm/sessiond-comm.h>
35 #include <common/relayd/relayd.h>
36 #include <common/compat/fcntl.h>
37
38 #include "ust-consumer.h"
39
40 extern struct lttng_consumer_global_data consumer_data;
41 extern int consumer_poll_timeout;
42 extern volatile int consumer_quit;
43
44 /*
45 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
46 * compiled out, we isolate it in this library.
47 */
48 int lttng_ustctl_get_mmap_read_offset(struct lttng_ust_shm_handle *handle,
49 struct lttng_ust_lib_ring_buffer *buf, unsigned long *off)
50 {
51 return ustctl_get_mmap_read_offset(handle, buf, off);
52 };
53
54 /*
55 * Take a snapshot for a specific fd
56 *
57 * Returns 0 on success, < 0 on error
58 */
59 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_local_data *ctx,
60 struct lttng_consumer_stream *stream)
61 {
62 int ret = 0;
63
64 ret = ustctl_snapshot(stream->chan->handle, stream->buf);
65 if (ret != 0) {
66 errno = -ret;
67 PERROR("Getting sub-buffer snapshot.");
68 }
69
70 return ret;
71 }
72
73 /*
74 * Get the produced position
75 *
76 * Returns 0 on success, < 0 on error
77 */
78 int lttng_ustconsumer_get_produced_snapshot(
79 struct lttng_consumer_local_data *ctx,
80 struct lttng_consumer_stream *stream,
81 unsigned long *pos)
82 {
83 int ret;
84
85 ret = ustctl_snapshot_get_produced(stream->chan->handle,
86 stream->buf, pos);
87 if (ret != 0) {
88 errno = -ret;
89 PERROR("kernctl_snapshot_get_produced");
90 }
91
92 return ret;
93 }
94
95 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
96 int sock, struct pollfd *consumer_sockpoll)
97 {
98 ssize_t ret;
99 struct lttcomm_consumer_msg msg;
100
101 ret = lttcomm_recv_unix_sock(sock, &msg, sizeof(msg));
102 if (ret != sizeof(msg)) {
103 DBG("Consumer received unexpected message size %zd (expects %zu)",
104 ret, sizeof(msg));
105 lttng_consumer_send_error(ctx, CONSUMERD_ERROR_RECV_FD);
106 return ret;
107 }
108 if (msg.cmd_type == LTTNG_CONSUMER_STOP) {
109 return -ENOENT;
110 }
111
112 /* relayd needs RCU read-side lock */
113 rcu_read_lock();
114
115 switch (msg.cmd_type) {
116 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET:
117 {
118 ret = consumer_add_relayd_socket(msg.u.relayd_sock.net_index,
119 msg.u.relayd_sock.type, ctx, sock, consumer_sockpoll,
120 &msg.u.relayd_sock.sock);
121 goto end_nosignal;
122 }
123 case LTTNG_CONSUMER_ADD_CHANNEL:
124 {
125 struct lttng_consumer_channel *new_channel;
126 int fds[1];
127 size_t nb_fd = 1;
128
129 DBG("UST Consumer adding channel");
130
131 /* block */
132 if (lttng_consumer_poll_socket(consumer_sockpoll) < 0) {
133 rcu_read_unlock();
134 return -EINTR;
135 }
136 ret = lttcomm_recv_fds_unix_sock(sock, fds, nb_fd);
137 if (ret != sizeof(fds)) {
138 lttng_consumer_send_error(ctx, CONSUMERD_ERROR_RECV_FD);
139 rcu_read_unlock();
140 return ret;
141 }
142
143 DBG("consumer_add_channel %d", msg.u.channel.channel_key);
144
145 new_channel = consumer_allocate_channel(msg.u.channel.channel_key,
146 fds[0], -1,
147 msg.u.channel.mmap_len,
148 msg.u.channel.max_sb_size);
149 if (new_channel == NULL) {
150 lttng_consumer_send_error(ctx, CONSUMERD_OUTFD_ERROR);
151 goto end_nosignal;
152 }
153 if (ctx->on_recv_channel != NULL) {
154 ret = ctx->on_recv_channel(new_channel);
155 if (ret == 0) {
156 consumer_add_channel(new_channel);
157 } else if (ret < 0) {
158 goto end_nosignal;
159 }
160 } else {
161 consumer_add_channel(new_channel);
162 }
163 goto end_nosignal;
164 }
165 case LTTNG_CONSUMER_ADD_STREAM:
166 {
167 struct lttng_consumer_stream *new_stream;
168 int fds[2];
169 size_t nb_fd = 2;
170 struct consumer_relayd_sock_pair *relayd = NULL;
171
172 DBG("UST Consumer adding stream");
173
174 /* block */
175 if (lttng_consumer_poll_socket(consumer_sockpoll) < 0) {
176 rcu_read_unlock();
177 return -EINTR;
178 }
179 ret = lttcomm_recv_fds_unix_sock(sock, fds, nb_fd);
180 if (ret != sizeof(fds)) {
181 lttng_consumer_send_error(ctx, CONSUMERD_ERROR_RECV_FD);
182 rcu_read_unlock();
183 return ret;
184 }
185
186 DBG("consumer_add_stream chan %d stream %d",
187 msg.u.stream.channel_key,
188 msg.u.stream.stream_key);
189
190 assert(msg.u.stream.output == LTTNG_EVENT_MMAP);
191 new_stream = consumer_allocate_stream(msg.u.stream.channel_key,
192 msg.u.stream.stream_key,
193 fds[0], fds[1],
194 msg.u.stream.state,
195 msg.u.stream.mmap_len,
196 msg.u.stream.output,
197 msg.u.stream.path_name,
198 msg.u.stream.uid,
199 msg.u.stream.gid,
200 msg.u.stream.net_index,
201 msg.u.stream.metadata_flag);
202 if (new_stream == NULL) {
203 lttng_consumer_send_error(ctx, CONSUMERD_OUTFD_ERROR);
204 goto end_nosignal;
205 }
206
207 /* The stream is not metadata. Get relayd reference if exists. */
208 relayd = consumer_find_relayd(msg.u.stream.net_index);
209 if (relayd != NULL) {
210 pthread_mutex_lock(&relayd->ctrl_sock_mutex);
211 /* Add stream on the relayd */
212 ret = relayd_add_stream(&relayd->control_sock,
213 msg.u.stream.name, msg.u.stream.path_name,
214 &new_stream->relayd_stream_id);
215 pthread_mutex_unlock(&relayd->ctrl_sock_mutex);
216 if (ret < 0) {
217 goto end_nosignal;
218 }
219 } else if (msg.u.stream.net_index != -1) {
220 ERR("Network sequence index %d unknown. Not adding stream.",
221 msg.u.stream.net_index);
222 free(new_stream);
223 goto end_nosignal;
224 }
225
226 if (ctx->on_recv_stream != NULL) {
227 ret = ctx->on_recv_stream(new_stream);
228 if (ret == 0) {
229 consumer_add_stream(new_stream);
230 } else if (ret < 0) {
231 goto end_nosignal;
232 }
233 } else {
234 consumer_add_stream(new_stream);
235 }
236
237 DBG("UST consumer_add_stream %s (%d,%d) with relayd id %" PRIu64,
238 msg.u.stream.path_name, fds[0], fds[1],
239 new_stream->relayd_stream_id);
240 break;
241 }
242 case LTTNG_CONSUMER_DESTROY_RELAYD:
243 {
244 struct consumer_relayd_sock_pair *relayd;
245
246 DBG("UST consumer destroying relayd %" PRIu64,
247 msg.u.destroy_relayd.net_seq_idx);
248
249 /* Get relayd reference if exists. */
250 relayd = consumer_find_relayd(msg.u.destroy_relayd.net_seq_idx);
251 if (relayd == NULL) {
252 ERR("Unable to find relayd %" PRIu64, msg.u.destroy_relayd.net_seq_idx);
253 goto end_nosignal;
254 }
255
256 /* Set destroy flag for this object */
257 uatomic_set(&relayd->destroy_flag, 1);
258
259 /* Destroy the relayd if refcount is 0 else set the destroy flag. */
260 if (uatomic_read(&relayd->refcount) == 0) {
261 consumer_destroy_relayd(relayd);
262 }
263 goto end_nosignal;
264 }
265 case LTTNG_CONSUMER_UPDATE_STREAM:
266 {
267 rcu_read_unlock();
268 return -ENOSYS;
269 #if 0
270 if (ctx->on_update_stream != NULL) {
271 ret = ctx->on_update_stream(msg.u.stream.stream_key, msg.u.stream.state);
272 if (ret == 0) {
273 consumer_change_stream_state(msg.u.stream.stream_key, msg.u.stream.state);
274 } else if (ret < 0) {
275 goto end;
276 }
277 } else {
278 consumer_change_stream_state(msg.u.stream.stream_key,
279 msg.u.stream.state);
280 }
281 break;
282 #endif
283 }
284 default:
285 break;
286 }
287
288 /*
289 * Wake-up the other end by writing a null byte in the pipe (non-blocking).
290 * Important note: Because writing into the pipe is non-blocking (and
291 * therefore we allow dropping wakeup data, as long as there is wakeup data
292 * present in the pipe buffer to wake up the other end), the other end
293 * should perform the following sequence for waiting:
294 *
295 * 1) empty the pipe (reads).
296 * 2) perform update operation.
297 * 3) wait on the pipe (poll).
298 */
299 do {
300 ret = write(ctx->consumer_poll_pipe[1], "", 1);
301 } while (ret < 0 && errno == EINTR);
302 end_nosignal:
303 /* XXX: At some point we might want to return something else than zero */
304 rcu_read_unlock();
305 return 0;
306 }
307
308 int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel *chan)
309 {
310 struct lttng_ust_object_data obj;
311
312 obj.handle = -1;
313 obj.shm_fd = chan->shm_fd;
314 obj.wait_fd = chan->wait_fd;
315 obj.memory_map_size = chan->mmap_len;
316 chan->handle = ustctl_map_channel(&obj);
317 if (!chan->handle) {
318 return -ENOMEM;
319 }
320 chan->wait_fd_is_copy = 1;
321 chan->shm_fd = -1;
322
323 return 0;
324 }
325
326 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
327 {
328 ustctl_flush_buffer(stream->chan->handle, stream->buf, 0);
329 stream->hangup_flush_done = 1;
330 }
331
332 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
333 {
334 ustctl_unmap_channel(chan->handle);
335 }
336
337 int lttng_ustconsumer_allocate_stream(struct lttng_consumer_stream *stream)
338 {
339 struct lttng_ust_object_data obj;
340 int ret;
341
342 obj.handle = -1;
343 obj.shm_fd = stream->shm_fd;
344 obj.wait_fd = stream->wait_fd;
345 obj.memory_map_size = stream->mmap_len;
346 ret = ustctl_add_stream(stream->chan->handle, &obj);
347 if (ret)
348 return ret;
349 stream->buf = ustctl_open_stream_read(stream->chan->handle, stream->cpu);
350 if (!stream->buf)
351 return -EBUSY;
352 /* ustctl_open_stream_read has closed the shm fd. */
353 stream->wait_fd_is_copy = 1;
354 stream->shm_fd = -1;
355
356 stream->mmap_base = ustctl_get_mmap_base(stream->chan->handle, stream->buf);
357 if (!stream->mmap_base) {
358 return -EINVAL;
359 }
360
361 return 0;
362 }
363
364 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
365 {
366 ustctl_close_stream_read(stream->chan->handle, stream->buf);
367 }
368
369
370 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
371 struct lttng_consumer_local_data *ctx)
372 {
373 unsigned long len;
374 int err;
375 long ret = 0;
376 struct lttng_ust_shm_handle *handle;
377 struct lttng_ust_lib_ring_buffer *buf;
378 char dummy;
379 ssize_t readlen;
380
381 DBG("In read_subbuffer (wait_fd: %d, stream key: %d)",
382 stream->wait_fd, stream->key);
383
384 /* We can consume the 1 byte written into the wait_fd by UST */
385 if (!stream->hangup_flush_done) {
386 do {
387 readlen = read(stream->wait_fd, &dummy, 1);
388 } while (readlen == -1 && errno == EINTR);
389 if (readlen == -1) {
390 ret = readlen;
391 goto end;
392 }
393 }
394
395 buf = stream->buf;
396 handle = stream->chan->handle;
397 /* Get the next subbuffer */
398 err = ustctl_get_next_subbuf(handle, buf);
399 if (err != 0) {
400 ret = -ret; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
401 /*
402 * This is a debug message even for single-threaded consumer,
403 * because poll() have more relaxed criterions than get subbuf,
404 * so get_subbuf may fail for short race windows where poll()
405 * would issue wakeups.
406 */
407 DBG("Reserving sub buffer failed (everything is normal, "
408 "it is due to concurrency)");
409 goto end;
410 }
411 assert(stream->output == LTTNG_EVENT_MMAP);
412 /* read the used subbuffer size */
413 err = ustctl_get_padded_subbuf_size(handle, buf, &len);
414 assert(err == 0);
415 /* write the subbuffer to the tracefile */
416 ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, len);
417 if (ret != len) {
418 /*
419 * display the error but continue processing to try
420 * to release the subbuffer
421 */
422 ERR("Error writing to tracefile (expected: %ld, got: %ld)", ret, len);
423 }
424 err = ustctl_put_next_subbuf(handle, buf);
425 assert(err == 0);
426 end:
427 return ret;
428 }
429
430 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
431 {
432 int ret;
433
434 /* Opening the tracefile in write mode */
435 if (stream->path_name != NULL && stream->net_seq_idx == -1) {
436 ret = run_as_open(stream->path_name,
437 O_WRONLY|O_CREAT|O_TRUNC,
438 S_IRWXU|S_IRWXG|S_IRWXO,
439 stream->uid, stream->gid);
440 if (ret < 0) {
441 ERR("Opening %s", stream->path_name);
442 PERROR("open");
443 goto error;
444 }
445 stream->out_fd = ret;
446 }
447
448 /* we return 0 to let the library handle the FD internally */
449 return 0;
450
451 error:
452 return ret;
453 }
This page took 0.04065 seconds and 4 git commands to generate.