Commit | Line | Data |
---|---|---|
3bd1e081 MD |
1 | /* |
2 | * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca> | |
3 | * Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
b3530820 | 4 | * Copyright (C) 2017 - Jérémie Galarneau <jeremie.galarneau@efficios.com> |
3bd1e081 | 5 | * |
d14d33bf AM |
6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License, version 2 only, | |
8 | * as published by the Free Software Foundation. | |
3bd1e081 MD |
9 | * |
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. | |
14 | * | |
d14d33bf AM |
15 | * You should have received a copy of the GNU General Public License along |
16 | * with this program; if not, write to the Free Software Foundation, Inc., | |
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |
3bd1e081 MD |
18 | */ |
19 | ||
6c1c0768 | 20 | #define _LGPL_SOURCE |
3bd1e081 | 21 | #include <assert.h> |
f02e1e8a | 22 | #include <lttng/ust-ctl.h> |
3bd1e081 MD |
23 | #include <poll.h> |
24 | #include <pthread.h> | |
25 | #include <stdlib.h> | |
26 | #include <string.h> | |
27 | #include <sys/mman.h> | |
28 | #include <sys/socket.h> | |
dbb5dfe6 | 29 | #include <sys/stat.h> |
3bd1e081 | 30 | #include <sys/types.h> |
77c7c900 | 31 | #include <inttypes.h> |
3bd1e081 | 32 | #include <unistd.h> |
ffe60014 | 33 | #include <urcu/list.h> |
331744e3 | 34 | #include <signal.h> |
02d02e31 | 35 | #include <stdbool.h> |
0857097f | 36 | |
51a9e1c7 | 37 | #include <bin/lttng-consumerd/health-consumerd.h> |
990570ed | 38 | #include <common/common.h> |
10a8a223 | 39 | #include <common/sessiond-comm/sessiond-comm.h> |
00e2e675 | 40 | #include <common/relayd/relayd.h> |
dbb5dfe6 | 41 | #include <common/compat/fcntl.h> |
f263b7fd | 42 | #include <common/compat/endian.h> |
c8fea79c JR |
43 | #include <common/consumer/consumer-metadata-cache.h> |
44 | #include <common/consumer/consumer-stream.h> | |
45 | #include <common/consumer/consumer-timer.h> | |
fe4477ee | 46 | #include <common/utils.h> |
309167d2 | 47 | #include <common/index/index.h> |
10a8a223 DG |
48 | |
49 | #include "ust-consumer.h" | |
3bd1e081 | 50 | |
45863397 | 51 | #define INT_MAX_STR_LEN 12 /* includes \0 */ |
4628484a | 52 | |
3bd1e081 MD |
53 | extern struct lttng_consumer_global_data consumer_data; |
54 | extern int consumer_poll_timeout; | |
3bd1e081 MD |
55 | |
56 | /* | |
ffe60014 DG |
57 | * Free channel object and all streams associated with it. This MUST be used |
58 | * only and only if the channel has _NEVER_ been added to the global channel | |
59 | * hash table. | |
3bd1e081 | 60 | */ |
ffe60014 | 61 | static void destroy_channel(struct lttng_consumer_channel *channel) |
3bd1e081 | 62 | { |
ffe60014 DG |
63 | struct lttng_consumer_stream *stream, *stmp; |
64 | ||
65 | assert(channel); | |
66 | ||
67 | DBG("UST consumer cleaning stream list"); | |
68 | ||
69 | cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head, | |
70 | send_node) { | |
9ce5646a MD |
71 | |
72 | health_code_update(); | |
73 | ||
ffe60014 DG |
74 | cds_list_del(&stream->send_node); |
75 | ustctl_destroy_stream(stream->ustream); | |
e5148e25 | 76 | lttng_trace_chunk_put(stream->trace_chunk); |
ffe60014 DG |
77 | free(stream); |
78 | } | |
79 | ||
80 | /* | |
81 | * If a channel is available meaning that was created before the streams | |
82 | * were, delete it. | |
83 | */ | |
84 | if (channel->uchan) { | |
85 | lttng_ustconsumer_del_channel(channel); | |
b83e03c4 | 86 | lttng_ustconsumer_free_channel(channel); |
ffe60014 DG |
87 | } |
88 | free(channel); | |
89 | } | |
3bd1e081 MD |
90 | |
91 | /* | |
ffe60014 | 92 | * Add channel to internal consumer state. |
3bd1e081 | 93 | * |
ffe60014 | 94 | * Returns 0 on success or else a negative value. |
3bd1e081 | 95 | */ |
ffe60014 DG |
96 | static int add_channel(struct lttng_consumer_channel *channel, |
97 | struct lttng_consumer_local_data *ctx) | |
3bd1e081 MD |
98 | { |
99 | int ret = 0; | |
100 | ||
ffe60014 DG |
101 | assert(channel); |
102 | assert(ctx); | |
103 | ||
104 | if (ctx->on_recv_channel != NULL) { | |
105 | ret = ctx->on_recv_channel(channel); | |
106 | if (ret == 0) { | |
d8ef542d | 107 | ret = consumer_add_channel(channel, ctx); |
ffe60014 DG |
108 | } else if (ret < 0) { |
109 | /* Most likely an ENOMEM. */ | |
110 | lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR); | |
111 | goto error; | |
112 | } | |
113 | } else { | |
d8ef542d | 114 | ret = consumer_add_channel(channel, ctx); |
3bd1e081 MD |
115 | } |
116 | ||
d88aee68 | 117 | DBG("UST consumer channel added (key: %" PRIu64 ")", channel->key); |
ffe60014 DG |
118 | |
119 | error: | |
3bd1e081 MD |
120 | return ret; |
121 | } | |
122 | ||
123 | /* | |
ffe60014 DG |
124 | * Allocate and return a consumer channel object. |
125 | */ | |
126 | static struct lttng_consumer_channel *allocate_channel(uint64_t session_id, | |
e5148e25 | 127 | const uint64_t *chunk_id, const char *pathname, const char *name, |
da009f2c | 128 | uint64_t relayd_id, uint64_t key, enum lttng_event_output output, |
2bba9e53 | 129 | uint64_t tracefile_size, uint64_t tracefile_count, |
ecc48a90 | 130 | uint64_t session_id_per_pid, unsigned int monitor, |
d7ba1388 | 131 | unsigned int live_timer_interval, |
3d071855 | 132 | const char *root_shm_path, const char *shm_path) |
ffe60014 DG |
133 | { |
134 | assert(pathname); | |
135 | assert(name); | |
136 | ||
e5148e25 JG |
137 | return consumer_allocate_channel(key, session_id, chunk_id, pathname, |
138 | name, relayd_id, output, tracefile_size, | |
d7ba1388 | 139 | tracefile_count, session_id_per_pid, monitor, |
3d071855 | 140 | live_timer_interval, root_shm_path, shm_path); |
ffe60014 DG |
141 | } |
142 | ||
143 | /* | |
144 | * Allocate and return a consumer stream object. If _alloc_ret is not NULL, the | |
145 | * error value if applicable is set in it else it is kept untouched. | |
3bd1e081 | 146 | * |
ffe60014 | 147 | * Return NULL on error else the newly allocated stream object. |
3bd1e081 | 148 | */ |
ffe60014 DG |
149 | static struct lttng_consumer_stream *allocate_stream(int cpu, int key, |
150 | struct lttng_consumer_channel *channel, | |
e5148e25 | 151 | struct lttng_consumer_local_data *ctx, int *_alloc_ret) |
ffe60014 DG |
152 | { |
153 | int alloc_ret; | |
154 | struct lttng_consumer_stream *stream = NULL; | |
155 | ||
156 | assert(channel); | |
157 | assert(ctx); | |
158 | ||
159 | stream = consumer_allocate_stream(channel->key, | |
160 | key, | |
ffe60014 | 161 | channel->name, |
ffe60014 DG |
162 | channel->relayd_id, |
163 | channel->session_id, | |
e5148e25 | 164 | channel->trace_chunk, |
ffe60014 DG |
165 | cpu, |
166 | &alloc_ret, | |
4891ece8 | 167 | channel->type, |
e5148e25 | 168 | channel->monitor); |
ffe60014 DG |
169 | if (stream == NULL) { |
170 | switch (alloc_ret) { | |
171 | case -ENOENT: | |
172 | /* | |
173 | * We could not find the channel. Can happen if cpu hotplug | |
174 | * happens while tearing down. | |
175 | */ | |
176 | DBG3("Could not find channel"); | |
177 | break; | |
178 | case -ENOMEM: | |
179 | case -EINVAL: | |
180 | default: | |
181 | lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_OUTFD_ERROR); | |
182 | break; | |
183 | } | |
184 | goto error; | |
185 | } | |
186 | ||
d9a2e16e | 187 | consumer_stream_update_channel_attributes(stream, channel); |
ffe60014 DG |
188 | stream->chan = channel; |
189 | ||
190 | error: | |
191 | if (_alloc_ret) { | |
192 | *_alloc_ret = alloc_ret; | |
193 | } | |
194 | return stream; | |
195 | } | |
196 | ||
197 | /* | |
198 | * Send the given stream pointer to the corresponding thread. | |
199 | * | |
200 | * Returns 0 on success else a negative value. | |
201 | */ | |
202 | static int send_stream_to_thread(struct lttng_consumer_stream *stream, | |
203 | struct lttng_consumer_local_data *ctx) | |
204 | { | |
dae10966 DG |
205 | int ret; |
206 | struct lttng_pipe *stream_pipe; | |
ffe60014 DG |
207 | |
208 | /* Get the right pipe where the stream will be sent. */ | |
209 | if (stream->metadata_flag) { | |
66d583dc | 210 | consumer_add_metadata_stream(stream); |
dae10966 | 211 | stream_pipe = ctx->consumer_metadata_pipe; |
ffe60014 | 212 | } else { |
66d583dc | 213 | consumer_add_data_stream(stream); |
dae10966 | 214 | stream_pipe = ctx->consumer_data_pipe; |
ffe60014 DG |
215 | } |
216 | ||
5ab66908 MD |
217 | /* |
218 | * From this point on, the stream's ownership has been moved away from | |
a8086cf4 JR |
219 | * the channel and it becomes globally visible. Hence, remove it from |
220 | * the local stream list to prevent the stream from being both local and | |
221 | * global. | |
5ab66908 MD |
222 | */ |
223 | stream->globally_visible = 1; | |
a8086cf4 | 224 | cds_list_del(&stream->send_node); |
5ab66908 | 225 | |
dae10966 | 226 | ret = lttng_pipe_write(stream_pipe, &stream, sizeof(stream)); |
ffe60014 | 227 | if (ret < 0) { |
dae10966 DG |
228 | ERR("Consumer write %s stream to pipe %d", |
229 | stream->metadata_flag ? "metadata" : "data", | |
230 | lttng_pipe_get_writefd(stream_pipe)); | |
5ab66908 MD |
231 | if (stream->metadata_flag) { |
232 | consumer_del_stream_for_metadata(stream); | |
233 | } else { | |
234 | consumer_del_stream_for_data(stream); | |
235 | } | |
a8086cf4 | 236 | goto error; |
ffe60014 | 237 | } |
a8086cf4 | 238 | |
5ab66908 | 239 | error: |
ffe60014 DG |
240 | return ret; |
241 | } | |
242 | ||
4628484a MD |
243 | static |
244 | int get_stream_shm_path(char *stream_shm_path, const char *shm_path, int cpu) | |
245 | { | |
45863397 | 246 | char cpu_nr[INT_MAX_STR_LEN]; /* int max len */ |
4628484a MD |
247 | int ret; |
248 | ||
249 | strncpy(stream_shm_path, shm_path, PATH_MAX); | |
250 | stream_shm_path[PATH_MAX - 1] = '\0'; | |
45863397 | 251 | ret = snprintf(cpu_nr, INT_MAX_STR_LEN, "%i", cpu); |
67f8cb8d MD |
252 | if (ret < 0) { |
253 | PERROR("snprintf"); | |
4628484a MD |
254 | goto end; |
255 | } | |
256 | strncat(stream_shm_path, cpu_nr, | |
257 | PATH_MAX - strlen(stream_shm_path) - 1); | |
258 | ret = 0; | |
259 | end: | |
260 | return ret; | |
261 | } | |
262 | ||
d88aee68 DG |
263 | /* |
264 | * Create streams for the given channel using liblttng-ust-ctl. | |
e5148e25 | 265 | * The channel lock must be acquired by the caller. |
d88aee68 DG |
266 | * |
267 | * Return 0 on success else a negative value. | |
268 | */ | |
ffe60014 | 269 | static int create_ust_streams(struct lttng_consumer_channel *channel, |
e5148e25 | 270 | struct lttng_consumer_local_data *ctx) |
ffe60014 DG |
271 | { |
272 | int ret, cpu = 0; | |
273 | struct ustctl_consumer_stream *ustream; | |
274 | struct lttng_consumer_stream *stream; | |
e5148e25 | 275 | pthread_mutex_t *current_stream_lock = NULL; |
ffe60014 DG |
276 | |
277 | assert(channel); | |
278 | assert(ctx); | |
279 | ||
280 | /* | |
281 | * While a stream is available from ustctl. When NULL is returned, we've | |
282 | * reached the end of the possible stream for the channel. | |
283 | */ | |
284 | while ((ustream = ustctl_create_stream(channel->uchan, cpu))) { | |
285 | int wait_fd; | |
04ef1097 | 286 | int ust_metadata_pipe[2]; |
ffe60014 | 287 | |
9ce5646a MD |
288 | health_code_update(); |
289 | ||
04ef1097 MD |
290 | if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && channel->monitor) { |
291 | ret = utils_create_pipe_cloexec_nonblock(ust_metadata_pipe); | |
292 | if (ret < 0) { | |
293 | ERR("Create ust metadata poll pipe"); | |
294 | goto error; | |
295 | } | |
296 | wait_fd = ust_metadata_pipe[0]; | |
297 | } else { | |
298 | wait_fd = ustctl_stream_get_wait_fd(ustream); | |
299 | } | |
ffe60014 DG |
300 | |
301 | /* Allocate consumer stream object. */ | |
e5148e25 | 302 | stream = allocate_stream(cpu, wait_fd, channel, ctx, &ret); |
ffe60014 DG |
303 | if (!stream) { |
304 | goto error_alloc; | |
305 | } | |
306 | stream->ustream = ustream; | |
307 | /* | |
308 | * Store it so we can save multiple function calls afterwards since | |
309 | * this value is used heavily in the stream threads. This is UST | |
310 | * specific so this is why it's done after allocation. | |
311 | */ | |
312 | stream->wait_fd = wait_fd; | |
313 | ||
b31398bb DG |
314 | /* |
315 | * Increment channel refcount since the channel reference has now been | |
316 | * assigned in the allocation process above. | |
317 | */ | |
10a50311 JD |
318 | if (stream->chan->monitor) { |
319 | uatomic_inc(&stream->chan->refcount); | |
320 | } | |
b31398bb | 321 | |
e5148e25 JG |
322 | pthread_mutex_lock(&stream->lock); |
323 | current_stream_lock = &stream->lock; | |
ffe60014 DG |
324 | /* |
325 | * Order is important this is why a list is used. On error, the caller | |
326 | * should clean this list. | |
327 | */ | |
328 | cds_list_add_tail(&stream->send_node, &channel->streams.head); | |
329 | ||
330 | ret = ustctl_get_max_subbuf_size(stream->ustream, | |
331 | &stream->max_sb_size); | |
332 | if (ret < 0) { | |
333 | ERR("ustctl_get_max_subbuf_size failed for stream %s", | |
334 | stream->name); | |
335 | goto error; | |
336 | } | |
337 | ||
338 | /* Do actions once stream has been received. */ | |
339 | if (ctx->on_recv_stream) { | |
340 | ret = ctx->on_recv_stream(stream); | |
341 | if (ret < 0) { | |
342 | goto error; | |
343 | } | |
344 | } | |
345 | ||
d88aee68 | 346 | DBG("UST consumer add stream %s (key: %" PRIu64 ") with relayd id %" PRIu64, |
ffe60014 DG |
347 | stream->name, stream->key, stream->relayd_stream_id); |
348 | ||
349 | /* Set next CPU stream. */ | |
350 | channel->streams.count = ++cpu; | |
d88aee68 DG |
351 | |
352 | /* Keep stream reference when creating metadata. */ | |
353 | if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA) { | |
354 | channel->metadata_stream = stream; | |
8de4f941 JG |
355 | if (channel->monitor) { |
356 | /* Set metadata poll pipe if we created one */ | |
357 | memcpy(stream->ust_metadata_poll_pipe, | |
358 | ust_metadata_pipe, | |
359 | sizeof(ust_metadata_pipe)); | |
360 | } | |
d88aee68 | 361 | } |
e5148e25 JG |
362 | pthread_mutex_unlock(&stream->lock); |
363 | current_stream_lock = NULL; | |
ffe60014 DG |
364 | } |
365 | ||
366 | return 0; | |
367 | ||
368 | error: | |
369 | error_alloc: | |
e5148e25 JG |
370 | if (current_stream_lock) { |
371 | pthread_mutex_unlock(current_stream_lock); | |
372 | } | |
ffe60014 DG |
373 | return ret; |
374 | } | |
375 | ||
4628484a MD |
376 | /* |
377 | * create_posix_shm is never called concurrently within a process. | |
378 | */ | |
379 | static | |
380 | int create_posix_shm(void) | |
381 | { | |
382 | char tmp_name[NAME_MAX]; | |
383 | int shmfd, ret; | |
384 | ||
385 | ret = snprintf(tmp_name, NAME_MAX, "/ust-shm-consumer-%d", getpid()); | |
386 | if (ret < 0) { | |
387 | PERROR("snprintf"); | |
388 | return -1; | |
389 | } | |
390 | /* | |
391 | * Allocate shm, and immediately unlink its shm oject, keeping | |
392 | * only the file descriptor as a reference to the object. | |
393 | * We specifically do _not_ use the / at the beginning of the | |
394 | * pathname so that some OS implementations can keep it local to | |
395 | * the process (POSIX leaves this implementation-defined). | |
396 | */ | |
397 | shmfd = shm_open(tmp_name, O_CREAT | O_EXCL | O_RDWR, 0700); | |
398 | if (shmfd < 0) { | |
399 | PERROR("shm_open"); | |
400 | goto error_shm_open; | |
401 | } | |
402 | ret = shm_unlink(tmp_name); | |
403 | if (ret < 0 && errno != ENOENT) { | |
404 | PERROR("shm_unlink"); | |
405 | goto error_shm_release; | |
406 | } | |
407 | return shmfd; | |
408 | ||
409 | error_shm_release: | |
410 | ret = close(shmfd); | |
411 | if (ret) { | |
412 | PERROR("close"); | |
413 | } | |
414 | error_shm_open: | |
415 | return -1; | |
416 | } | |
417 | ||
e5148e25 JG |
418 | static int open_ust_stream_fd(struct lttng_consumer_channel *channel, int cpu, |
419 | const struct lttng_credentials *session_credentials) | |
4628484a MD |
420 | { |
421 | char shm_path[PATH_MAX]; | |
422 | int ret; | |
423 | ||
424 | if (!channel->shm_path[0]) { | |
425 | return create_posix_shm(); | |
426 | } | |
427 | ret = get_stream_shm_path(shm_path, channel->shm_path, cpu); | |
428 | if (ret) { | |
429 | goto error_shm_path; | |
430 | } | |
431 | return run_as_open(shm_path, | |
432 | O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR, | |
e5148e25 | 433 | session_credentials->uid, session_credentials->gid); |
4628484a MD |
434 | |
435 | error_shm_path: | |
436 | return -1; | |
437 | } | |
438 | ||
ffe60014 DG |
439 | /* |
440 | * Create an UST channel with the given attributes and send it to the session | |
441 | * daemon using the ust ctl API. | |
442 | * | |
443 | * Return 0 on success or else a negative value. | |
444 | */ | |
4628484a MD |
445 | static int create_ust_channel(struct lttng_consumer_channel *channel, |
446 | struct ustctl_consumer_channel_attr *attr, | |
447 | struct ustctl_consumer_channel **ust_chanp) | |
ffe60014 | 448 | { |
4628484a MD |
449 | int ret, nr_stream_fds, i, j; |
450 | int *stream_fds; | |
451 | struct ustctl_consumer_channel *ust_channel; | |
ffe60014 | 452 | |
4628484a | 453 | assert(channel); |
ffe60014 | 454 | assert(attr); |
4628484a | 455 | assert(ust_chanp); |
e5148e25 | 456 | assert(channel->buffer_credentials.is_set); |
ffe60014 DG |
457 | |
458 | DBG3("Creating channel to ustctl with attr: [overwrite: %d, " | |
459 | "subbuf_size: %" PRIu64 ", num_subbuf: %" PRIu64 ", " | |
460 | "switch_timer_interval: %u, read_timer_interval: %u, " | |
461 | "output: %d, type: %d", attr->overwrite, attr->subbuf_size, | |
462 | attr->num_subbuf, attr->switch_timer_interval, | |
463 | attr->read_timer_interval, attr->output, attr->type); | |
464 | ||
4628484a MD |
465 | if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA) |
466 | nr_stream_fds = 1; | |
467 | else | |
468 | nr_stream_fds = ustctl_get_nr_stream_per_channel(); | |
469 | stream_fds = zmalloc(nr_stream_fds * sizeof(*stream_fds)); | |
470 | if (!stream_fds) { | |
471 | ret = -1; | |
472 | goto error_alloc; | |
473 | } | |
474 | for (i = 0; i < nr_stream_fds; i++) { | |
e5148e25 JG |
475 | stream_fds[i] = open_ust_stream_fd(channel, i, |
476 | &channel->buffer_credentials.value); | |
4628484a MD |
477 | if (stream_fds[i] < 0) { |
478 | ret = -1; | |
479 | goto error_open; | |
480 | } | |
481 | } | |
482 | ust_channel = ustctl_create_channel(attr, stream_fds, nr_stream_fds); | |
483 | if (!ust_channel) { | |
ffe60014 DG |
484 | ret = -1; |
485 | goto error_create; | |
486 | } | |
4628484a MD |
487 | channel->nr_stream_fds = nr_stream_fds; |
488 | channel->stream_fds = stream_fds; | |
489 | *ust_chanp = ust_channel; | |
ffe60014 DG |
490 | |
491 | return 0; | |
492 | ||
493 | error_create: | |
4628484a MD |
494 | error_open: |
495 | for (j = i - 1; j >= 0; j--) { | |
496 | int closeret; | |
497 | ||
498 | closeret = close(stream_fds[j]); | |
499 | if (closeret) { | |
500 | PERROR("close"); | |
501 | } | |
502 | if (channel->shm_path[0]) { | |
503 | char shm_path[PATH_MAX]; | |
504 | ||
505 | closeret = get_stream_shm_path(shm_path, | |
506 | channel->shm_path, j); | |
507 | if (closeret) { | |
508 | ERR("Cannot get stream shm path"); | |
509 | } | |
510 | closeret = run_as_unlink(shm_path, | |
e5148e25 JG |
511 | channel->buffer_credentials.value.uid, |
512 | channel->buffer_credentials.value.gid); | |
4628484a | 513 | if (closeret) { |
4628484a MD |
514 | PERROR("unlink %s", shm_path); |
515 | } | |
516 | } | |
517 | } | |
518 | /* Try to rmdir all directories under shm_path root. */ | |
519 | if (channel->root_shm_path[0]) { | |
602766ec | 520 | (void) run_as_rmdir_recursive(channel->root_shm_path, |
e5148e25 JG |
521 | channel->buffer_credentials.value.uid, |
522 | channel->buffer_credentials.value.gid); | |
4628484a MD |
523 | } |
524 | free(stream_fds); | |
525 | error_alloc: | |
ffe60014 DG |
526 | return ret; |
527 | } | |
528 | ||
d88aee68 DG |
529 | /* |
530 | * Send a single given stream to the session daemon using the sock. | |
531 | * | |
532 | * Return 0 on success else a negative value. | |
533 | */ | |
ffe60014 DG |
534 | static int send_sessiond_stream(int sock, struct lttng_consumer_stream *stream) |
535 | { | |
536 | int ret; | |
537 | ||
538 | assert(stream); | |
539 | assert(sock >= 0); | |
540 | ||
3eb914c0 | 541 | DBG("UST consumer sending stream %" PRIu64 " to sessiond", stream->key); |
ffe60014 DG |
542 | |
543 | /* Send stream to session daemon. */ | |
544 | ret = ustctl_send_stream_to_sessiond(sock, stream->ustream); | |
545 | if (ret < 0) { | |
546 | goto error; | |
547 | } | |
548 | ||
ffe60014 DG |
549 | error: |
550 | return ret; | |
551 | } | |
552 | ||
553 | /* | |
a3a86f35 | 554 | * Send channel to sessiond and relayd if applicable. |
ffe60014 | 555 | * |
d88aee68 | 556 | * Return 0 on success or else a negative value. |
ffe60014 | 557 | */ |
a3a86f35 | 558 | static int send_channel_to_sessiond_and_relayd(int sock, |
ffe60014 DG |
559 | struct lttng_consumer_channel *channel, |
560 | struct lttng_consumer_local_data *ctx, int *relayd_error) | |
561 | { | |
0c759fc9 | 562 | int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS; |
ffe60014 | 563 | struct lttng_consumer_stream *stream; |
a4baae1b | 564 | uint64_t net_seq_idx = -1ULL; |
ffe60014 DG |
565 | |
566 | assert(channel); | |
567 | assert(ctx); | |
568 | assert(sock >= 0); | |
569 | ||
570 | DBG("UST consumer sending channel %s to sessiond", channel->name); | |
571 | ||
62285ea4 DG |
572 | if (channel->relayd_id != (uint64_t) -1ULL) { |
573 | cds_list_for_each_entry(stream, &channel->streams.head, send_node) { | |
9ce5646a MD |
574 | |
575 | health_code_update(); | |
576 | ||
62285ea4 | 577 | /* Try to send the stream to the relayd if one is available. */ |
a3a86f35 JG |
578 | DBG("Sending stream %" PRIu64 " of channel \"%s\" to relayd", |
579 | stream->key, channel->name); | |
62285ea4 DG |
580 | ret = consumer_send_relayd_stream(stream, stream->chan->pathname); |
581 | if (ret < 0) { | |
582 | /* | |
583 | * Flag that the relayd was the problem here probably due to a | |
584 | * communicaton error on the socket. | |
585 | */ | |
586 | if (relayd_error) { | |
587 | *relayd_error = 1; | |
588 | } | |
725d28b2 | 589 | ret_code = LTTCOMM_CONSUMERD_RELAYD_FAIL; |
ffe60014 | 590 | } |
a4baae1b JD |
591 | if (net_seq_idx == -1ULL) { |
592 | net_seq_idx = stream->net_seq_idx; | |
593 | } | |
594 | } | |
f2a444f1 | 595 | } |
ffe60014 | 596 | |
f2a444f1 DG |
597 | /* Inform sessiond that we are about to send channel and streams. */ |
598 | ret = consumer_send_status_msg(sock, ret_code); | |
0c759fc9 | 599 | if (ret < 0 || ret_code != LTTCOMM_CONSUMERD_SUCCESS) { |
f2a444f1 DG |
600 | /* |
601 | * Either the session daemon is not responding or the relayd died so we | |
602 | * stop now. | |
603 | */ | |
604 | goto error; | |
605 | } | |
606 | ||
607 | /* Send channel to sessiond. */ | |
608 | ret = ustctl_send_channel_to_sessiond(sock, channel->uchan); | |
609 | if (ret < 0) { | |
610 | goto error; | |
611 | } | |
612 | ||
613 | ret = ustctl_channel_close_wakeup_fd(channel->uchan); | |
614 | if (ret < 0) { | |
615 | goto error; | |
616 | } | |
617 | ||
618 | /* The channel was sent successfully to the sessiond at this point. */ | |
619 | cds_list_for_each_entry(stream, &channel->streams.head, send_node) { | |
9ce5646a MD |
620 | |
621 | health_code_update(); | |
622 | ||
ffe60014 DG |
623 | /* Send stream to session daemon. */ |
624 | ret = send_sessiond_stream(sock, stream); | |
625 | if (ret < 0) { | |
626 | goto error; | |
627 | } | |
628 | } | |
629 | ||
630 | /* Tell sessiond there is no more stream. */ | |
631 | ret = ustctl_send_stream_to_sessiond(sock, NULL); | |
632 | if (ret < 0) { | |
633 | goto error; | |
634 | } | |
635 | ||
636 | DBG("UST consumer NULL stream sent to sessiond"); | |
637 | ||
638 | return 0; | |
639 | ||
640 | error: | |
0c759fc9 | 641 | if (ret_code != LTTCOMM_CONSUMERD_SUCCESS) { |
f2a444f1 DG |
642 | ret = -1; |
643 | } | |
ffe60014 DG |
644 | return ret; |
645 | } | |
646 | ||
647 | /* | |
648 | * Creates a channel and streams and add the channel it to the channel internal | |
649 | * state. The created stream must ONLY be sent once the GET_CHANNEL command is | |
650 | * received. | |
651 | * | |
652 | * Return 0 on success or else, a negative value is returned and the channel | |
653 | * MUST be destroyed by consumer_del_channel(). | |
654 | */ | |
75cfe9e6 | 655 | static int ask_channel(struct lttng_consumer_local_data *ctx, |
ffe60014 | 656 | struct lttng_consumer_channel *channel, |
e5148e25 | 657 | struct ustctl_consumer_channel_attr *attr) |
3bd1e081 MD |
658 | { |
659 | int ret; | |
660 | ||
ffe60014 DG |
661 | assert(ctx); |
662 | assert(channel); | |
663 | assert(attr); | |
664 | ||
665 | /* | |
666 | * This value is still used by the kernel consumer since for the kernel, | |
667 | * the stream ownership is not IN the consumer so we need to have the | |
668 | * number of left stream that needs to be initialized so we can know when | |
669 | * to delete the channel (see consumer.c). | |
670 | * | |
671 | * As for the user space tracer now, the consumer creates and sends the | |
672 | * stream to the session daemon which only sends them to the application | |
673 | * once every stream of a channel is received making this value useless | |
674 | * because we they will be added to the poll thread before the application | |
675 | * receives them. This ensures that a stream can not hang up during | |
676 | * initilization of a channel. | |
677 | */ | |
678 | channel->nb_init_stream_left = 0; | |
679 | ||
680 | /* The reply msg status is handled in the following call. */ | |
4628484a | 681 | ret = create_ust_channel(channel, attr, &channel->uchan); |
ffe60014 | 682 | if (ret < 0) { |
10a50311 | 683 | goto end; |
3bd1e081 MD |
684 | } |
685 | ||
d8ef542d MD |
686 | channel->wait_fd = ustctl_channel_get_wait_fd(channel->uchan); |
687 | ||
10a50311 JD |
688 | /* |
689 | * For the snapshots (no monitor), we create the metadata streams | |
690 | * on demand, not during the channel creation. | |
691 | */ | |
692 | if (channel->type == CONSUMER_CHANNEL_TYPE_METADATA && !channel->monitor) { | |
693 | ret = 0; | |
694 | goto end; | |
695 | } | |
696 | ||
ffe60014 | 697 | /* Open all streams for this channel. */ |
e5148e25 JG |
698 | pthread_mutex_lock(&channel->lock); |
699 | ret = create_ust_streams(channel, ctx); | |
700 | pthread_mutex_unlock(&channel->lock); | |
ffe60014 | 701 | if (ret < 0) { |
10a50311 | 702 | goto end; |
ffe60014 DG |
703 | } |
704 | ||
10a50311 | 705 | end: |
3bd1e081 MD |
706 | return ret; |
707 | } | |
708 | ||
d88aee68 DG |
709 | /* |
710 | * Send all stream of a channel to the right thread handling it. | |
711 | * | |
712 | * On error, return a negative value else 0 on success. | |
713 | */ | |
714 | static int send_streams_to_thread(struct lttng_consumer_channel *channel, | |
715 | struct lttng_consumer_local_data *ctx) | |
716 | { | |
717 | int ret = 0; | |
718 | struct lttng_consumer_stream *stream, *stmp; | |
719 | ||
720 | assert(channel); | |
721 | assert(ctx); | |
722 | ||
723 | /* Send streams to the corresponding thread. */ | |
724 | cds_list_for_each_entry_safe(stream, stmp, &channel->streams.head, | |
725 | send_node) { | |
9ce5646a MD |
726 | |
727 | health_code_update(); | |
728 | ||
d88aee68 DG |
729 | /* Sending the stream to the thread. */ |
730 | ret = send_stream_to_thread(stream, ctx); | |
731 | if (ret < 0) { | |
732 | /* | |
733 | * If we are unable to send the stream to the thread, there is | |
734 | * a big problem so just stop everything. | |
735 | */ | |
736 | goto error; | |
737 | } | |
d88aee68 DG |
738 | } |
739 | ||
740 | error: | |
741 | return ret; | |
742 | } | |
743 | ||
7972aab2 DG |
744 | /* |
745 | * Flush channel's streams using the given key to retrieve the channel. | |
746 | * | |
747 | * Return 0 on success else an LTTng error code. | |
748 | */ | |
749 | static int flush_channel(uint64_t chan_key) | |
750 | { | |
751 | int ret = 0; | |
752 | struct lttng_consumer_channel *channel; | |
753 | struct lttng_consumer_stream *stream; | |
754 | struct lttng_ht *ht; | |
755 | struct lttng_ht_iter iter; | |
756 | ||
8fd623e0 | 757 | DBG("UST consumer flush channel key %" PRIu64, chan_key); |
7972aab2 | 758 | |
a500c257 | 759 | rcu_read_lock(); |
7972aab2 DG |
760 | channel = consumer_find_channel(chan_key); |
761 | if (!channel) { | |
8fd623e0 | 762 | ERR("UST consumer flush channel %" PRIu64 " not found", chan_key); |
7972aab2 DG |
763 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
764 | goto error; | |
765 | } | |
766 | ||
767 | ht = consumer_data.stream_per_chan_id_ht; | |
768 | ||
769 | /* For each stream of the channel id, flush it. */ | |
7972aab2 DG |
770 | cds_lfht_for_each_entry_duplicate(ht->ht, |
771 | ht->hash_fct(&channel->key, lttng_ht_seed), ht->match_fct, | |
772 | &channel->key, &iter.iter, stream, node_channel_id.node) { | |
9ce5646a MD |
773 | |
774 | health_code_update(); | |
775 | ||
0dd01979 MD |
776 | pthread_mutex_lock(&stream->lock); |
777 | if (!stream->quiescent) { | |
778 | ustctl_flush_buffer(stream->ustream, 0); | |
779 | stream->quiescent = true; | |
780 | } | |
781 | pthread_mutex_unlock(&stream->lock); | |
782 | } | |
783 | error: | |
784 | rcu_read_unlock(); | |
785 | return ret; | |
786 | } | |
787 | ||
788 | /* | |
789 | * Clear quiescent state from channel's streams using the given key to | |
790 | * retrieve the channel. | |
791 | * | |
792 | * Return 0 on success else an LTTng error code. | |
793 | */ | |
794 | static int clear_quiescent_channel(uint64_t chan_key) | |
795 | { | |
796 | int ret = 0; | |
797 | struct lttng_consumer_channel *channel; | |
798 | struct lttng_consumer_stream *stream; | |
799 | struct lttng_ht *ht; | |
800 | struct lttng_ht_iter iter; | |
801 | ||
802 | DBG("UST consumer clear quiescent channel key %" PRIu64, chan_key); | |
803 | ||
804 | rcu_read_lock(); | |
805 | channel = consumer_find_channel(chan_key); | |
806 | if (!channel) { | |
807 | ERR("UST consumer clear quiescent channel %" PRIu64 " not found", chan_key); | |
808 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; | |
809 | goto error; | |
810 | } | |
811 | ||
812 | ht = consumer_data.stream_per_chan_id_ht; | |
813 | ||
814 | /* For each stream of the channel id, clear quiescent state. */ | |
815 | cds_lfht_for_each_entry_duplicate(ht->ht, | |
816 | ht->hash_fct(&channel->key, lttng_ht_seed), ht->match_fct, | |
817 | &channel->key, &iter.iter, stream, node_channel_id.node) { | |
818 | ||
819 | health_code_update(); | |
820 | ||
821 | pthread_mutex_lock(&stream->lock); | |
822 | stream->quiescent = false; | |
823 | pthread_mutex_unlock(&stream->lock); | |
7972aab2 | 824 | } |
7972aab2 | 825 | error: |
a500c257 | 826 | rcu_read_unlock(); |
7972aab2 DG |
827 | return ret; |
828 | } | |
829 | ||
d88aee68 DG |
830 | /* |
831 | * Close metadata stream wakeup_fd using the given key to retrieve the channel. | |
832 | * | |
833 | * Return 0 on success else an LTTng error code. | |
834 | */ | |
835 | static int close_metadata(uint64_t chan_key) | |
836 | { | |
ea88ca2a | 837 | int ret = 0; |
d88aee68 | 838 | struct lttng_consumer_channel *channel; |
f65a74be | 839 | unsigned int channel_monitor; |
d88aee68 | 840 | |
8fd623e0 | 841 | DBG("UST consumer close metadata key %" PRIu64, chan_key); |
d88aee68 DG |
842 | |
843 | channel = consumer_find_channel(chan_key); | |
844 | if (!channel) { | |
84cc9aa0 DG |
845 | /* |
846 | * This is possible if the metadata thread has issue a delete because | |
847 | * the endpoint point of the stream hung up. There is no way the | |
848 | * session daemon can know about it thus use a DBG instead of an actual | |
849 | * error. | |
850 | */ | |
851 | DBG("UST consumer close metadata %" PRIu64 " not found", chan_key); | |
d88aee68 DG |
852 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; |
853 | goto error; | |
854 | } | |
855 | ||
ea88ca2a | 856 | pthread_mutex_lock(&consumer_data.lock); |
a9838785 | 857 | pthread_mutex_lock(&channel->lock); |
f65a74be | 858 | channel_monitor = channel->monitor; |
73811ecc DG |
859 | if (cds_lfht_is_node_deleted(&channel->node.node)) { |
860 | goto error_unlock; | |
861 | } | |
862 | ||
6d574024 | 863 | lttng_ustconsumer_close_metadata(channel); |
f65a74be JG |
864 | pthread_mutex_unlock(&channel->lock); |
865 | pthread_mutex_unlock(&consumer_data.lock); | |
d88aee68 | 866 | |
f65a74be JG |
867 | /* |
868 | * The ownership of a metadata channel depends on the type of | |
869 | * session to which it belongs. In effect, the monitor flag is checked | |
870 | * to determine if this metadata channel is in "snapshot" mode or not. | |
871 | * | |
872 | * In the non-snapshot case, the metadata channel is created along with | |
873 | * a single stream which will remain present until the metadata channel | |
874 | * is destroyed (on the destruction of its session). In this case, the | |
875 | * metadata stream in "monitored" by the metadata poll thread and holds | |
876 | * the ownership of its channel. | |
877 | * | |
878 | * Closing the metadata will cause the metadata stream's "metadata poll | |
879 | * pipe" to be closed. Closing this pipe will wake-up the metadata poll | |
880 | * thread which will teardown the metadata stream which, in return, | |
881 | * deletes the metadata channel. | |
882 | * | |
883 | * In the snapshot case, the metadata stream is created and destroyed | |
884 | * on every snapshot record. Since the channel doesn't have an owner | |
885 | * other than the session daemon, it is safe to destroy it immediately | |
886 | * on reception of the CLOSE_METADATA command. | |
887 | */ | |
888 | if (!channel_monitor) { | |
889 | /* | |
890 | * The channel and consumer_data locks must be | |
891 | * released before this call since consumer_del_channel | |
892 | * re-acquires the channel and consumer_data locks to teardown | |
893 | * the channel and queue its reclamation by the "call_rcu" | |
894 | * worker thread. | |
895 | */ | |
896 | consumer_del_channel(channel); | |
897 | } | |
898 | ||
899 | return ret; | |
ea88ca2a | 900 | error_unlock: |
a9838785 | 901 | pthread_mutex_unlock(&channel->lock); |
ea88ca2a | 902 | pthread_mutex_unlock(&consumer_data.lock); |
d88aee68 DG |
903 | error: |
904 | return ret; | |
905 | } | |
906 | ||
907 | /* | |
908 | * RCU read side lock MUST be acquired before calling this function. | |
909 | * | |
910 | * Return 0 on success else an LTTng error code. | |
911 | */ | |
912 | static int setup_metadata(struct lttng_consumer_local_data *ctx, uint64_t key) | |
913 | { | |
914 | int ret; | |
915 | struct lttng_consumer_channel *metadata; | |
916 | ||
8fd623e0 | 917 | DBG("UST consumer setup metadata key %" PRIu64, key); |
d88aee68 DG |
918 | |
919 | metadata = consumer_find_channel(key); | |
920 | if (!metadata) { | |
921 | ERR("UST consumer push metadata %" PRIu64 " not found", key); | |
922 | ret = LTTNG_ERR_UST_CHAN_NOT_FOUND; | |
10a50311 JD |
923 | goto end; |
924 | } | |
925 | ||
926 | /* | |
927 | * In no monitor mode, the metadata channel has no stream(s) so skip the | |
928 | * ownership transfer to the metadata thread. | |
929 | */ | |
930 | if (!metadata->monitor) { | |
931 | DBG("Metadata channel in no monitor"); | |
932 | ret = 0; | |
933 | goto end; | |
d88aee68 DG |
934 | } |
935 | ||
936 | /* | |
937 | * Send metadata stream to relayd if one available. Availability is | |
938 | * known if the stream is still in the list of the channel. | |
939 | */ | |
940 | if (cds_list_empty(&metadata->streams.head)) { | |
941 | ERR("Metadata channel key %" PRIu64 ", no stream available.", key); | |
942 | ret = LTTCOMM_CONSUMERD_ERROR_METADATA; | |
f5a0c9cf | 943 | goto error_no_stream; |
d88aee68 DG |
944 | } |
945 | ||
946 | /* Send metadata stream to relayd if needed. */ | |
62285ea4 DG |
947 | if (metadata->metadata_stream->net_seq_idx != (uint64_t) -1ULL) { |
948 | ret = consumer_send_relayd_stream(metadata->metadata_stream, | |
949 | metadata->pathname); | |
950 | if (ret < 0) { | |
951 | ret = LTTCOMM_CONSUMERD_ERROR_METADATA; | |
952 | goto error; | |
953 | } | |
601262d6 JD |
954 | ret = consumer_send_relayd_streams_sent( |
955 | metadata->metadata_stream->net_seq_idx); | |
956 | if (ret < 0) { | |
957 | ret = LTTCOMM_CONSUMERD_RELAYD_FAIL; | |
958 | goto error; | |
959 | } | |
d88aee68 DG |
960 | } |
961 | ||
a8086cf4 JR |
962 | /* |
963 | * Ownership of metadata stream is passed along. Freeing is handled by | |
964 | * the callee. | |
965 | */ | |
d88aee68 DG |
966 | ret = send_streams_to_thread(metadata, ctx); |
967 | if (ret < 0) { | |
968 | /* | |
969 | * If we are unable to send the stream to the thread, there is | |
970 | * a big problem so just stop everything. | |
971 | */ | |
972 | ret = LTTCOMM_CONSUMERD_FATAL; | |
a8086cf4 | 973 | goto send_streams_error; |
d88aee68 DG |
974 | } |
975 | /* List MUST be empty after or else it could be reused. */ | |
976 | assert(cds_list_empty(&metadata->streams.head)); | |
977 | ||
10a50311 JD |
978 | ret = 0; |
979 | goto end; | |
d88aee68 DG |
980 | |
981 | error: | |
f2a444f1 DG |
982 | /* |
983 | * Delete metadata channel on error. At this point, the metadata stream can | |
984 | * NOT be monitored by the metadata thread thus having the guarantee that | |
985 | * the stream is still in the local stream list of the channel. This call | |
986 | * will make sure to clean that list. | |
987 | */ | |
f5a0c9cf | 988 | consumer_stream_destroy(metadata->metadata_stream, NULL); |
212d67a2 DG |
989 | cds_list_del(&metadata->metadata_stream->send_node); |
990 | metadata->metadata_stream = NULL; | |
a8086cf4 | 991 | send_streams_error: |
f5a0c9cf | 992 | error_no_stream: |
10a50311 JD |
993 | end: |
994 | return ret; | |
995 | } | |
996 | ||
997 | /* | |
998 | * Snapshot the whole metadata. | |
e5148e25 | 999 | * RCU read-side lock must be held by the caller. |
10a50311 JD |
1000 | * |
1001 | * Returns 0 on success, < 0 on error | |
1002 | */ | |
b0226bd4 MD |
1003 | static int snapshot_metadata(struct lttng_consumer_channel *metadata_channel, |
1004 | uint64_t key, char *path, uint64_t relayd_id, | |
e5148e25 | 1005 | struct lttng_consumer_local_data *ctx) |
10a50311 JD |
1006 | { |
1007 | int ret = 0; | |
10a50311 JD |
1008 | struct lttng_consumer_stream *metadata_stream; |
1009 | ||
1010 | assert(path); | |
1011 | assert(ctx); | |
1012 | ||
1013 | DBG("UST consumer snapshot metadata with key %" PRIu64 " at path %s", | |
1014 | key, path); | |
1015 | ||
1016 | rcu_read_lock(); | |
1017 | ||
10a50311 JD |
1018 | assert(!metadata_channel->monitor); |
1019 | ||
9ce5646a MD |
1020 | health_code_update(); |
1021 | ||
10a50311 JD |
1022 | /* |
1023 | * Ask the sessiond if we have new metadata waiting and update the | |
1024 | * consumer metadata cache. | |
1025 | */ | |
94d49140 | 1026 | ret = lttng_ustconsumer_request_metadata(ctx, metadata_channel, 0, 1); |
10a50311 JD |
1027 | if (ret < 0) { |
1028 | goto error; | |
1029 | } | |
1030 | ||
9ce5646a MD |
1031 | health_code_update(); |
1032 | ||
10a50311 JD |
1033 | /* |
1034 | * The metadata stream is NOT created in no monitor mode when the channel | |
1035 | * is created on a sessiond ask channel command. | |
1036 | */ | |
e5148e25 | 1037 | ret = create_ust_streams(metadata_channel, ctx); |
10a50311 JD |
1038 | if (ret < 0) { |
1039 | goto error; | |
1040 | } | |
1041 | ||
1042 | metadata_stream = metadata_channel->metadata_stream; | |
1043 | assert(metadata_stream); | |
1044 | ||
e5148e25 | 1045 | pthread_mutex_lock(&metadata_stream->lock); |
10a50311 JD |
1046 | if (relayd_id != (uint64_t) -1ULL) { |
1047 | metadata_stream->net_seq_idx = relayd_id; | |
1048 | ret = consumer_send_relayd_stream(metadata_stream, path); | |
10a50311 | 1049 | } else { |
e5148e25 JG |
1050 | ret = consumer_stream_create_output_files(metadata_stream, |
1051 | false); | |
1052 | } | |
1053 | pthread_mutex_unlock(&metadata_stream->lock); | |
1054 | if (ret < 0) { | |
1055 | goto error_stream; | |
10a50311 JD |
1056 | } |
1057 | ||
04ef1097 | 1058 | do { |
9ce5646a MD |
1059 | health_code_update(); |
1060 | ||
10a50311 JD |
1061 | ret = lttng_consumer_read_subbuffer(metadata_stream, ctx); |
1062 | if (ret < 0) { | |
94d49140 | 1063 | goto error_stream; |
10a50311 | 1064 | } |
04ef1097 | 1065 | } while (ret > 0); |
10a50311 | 1066 | |
10a50311 JD |
1067 | error_stream: |
1068 | /* | |
1069 | * Clean up the stream completly because the next snapshot will use a new | |
1070 | * metadata stream. | |
1071 | */ | |
e5148e25 | 1072 | pthread_mutex_lock(&metadata_stream->lock); |
10a50311 | 1073 | consumer_stream_destroy(metadata_stream, NULL); |
212d67a2 | 1074 | cds_list_del(&metadata_stream->send_node); |
10a50311 JD |
1075 | metadata_channel->metadata_stream = NULL; |
1076 | ||
1077 | error: | |
1078 | rcu_read_unlock(); | |
1079 | return ret; | |
1080 | } | |
1081 | ||
1082 | /* | |
1083 | * Take a snapshot of all the stream of a channel. | |
e5148e25 | 1084 | * RCU read-side lock and the channel lock must be held by the caller. |
10a50311 JD |
1085 | * |
1086 | * Returns 0 on success, < 0 on error | |
1087 | */ | |
b0226bd4 MD |
1088 | static int snapshot_channel(struct lttng_consumer_channel *channel, |
1089 | uint64_t key, char *path, uint64_t relayd_id, | |
e098433c JG |
1090 | uint64_t nb_packets_per_stream, |
1091 | struct lttng_consumer_local_data *ctx) | |
10a50311 JD |
1092 | { |
1093 | int ret; | |
1094 | unsigned use_relayd = 0; | |
1095 | unsigned long consumed_pos, produced_pos; | |
10a50311 JD |
1096 | struct lttng_consumer_stream *stream; |
1097 | ||
1098 | assert(path); | |
1099 | assert(ctx); | |
1100 | ||
1101 | rcu_read_lock(); | |
1102 | ||
1103 | if (relayd_id != (uint64_t) -1ULL) { | |
1104 | use_relayd = 1; | |
1105 | } | |
1106 | ||
10a50311 | 1107 | assert(!channel->monitor); |
6a00837f | 1108 | DBG("UST consumer snapshot channel %" PRIu64, key); |
10a50311 JD |
1109 | |
1110 | cds_list_for_each_entry(stream, &channel->streams.head, send_node) { | |
9ce5646a MD |
1111 | health_code_update(); |
1112 | ||
10a50311 JD |
1113 | /* Lock stream because we are about to change its state. */ |
1114 | pthread_mutex_lock(&stream->lock); | |
e5148e25 JG |
1115 | assert(channel->trace_chunk); |
1116 | if (!lttng_trace_chunk_get(channel->trace_chunk)) { | |
1117 | /* | |
1118 | * Can't happen barring an internal error as the channel | |
1119 | * holds a reference to the trace chunk. | |
1120 | */ | |
1121 | ERR("Failed to acquire reference to channel's trace chunk"); | |
1122 | ret = -1; | |
1123 | goto error_unlock; | |
1124 | } | |
1125 | assert(!stream->trace_chunk); | |
1126 | stream->trace_chunk = channel->trace_chunk; | |
1127 | ||
10a50311 JD |
1128 | stream->net_seq_idx = relayd_id; |
1129 | ||
1130 | if (use_relayd) { | |
1131 | ret = consumer_send_relayd_stream(stream, path); | |
1132 | if (ret < 0) { | |
1133 | goto error_unlock; | |
1134 | } | |
1135 | } else { | |
e5148e25 JG |
1136 | ret = consumer_stream_create_output_files(stream, |
1137 | false); | |
10a50311 JD |
1138 | if (ret < 0) { |
1139 | goto error_unlock; | |
1140 | } | |
e5148e25 JG |
1141 | DBG("UST consumer snapshot stream (%" PRIu64 ")", |
1142 | stream->key); | |
10a50311 JD |
1143 | } |
1144 | ||
d4d80f77 MD |
1145 | /* |
1146 | * If tracing is active, we want to perform a "full" buffer flush. | |
1147 | * Else, if quiescent, it has already been done by the prior stop. | |
1148 | */ | |
1149 | if (!stream->quiescent) { | |
1150 | ustctl_flush_buffer(stream->ustream, 0); | |
1151 | } | |
10a50311 JD |
1152 | |
1153 | ret = lttng_ustconsumer_take_snapshot(stream); | |
1154 | if (ret < 0) { | |
1155 | ERR("Taking UST snapshot"); | |
1156 | goto error_unlock; | |
1157 | } | |
1158 | ||
1159 | ret = lttng_ustconsumer_get_produced_snapshot(stream, &produced_pos); | |
1160 | if (ret < 0) { | |
1161 | ERR("Produced UST snapshot position"); | |
1162 | goto error_unlock; | |
1163 | } | |
1164 | ||
1165 | ret = lttng_ustconsumer_get_consumed_snapshot(stream, &consumed_pos); | |
1166 | if (ret < 0) { | |
1167 | ERR("Consumerd UST snapshot position"); | |
1168 | goto error_unlock; | |
1169 | } | |
1170 | ||
5c786ded JD |
1171 | /* |
1172 | * The original value is sent back if max stream size is larger than | |
d07ceecd | 1173 | * the possible size of the snapshot. Also, we assume that the session |
5c786ded JD |
1174 | * daemon should never send a maximum stream size that is lower than |
1175 | * subbuffer size. | |
1176 | */ | |
d07ceecd MD |
1177 | consumed_pos = consumer_get_consume_start_pos(consumed_pos, |
1178 | produced_pos, nb_packets_per_stream, | |
1179 | stream->max_sb_size); | |
5c786ded | 1180 | |
0fdaf1ed | 1181 | while ((long) (consumed_pos - produced_pos) < 0) { |
10a50311 JD |
1182 | ssize_t read_len; |
1183 | unsigned long len, padded_len; | |
1184 | ||
9ce5646a MD |
1185 | health_code_update(); |
1186 | ||
10a50311 JD |
1187 | DBG("UST consumer taking snapshot at pos %lu", consumed_pos); |
1188 | ||
1189 | ret = ustctl_get_subbuf(stream->ustream, &consumed_pos); | |
1190 | if (ret < 0) { | |
1191 | if (ret != -EAGAIN) { | |
1192 | PERROR("ustctl_get_subbuf snapshot"); | |
1193 | goto error_close_stream; | |
1194 | } | |
1195 | DBG("UST consumer get subbuf failed. Skipping it."); | |
1196 | consumed_pos += stream->max_sb_size; | |
ddc93ee4 | 1197 | stream->chan->lost_packets++; |
10a50311 JD |
1198 | continue; |
1199 | } | |
1200 | ||
1201 | ret = ustctl_get_subbuf_size(stream->ustream, &len); | |
1202 | if (ret < 0) { | |
1203 | ERR("Snapshot ustctl_get_subbuf_size"); | |
1204 | goto error_put_subbuf; | |
1205 | } | |
1206 | ||
1207 | ret = ustctl_get_padded_subbuf_size(stream->ustream, &padded_len); | |
1208 | if (ret < 0) { | |
1209 | ERR("Snapshot ustctl_get_padded_subbuf_size"); | |
1210 | goto error_put_subbuf; | |
1211 | } | |
1212 | ||
1213 | read_len = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, len, | |
309167d2 | 1214 | padded_len - len, NULL); |
10a50311 JD |
1215 | if (use_relayd) { |
1216 | if (read_len != len) { | |
56591bac | 1217 | ret = -EPERM; |
10a50311 JD |
1218 | goto error_put_subbuf; |
1219 | } | |
1220 | } else { | |
1221 | if (read_len != padded_len) { | |
56591bac | 1222 | ret = -EPERM; |
10a50311 JD |
1223 | goto error_put_subbuf; |
1224 | } | |
1225 | } | |
1226 | ||
1227 | ret = ustctl_put_subbuf(stream->ustream); | |
1228 | if (ret < 0) { | |
1229 | ERR("Snapshot ustctl_put_subbuf"); | |
1230 | goto error_close_stream; | |
1231 | } | |
1232 | consumed_pos += stream->max_sb_size; | |
1233 | } | |
1234 | ||
1235 | /* Simply close the stream so we can use it on the next snapshot. */ | |
1236 | consumer_stream_close(stream); | |
1237 | pthread_mutex_unlock(&stream->lock); | |
1238 | } | |
1239 | ||
1240 | rcu_read_unlock(); | |
1241 | return 0; | |
1242 | ||
1243 | error_put_subbuf: | |
1244 | if (ustctl_put_subbuf(stream->ustream) < 0) { | |
1245 | ERR("Snapshot ustctl_put_subbuf"); | |
1246 | } | |
1247 | error_close_stream: | |
1248 | consumer_stream_close(stream); | |
1249 | error_unlock: | |
1250 | pthread_mutex_unlock(&stream->lock); | |
10a50311 | 1251 | rcu_read_unlock(); |
d88aee68 DG |
1252 | return ret; |
1253 | } | |
1254 | ||
331744e3 | 1255 | /* |
c585821b MD |
1256 | * Receive the metadata updates from the sessiond. Supports receiving |
1257 | * overlapping metadata, but is needs to always belong to a contiguous | |
1258 | * range starting from 0. | |
1259 | * Be careful about the locks held when calling this function: it needs | |
1260 | * the metadata cache flush to concurrently progress in order to | |
1261 | * complete. | |
331744e3 JD |
1262 | */ |
1263 | int lttng_ustconsumer_recv_metadata(int sock, uint64_t key, uint64_t offset, | |
93ec662e JD |
1264 | uint64_t len, uint64_t version, |
1265 | struct lttng_consumer_channel *channel, int timer, int wait) | |
331744e3 | 1266 | { |
0c759fc9 | 1267 | int ret, ret_code = LTTCOMM_CONSUMERD_SUCCESS; |
331744e3 JD |
1268 | char *metadata_str; |
1269 | ||
8fd623e0 | 1270 | DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key, len); |
331744e3 JD |
1271 | |
1272 | metadata_str = zmalloc(len * sizeof(char)); | |
1273 | if (!metadata_str) { | |
1274 | PERROR("zmalloc metadata string"); | |
1275 | ret_code = LTTCOMM_CONSUMERD_ENOMEM; | |
1276 | goto end; | |
1277 | } | |
1278 | ||
9ce5646a MD |
1279 | health_code_update(); |
1280 | ||
331744e3 JD |
1281 | /* Receive metadata string. */ |
1282 | ret = lttcomm_recv_unix_sock(sock, metadata_str, len); | |
1283 | if (ret < 0) { | |
1284 | /* Session daemon is dead so return gracefully. */ | |
1285 | ret_code = ret; | |
1286 | goto end_free; | |
1287 | } | |
1288 | ||
9ce5646a MD |
1289 | health_code_update(); |
1290 | ||
331744e3 | 1291 | pthread_mutex_lock(&channel->metadata_cache->lock); |
93ec662e JD |
1292 | ret = consumer_metadata_cache_write(channel, offset, len, version, |
1293 | metadata_str); | |
331744e3 JD |
1294 | if (ret < 0) { |
1295 | /* Unable to handle metadata. Notify session daemon. */ | |
1296 | ret_code = LTTCOMM_CONSUMERD_ERROR_METADATA; | |
a32bd775 DG |
1297 | /* |
1298 | * Skip metadata flush on write error since the offset and len might | |
1299 | * not have been updated which could create an infinite loop below when | |
1300 | * waiting for the metadata cache to be flushed. | |
1301 | */ | |
1302 | pthread_mutex_unlock(&channel->metadata_cache->lock); | |
a32bd775 | 1303 | goto end_free; |
331744e3 JD |
1304 | } |
1305 | pthread_mutex_unlock(&channel->metadata_cache->lock); | |
1306 | ||
94d49140 JD |
1307 | if (!wait) { |
1308 | goto end_free; | |
1309 | } | |
5e41ebe1 | 1310 | while (consumer_metadata_cache_flushed(channel, offset + len, timer)) { |
331744e3 | 1311 | DBG("Waiting for metadata to be flushed"); |
9ce5646a MD |
1312 | |
1313 | health_code_update(); | |
1314 | ||
331744e3 JD |
1315 | usleep(DEFAULT_METADATA_AVAILABILITY_WAIT_TIME); |
1316 | } | |
1317 | ||
1318 | end_free: | |
1319 | free(metadata_str); | |
1320 | end: | |
1321 | return ret_code; | |
1322 | } | |
1323 | ||
4cbc1a04 DG |
1324 | /* |
1325 | * Receive command from session daemon and process it. | |
1326 | * | |
1327 | * Return 1 on success else a negative value or 0. | |
1328 | */ | |
3bd1e081 MD |
1329 | int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx, |
1330 | int sock, struct pollfd *consumer_sockpoll) | |
1331 | { | |
1332 | ssize_t ret; | |
0c759fc9 | 1333 | enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS; |
3bd1e081 | 1334 | struct lttcomm_consumer_msg msg; |
ffe60014 | 1335 | struct lttng_consumer_channel *channel = NULL; |
3bd1e081 | 1336 | |
9ce5646a MD |
1337 | health_code_update(); |
1338 | ||
3bd1e081 MD |
1339 | ret = lttcomm_recv_unix_sock(sock, &msg, sizeof(msg)); |
1340 | if (ret != sizeof(msg)) { | |
173af62f DG |
1341 | DBG("Consumer received unexpected message size %zd (expects %zu)", |
1342 | ret, sizeof(msg)); | |
3be74084 DG |
1343 | /* |
1344 | * The ret value might 0 meaning an orderly shutdown but this is ok | |
1345 | * since the caller handles this. | |
1346 | */ | |
489f70e9 | 1347 | if (ret > 0) { |
c6857fcf | 1348 | lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD); |
489f70e9 MD |
1349 | ret = -1; |
1350 | } | |
3bd1e081 MD |
1351 | return ret; |
1352 | } | |
9ce5646a MD |
1353 | |
1354 | health_code_update(); | |
1355 | ||
84382d49 MD |
1356 | /* deprecated */ |
1357 | assert(msg.cmd_type != LTTNG_CONSUMER_STOP); | |
3bd1e081 | 1358 | |
9ce5646a MD |
1359 | health_code_update(); |
1360 | ||
3f8e211f | 1361 | /* relayd needs RCU read-side lock */ |
b0b335c8 MD |
1362 | rcu_read_lock(); |
1363 | ||
3bd1e081 | 1364 | switch (msg.cmd_type) { |
00e2e675 DG |
1365 | case LTTNG_CONSUMER_ADD_RELAYD_SOCKET: |
1366 | { | |
f50f23d9 | 1367 | /* Session daemon status message are handled in the following call. */ |
2527bf85 | 1368 | consumer_add_relayd_socket(msg.u.relayd_sock.net_index, |
7735ef9e | 1369 | msg.u.relayd_sock.type, ctx, sock, consumer_sockpoll, |
d3e2ba59 JD |
1370 | &msg.u.relayd_sock.sock, msg.u.relayd_sock.session_id, |
1371 | msg.u.relayd_sock.relayd_session_id); | |
00e2e675 DG |
1372 | goto end_nosignal; |
1373 | } | |
173af62f DG |
1374 | case LTTNG_CONSUMER_DESTROY_RELAYD: |
1375 | { | |
a6ba4fe1 | 1376 | uint64_t index = msg.u.destroy_relayd.net_seq_idx; |
173af62f DG |
1377 | struct consumer_relayd_sock_pair *relayd; |
1378 | ||
a6ba4fe1 | 1379 | DBG("UST consumer destroying relayd %" PRIu64, index); |
173af62f DG |
1380 | |
1381 | /* Get relayd reference if exists. */ | |
a6ba4fe1 | 1382 | relayd = consumer_find_relayd(index); |
173af62f | 1383 | if (relayd == NULL) { |
3448e266 | 1384 | DBG("Unable to find relayd %" PRIu64, index); |
e462382a | 1385 | ret_code = LTTCOMM_CONSUMERD_RELAYD_FAIL; |
173af62f DG |
1386 | } |
1387 | ||
a6ba4fe1 DG |
1388 | /* |
1389 | * Each relayd socket pair has a refcount of stream attached to it | |
1390 | * which tells if the relayd is still active or not depending on the | |
1391 | * refcount value. | |
1392 | * | |
1393 | * This will set the destroy flag of the relayd object and destroy it | |
1394 | * if the refcount reaches zero when called. | |
1395 | * | |
1396 | * The destroy can happen either here or when a stream fd hangs up. | |
1397 | */ | |
f50f23d9 DG |
1398 | if (relayd) { |
1399 | consumer_flag_relayd_for_destroy(relayd); | |
1400 | } | |
1401 | ||
d88aee68 | 1402 | goto end_msg_sessiond; |
173af62f | 1403 | } |
3bd1e081 MD |
1404 | case LTTNG_CONSUMER_UPDATE_STREAM: |
1405 | { | |
3f8e211f | 1406 | rcu_read_unlock(); |
7ad0a0cb | 1407 | return -ENOSYS; |
3bd1e081 | 1408 | } |
6d805429 | 1409 | case LTTNG_CONSUMER_DATA_PENDING: |
53632229 | 1410 | { |
3be74084 | 1411 | int ret, is_data_pending; |
6d805429 | 1412 | uint64_t id = msg.u.data_pending.session_id; |
ca22feea | 1413 | |
6d805429 | 1414 | DBG("UST consumer data pending command for id %" PRIu64, id); |
ca22feea | 1415 | |
3be74084 | 1416 | is_data_pending = consumer_data_pending(id); |
ca22feea DG |
1417 | |
1418 | /* Send back returned value to session daemon */ | |
3be74084 DG |
1419 | ret = lttcomm_send_unix_sock(sock, &is_data_pending, |
1420 | sizeof(is_data_pending)); | |
ca22feea | 1421 | if (ret < 0) { |
3be74084 | 1422 | DBG("Error when sending the data pending ret code: %d", ret); |
489f70e9 | 1423 | goto error_fatal; |
ca22feea | 1424 | } |
f50f23d9 DG |
1425 | |
1426 | /* | |
1427 | * No need to send back a status message since the data pending | |
1428 | * returned value is the response. | |
1429 | */ | |
ca22feea | 1430 | break; |
53632229 | 1431 | } |
ffe60014 DG |
1432 | case LTTNG_CONSUMER_ASK_CHANNEL_CREATION: |
1433 | { | |
1434 | int ret; | |
1435 | struct ustctl_consumer_channel_attr attr; | |
e5148e25 JG |
1436 | const uint64_t chunk_id = msg.u.ask_channel.chunk_id.value; |
1437 | const struct lttng_credentials buffer_credentials = { | |
1438 | .uid = msg.u.ask_channel.buffer_credentials.uid, | |
1439 | .gid = msg.u.ask_channel.buffer_credentials.gid, | |
1440 | }; | |
ffe60014 DG |
1441 | |
1442 | /* Create a plain object and reserve a channel key. */ | |
1443 | channel = allocate_channel(msg.u.ask_channel.session_id, | |
e5148e25 JG |
1444 | msg.u.ask_channel.chunk_id.is_set ? |
1445 | &chunk_id : NULL, | |
1446 | msg.u.ask_channel.pathname, | |
1447 | msg.u.ask_channel.name, | |
1448 | msg.u.ask_channel.relayd_id, | |
1449 | msg.u.ask_channel.key, | |
1624d5b7 JD |
1450 | (enum lttng_event_output) msg.u.ask_channel.output, |
1451 | msg.u.ask_channel.tracefile_size, | |
2bba9e53 | 1452 | msg.u.ask_channel.tracefile_count, |
1950109e | 1453 | msg.u.ask_channel.session_id_per_pid, |
ecc48a90 | 1454 | msg.u.ask_channel.monitor, |
d7ba1388 | 1455 | msg.u.ask_channel.live_timer_interval, |
3d071855 | 1456 | msg.u.ask_channel.root_shm_path, |
d7ba1388 | 1457 | msg.u.ask_channel.shm_path); |
ffe60014 DG |
1458 | if (!channel) { |
1459 | goto end_channel_error; | |
1460 | } | |
1461 | ||
e5148e25 JG |
1462 | LTTNG_OPTIONAL_SET(&channel->buffer_credentials, |
1463 | buffer_credentials); | |
1464 | ||
567eb353 DG |
1465 | /* |
1466 | * Assign UST application UID to the channel. This value is ignored for | |
1467 | * per PID buffers. This is specific to UST thus setting this after the | |
1468 | * allocation. | |
1469 | */ | |
1470 | channel->ust_app_uid = msg.u.ask_channel.ust_app_uid; | |
1471 | ||
ffe60014 DG |
1472 | /* Build channel attributes from received message. */ |
1473 | attr.subbuf_size = msg.u.ask_channel.subbuf_size; | |
1474 | attr.num_subbuf = msg.u.ask_channel.num_subbuf; | |
1475 | attr.overwrite = msg.u.ask_channel.overwrite; | |
1476 | attr.switch_timer_interval = msg.u.ask_channel.switch_timer_interval; | |
1477 | attr.read_timer_interval = msg.u.ask_channel.read_timer_interval; | |
7972aab2 | 1478 | attr.chan_id = msg.u.ask_channel.chan_id; |
ffe60014 | 1479 | memcpy(attr.uuid, msg.u.ask_channel.uuid, sizeof(attr.uuid)); |
491d1539 | 1480 | attr.blocking_timeout= msg.u.ask_channel.blocking_timeout; |
ffe60014 | 1481 | |
0c759fc9 DG |
1482 | /* Match channel buffer type to the UST abi. */ |
1483 | switch (msg.u.ask_channel.output) { | |
1484 | case LTTNG_EVENT_MMAP: | |
1485 | default: | |
1486 | attr.output = LTTNG_UST_MMAP; | |
1487 | break; | |
1488 | } | |
1489 | ||
ffe60014 DG |
1490 | /* Translate and save channel type. */ |
1491 | switch (msg.u.ask_channel.type) { | |
1492 | case LTTNG_UST_CHAN_PER_CPU: | |
1493 | channel->type = CONSUMER_CHANNEL_TYPE_DATA; | |
1494 | attr.type = LTTNG_UST_CHAN_PER_CPU; | |
8633d6e3 MD |
1495 | /* |
1496 | * Set refcount to 1 for owner. Below, we will | |
1497 | * pass ownership to the | |
1498 | * consumer_thread_channel_poll() thread. | |
1499 | */ | |
1500 | channel->refcount = 1; | |
ffe60014 DG |
1501 | break; |
1502 | case LTTNG_UST_CHAN_METADATA: | |
1503 | channel->type = CONSUMER_CHANNEL_TYPE_METADATA; | |
1504 | attr.type = LTTNG_UST_CHAN_METADATA; | |
1505 | break; | |
1506 | default: | |
1507 | assert(0); | |
1508 | goto error_fatal; | |
1509 | }; | |
1510 | ||
9ce5646a MD |
1511 | health_code_update(); |
1512 | ||
e5148e25 | 1513 | ret = ask_channel(ctx, channel, &attr); |
ffe60014 DG |
1514 | if (ret < 0) { |
1515 | goto end_channel_error; | |
1516 | } | |
1517 | ||
fc643247 MD |
1518 | if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) { |
1519 | ret = consumer_metadata_cache_allocate(channel); | |
1520 | if (ret < 0) { | |
1521 | ERR("Allocating metadata cache"); | |
1522 | goto end_channel_error; | |
1523 | } | |
1524 | consumer_timer_switch_start(channel, attr.switch_timer_interval); | |
1525 | attr.switch_timer_interval = 0; | |
94d49140 | 1526 | } else { |
e9404c27 JG |
1527 | int monitor_start_ret; |
1528 | ||
94d49140 JD |
1529 | consumer_timer_live_start(channel, |
1530 | msg.u.ask_channel.live_timer_interval); | |
e9404c27 JG |
1531 | monitor_start_ret = consumer_timer_monitor_start( |
1532 | channel, | |
1533 | msg.u.ask_channel.monitor_timer_interval); | |
1534 | if (monitor_start_ret < 0) { | |
1535 | ERR("Starting channel monitoring timer failed"); | |
1536 | goto end_channel_error; | |
1537 | } | |
fc643247 MD |
1538 | } |
1539 | ||
9ce5646a MD |
1540 | health_code_update(); |
1541 | ||
ffe60014 DG |
1542 | /* |
1543 | * Add the channel to the internal state AFTER all streams were created | |
1544 | * and successfully sent to session daemon. This way, all streams must | |
1545 | * be ready before this channel is visible to the threads. | |
fc643247 MD |
1546 | * If add_channel succeeds, ownership of the channel is |
1547 | * passed to consumer_thread_channel_poll(). | |
ffe60014 DG |
1548 | */ |
1549 | ret = add_channel(channel, ctx); | |
1550 | if (ret < 0) { | |
ea88ca2a MD |
1551 | if (msg.u.ask_channel.type == LTTNG_UST_CHAN_METADATA) { |
1552 | if (channel->switch_timer_enabled == 1) { | |
1553 | consumer_timer_switch_stop(channel); | |
1554 | } | |
1555 | consumer_metadata_cache_destroy(channel); | |
1556 | } | |
d3e2ba59 JD |
1557 | if (channel->live_timer_enabled == 1) { |
1558 | consumer_timer_live_stop(channel); | |
1559 | } | |
e9404c27 JG |
1560 | if (channel->monitor_timer_enabled == 1) { |
1561 | consumer_timer_monitor_stop(channel); | |
1562 | } | |
ffe60014 DG |
1563 | goto end_channel_error; |
1564 | } | |
1565 | ||
9ce5646a MD |
1566 | health_code_update(); |
1567 | ||
ffe60014 DG |
1568 | /* |
1569 | * Channel and streams are now created. Inform the session daemon that | |
1570 | * everything went well and should wait to receive the channel and | |
1571 | * streams with ustctl API. | |
1572 | */ | |
1573 | ret = consumer_send_status_channel(sock, channel); | |
1574 | if (ret < 0) { | |
1575 | /* | |
489f70e9 | 1576 | * There is probably a problem on the socket. |
ffe60014 | 1577 | */ |
489f70e9 | 1578 | goto error_fatal; |
ffe60014 DG |
1579 | } |
1580 | ||
1581 | break; | |
1582 | } | |
1583 | case LTTNG_CONSUMER_GET_CHANNEL: | |
1584 | { | |
1585 | int ret, relayd_err = 0; | |
d88aee68 | 1586 | uint64_t key = msg.u.get_channel.key; |
ffe60014 | 1587 | struct lttng_consumer_channel *channel; |
ffe60014 DG |
1588 | |
1589 | channel = consumer_find_channel(key); | |
1590 | if (!channel) { | |
8fd623e0 | 1591 | ERR("UST consumer get channel key %" PRIu64 " not found", key); |
e462382a | 1592 | ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND; |
ffe60014 DG |
1593 | goto end_msg_sessiond; |
1594 | } | |
1595 | ||
9ce5646a MD |
1596 | health_code_update(); |
1597 | ||
a3a86f35 JG |
1598 | /* Send the channel to sessiond (and relayd, if applicable). */ |
1599 | ret = send_channel_to_sessiond_and_relayd(sock, channel, ctx, | |
1600 | &relayd_err); | |
ffe60014 DG |
1601 | if (ret < 0) { |
1602 | if (relayd_err) { | |
1603 | /* | |
1604 | * We were unable to send to the relayd the stream so avoid | |
1605 | * sending back a fatal error to the thread since this is OK | |
f2a444f1 DG |
1606 | * and the consumer can continue its work. The above call |
1607 | * has sent the error status message to the sessiond. | |
ffe60014 | 1608 | */ |
f2a444f1 | 1609 | goto end_nosignal; |
ffe60014 DG |
1610 | } |
1611 | /* | |
1612 | * The communicaton was broken hence there is a bad state between | |
1613 | * the consumer and sessiond so stop everything. | |
1614 | */ | |
1615 | goto error_fatal; | |
1616 | } | |
1617 | ||
9ce5646a MD |
1618 | health_code_update(); |
1619 | ||
10a50311 JD |
1620 | /* |
1621 | * In no monitor mode, the streams ownership is kept inside the channel | |
1622 | * so don't send them to the data thread. | |
1623 | */ | |
1624 | if (!channel->monitor) { | |
1625 | goto end_msg_sessiond; | |
1626 | } | |
1627 | ||
d88aee68 DG |
1628 | ret = send_streams_to_thread(channel, ctx); |
1629 | if (ret < 0) { | |
1630 | /* | |
1631 | * If we are unable to send the stream to the thread, there is | |
1632 | * a big problem so just stop everything. | |
1633 | */ | |
1634 | goto error_fatal; | |
ffe60014 | 1635 | } |
ffe60014 DG |
1636 | /* List MUST be empty after or else it could be reused. */ |
1637 | assert(cds_list_empty(&channel->streams.head)); | |
d88aee68 DG |
1638 | goto end_msg_sessiond; |
1639 | } | |
1640 | case LTTNG_CONSUMER_DESTROY_CHANNEL: | |
1641 | { | |
1642 | uint64_t key = msg.u.destroy_channel.key; | |
d88aee68 | 1643 | |
a0cbdd2e MD |
1644 | /* |
1645 | * Only called if streams have not been sent to stream | |
1646 | * manager thread. However, channel has been sent to | |
1647 | * channel manager thread. | |
1648 | */ | |
1649 | notify_thread_del_channel(ctx, key); | |
d88aee68 | 1650 | goto end_msg_sessiond; |
ffe60014 | 1651 | } |
d88aee68 DG |
1652 | case LTTNG_CONSUMER_CLOSE_METADATA: |
1653 | { | |
1654 | int ret; | |
1655 | ||
1656 | ret = close_metadata(msg.u.close_metadata.key); | |
1657 | if (ret != 0) { | |
1658 | ret_code = ret; | |
1659 | } | |
1660 | ||
1661 | goto end_msg_sessiond; | |
1662 | } | |
7972aab2 DG |
1663 | case LTTNG_CONSUMER_FLUSH_CHANNEL: |
1664 | { | |
1665 | int ret; | |
1666 | ||
1667 | ret = flush_channel(msg.u.flush_channel.key); | |
1668 | if (ret != 0) { | |
1669 | ret_code = ret; | |
1670 | } | |
1671 | ||
1672 | goto end_msg_sessiond; | |
1673 | } | |
0dd01979 MD |
1674 | case LTTNG_CONSUMER_CLEAR_QUIESCENT_CHANNEL: |
1675 | { | |
1676 | int ret; | |
1677 | ||
1678 | ret = clear_quiescent_channel( | |
1679 | msg.u.clear_quiescent_channel.key); | |
1680 | if (ret != 0) { | |
1681 | ret_code = ret; | |
1682 | } | |
1683 | ||
1684 | goto end_msg_sessiond; | |
1685 | } | |
d88aee68 | 1686 | case LTTNG_CONSUMER_PUSH_METADATA: |
ffe60014 DG |
1687 | { |
1688 | int ret; | |
d88aee68 | 1689 | uint64_t len = msg.u.push_metadata.len; |
d88aee68 | 1690 | uint64_t key = msg.u.push_metadata.key; |
331744e3 | 1691 | uint64_t offset = msg.u.push_metadata.target_offset; |
93ec662e | 1692 | uint64_t version = msg.u.push_metadata.version; |
ffe60014 DG |
1693 | struct lttng_consumer_channel *channel; |
1694 | ||
8fd623e0 DG |
1695 | DBG("UST consumer push metadata key %" PRIu64 " of len %" PRIu64, key, |
1696 | len); | |
ffe60014 DG |
1697 | |
1698 | channel = consumer_find_channel(key); | |
1699 | if (!channel) { | |
000baf6a DG |
1700 | /* |
1701 | * This is possible if the metadata creation on the consumer side | |
1702 | * is in flight vis-a-vis a concurrent push metadata from the | |
1703 | * session daemon. Simply return that the channel failed and the | |
1704 | * session daemon will handle that message correctly considering | |
1705 | * that this race is acceptable thus the DBG() statement here. | |
1706 | */ | |
1707 | DBG("UST consumer push metadata %" PRIu64 " not found", key); | |
1708 | ret_code = LTTCOMM_CONSUMERD_CHANNEL_FAIL; | |
4a2eb0ca | 1709 | goto end_msg_sessiond; |
d88aee68 DG |
1710 | } |
1711 | ||
9ce5646a MD |
1712 | health_code_update(); |
1713 | ||
c585821b MD |
1714 | if (!len) { |
1715 | /* | |
1716 | * There is nothing to receive. We have simply | |
1717 | * checked whether the channel can be found. | |
1718 | */ | |
1719 | ret_code = LTTCOMM_CONSUMERD_SUCCESS; | |
1720 | goto end_msg_sessiond; | |
1721 | } | |
1722 | ||
d88aee68 | 1723 | /* Tell session daemon we are ready to receive the metadata. */ |
0c759fc9 | 1724 | ret = consumer_send_status_msg(sock, LTTCOMM_CONSUMERD_SUCCESS); |
ffe60014 DG |
1725 | if (ret < 0) { |
1726 | /* Somehow, the session daemon is not responding anymore. */ | |
d88aee68 DG |
1727 | goto error_fatal; |
1728 | } | |
1729 | ||
9ce5646a MD |
1730 | health_code_update(); |
1731 | ||
d88aee68 | 1732 | /* Wait for more data. */ |
9ce5646a MD |
1733 | health_poll_entry(); |
1734 | ret = lttng_consumer_poll_socket(consumer_sockpoll); | |
1735 | health_poll_exit(); | |
84382d49 | 1736 | if (ret) { |
489f70e9 | 1737 | goto error_fatal; |
d88aee68 DG |
1738 | } |
1739 | ||
9ce5646a MD |
1740 | health_code_update(); |
1741 | ||
331744e3 | 1742 | ret = lttng_ustconsumer_recv_metadata(sock, key, offset, |
93ec662e | 1743 | len, version, channel, 0, 1); |
d88aee68 | 1744 | if (ret < 0) { |
331744e3 | 1745 | /* error receiving from sessiond */ |
489f70e9 | 1746 | goto error_fatal; |
331744e3 JD |
1747 | } else { |
1748 | ret_code = ret; | |
d88aee68 DG |
1749 | goto end_msg_sessiond; |
1750 | } | |
d88aee68 DG |
1751 | } |
1752 | case LTTNG_CONSUMER_SETUP_METADATA: | |
1753 | { | |
1754 | int ret; | |
1755 | ||
1756 | ret = setup_metadata(ctx, msg.u.setup_metadata.key); | |
1757 | if (ret) { | |
1758 | ret_code = ret; | |
1759 | } | |
1760 | goto end_msg_sessiond; | |
ffe60014 | 1761 | } |
6dc3064a DG |
1762 | case LTTNG_CONSUMER_SNAPSHOT_CHANNEL: |
1763 | { | |
b0226bd4 MD |
1764 | struct lttng_consumer_channel *channel; |
1765 | uint64_t key = msg.u.snapshot_channel.key; | |
1766 | ||
1767 | channel = consumer_find_channel(key); | |
1768 | if (!channel) { | |
1769 | DBG("UST snapshot channel not found for key %" PRIu64, key); | |
1770 | ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND; | |
10a50311 | 1771 | } else { |
b0226bd4 MD |
1772 | if (msg.u.snapshot_channel.metadata) { |
1773 | ret = snapshot_metadata(channel, key, | |
1774 | msg.u.snapshot_channel.pathname, | |
1775 | msg.u.snapshot_channel.relayd_id, | |
e5148e25 | 1776 | ctx); |
b0226bd4 MD |
1777 | if (ret < 0) { |
1778 | ERR("Snapshot metadata failed"); | |
1779 | ret_code = LTTCOMM_CONSUMERD_SNAPSHOT_FAILED; | |
1780 | } | |
1781 | } else { | |
1782 | ret = snapshot_channel(channel, key, | |
1783 | msg.u.snapshot_channel.pathname, | |
1784 | msg.u.snapshot_channel.relayd_id, | |
1785 | msg.u.snapshot_channel.nb_packets_per_stream, | |
1786 | ctx); | |
1787 | if (ret < 0) { | |
1788 | ERR("Snapshot channel failed"); | |
1789 | ret_code = LTTCOMM_CONSUMERD_SNAPSHOT_FAILED; | |
1790 | } | |
10a50311 JD |
1791 | } |
1792 | } | |
9ce5646a | 1793 | health_code_update(); |
6dc3064a DG |
1794 | ret = consumer_send_status_msg(sock, ret_code); |
1795 | if (ret < 0) { | |
1796 | /* Somehow, the session daemon is not responding anymore. */ | |
1797 | goto end_nosignal; | |
1798 | } | |
9ce5646a | 1799 | health_code_update(); |
6dc3064a DG |
1800 | break; |
1801 | } | |
fb83fe64 JD |
1802 | case LTTNG_CONSUMER_DISCARDED_EVENTS: |
1803 | { | |
beb59458 MJ |
1804 | int ret = 0; |
1805 | uint64_t discarded_events; | |
fb83fe64 JD |
1806 | struct lttng_ht_iter iter; |
1807 | struct lttng_ht *ht; | |
1808 | struct lttng_consumer_stream *stream; | |
1809 | uint64_t id = msg.u.discarded_events.session_id; | |
1810 | uint64_t key = msg.u.discarded_events.channel_key; | |
1811 | ||
1812 | DBG("UST consumer discarded events command for session id %" | |
1813 | PRIu64, id); | |
1814 | rcu_read_lock(); | |
1815 | pthread_mutex_lock(&consumer_data.lock); | |
1816 | ||
1817 | ht = consumer_data.stream_list_ht; | |
1818 | ||
1819 | /* | |
1820 | * We only need a reference to the channel, but they are not | |
1821 | * directly indexed, so we just use the first matching stream | |
1822 | * to extract the information we need, we default to 0 if not | |
1823 | * found (no events are dropped if the channel is not yet in | |
1824 | * use). | |
1825 | */ | |
beb59458 | 1826 | discarded_events = 0; |
fb83fe64 JD |
1827 | cds_lfht_for_each_entry_duplicate(ht->ht, |
1828 | ht->hash_fct(&id, lttng_ht_seed), | |
1829 | ht->match_fct, &id, | |
1830 | &iter.iter, stream, node_session_id.node) { | |
1831 | if (stream->chan->key == key) { | |
beb59458 | 1832 | discarded_events = stream->chan->discarded_events; |
fb83fe64 JD |
1833 | break; |
1834 | } | |
1835 | } | |
1836 | pthread_mutex_unlock(&consumer_data.lock); | |
1837 | rcu_read_unlock(); | |
1838 | ||
1839 | DBG("UST consumer discarded events command for session id %" | |
1840 | PRIu64 ", channel key %" PRIu64, id, key); | |
1841 | ||
1842 | health_code_update(); | |
1843 | ||
1844 | /* Send back returned value to session daemon */ | |
beb59458 | 1845 | ret = lttcomm_send_unix_sock(sock, &discarded_events, sizeof(discarded_events)); |
fb83fe64 JD |
1846 | if (ret < 0) { |
1847 | PERROR("send discarded events"); | |
1848 | goto error_fatal; | |
1849 | } | |
1850 | ||
1851 | break; | |
1852 | } | |
1853 | case LTTNG_CONSUMER_LOST_PACKETS: | |
1854 | { | |
9a06e8d4 JG |
1855 | int ret; |
1856 | uint64_t lost_packets; | |
fb83fe64 JD |
1857 | struct lttng_ht_iter iter; |
1858 | struct lttng_ht *ht; | |
1859 | struct lttng_consumer_stream *stream; | |
1860 | uint64_t id = msg.u.lost_packets.session_id; | |
1861 | uint64_t key = msg.u.lost_packets.channel_key; | |
1862 | ||
1863 | DBG("UST consumer lost packets command for session id %" | |
1864 | PRIu64, id); | |
1865 | rcu_read_lock(); | |
1866 | pthread_mutex_lock(&consumer_data.lock); | |
1867 | ||
1868 | ht = consumer_data.stream_list_ht; | |
1869 | ||
1870 | /* | |
1871 | * We only need a reference to the channel, but they are not | |
1872 | * directly indexed, so we just use the first matching stream | |
1873 | * to extract the information we need, we default to 0 if not | |
1874 | * found (no packets lost if the channel is not yet in use). | |
1875 | */ | |
9a06e8d4 | 1876 | lost_packets = 0; |
fb83fe64 JD |
1877 | cds_lfht_for_each_entry_duplicate(ht->ht, |
1878 | ht->hash_fct(&id, lttng_ht_seed), | |
1879 | ht->match_fct, &id, | |
1880 | &iter.iter, stream, node_session_id.node) { | |
1881 | if (stream->chan->key == key) { | |
9a06e8d4 | 1882 | lost_packets = stream->chan->lost_packets; |
fb83fe64 JD |
1883 | break; |
1884 | } | |
1885 | } | |
1886 | pthread_mutex_unlock(&consumer_data.lock); | |
1887 | rcu_read_unlock(); | |
1888 | ||
1889 | DBG("UST consumer lost packets command for session id %" | |
1890 | PRIu64 ", channel key %" PRIu64, id, key); | |
1891 | ||
1892 | health_code_update(); | |
1893 | ||
1894 | /* Send back returned value to session daemon */ | |
9a06e8d4 JG |
1895 | ret = lttcomm_send_unix_sock(sock, &lost_packets, |
1896 | sizeof(lost_packets)); | |
fb83fe64 JD |
1897 | if (ret < 0) { |
1898 | PERROR("send lost packets"); | |
1899 | goto error_fatal; | |
1900 | } | |
1901 | ||
1902 | break; | |
1903 | } | |
b3530820 JG |
1904 | case LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE: |
1905 | { | |
1906 | int channel_monitor_pipe; | |
1907 | ||
1908 | ret_code = LTTCOMM_CONSUMERD_SUCCESS; | |
1909 | /* Successfully received the command's type. */ | |
1910 | ret = consumer_send_status_msg(sock, ret_code); | |
1911 | if (ret < 0) { | |
1912 | goto error_fatal; | |
1913 | } | |
1914 | ||
1915 | ret = lttcomm_recv_fds_unix_sock(sock, &channel_monitor_pipe, | |
1916 | 1); | |
1917 | if (ret != sizeof(channel_monitor_pipe)) { | |
1918 | ERR("Failed to receive channel monitor pipe"); | |
1919 | goto error_fatal; | |
1920 | } | |
1921 | ||
1922 | DBG("Received channel monitor pipe (%d)", channel_monitor_pipe); | |
1923 | ret = consumer_timer_thread_set_channel_monitor_pipe( | |
1924 | channel_monitor_pipe); | |
1925 | if (!ret) { | |
1926 | int flags; | |
1927 | ||
1928 | ret_code = LTTCOMM_CONSUMERD_SUCCESS; | |
1929 | /* Set the pipe as non-blocking. */ | |
1930 | ret = fcntl(channel_monitor_pipe, F_GETFL, 0); | |
1931 | if (ret == -1) { | |
1932 | PERROR("fcntl get flags of the channel monitoring pipe"); | |
1933 | goto error_fatal; | |
1934 | } | |
1935 | flags = ret; | |
1936 | ||
1937 | ret = fcntl(channel_monitor_pipe, F_SETFL, | |
1938 | flags | O_NONBLOCK); | |
1939 | if (ret == -1) { | |
1940 | PERROR("fcntl set O_NONBLOCK flag of the channel monitoring pipe"); | |
1941 | goto error_fatal; | |
1942 | } | |
1943 | DBG("Channel monitor pipe set as non-blocking"); | |
1944 | } else { | |
1945 | ret_code = LTTCOMM_CONSUMERD_ALREADY_SET; | |
1946 | } | |
1947 | goto end_msg_sessiond; | |
1948 | } | |
b99a8d42 JD |
1949 | case LTTNG_CONSUMER_ROTATE_CHANNEL: |
1950 | { | |
e96d66b4 MD |
1951 | struct lttng_consumer_channel *channel; |
1952 | uint64_t key = msg.u.rotate_channel.key; | |
b99a8d42 | 1953 | |
e96d66b4 MD |
1954 | channel = consumer_find_channel(key); |
1955 | if (!channel) { | |
1956 | DBG("Channel %" PRIu64 " not found", key); | |
1957 | ret_code = LTTCOMM_CONSUMERD_CHAN_NOT_FOUND; | |
1958 | } else { | |
1959 | /* | |
1960 | * Sample the rotate position of all the streams in | |
1961 | * this channel. | |
1962 | */ | |
1963 | ret = lttng_consumer_rotate_channel(channel, key, | |
e96d66b4 MD |
1964 | msg.u.rotate_channel.relayd_id, |
1965 | msg.u.rotate_channel.metadata, | |
e96d66b4 MD |
1966 | ctx); |
1967 | if (ret < 0) { | |
1968 | ERR("Rotate channel failed"); | |
1969 | ret_code = LTTCOMM_CONSUMERD_ROTATION_FAIL; | |
1970 | } | |
b99a8d42 | 1971 | |
e96d66b4 MD |
1972 | health_code_update(); |
1973 | } | |
b99a8d42 JD |
1974 | ret = consumer_send_status_msg(sock, ret_code); |
1975 | if (ret < 0) { | |
1976 | /* Somehow, the session daemon is not responding anymore. */ | |
1977 | goto end_nosignal; | |
1978 | } | |
1979 | ||
1980 | /* | |
1981 | * Rotate the streams that are ready right now. | |
1982 | * FIXME: this is a second consecutive iteration over the | |
1983 | * streams in a channel, there is probably a better way to | |
1984 | * handle this, but it needs to be after the | |
1985 | * consumer_send_status_msg() call. | |
1986 | */ | |
e96d66b4 MD |
1987 | if (channel) { |
1988 | ret = lttng_consumer_rotate_ready_streams( | |
1989 | channel, key, ctx); | |
1990 | if (ret < 0) { | |
1991 | ERR("Rotate channel failed"); | |
1992 | } | |
b99a8d42 JD |
1993 | } |
1994 | break; | |
1995 | } | |
e5148e25 | 1996 | case LTTNG_CONSUMER_INIT: |
00fb02ac | 1997 | { |
e5148e25 JG |
1998 | ret_code = lttng_consumer_init_command(ctx, |
1999 | msg.u.init.sessiond_uuid); | |
d88744a4 | 2000 | health_code_update(); |
d88744a4 JD |
2001 | ret = consumer_send_status_msg(sock, ret_code); |
2002 | if (ret < 0) { | |
2003 | /* Somehow, the session daemon is not responding anymore. */ | |
2004 | goto end_nosignal; | |
2005 | } | |
2006 | break; | |
2007 | } | |
e5148e25 | 2008 | case LTTNG_CONSUMER_CREATE_TRACE_CHUNK: |
d88744a4 | 2009 | { |
e5148e25 | 2010 | const struct lttng_credentials credentials = { |
0ebdafe0 JG |
2011 | .uid = msg.u.create_trace_chunk.credentials.value.uid, |
2012 | .gid = msg.u.create_trace_chunk.credentials.value.gid, | |
e5148e25 JG |
2013 | }; |
2014 | const bool is_local_trace = | |
2015 | !msg.u.create_trace_chunk.relayd_id.is_set; | |
2016 | const uint64_t relayd_id = | |
2017 | msg.u.create_trace_chunk.relayd_id.value; | |
2018 | const char *chunk_override_name = | |
2019 | *msg.u.create_trace_chunk.override_name ? | |
2020 | msg.u.create_trace_chunk.override_name : | |
2021 | NULL; | |
2022 | LTTNG_OPTIONAL(struct lttng_directory_handle) chunk_directory_handle = | |
2023 | LTTNG_OPTIONAL_INIT; | |
d88744a4 | 2024 | |
e5148e25 JG |
2025 | /* |
2026 | * The session daemon will only provide a chunk directory file | |
2027 | * descriptor for local traces. | |
2028 | */ | |
2029 | if (is_local_trace) { | |
2030 | int chunk_dirfd; | |
19990ed5 | 2031 | |
e5148e25 JG |
2032 | /* Acnowledge the reception of the command. */ |
2033 | ret = consumer_send_status_msg(sock, | |
2034 | LTTCOMM_CONSUMERD_SUCCESS); | |
2035 | if (ret < 0) { | |
2036 | /* Somehow, the session daemon is not responding anymore. */ | |
2037 | goto end_nosignal; | |
2038 | } | |
82528808 | 2039 | |
e5148e25 JG |
2040 | ret = lttcomm_recv_fds_unix_sock(sock, &chunk_dirfd, 1); |
2041 | if (ret != sizeof(chunk_dirfd)) { | |
2042 | ERR("Failed to receive trace chunk directory file descriptor"); | |
2043 | goto error_fatal; | |
2044 | } | |
82528808 | 2045 | |
e5148e25 JG |
2046 | DBG("Received trace chunk directory fd (%d)", |
2047 | chunk_dirfd); | |
2048 | ret = lttng_directory_handle_init_from_dirfd( | |
2049 | &chunk_directory_handle.value, | |
2050 | chunk_dirfd); | |
2051 | if (ret) { | |
2052 | ERR("Failed to initialize chunk directory handle from directory file descriptor"); | |
2053 | if (close(chunk_dirfd)) { | |
2054 | PERROR("Failed to close chunk directory file descriptor"); | |
2055 | } | |
2056 | goto error_fatal; | |
2057 | } | |
2058 | chunk_directory_handle.is_set = true; | |
82528808 JG |
2059 | } |
2060 | ||
e5148e25 JG |
2061 | ret_code = lttng_consumer_create_trace_chunk( |
2062 | !is_local_trace ? &relayd_id : NULL, | |
2063 | msg.u.create_trace_chunk.session_id, | |
2064 | msg.u.create_trace_chunk.chunk_id, | |
0ebdafe0 JG |
2065 | (time_t) msg.u.create_trace_chunk |
2066 | .creation_timestamp, | |
e5148e25 | 2067 | chunk_override_name, |
0ebdafe0 JG |
2068 | msg.u.create_trace_chunk.credentials.is_set ? |
2069 | &credentials : | |
2070 | NULL, | |
e5148e25 JG |
2071 | chunk_directory_handle.is_set ? |
2072 | &chunk_directory_handle.value : | |
2073 | NULL); | |
82528808 | 2074 | |
e5148e25 JG |
2075 | if (chunk_directory_handle.is_set) { |
2076 | lttng_directory_handle_fini( | |
2077 | &chunk_directory_handle.value); | |
d88744a4 | 2078 | } |
e5148e25 | 2079 | goto end_msg_sessiond; |
00fb02ac | 2080 | } |
e5148e25 | 2081 | case LTTNG_CONSUMER_CLOSE_TRACE_CHUNK: |
a1ae2ea5 | 2082 | { |
6bbcff33 JG |
2083 | enum lttng_trace_chunk_command_type close_command = |
2084 | msg.u.close_trace_chunk.close_command.value; | |
e5148e25 JG |
2085 | const uint64_t relayd_id = |
2086 | msg.u.close_trace_chunk.relayd_id.value; | |
2087 | ||
2088 | ret_code = lttng_consumer_close_trace_chunk( | |
2089 | msg.u.close_trace_chunk.relayd_id.is_set ? | |
6bbcff33 JG |
2090 | &relayd_id : |
2091 | NULL, | |
e5148e25 JG |
2092 | msg.u.close_trace_chunk.session_id, |
2093 | msg.u.close_trace_chunk.chunk_id, | |
6bbcff33 JG |
2094 | (time_t) msg.u.close_trace_chunk.close_timestamp, |
2095 | msg.u.close_trace_chunk.close_command.is_set ? | |
2096 | &close_command : | |
2097 | NULL); | |
e5148e25 | 2098 | goto end_msg_sessiond; |
a1ae2ea5 | 2099 | } |
e5148e25 | 2100 | case LTTNG_CONSUMER_TRACE_CHUNK_EXISTS: |
fc181d72 | 2101 | { |
e5148e25 JG |
2102 | const uint64_t relayd_id = |
2103 | msg.u.trace_chunk_exists.relayd_id.value; | |
2104 | ||
2105 | ret_code = lttng_consumer_trace_chunk_exists( | |
2106 | msg.u.trace_chunk_exists.relayd_id.is_set ? | |
2107 | &relayd_id : NULL, | |
2108 | msg.u.trace_chunk_exists.session_id, | |
2109 | msg.u.trace_chunk_exists.chunk_id); | |
2110 | goto end_msg_sessiond; | |
fc181d72 | 2111 | } |
3bd1e081 MD |
2112 | default: |
2113 | break; | |
2114 | } | |
3f8e211f | 2115 | |
3bd1e081 | 2116 | end_nosignal: |
b0b335c8 | 2117 | rcu_read_unlock(); |
4cbc1a04 | 2118 | |
9ce5646a MD |
2119 | health_code_update(); |
2120 | ||
4cbc1a04 DG |
2121 | /* |
2122 | * Return 1 to indicate success since the 0 value can be a socket | |
2123 | * shutdown during the recv() or send() call. | |
2124 | */ | |
2125 | return 1; | |
ffe60014 DG |
2126 | |
2127 | end_msg_sessiond: | |
2128 | /* | |
2129 | * The returned value here is not useful since either way we'll return 1 to | |
2130 | * the caller because the session daemon socket management is done | |
2131 | * elsewhere. Returning a negative code or 0 will shutdown the consumer. | |
2132 | */ | |
489f70e9 MD |
2133 | ret = consumer_send_status_msg(sock, ret_code); |
2134 | if (ret < 0) { | |
2135 | goto error_fatal; | |
2136 | } | |
ffe60014 | 2137 | rcu_read_unlock(); |
9ce5646a MD |
2138 | |
2139 | health_code_update(); | |
2140 | ||
ffe60014 DG |
2141 | return 1; |
2142 | end_channel_error: | |
2143 | if (channel) { | |
e5148e25 | 2144 | pthread_mutex_unlock(&channel->lock); |
ffe60014 DG |
2145 | /* |
2146 | * Free channel here since no one has a reference to it. We don't | |
2147 | * free after that because a stream can store this pointer. | |
2148 | */ | |
2149 | destroy_channel(channel); | |
2150 | } | |
2151 | /* We have to send a status channel message indicating an error. */ | |
2152 | ret = consumer_send_status_channel(sock, NULL); | |
2153 | if (ret < 0) { | |
2154 | /* Stop everything if session daemon can not be notified. */ | |
2155 | goto error_fatal; | |
2156 | } | |
2157 | rcu_read_unlock(); | |
9ce5646a MD |
2158 | |
2159 | health_code_update(); | |
2160 | ||
ffe60014 DG |
2161 | return 1; |
2162 | error_fatal: | |
2163 | rcu_read_unlock(); | |
2164 | /* This will issue a consumer stop. */ | |
2165 | return -1; | |
3bd1e081 MD |
2166 | } |
2167 | ||
ffe60014 DG |
2168 | /* |
2169 | * Wrapper over the mmap() read offset from ust-ctl library. Since this can be | |
2170 | * compiled out, we isolate it in this library. | |
2171 | */ | |
2172 | int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream, | |
2173 | unsigned long *off) | |
3bd1e081 | 2174 | { |
ffe60014 DG |
2175 | assert(stream); |
2176 | assert(stream->ustream); | |
b5c5fc29 | 2177 | |
ffe60014 | 2178 | return ustctl_get_mmap_read_offset(stream->ustream, off); |
3bd1e081 MD |
2179 | } |
2180 | ||
ffe60014 DG |
2181 | /* |
2182 | * Wrapper over the mmap() read offset from ust-ctl library. Since this can be | |
2183 | * compiled out, we isolate it in this library. | |
2184 | */ | |
2185 | void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream) | |
d056b477 | 2186 | { |
ffe60014 DG |
2187 | assert(stream); |
2188 | assert(stream->ustream); | |
2189 | ||
2190 | return ustctl_get_mmap_base(stream->ustream); | |
d056b477 MD |
2191 | } |
2192 | ||
fc6d7a51 JD |
2193 | void lttng_ustctl_flush_buffer(struct lttng_consumer_stream *stream, |
2194 | int producer_active) | |
2195 | { | |
2196 | assert(stream); | |
2197 | assert(stream->ustream); | |
2198 | ||
2199 | ustctl_flush_buffer(stream->ustream, producer_active); | |
2200 | } | |
2201 | ||
ffe60014 | 2202 | /* |
e9404c27 | 2203 | * Take a snapshot for a specific stream. |
ffe60014 DG |
2204 | * |
2205 | * Returns 0 on success, < 0 on error | |
2206 | */ | |
2207 | int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream) | |
3bd1e081 | 2208 | { |
ffe60014 DG |
2209 | assert(stream); |
2210 | assert(stream->ustream); | |
2211 | ||
2212 | return ustctl_snapshot(stream->ustream); | |
3bd1e081 MD |
2213 | } |
2214 | ||
e9404c27 JG |
2215 | /* |
2216 | * Sample consumed and produced positions for a specific stream. | |
2217 | * | |
2218 | * Returns 0 on success, < 0 on error. | |
2219 | */ | |
2220 | int lttng_ustconsumer_sample_snapshot_positions( | |
2221 | struct lttng_consumer_stream *stream) | |
2222 | { | |
2223 | assert(stream); | |
2224 | assert(stream->ustream); | |
2225 | ||
2226 | return ustctl_snapshot_sample_positions(stream->ustream); | |
2227 | } | |
2228 | ||
ffe60014 DG |
2229 | /* |
2230 | * Get the produced position | |
2231 | * | |
2232 | * Returns 0 on success, < 0 on error | |
2233 | */ | |
2234 | int lttng_ustconsumer_get_produced_snapshot( | |
2235 | struct lttng_consumer_stream *stream, unsigned long *pos) | |
3bd1e081 | 2236 | { |
ffe60014 DG |
2237 | assert(stream); |
2238 | assert(stream->ustream); | |
2239 | assert(pos); | |
7a57cf92 | 2240 | |
ffe60014 DG |
2241 | return ustctl_snapshot_get_produced(stream->ustream, pos); |
2242 | } | |
7a57cf92 | 2243 | |
10a50311 JD |
2244 | /* |
2245 | * Get the consumed position | |
2246 | * | |
2247 | * Returns 0 on success, < 0 on error | |
2248 | */ | |
2249 | int lttng_ustconsumer_get_consumed_snapshot( | |
2250 | struct lttng_consumer_stream *stream, unsigned long *pos) | |
2251 | { | |
2252 | assert(stream); | |
2253 | assert(stream->ustream); | |
2254 | assert(pos); | |
2255 | ||
2256 | return ustctl_snapshot_get_consumed(stream->ustream, pos); | |
2257 | } | |
2258 | ||
84a182ce DG |
2259 | void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream *stream, |
2260 | int producer) | |
2261 | { | |
2262 | assert(stream); | |
2263 | assert(stream->ustream); | |
2264 | ||
2265 | ustctl_flush_buffer(stream->ustream, producer); | |
2266 | } | |
2267 | ||
2268 | int lttng_ustconsumer_get_current_timestamp( | |
2269 | struct lttng_consumer_stream *stream, uint64_t *ts) | |
2270 | { | |
2271 | assert(stream); | |
2272 | assert(stream->ustream); | |
2273 | assert(ts); | |
2274 | ||
2275 | return ustctl_get_current_timestamp(stream->ustream, ts); | |
2276 | } | |
2277 | ||
fb83fe64 JD |
2278 | int lttng_ustconsumer_get_sequence_number( |
2279 | struct lttng_consumer_stream *stream, uint64_t *seq) | |
2280 | { | |
2281 | assert(stream); | |
2282 | assert(stream->ustream); | |
2283 | assert(seq); | |
2284 | ||
2285 | return ustctl_get_sequence_number(stream->ustream, seq); | |
2286 | } | |
2287 | ||
ffe60014 | 2288 | /* |
0dd01979 | 2289 | * Called when the stream signals the consumer that it has hung up. |
ffe60014 DG |
2290 | */ |
2291 | void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream) | |
2292 | { | |
2293 | assert(stream); | |
2294 | assert(stream->ustream); | |
2c1dd183 | 2295 | |
0dd01979 MD |
2296 | pthread_mutex_lock(&stream->lock); |
2297 | if (!stream->quiescent) { | |
2298 | ustctl_flush_buffer(stream->ustream, 0); | |
2299 | stream->quiescent = true; | |
2300 | } | |
2301 | pthread_mutex_unlock(&stream->lock); | |
ffe60014 DG |
2302 | stream->hangup_flush_done = 1; |
2303 | } | |
ee77a7b0 | 2304 | |
ffe60014 DG |
2305 | void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan) |
2306 | { | |
4628484a MD |
2307 | int i; |
2308 | ||
ffe60014 DG |
2309 | assert(chan); |
2310 | assert(chan->uchan); | |
e5148e25 | 2311 | assert(chan->buffer_credentials.is_set); |
e316aad5 | 2312 | |
ea88ca2a MD |
2313 | if (chan->switch_timer_enabled == 1) { |
2314 | consumer_timer_switch_stop(chan); | |
2315 | } | |
4628484a MD |
2316 | for (i = 0; i < chan->nr_stream_fds; i++) { |
2317 | int ret; | |
2318 | ||
2319 | ret = close(chan->stream_fds[i]); | |
2320 | if (ret) { | |
2321 | PERROR("close"); | |
2322 | } | |
2323 | if (chan->shm_path[0]) { | |
2324 | char shm_path[PATH_MAX]; | |
2325 | ||
2326 | ret = get_stream_shm_path(shm_path, chan->shm_path, i); | |
2327 | if (ret) { | |
2328 | ERR("Cannot get stream shm path"); | |
2329 | } | |
e5148e25 JG |
2330 | ret = run_as_unlink(shm_path, |
2331 | chan->buffer_credentials.value.uid, | |
2332 | chan->buffer_credentials.value.gid); | |
4628484a | 2333 | if (ret) { |
4628484a MD |
2334 | PERROR("unlink %s", shm_path); |
2335 | } | |
2336 | } | |
2337 | } | |
3bd1e081 MD |
2338 | } |
2339 | ||
b83e03c4 MD |
2340 | void lttng_ustconsumer_free_channel(struct lttng_consumer_channel *chan) |
2341 | { | |
2342 | assert(chan); | |
2343 | assert(chan->uchan); | |
e5148e25 | 2344 | assert(chan->buffer_credentials.is_set); |
b83e03c4 MD |
2345 | |
2346 | consumer_metadata_cache_destroy(chan); | |
2347 | ustctl_destroy_channel(chan->uchan); | |
ea853771 JR |
2348 | /* Try to rmdir all directories under shm_path root. */ |
2349 | if (chan->root_shm_path[0]) { | |
602766ec | 2350 | (void) run_as_rmdir_recursive(chan->root_shm_path, |
e5148e25 JG |
2351 | chan->buffer_credentials.value.uid, |
2352 | chan->buffer_credentials.value.gid); | |
ea853771 | 2353 | } |
b83e03c4 MD |
2354 | free(chan->stream_fds); |
2355 | } | |
2356 | ||
3bd1e081 MD |
2357 | void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream) |
2358 | { | |
ffe60014 DG |
2359 | assert(stream); |
2360 | assert(stream->ustream); | |
d41f73b7 | 2361 | |
ea88ca2a MD |
2362 | if (stream->chan->switch_timer_enabled == 1) { |
2363 | consumer_timer_switch_stop(stream->chan); | |
2364 | } | |
ffe60014 DG |
2365 | ustctl_destroy_stream(stream->ustream); |
2366 | } | |
d41f73b7 | 2367 | |
6d574024 DG |
2368 | int lttng_ustconsumer_get_wakeup_fd(struct lttng_consumer_stream *stream) |
2369 | { | |
2370 | assert(stream); | |
2371 | assert(stream->ustream); | |
2372 | ||
2373 | return ustctl_stream_get_wakeup_fd(stream->ustream); | |
2374 | } | |
2375 | ||
2376 | int lttng_ustconsumer_close_wakeup_fd(struct lttng_consumer_stream *stream) | |
2377 | { | |
2378 | assert(stream); | |
2379 | assert(stream->ustream); | |
2380 | ||
2381 | return ustctl_stream_close_wakeup_fd(stream->ustream); | |
2382 | } | |
2383 | ||
309167d2 JD |
2384 | /* |
2385 | * Populate index values of a UST stream. Values are set in big endian order. | |
2386 | * | |
2387 | * Return 0 on success or else a negative value. | |
2388 | */ | |
50adc264 | 2389 | static int get_index_values(struct ctf_packet_index *index, |
309167d2 JD |
2390 | struct ustctl_consumer_stream *ustream) |
2391 | { | |
2392 | int ret; | |
2393 | ||
2394 | ret = ustctl_get_timestamp_begin(ustream, &index->timestamp_begin); | |
2395 | if (ret < 0) { | |
2396 | PERROR("ustctl_get_timestamp_begin"); | |
2397 | goto error; | |
2398 | } | |
2399 | index->timestamp_begin = htobe64(index->timestamp_begin); | |
2400 | ||
2401 | ret = ustctl_get_timestamp_end(ustream, &index->timestamp_end); | |
2402 | if (ret < 0) { | |
2403 | PERROR("ustctl_get_timestamp_end"); | |
2404 | goto error; | |
2405 | } | |
2406 | index->timestamp_end = htobe64(index->timestamp_end); | |
2407 | ||
2408 | ret = ustctl_get_events_discarded(ustream, &index->events_discarded); | |
2409 | if (ret < 0) { | |
2410 | PERROR("ustctl_get_events_discarded"); | |
2411 | goto error; | |
2412 | } | |
2413 | index->events_discarded = htobe64(index->events_discarded); | |
2414 | ||
2415 | ret = ustctl_get_content_size(ustream, &index->content_size); | |
2416 | if (ret < 0) { | |
2417 | PERROR("ustctl_get_content_size"); | |
2418 | goto error; | |
2419 | } | |
2420 | index->content_size = htobe64(index->content_size); | |
2421 | ||
2422 | ret = ustctl_get_packet_size(ustream, &index->packet_size); | |
2423 | if (ret < 0) { | |
2424 | PERROR("ustctl_get_packet_size"); | |
2425 | goto error; | |
2426 | } | |
2427 | index->packet_size = htobe64(index->packet_size); | |
2428 | ||
2429 | ret = ustctl_get_stream_id(ustream, &index->stream_id); | |
2430 | if (ret < 0) { | |
2431 | PERROR("ustctl_get_stream_id"); | |
2432 | goto error; | |
2433 | } | |
2434 | index->stream_id = htobe64(index->stream_id); | |
2435 | ||
234cd636 JD |
2436 | ret = ustctl_get_instance_id(ustream, &index->stream_instance_id); |
2437 | if (ret < 0) { | |
2438 | PERROR("ustctl_get_instance_id"); | |
2439 | goto error; | |
2440 | } | |
2441 | index->stream_instance_id = htobe64(index->stream_instance_id); | |
2442 | ||
2443 | ret = ustctl_get_sequence_number(ustream, &index->packet_seq_num); | |
2444 | if (ret < 0) { | |
2445 | PERROR("ustctl_get_sequence_number"); | |
2446 | goto error; | |
2447 | } | |
2448 | index->packet_seq_num = htobe64(index->packet_seq_num); | |
2449 | ||
309167d2 JD |
2450 | error: |
2451 | return ret; | |
2452 | } | |
2453 | ||
93ec662e JD |
2454 | static |
2455 | void metadata_stream_reset_cache(struct lttng_consumer_stream *stream, | |
2456 | struct consumer_metadata_cache *cache) | |
2457 | { | |
2458 | DBG("Metadata stream update to version %" PRIu64, | |
2459 | cache->version); | |
2460 | stream->ust_metadata_pushed = 0; | |
2461 | stream->metadata_version = cache->version; | |
2462 | stream->reset_metadata_flag = 1; | |
2463 | } | |
2464 | ||
2465 | /* | |
2466 | * Check if the version of the metadata stream and metadata cache match. | |
2467 | * If the cache got updated, reset the metadata stream. | |
2468 | * The stream lock and metadata cache lock MUST be held. | |
2469 | * Return 0 on success, a negative value on error. | |
2470 | */ | |
2471 | static | |
2472 | int metadata_stream_check_version(struct lttng_consumer_stream *stream) | |
2473 | { | |
2474 | int ret = 0; | |
2475 | struct consumer_metadata_cache *cache = stream->chan->metadata_cache; | |
2476 | ||
2477 | if (cache->version == stream->metadata_version) { | |
2478 | goto end; | |
2479 | } | |
2480 | metadata_stream_reset_cache(stream, cache); | |
2481 | ||
2482 | end: | |
2483 | return ret; | |
2484 | } | |
2485 | ||
94d49140 JD |
2486 | /* |
2487 | * Write up to one packet from the metadata cache to the channel. | |
2488 | * | |
2489 | * Returns the number of bytes pushed in the cache, or a negative value | |
2490 | * on error. | |
2491 | */ | |
2492 | static | |
2493 | int commit_one_metadata_packet(struct lttng_consumer_stream *stream) | |
2494 | { | |
2495 | ssize_t write_len; | |
2496 | int ret; | |
2497 | ||
2498 | pthread_mutex_lock(&stream->chan->metadata_cache->lock); | |
93ec662e JD |
2499 | ret = metadata_stream_check_version(stream); |
2500 | if (ret < 0) { | |
2501 | goto end; | |
2502 | } | |
c585821b | 2503 | if (stream->chan->metadata_cache->max_offset |
94d49140 JD |
2504 | == stream->ust_metadata_pushed) { |
2505 | ret = 0; | |
2506 | goto end; | |
2507 | } | |
2508 | ||
2509 | write_len = ustctl_write_one_packet_to_channel(stream->chan->uchan, | |
2510 | &stream->chan->metadata_cache->data[stream->ust_metadata_pushed], | |
c585821b | 2511 | stream->chan->metadata_cache->max_offset |
94d49140 JD |
2512 | - stream->ust_metadata_pushed); |
2513 | assert(write_len != 0); | |
2514 | if (write_len < 0) { | |
2515 | ERR("Writing one metadata packet"); | |
2516 | ret = -1; | |
2517 | goto end; | |
2518 | } | |
2519 | stream->ust_metadata_pushed += write_len; | |
2520 | ||
c585821b | 2521 | assert(stream->chan->metadata_cache->max_offset >= |
94d49140 JD |
2522 | stream->ust_metadata_pushed); |
2523 | ret = write_len; | |
2524 | ||
d367ba54 JG |
2525 | /* |
2526 | * Switch packet (but don't open the next one) on every commit of | |
2527 | * a metadata packet. Since the subbuffer is fully filled (with padding, | |
2528 | * if needed), the stream is "quiescent" after this commit. | |
2529 | */ | |
2530 | ustctl_flush_buffer(stream->ustream, 1); | |
2531 | stream->quiescent = true; | |
94d49140 JD |
2532 | end: |
2533 | pthread_mutex_unlock(&stream->chan->metadata_cache->lock); | |
2534 | return ret; | |
2535 | } | |
2536 | ||
309167d2 | 2537 | |
94d49140 JD |
2538 | /* |
2539 | * Sync metadata meaning request them to the session daemon and snapshot to the | |
2540 | * metadata thread can consumer them. | |
2541 | * | |
c585821b MD |
2542 | * Metadata stream lock is held here, but we need to release it when |
2543 | * interacting with sessiond, else we cause a deadlock with live | |
2544 | * awaiting on metadata to be pushed out. | |
94d49140 JD |
2545 | * |
2546 | * Return 0 if new metadatda is available, EAGAIN if the metadata stream | |
2547 | * is empty or a negative value on error. | |
2548 | */ | |
2549 | int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data *ctx, | |
2550 | struct lttng_consumer_stream *metadata) | |
2551 | { | |
2552 | int ret; | |
2553 | int retry = 0; | |
2554 | ||
2555 | assert(ctx); | |
2556 | assert(metadata); | |
2557 | ||
c585821b | 2558 | pthread_mutex_unlock(&metadata->lock); |
94d49140 JD |
2559 | /* |
2560 | * Request metadata from the sessiond, but don't wait for the flush | |
2561 | * because we locked the metadata thread. | |
2562 | */ | |
2563 | ret = lttng_ustconsumer_request_metadata(ctx, metadata->chan, 0, 0); | |
1caeb2eb | 2564 | pthread_mutex_lock(&metadata->lock); |
94d49140 JD |
2565 | if (ret < 0) { |
2566 | goto end; | |
2567 | } | |
2568 | ||
2569 | ret = commit_one_metadata_packet(metadata); | |
2570 | if (ret <= 0) { | |
2571 | goto end; | |
2572 | } else if (ret > 0) { | |
2573 | retry = 1; | |
2574 | } | |
2575 | ||
94d49140 JD |
2576 | ret = ustctl_snapshot(metadata->ustream); |
2577 | if (ret < 0) { | |
2578 | if (errno != EAGAIN) { | |
2579 | ERR("Sync metadata, taking UST snapshot"); | |
2580 | goto end; | |
2581 | } | |
2582 | DBG("No new metadata when syncing them."); | |
2583 | /* No new metadata, exit. */ | |
2584 | ret = ENODATA; | |
2585 | goto end; | |
2586 | } | |
2587 | ||
2588 | /* | |
2589 | * After this flush, we still need to extract metadata. | |
2590 | */ | |
2591 | if (retry) { | |
2592 | ret = EAGAIN; | |
2593 | } | |
2594 | ||
2595 | end: | |
2596 | return ret; | |
2597 | } | |
2598 | ||
02b3d176 DG |
2599 | /* |
2600 | * Return 0 on success else a negative value. | |
2601 | */ | |
2602 | static int notify_if_more_data(struct lttng_consumer_stream *stream, | |
2603 | struct lttng_consumer_local_data *ctx) | |
2604 | { | |
2605 | int ret; | |
2606 | struct ustctl_consumer_stream *ustream; | |
2607 | ||
2608 | assert(stream); | |
2609 | assert(ctx); | |
2610 | ||
2611 | ustream = stream->ustream; | |
2612 | ||
2613 | /* | |
2614 | * First, we are going to check if there is a new subbuffer available | |
2615 | * before reading the stream wait_fd. | |
2616 | */ | |
2617 | /* Get the next subbuffer */ | |
2618 | ret = ustctl_get_next_subbuf(ustream); | |
2619 | if (ret) { | |
2620 | /* No more data found, flag the stream. */ | |
2621 | stream->has_data = 0; | |
2622 | ret = 0; | |
2623 | goto end; | |
2624 | } | |
2625 | ||
5420e5db | 2626 | ret = ustctl_put_subbuf(ustream); |
02b3d176 DG |
2627 | assert(!ret); |
2628 | ||
2629 | /* This stream still has data. Flag it and wake up the data thread. */ | |
2630 | stream->has_data = 1; | |
2631 | ||
2632 | if (stream->monitor && !stream->hangup_flush_done && !ctx->has_wakeup) { | |
2633 | ssize_t writelen; | |
2634 | ||
2635 | writelen = lttng_pipe_write(ctx->consumer_wakeup_pipe, "!", 1); | |
2636 | if (writelen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) { | |
2637 | ret = writelen; | |
2638 | goto end; | |
2639 | } | |
2640 | ||
2641 | /* The wake up pipe has been notified. */ | |
2642 | ctx->has_wakeup = 1; | |
2643 | } | |
2644 | ret = 0; | |
2645 | ||
2646 | end: | |
2647 | return ret; | |
2648 | } | |
2649 | ||
fb83fe64 JD |
2650 | static |
2651 | int update_stream_stats(struct lttng_consumer_stream *stream) | |
2652 | { | |
2653 | int ret; | |
2654 | uint64_t seq, discarded; | |
2655 | ||
2656 | ret = ustctl_get_sequence_number(stream->ustream, &seq); | |
2657 | if (ret < 0) { | |
2658 | PERROR("ustctl_get_sequence_number"); | |
2659 | goto end; | |
2660 | } | |
2661 | /* | |
2662 | * Start the sequence when we extract the first packet in case we don't | |
2663 | * start at 0 (for example if a consumer is not connected to the | |
2664 | * session immediately after the beginning). | |
2665 | */ | |
2666 | if (stream->last_sequence_number == -1ULL) { | |
2667 | stream->last_sequence_number = seq; | |
2668 | } else if (seq > stream->last_sequence_number) { | |
2669 | stream->chan->lost_packets += seq - | |
2670 | stream->last_sequence_number - 1; | |
2671 | } else { | |
2672 | /* seq <= last_sequence_number */ | |
2673 | ERR("Sequence number inconsistent : prev = %" PRIu64 | |
2674 | ", current = %" PRIu64, | |
2675 | stream->last_sequence_number, seq); | |
2676 | ret = -1; | |
2677 | goto end; | |
2678 | } | |
2679 | stream->last_sequence_number = seq; | |
2680 | ||
2681 | ret = ustctl_get_events_discarded(stream->ustream, &discarded); | |
2682 | if (ret < 0) { | |
2683 | PERROR("kernctl_get_events_discarded"); | |
2684 | goto end; | |
2685 | } | |
2686 | if (discarded < stream->last_discarded_events) { | |
2687 | /* | |
83f4233d MJ |
2688 | * Overflow has occurred. We assume only one wrap-around |
2689 | * has occurred. | |
fb83fe64 JD |
2690 | */ |
2691 | stream->chan->discarded_events += | |
2692 | (1ULL << (CAA_BITS_PER_LONG - 1)) - | |
2693 | stream->last_discarded_events + discarded; | |
2694 | } else { | |
2695 | stream->chan->discarded_events += discarded - | |
2696 | stream->last_discarded_events; | |
2697 | } | |
2698 | stream->last_discarded_events = discarded; | |
2699 | ret = 0; | |
2700 | ||
2701 | end: | |
2702 | return ret; | |
2703 | } | |
2704 | ||
94d49140 JD |
2705 | /* |
2706 | * Read subbuffer from the given stream. | |
2707 | * | |
e5148e25 | 2708 | * Stream and channel locks MUST be acquired by the caller. |
94d49140 JD |
2709 | * |
2710 | * Return 0 on success else a negative value. | |
2711 | */ | |
d41f73b7 | 2712 | int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream, |
e5148e25 | 2713 | struct lttng_consumer_local_data *ctx) |
d41f73b7 | 2714 | { |
1d4dfdef | 2715 | unsigned long len, subbuf_size, padding; |
02d02e31 | 2716 | int err, write_index = 1, rotation_ret; |
d41f73b7 | 2717 | long ret = 0; |
ffe60014 | 2718 | struct ustctl_consumer_stream *ustream; |
50adc264 | 2719 | struct ctf_packet_index index; |
ffe60014 DG |
2720 | |
2721 | assert(stream); | |
2722 | assert(stream->ustream); | |
2723 | assert(ctx); | |
d41f73b7 | 2724 | |
3eb914c0 | 2725 | DBG("In UST read_subbuffer (wait_fd: %d, name: %s)", stream->wait_fd, |
ffe60014 DG |
2726 | stream->name); |
2727 | ||
2728 | /* Ease our life for what's next. */ | |
2729 | ustream = stream->ustream; | |
d41f73b7 | 2730 | |
6cd525e8 | 2731 | /* |
02b3d176 DG |
2732 | * We can consume the 1 byte written into the wait_fd by UST. Don't trigger |
2733 | * error if we cannot read this one byte (read returns 0), or if the error | |
2734 | * is EAGAIN or EWOULDBLOCK. | |
2735 | * | |
2736 | * This is only done when the stream is monitored by a thread, before the | |
2737 | * flush is done after a hangup and if the stream is not flagged with data | |
2738 | * since there might be nothing to consume in the wait fd but still have | |
2739 | * data available flagged by the consumer wake up pipe. | |
6cd525e8 | 2740 | */ |
02b3d176 DG |
2741 | if (stream->monitor && !stream->hangup_flush_done && !stream->has_data) { |
2742 | char dummy; | |
c617c0c6 MD |
2743 | ssize_t readlen; |
2744 | ||
6cd525e8 MD |
2745 | readlen = lttng_read(stream->wait_fd, &dummy, 1); |
2746 | if (readlen < 0 && errno != EAGAIN && errno != EWOULDBLOCK) { | |
effcf122 | 2747 | ret = readlen; |
02d02e31 JD |
2748 | goto error; |
2749 | } | |
2750 | } | |
2751 | ||
2752 | /* | |
2753 | * If the stream was flagged to be ready for rotation before we extract the | |
2754 | * next packet, rotate it now. | |
2755 | */ | |
2756 | if (stream->rotate_ready) { | |
2757 | DBG("Rotate stream before extracting data"); | |
e5148e25 | 2758 | rotation_ret = lttng_consumer_rotate_stream(ctx, stream); |
02d02e31 JD |
2759 | if (rotation_ret < 0) { |
2760 | ERR("Stream rotation error"); | |
2761 | ret = -1; | |
2762 | goto error; | |
effcf122 | 2763 | } |
d41f73b7 MD |
2764 | } |
2765 | ||
04ef1097 | 2766 | retry: |
d41f73b7 | 2767 | /* Get the next subbuffer */ |
ffe60014 | 2768 | err = ustctl_get_next_subbuf(ustream); |
d41f73b7 | 2769 | if (err != 0) { |
04ef1097 MD |
2770 | /* |
2771 | * Populate metadata info if the existing info has | |
2772 | * already been read. | |
2773 | */ | |
2774 | if (stream->metadata_flag) { | |
94d49140 JD |
2775 | ret = commit_one_metadata_packet(stream); |
2776 | if (ret <= 0) { | |
02d02e31 | 2777 | goto error; |
04ef1097 | 2778 | } |
04ef1097 MD |
2779 | goto retry; |
2780 | } | |
2781 | ||
1d4dfdef | 2782 | ret = err; /* ustctl_get_next_subbuf returns negative, caller expect positive. */ |
d41f73b7 MD |
2783 | /* |
2784 | * This is a debug message even for single-threaded consumer, | |
2785 | * because poll() have more relaxed criterions than get subbuf, | |
2786 | * so get_subbuf may fail for short race windows where poll() | |
2787 | * would issue wakeups. | |
2788 | */ | |
2789 | DBG("Reserving sub buffer failed (everything is normal, " | |
ffe60014 | 2790 | "it is due to concurrency) [ret: %d]", err); |
02d02e31 | 2791 | goto error; |
d41f73b7 | 2792 | } |
ffe60014 | 2793 | assert(stream->chan->output == CONSUMER_CHANNEL_MMAP); |
309167d2 | 2794 | |
1c20f0e2 | 2795 | if (!stream->metadata_flag) { |
309167d2 JD |
2796 | index.offset = htobe64(stream->out_fd_offset); |
2797 | ret = get_index_values(&index, ustream); | |
2798 | if (ret < 0) { | |
7b87473d MD |
2799 | err = ustctl_put_subbuf(ustream); |
2800 | assert(err == 0); | |
02d02e31 | 2801 | goto error; |
309167d2 | 2802 | } |
fb83fe64 JD |
2803 | |
2804 | /* Update the stream's sequence and discarded events count. */ | |
2805 | ret = update_stream_stats(stream); | |
2806 | if (ret < 0) { | |
2807 | PERROR("kernctl_get_events_discarded"); | |
7b87473d MD |
2808 | err = ustctl_put_subbuf(ustream); |
2809 | assert(err == 0); | |
02d02e31 | 2810 | goto error; |
fb83fe64 | 2811 | } |
1c20f0e2 JD |
2812 | } else { |
2813 | write_index = 0; | |
309167d2 JD |
2814 | } |
2815 | ||
1d4dfdef | 2816 | /* Get the full padded subbuffer size */ |
ffe60014 | 2817 | err = ustctl_get_padded_subbuf_size(ustream, &len); |
effcf122 | 2818 | assert(err == 0); |
1d4dfdef DG |
2819 | |
2820 | /* Get subbuffer data size (without padding) */ | |
ffe60014 | 2821 | err = ustctl_get_subbuf_size(ustream, &subbuf_size); |
1d4dfdef DG |
2822 | assert(err == 0); |
2823 | ||
2824 | /* Make sure we don't get a subbuffer size bigger than the padded */ | |
2825 | assert(len >= subbuf_size); | |
2826 | ||
2827 | padding = len - subbuf_size; | |
02d02e31 | 2828 | |
d41f73b7 | 2829 | /* write the subbuffer to the tracefile */ |
309167d2 | 2830 | ret = lttng_consumer_on_read_subbuffer_mmap(ctx, stream, subbuf_size, padding, &index); |
91dfef6e DG |
2831 | /* |
2832 | * The mmap operation should write subbuf_size amount of data when network | |
2833 | * streaming or the full padding (len) size when we are _not_ streaming. | |
2834 | */ | |
d88aee68 DG |
2835 | if ((ret != subbuf_size && stream->net_seq_idx != (uint64_t) -1ULL) || |
2836 | (ret != len && stream->net_seq_idx == (uint64_t) -1ULL)) { | |
d41f73b7 | 2837 | /* |
91dfef6e | 2838 | * Display the error but continue processing to try to release the |
c5c45efa DG |
2839 | * subbuffer. This is a DBG statement since any unexpected kill or |
2840 | * signal, the application gets unregistered, relayd gets closed or | |
2841 | * anything that affects the buffer lifetime will trigger this error. | |
2842 | * So, for the sake of the user, don't print this error since it can | |
2843 | * happen and it is OK with the code flow. | |
d41f73b7 | 2844 | */ |
c5c45efa | 2845 | DBG("Error writing to tracefile " |
8fd623e0 | 2846 | "(ret: %ld != len: %lu != subbuf_size: %lu)", |
91dfef6e | 2847 | ret, len, subbuf_size); |
309167d2 | 2848 | write_index = 0; |
d41f73b7 | 2849 | } |
ffe60014 | 2850 | err = ustctl_put_next_subbuf(ustream); |
effcf122 | 2851 | assert(err == 0); |
331744e3 | 2852 | |
02b3d176 DG |
2853 | /* |
2854 | * This will consumer the byte on the wait_fd if and only if there is not | |
2855 | * next subbuffer to be acquired. | |
2856 | */ | |
2857 | if (!stream->metadata_flag) { | |
2858 | ret = notify_if_more_data(stream, ctx); | |
2859 | if (ret < 0) { | |
02d02e31 | 2860 | goto error; |
02b3d176 DG |
2861 | } |
2862 | } | |
2863 | ||
309167d2 | 2864 | /* Write index if needed. */ |
1c20f0e2 | 2865 | if (!write_index) { |
02d02e31 | 2866 | goto rotate; |
1c20f0e2 JD |
2867 | } |
2868 | ||
94d49140 JD |
2869 | if (stream->chan->live_timer_interval && !stream->metadata_flag) { |
2870 | /* | |
2871 | * In live, block until all the metadata is sent. | |
2872 | */ | |
c585821b MD |
2873 | pthread_mutex_lock(&stream->metadata_timer_lock); |
2874 | assert(!stream->missed_metadata_flush); | |
2875 | stream->waiting_on_metadata = true; | |
2876 | pthread_mutex_unlock(&stream->metadata_timer_lock); | |
2877 | ||
94d49140 | 2878 | err = consumer_stream_sync_metadata(ctx, stream->session_id); |
c585821b MD |
2879 | |
2880 | pthread_mutex_lock(&stream->metadata_timer_lock); | |
2881 | stream->waiting_on_metadata = false; | |
2882 | if (stream->missed_metadata_flush) { | |
2883 | stream->missed_metadata_flush = false; | |
2884 | pthread_mutex_unlock(&stream->metadata_timer_lock); | |
2885 | (void) consumer_flush_ust_index(stream); | |
2886 | } else { | |
2887 | pthread_mutex_unlock(&stream->metadata_timer_lock); | |
2888 | } | |
2889 | ||
94d49140 | 2890 | if (err < 0) { |
02d02e31 | 2891 | goto error; |
94d49140 JD |
2892 | } |
2893 | } | |
2894 | ||
1c20f0e2 JD |
2895 | assert(!stream->metadata_flag); |
2896 | err = consumer_stream_write_index(stream, &index); | |
2897 | if (err < 0) { | |
02d02e31 | 2898 | goto error; |
309167d2 JD |
2899 | } |
2900 | ||
02d02e31 JD |
2901 | rotate: |
2902 | /* | |
2903 | * After extracting the packet, we check if the stream is now ready to be | |
2904 | * rotated and perform the action immediately. | |
2905 | */ | |
2906 | rotation_ret = lttng_consumer_stream_is_rotate_ready(stream); | |
2907 | if (rotation_ret == 1) { | |
e5148e25 | 2908 | rotation_ret = lttng_consumer_rotate_stream(ctx, stream); |
02d02e31 JD |
2909 | if (rotation_ret < 0) { |
2910 | ERR("Stream rotation error"); | |
2911 | ret = -1; | |
2912 | goto error; | |
2913 | } | |
2914 | } else if (rotation_ret < 0) { | |
2915 | ERR("Checking if stream is ready to rotate"); | |
2916 | ret = -1; | |
2917 | goto error; | |
2918 | } | |
2919 | error: | |
d41f73b7 MD |
2920 | return ret; |
2921 | } | |
2922 | ||
ffe60014 DG |
2923 | /* |
2924 | * Called when a stream is created. | |
fe4477ee JD |
2925 | * |
2926 | * Return 0 on success or else a negative value. | |
ffe60014 | 2927 | */ |
d41f73b7 MD |
2928 | int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream) |
2929 | { | |
fe4477ee JD |
2930 | int ret; |
2931 | ||
10a50311 JD |
2932 | assert(stream); |
2933 | ||
e5148e25 JG |
2934 | /* |
2935 | * Don't create anything if this is set for streaming or if there is | |
2936 | * no current trace chunk on the parent channel. | |
2937 | */ | |
2938 | if (stream->net_seq_idx == (uint64_t) -1ULL && stream->chan->monitor && | |
2939 | stream->chan->trace_chunk) { | |
2940 | ret = consumer_stream_create_output_files(stream, true); | |
2941 | if (ret) { | |
fe4477ee JD |
2942 | goto error; |
2943 | } | |
fe4477ee JD |
2944 | } |
2945 | ret = 0; | |
2946 | ||
2947 | error: | |
2948 | return ret; | |
d41f73b7 | 2949 | } |
ca22feea DG |
2950 | |
2951 | /* | |
2952 | * Check if data is still being extracted from the buffers for a specific | |
4e9a4686 DG |
2953 | * stream. Consumer data lock MUST be acquired before calling this function |
2954 | * and the stream lock. | |
ca22feea | 2955 | * |
6d805429 | 2956 | * Return 1 if the traced data are still getting read else 0 meaning that the |
ca22feea DG |
2957 | * data is available for trace viewer reading. |
2958 | */ | |
6d805429 | 2959 | int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream) |
ca22feea DG |
2960 | { |
2961 | int ret; | |
2962 | ||
2963 | assert(stream); | |
ffe60014 | 2964 | assert(stream->ustream); |
ca22feea | 2965 | |
6d805429 | 2966 | DBG("UST consumer checking data pending"); |
c8f59ee5 | 2967 | |
ca6b395f MD |
2968 | if (stream->endpoint_status != CONSUMER_ENDPOINT_ACTIVE) { |
2969 | ret = 0; | |
2970 | goto end; | |
2971 | } | |
2972 | ||
04ef1097 | 2973 | if (stream->chan->type == CONSUMER_CHANNEL_TYPE_METADATA) { |
e6ee4eab DG |
2974 | uint64_t contiguous, pushed; |
2975 | ||
2976 | /* Ease our life a bit. */ | |
c585821b | 2977 | contiguous = stream->chan->metadata_cache->max_offset; |
e6ee4eab DG |
2978 | pushed = stream->ust_metadata_pushed; |
2979 | ||
04ef1097 MD |
2980 | /* |
2981 | * We can simply check whether all contiguously available data | |
2982 | * has been pushed to the ring buffer, since the push operation | |
2983 | * is performed within get_next_subbuf(), and because both | |
2984 | * get_next_subbuf() and put_next_subbuf() are issued atomically | |
2985 | * thanks to the stream lock within | |
2986 | * lttng_ustconsumer_read_subbuffer(). This basically means that | |
2987 | * whetnever ust_metadata_pushed is incremented, the associated | |
2988 | * metadata has been consumed from the metadata stream. | |
2989 | */ | |
2990 | DBG("UST consumer metadata pending check: contiguous %" PRIu64 " vs pushed %" PRIu64, | |
e6ee4eab | 2991 | contiguous, pushed); |
aa01b94c | 2992 | assert(((int64_t) (contiguous - pushed)) >= 0); |
e6ee4eab | 2993 | if ((contiguous != pushed) || |
6acdf328 | 2994 | (((int64_t) contiguous - pushed) > 0 || contiguous == 0)) { |
04ef1097 MD |
2995 | ret = 1; /* Data is pending */ |
2996 | goto end; | |
2997 | } | |
2998 | } else { | |
2999 | ret = ustctl_get_next_subbuf(stream->ustream); | |
3000 | if (ret == 0) { | |
3001 | /* | |
3002 | * There is still data so let's put back this | |
3003 | * subbuffer. | |
3004 | */ | |
3005 | ret = ustctl_put_subbuf(stream->ustream); | |
3006 | assert(ret == 0); | |
3007 | ret = 1; /* Data is pending */ | |
3008 | goto end; | |
3009 | } | |
ca22feea DG |
3010 | } |
3011 | ||
6d805429 DG |
3012 | /* Data is NOT pending so ready to be read. */ |
3013 | ret = 0; | |
ca22feea | 3014 | |
6efae65e DG |
3015 | end: |
3016 | return ret; | |
ca22feea | 3017 | } |
d88aee68 | 3018 | |
6d574024 DG |
3019 | /* |
3020 | * Stop a given metadata channel timer if enabled and close the wait fd which | |
3021 | * is the poll pipe of the metadata stream. | |
3022 | * | |
3023 | * This MUST be called with the metadata channel acquired. | |
3024 | */ | |
3025 | void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel *metadata) | |
3026 | { | |
3027 | int ret; | |
3028 | ||
3029 | assert(metadata); | |
3030 | assert(metadata->type == CONSUMER_CHANNEL_TYPE_METADATA); | |
3031 | ||
3032 | DBG("Closing metadata channel key %" PRIu64, metadata->key); | |
3033 | ||
3034 | if (metadata->switch_timer_enabled == 1) { | |
3035 | consumer_timer_switch_stop(metadata); | |
3036 | } | |
3037 | ||
3038 | if (!metadata->metadata_stream) { | |
3039 | goto end; | |
3040 | } | |
3041 | ||
3042 | /* | |
3043 | * Closing write side so the thread monitoring the stream wakes up if any | |
3044 | * and clean the metadata stream. | |
3045 | */ | |
3046 | if (metadata->metadata_stream->ust_metadata_poll_pipe[1] >= 0) { | |
3047 | ret = close(metadata->metadata_stream->ust_metadata_poll_pipe[1]); | |
3048 | if (ret < 0) { | |
3049 | PERROR("closing metadata pipe write side"); | |
3050 | } | |
3051 | metadata->metadata_stream->ust_metadata_poll_pipe[1] = -1; | |
3052 | } | |
3053 | ||
3054 | end: | |
3055 | return; | |
3056 | } | |
3057 | ||
d88aee68 DG |
3058 | /* |
3059 | * Close every metadata stream wait fd of the metadata hash table. This | |
3060 | * function MUST be used very carefully so not to run into a race between the | |
3061 | * metadata thread handling streams and this function closing their wait fd. | |
3062 | * | |
3063 | * For UST, this is used when the session daemon hangs up. Its the metadata | |
3064 | * producer so calling this is safe because we are assured that no state change | |
3065 | * can occur in the metadata thread for the streams in the hash table. | |
3066 | */ | |
6d574024 | 3067 | void lttng_ustconsumer_close_all_metadata(struct lttng_ht *metadata_ht) |
d88aee68 | 3068 | { |
d88aee68 DG |
3069 | struct lttng_ht_iter iter; |
3070 | struct lttng_consumer_stream *stream; | |
3071 | ||
3072 | assert(metadata_ht); | |
3073 | assert(metadata_ht->ht); | |
3074 | ||
3075 | DBG("UST consumer closing all metadata streams"); | |
3076 | ||
3077 | rcu_read_lock(); | |
3078 | cds_lfht_for_each_entry(metadata_ht->ht, &iter.iter, stream, | |
3079 | node.node) { | |
9ce5646a MD |
3080 | |
3081 | health_code_update(); | |
3082 | ||
be2b50c7 | 3083 | pthread_mutex_lock(&stream->chan->lock); |
6d574024 | 3084 | lttng_ustconsumer_close_metadata(stream->chan); |
be2b50c7 DG |
3085 | pthread_mutex_unlock(&stream->chan->lock); |
3086 | ||
d88aee68 DG |
3087 | } |
3088 | rcu_read_unlock(); | |
3089 | } | |
d8ef542d MD |
3090 | |
3091 | void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream) | |
3092 | { | |
3093 | int ret; | |
3094 | ||
3095 | ret = ustctl_stream_close_wakeup_fd(stream->ustream); | |
3096 | if (ret < 0) { | |
3097 | ERR("Unable to close wakeup fd"); | |
3098 | } | |
3099 | } | |
331744e3 | 3100 | |
f666ae70 MD |
3101 | /* |
3102 | * Please refer to consumer-timer.c before adding any lock within this | |
3103 | * function or any of its callees. Timers have a very strict locking | |
3104 | * semantic with respect to teardown. Failure to respect this semantic | |
3105 | * introduces deadlocks. | |
c585821b MD |
3106 | * |
3107 | * DON'T hold the metadata lock when calling this function, else this | |
3108 | * can cause deadlock involving consumer awaiting for metadata to be | |
3109 | * pushed out due to concurrent interaction with the session daemon. | |
f666ae70 | 3110 | */ |
331744e3 | 3111 | int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx, |
94d49140 | 3112 | struct lttng_consumer_channel *channel, int timer, int wait) |
331744e3 JD |
3113 | { |
3114 | struct lttcomm_metadata_request_msg request; | |
3115 | struct lttcomm_consumer_msg msg; | |
0c759fc9 | 3116 | enum lttcomm_return_code ret_code = LTTCOMM_CONSUMERD_SUCCESS; |
93ec662e | 3117 | uint64_t len, key, offset, version; |
331744e3 JD |
3118 | int ret; |
3119 | ||
3120 | assert(channel); | |
3121 | assert(channel->metadata_cache); | |
3122 | ||
53efb85a MD |
3123 | memset(&request, 0, sizeof(request)); |
3124 | ||
331744e3 JD |
3125 | /* send the metadata request to sessiond */ |
3126 | switch (consumer_data.type) { | |
3127 | case LTTNG_CONSUMER64_UST: | |
3128 | request.bits_per_long = 64; | |
3129 | break; | |
3130 | case LTTNG_CONSUMER32_UST: | |
3131 | request.bits_per_long = 32; | |
3132 | break; | |
3133 | default: | |
3134 | request.bits_per_long = 0; | |
3135 | break; | |
3136 | } | |
3137 | ||
3138 | request.session_id = channel->session_id; | |
1950109e | 3139 | request.session_id_per_pid = channel->session_id_per_pid; |
567eb353 DG |
3140 | /* |
3141 | * Request the application UID here so the metadata of that application can | |
3142 | * be sent back. The channel UID corresponds to the user UID of the session | |
3143 | * used for the rights on the stream file(s). | |
3144 | */ | |
3145 | request.uid = channel->ust_app_uid; | |
331744e3 | 3146 | request.key = channel->key; |
567eb353 | 3147 | |
1950109e | 3148 | DBG("Sending metadata request to sessiond, session id %" PRIu64 |
3e25d926 | 3149 | ", per-pid %" PRIu64 ", app UID %u and channel key %" PRIu64, |
567eb353 DG |
3150 | request.session_id, request.session_id_per_pid, request.uid, |
3151 | request.key); | |
331744e3 | 3152 | |
75d83e50 | 3153 | pthread_mutex_lock(&ctx->metadata_socket_lock); |
9ce5646a MD |
3154 | |
3155 | health_code_update(); | |
3156 | ||
331744e3 JD |
3157 | ret = lttcomm_send_unix_sock(ctx->consumer_metadata_socket, &request, |
3158 | sizeof(request)); | |
3159 | if (ret < 0) { | |
3160 | ERR("Asking metadata to sessiond"); | |
3161 | goto end; | |
3162 | } | |
3163 | ||
9ce5646a MD |
3164 | health_code_update(); |
3165 | ||
331744e3 JD |
3166 | /* Receive the metadata from sessiond */ |
3167 | ret = lttcomm_recv_unix_sock(ctx->consumer_metadata_socket, &msg, | |
3168 | sizeof(msg)); | |
3169 | if (ret != sizeof(msg)) { | |
8fd623e0 | 3170 | DBG("Consumer received unexpected message size %d (expects %zu)", |
331744e3 JD |
3171 | ret, sizeof(msg)); |
3172 | lttng_consumer_send_error(ctx, LTTCOMM_CONSUMERD_ERROR_RECV_CMD); | |
3173 | /* | |
3174 | * The ret value might 0 meaning an orderly shutdown but this is ok | |
3175 | * since the caller handles this. | |
3176 | */ | |
3177 | goto end; | |
3178 | } | |
3179 | ||
9ce5646a MD |
3180 | health_code_update(); |
3181 | ||
331744e3 JD |
3182 | if (msg.cmd_type == LTTNG_ERR_UND) { |
3183 | /* No registry found */ | |
3184 | (void) consumer_send_status_msg(ctx->consumer_metadata_socket, | |
3185 | ret_code); | |
3186 | ret = 0; | |
3187 | goto end; | |
3188 | } else if (msg.cmd_type != LTTNG_CONSUMER_PUSH_METADATA) { | |
3189 | ERR("Unexpected cmd_type received %d", msg.cmd_type); | |
3190 | ret = -1; | |
3191 | goto end; | |
3192 | } | |
3193 | ||
3194 | len = msg.u.push_metadata.len; | |
3195 | key = msg.u.push_metadata.key; | |
3196 | offset = msg.u.push_metadata.target_offset; | |
93ec662e | 3197 | version = msg.u.push_metadata.version; |
331744e3 JD |
3198 | |
3199 | assert(key == channel->key); | |
3200 | if (len == 0) { | |
3201 | DBG("No new metadata to receive for key %" PRIu64, key); | |
3202 | } | |
3203 | ||
9ce5646a MD |
3204 | health_code_update(); |
3205 | ||
331744e3 JD |
3206 | /* Tell session daemon we are ready to receive the metadata. */ |
3207 | ret = consumer_send_status_msg(ctx->consumer_metadata_socket, | |
0c759fc9 | 3208 | LTTCOMM_CONSUMERD_SUCCESS); |
331744e3 JD |
3209 | if (ret < 0 || len == 0) { |
3210 | /* | |
3211 | * Somehow, the session daemon is not responding anymore or there is | |
3212 | * nothing to receive. | |
3213 | */ | |
3214 | goto end; | |
3215 | } | |
3216 | ||
9ce5646a MD |
3217 | health_code_update(); |
3218 | ||
1eb682be | 3219 | ret = lttng_ustconsumer_recv_metadata(ctx->consumer_metadata_socket, |
93ec662e | 3220 | key, offset, len, version, channel, timer, wait); |
1eb682be | 3221 | if (ret >= 0) { |
f2a444f1 DG |
3222 | /* |
3223 | * Only send the status msg if the sessiond is alive meaning a positive | |
3224 | * ret code. | |
3225 | */ | |
1eb682be | 3226 | (void) consumer_send_status_msg(ctx->consumer_metadata_socket, ret); |
f2a444f1 | 3227 | } |
331744e3 JD |
3228 | ret = 0; |
3229 | ||
3230 | end: | |
9ce5646a MD |
3231 | health_code_update(); |
3232 | ||
75d83e50 | 3233 | pthread_mutex_unlock(&ctx->metadata_socket_lock); |
331744e3 JD |
3234 | return ret; |
3235 | } | |
70190e1c DG |
3236 | |
3237 | /* | |
3238 | * Return the ustctl call for the get stream id. | |
3239 | */ | |
3240 | int lttng_ustconsumer_get_stream_id(struct lttng_consumer_stream *stream, | |
3241 | uint64_t *stream_id) | |
3242 | { | |
3243 | assert(stream); | |
3244 | assert(stream_id); | |
3245 | ||
3246 | return ustctl_get_stream_id(stream->ustream, stream_id); | |
3247 | } |