Merge duplicate code in consumer for add relayd
[lttng-tools.git] / src / common / ust-consumer / ust-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>
f02e1e8a 21#include <lttng/ust-ctl.h>
3bd1e081
MD
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>
dbb5dfe6 28#include <sys/stat.h>
3bd1e081 29#include <sys/types.h>
77c7c900 30#include <inttypes.h>
3bd1e081 31#include <unistd.h>
0857097f 32
990570ed 33#include <common/common.h>
10a8a223 34#include <common/sessiond-comm/sessiond-comm.h>
00e2e675 35#include <common/relayd/relayd.h>
dbb5dfe6 36#include <common/compat/fcntl.h>
10a8a223
DG
37
38#include "ust-consumer.h"
3bd1e081
MD
39
40extern struct lttng_consumer_global_data consumer_data;
41extern int consumer_poll_timeout;
42extern volatile int consumer_quit;
43
44/*
f02e1e8a
DG
45 * Wrapper over the mmap() read offset from ust-ctl library. Since this can be
46 * compiled out, we isolate it in this library.
3bd1e081 47 */
f02e1e8a
DG
48int lttng_ustctl_get_mmap_read_offset(struct lttng_ust_shm_handle *handle,
49 struct lttng_ust_lib_ring_buffer *buf, unsigned long *off)
3bd1e081 50{
f02e1e8a
DG
51 return ustctl_get_mmap_read_offset(handle, buf, off);
52};
3bd1e081
MD
53
54/*
55 * Take a snapshot for a specific fd
56 *
57 * Returns 0 on success, < 0 on error
58 */
59int 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) {
87dc6a9c 66 errno = -ret;
4c462e79 67 PERROR("Getting sub-buffer snapshot.");
3bd1e081
MD
68 }
69
70 return ret;
71}
72
73/*
74 * Get the produced position
75 *
76 * Returns 0 on success, < 0 on error
77 */
78int 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) {
87dc6a9c 88 errno = -ret;
4c462e79 89 PERROR("kernctl_snapshot_get_produced");
3bd1e081
MD
90 }
91
92 return ret;
93}
94
95int 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)) {
173af62f
DG
103 DBG("Consumer received unexpected message size %zd (expects %zu)",
104 ret, sizeof(msg));
3bd1e081
MD
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
3f8e211f 112 /* relayd needs RCU read-side lock */
b0b335c8
MD
113 rcu_read_lock();
114
3bd1e081 115 switch (msg.cmd_type) {
00e2e675
DG
116 case LTTNG_CONSUMER_ADD_RELAYD_SOCKET:
117 {
7735ef9e
DG
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);
00e2e675
DG
121 goto end_nosignal;
122 }
3bd1e081
MD
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
173af62f
DG
129 DBG("UST Consumer adding channel");
130
3bd1e081
MD
131 /* block */
132 if (lttng_consumer_poll_socket(consumer_sockpoll) < 0) {
3f8e211f 133 rcu_read_unlock();
3bd1e081
MD
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);
3f8e211f 139 rcu_read_unlock();
3bd1e081
MD
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;
00e2e675 170 struct consumer_relayd_sock_pair *relayd = NULL;
3bd1e081 171
173af62f
DG
172 DBG("UST Consumer adding stream");
173
3bd1e081
MD
174 /* block */
175 if (lttng_consumer_poll_socket(consumer_sockpoll) < 0) {
3f8e211f 176 rcu_read_unlock();
3bd1e081
MD
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);
3f8e211f 182 rcu_read_unlock();
3bd1e081
MD
183 return ret;
184 }
185
173af62f
DG
186 DBG("consumer_add_stream chan %d stream %d",
187 msg.u.stream.channel_key,
188 msg.u.stream.stream_key);
189
d41f73b7 190 assert(msg.u.stream.output == LTTNG_EVENT_MMAP);
173af62f 191 new_stream = consumer_allocate_stream(msg.u.stream.channel_key,
3bd1e081
MD
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,
6df2e2c9
MD
197 msg.u.stream.path_name,
198 msg.u.stream.uid,
00e2e675
DG
199 msg.u.stream.gid,
200 msg.u.stream.net_index,
201 msg.u.stream.metadata_flag);
3bd1e081
MD
202 if (new_stream == NULL) {
203 lttng_consumer_send_error(ctx, CONSUMERD_OUTFD_ERROR);
3f8e211f 204 goto end_nosignal;
3bd1e081 205 }
00e2e675
DG
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) {
3f8e211f 217 goto end_nosignal;
00e2e675
DG
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);
3f8e211f 223 goto end_nosignal;
00e2e675
DG
224 }
225
3bd1e081
MD
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) {
3f8e211f 231 goto end_nosignal;
3bd1e081
MD
232 }
233 } else {
234 consumer_add_stream(new_stream);
235 }
00e2e675 236
77c7c900 237 DBG("UST consumer_add_stream %s (%d,%d) with relayd id %" PRIu64,
00e2e675
DG
238 msg.u.stream.path_name, fds[0], fds[1],
239 new_stream->relayd_stream_id);
3bd1e081
MD
240 break;
241 }
173af62f
DG
242 case LTTNG_CONSUMER_DESTROY_RELAYD:
243 {
244 struct consumer_relayd_sock_pair *relayd;
245
77c7c900 246 DBG("UST consumer destroying relayd %" PRIu64,
173af62f
DG
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) {
77c7c900 252 ERR("Unable to find relayd %" PRIu64, msg.u.destroy_relayd.net_seq_idx);
3f8e211f 253 goto end_nosignal;
173af62f
DG
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 }
3f8e211f 263 goto end_nosignal;
173af62f 264 }
3bd1e081
MD
265 case LTTNG_CONSUMER_UPDATE_STREAM:
266 {
3f8e211f 267 rcu_read_unlock();
7ad0a0cb
MD
268 return -ENOSYS;
269#if 0
3bd1e081
MD
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;
3f8e211f 282#endif
3bd1e081
MD
283 }
284 default:
285 break;
286 }
3f8e211f 287
04fdd819 288 /*
3f8e211f
DG
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 *
04fdd819
MD
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);
6f94560a 301 } while (ret < 0 && errno == EINTR);
3bd1e081 302end_nosignal:
7735ef9e 303 /* XXX: At some point we might want to return something else than zero */
b0b335c8 304 rcu_read_unlock();
3bd1e081
MD
305 return 0;
306}
307
308int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel *chan)
309{
13161846 310 struct lttng_ust_object_data obj;
3bd1e081
MD
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 }
b5c5fc29 320 chan->wait_fd_is_copy = 1;
2c1dd183 321 chan->shm_fd = -1;
b5c5fc29 322
3bd1e081
MD
323 return 0;
324}
325
d056b477
MD
326void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
327{
328 ustctl_flush_buffer(stream->chan->handle, stream->buf, 0);
effcf122 329 stream->hangup_flush_done = 1;
d056b477
MD
330}
331
3bd1e081
MD
332void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
333{
334 ustctl_unmap_channel(chan->handle);
335}
336
337int lttng_ustconsumer_allocate_stream(struct lttng_consumer_stream *stream)
338{
13161846 339 struct lttng_ust_object_data obj;
3bd1e081
MD
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;
2c1dd183
MD
352 /* ustctl_open_stream_read has closed the shm fd. */
353 stream->wait_fd_is_copy = 1;
354 stream->shm_fd = -1;
355
3bd1e081
MD
356 stream->mmap_base = ustctl_get_mmap_base(stream->chan->handle, stream->buf);
357 if (!stream->mmap_base) {
358 return -EINVAL;
359 }
ee77a7b0 360
3bd1e081
MD
361 return 0;
362}
363
364void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
365{
366 ustctl_close_stream_read(stream->chan->handle, stream->buf);
367}
d41f73b7
MD
368
369
370int 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 */
effcf122
MD
385 if (!stream->hangup_flush_done) {
386 do {
387 readlen = read(stream->wait_fd, &dummy, 1);
87dc6a9c 388 } while (readlen == -1 && errno == EINTR);
effcf122
MD
389 if (readlen == -1) {
390 ret = readlen;
391 goto end;
392 }
d41f73b7
MD
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) {
effcf122 400 ret = -ret; /* ustctl_get_next_subbuf returns negative, caller expect positive. */
d41f73b7
MD
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);
effcf122 414 assert(err == 0);
d41f73b7
MD
415 /* write the subbuffer to the tracefile */
416 ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, len);
47e81c02 417 if (ret != len) {
d41f73b7
MD
418 /*
419 * display the error but continue processing to try
420 * to release the subbuffer
421 */
a4b92340 422 ERR("Error writing to tracefile (expected: %ld, got: %ld)", ret, len);
d41f73b7
MD
423 }
424 err = ustctl_put_next_subbuf(handle, buf);
effcf122 425 assert(err == 0);
d41f73b7
MD
426end:
427 return ret;
428}
429
430int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
431{
432 int ret;
433
434 /* Opening the tracefile in write mode */
00e2e675 435 if (stream->path_name != NULL && stream->net_seq_idx == -1) {
e11d277b 436 ret = run_as_open(stream->path_name,
60b6c79c
MD
437 O_WRONLY|O_CREAT|O_TRUNC,
438 S_IRWXU|S_IRWXG|S_IRWXO,
439 stream->uid, stream->gid);
d41f73b7
MD
440 if (ret < 0) {
441 ERR("Opening %s", stream->path_name);
4c462e79 442 PERROR("open");
d41f73b7
MD
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
451error:
452 return ret;
453}
This page took 0.052815 seconds and 4 git commands to generate.