Add type-checked versions of allocation and deallocations functions
[lttng-tools.git] / src / bin / lttng-sessiond / consumer.cpp
CommitLineData
00e2e675 1/*
ab5be9fa
MJ
2 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
3 * Copyright (C) 2018 Jérémie Galarneau <jeremie.galarneau@efficios.com>
00e2e675 4 *
ab5be9fa 5 * SPDX-License-Identifier: GPL-2.0-only
00e2e675 6 *
00e2e675
DG
7 */
8
6c1c0768 9#define _LGPL_SOURCE
00e2e675
DG
10#include <stdio.h>
11#include <stdlib.h>
12#include <string.h>
13#include <sys/stat.h>
14#include <sys/types.h>
15#include <unistd.h>
d88aee68 16#include <inttypes.h>
00e2e675 17
c9e313bc
SM
18#include <common/common.hpp>
19#include <common/defaults.hpp>
20#include <common/uri.hpp>
21#include <common/relayd/relayd.hpp>
22#include <common/string-utils/format.hpp>
00e2e675 23
c9e313bc
SM
24#include "consumer.hpp"
25#include "health-sessiond.hpp"
26#include "ust-app.hpp"
27#include "utils.hpp"
28#include "lttng-sessiond.hpp"
00e2e675 29
3b967712
MD
30/*
31 * Return allocated full pathname of the session using the consumer trace path
32 * and subdir if available.
33 *
34 * The caller can safely free(3) the returned value. On error, NULL is
35 * returned.
36 */
37char *setup_channel_trace_path(struct consumer_output *consumer,
5da88b0f 38 const char *session_path, size_t *consumer_path_offset)
3b967712
MD
39{
40 int ret;
41 char *pathname;
42
a0377dfe
FD
43 LTTNG_ASSERT(consumer);
44 LTTNG_ASSERT(session_path);
3b967712
MD
45
46 health_code_update();
47
48 /*
49 * Allocate the string ourself to make sure we never exceed
50 * LTTNG_PATH_MAX.
51 */
64803277 52 pathname = calloc<char>(LTTNG_PATH_MAX);
3b967712
MD
53 if (!pathname) {
54 goto error;
55 }
56
57 /* Get correct path name destination */
58 if (consumer->type == CONSUMER_DST_NET &&
59 consumer->relay_major_version == 2 &&
60 consumer->relay_minor_version < 11) {
5da88b0f 61 ret = snprintf(pathname, LTTNG_PATH_MAX, "%s%s/%s/%s",
3b967712
MD
62 consumer->dst.net.base_dir,
63 consumer->chunk_path, consumer->domain_subdir,
64 session_path);
5da88b0f 65 *consumer_path_offset = 0;
3b967712 66 } else {
5da88b0f 67 ret = snprintf(pathname, LTTNG_PATH_MAX, "%s/%s",
3b967712 68 consumer->domain_subdir, session_path);
5da88b0f 69 *consumer_path_offset = strlen(consumer->domain_subdir) + 1;
3b967712
MD
70 }
71 DBG3("Consumer trace path relative to current trace chunk: \"%s\"",
72 pathname);
73 if (ret < 0) {
74 PERROR("Failed to format channel path");
75 goto error;
76 } else if (ret >= LTTNG_PATH_MAX) {
77 ERR("Truncation occurred while formatting channel path");
3b967712
MD
78 goto error;
79 }
80
81 return pathname;
82error:
83 free(pathname);
84 return NULL;
85}
86
52898cb1
DG
87/*
88 * Send a data payload using a given consumer socket of size len.
89 *
90 * The consumer socket lock MUST be acquired before calling this since this
91 * function can change the fd value.
92 *
93 * Return 0 on success else a negative value on error.
94 */
04ed9e10
JG
95int consumer_socket_send(
96 struct consumer_socket *socket, const void *msg, size_t len)
52898cb1
DG
97{
98 int fd;
99 ssize_t size;
100
a0377dfe
FD
101 LTTNG_ASSERT(socket);
102 LTTNG_ASSERT(socket->fd_ptr);
103 LTTNG_ASSERT(msg);
52898cb1
DG
104
105 /* Consumer socket is invalid. Stopping. */
9363801e 106 fd = *socket->fd_ptr;
52898cb1
DG
107 if (fd < 0) {
108 goto error;
109 }
110
111 size = lttcomm_send_unix_sock(fd, msg, len);
112 if (size < 0) {
113 /* The above call will print a PERROR on error. */
114 DBG("Error when sending data to consumer on sock %d", fd);
115 /*
92db7cdc
DG
116 * At this point, the socket is not usable anymore thus closing it and
117 * setting the file descriptor to -1 so it is not reused.
52898cb1
DG
118 */
119
120 /* This call will PERROR on error. */
121 (void) lttcomm_close_unix_sock(fd);
9363801e 122 *socket->fd_ptr = -1;
52898cb1
DG
123 goto error;
124 }
125
126 return 0;
127
128error:
129 return -1;
130}
131
132/*
133 * Receive a data payload using a given consumer socket of size len.
134 *
135 * The consumer socket lock MUST be acquired before calling this since this
136 * function can change the fd value.
137 *
138 * Return 0 on success else a negative value on error.
139 */
140int consumer_socket_recv(struct consumer_socket *socket, void *msg, size_t len)
141{
142 int fd;
143 ssize_t size;
144
a0377dfe
FD
145 LTTNG_ASSERT(socket);
146 LTTNG_ASSERT(socket->fd_ptr);
147 LTTNG_ASSERT(msg);
52898cb1
DG
148
149 /* Consumer socket is invalid. Stopping. */
9363801e 150 fd = *socket->fd_ptr;
52898cb1
DG
151 if (fd < 0) {
152 goto error;
153 }
154
155 size = lttcomm_recv_unix_sock(fd, msg, len);
156 if (size <= 0) {
157 /* The above call will print a PERROR on error. */
158 DBG("Error when receiving data from the consumer socket %d", fd);
159 /*
92db7cdc
DG
160 * At this point, the socket is not usable anymore thus closing it and
161 * setting the file descriptor to -1 so it is not reused.
52898cb1
DG
162 */
163
164 /* This call will PERROR on error. */
165 (void) lttcomm_close_unix_sock(fd);
9363801e 166 *socket->fd_ptr = -1;
52898cb1
DG
167 goto error;
168 }
169
170 return 0;
171
172error:
173 return -1;
174}
175
f50f23d9
DG
176/*
177 * Receive a reply command status message from the consumer. Consumer socket
178 * lock MUST be acquired before calling this function.
179 *
180 * Return 0 on success, -1 on recv error or a negative lttng error code which
181 * was possibly returned by the consumer.
182 */
183int consumer_recv_status_reply(struct consumer_socket *sock)
184{
185 int ret;
186 struct lttcomm_consumer_status_msg reply;
187
a0377dfe 188 LTTNG_ASSERT(sock);
f50f23d9 189
52898cb1
DG
190 ret = consumer_socket_recv(sock, &reply, sizeof(reply));
191 if (ret < 0) {
f50f23d9
DG
192 goto end;
193 }
194
0c759fc9 195 if (reply.ret_code == LTTCOMM_CONSUMERD_SUCCESS) {
f50f23d9
DG
196 /* All good. */
197 ret = 0;
198 } else {
199 ret = -reply.ret_code;
ffe60014 200 DBG("Consumer ret code %d", ret);
f50f23d9
DG
201 }
202
203end:
204 return ret;
205}
206
ffe60014
DG
207/*
208 * Once the ASK_CHANNEL command is sent to the consumer, the channel
209 * information are sent back. This call receives that data and populates key
210 * and stream_count.
211 *
212 * On success return 0 and both key and stream_count are set. On error, a
213 * negative value is sent back and both parameters are untouched.
214 */
215int consumer_recv_status_channel(struct consumer_socket *sock,
d88aee68 216 uint64_t *key, unsigned int *stream_count)
ffe60014
DG
217{
218 int ret;
219 struct lttcomm_consumer_status_channel reply;
220
a0377dfe
FD
221 LTTNG_ASSERT(sock);
222 LTTNG_ASSERT(stream_count);
223 LTTNG_ASSERT(key);
ffe60014 224
52898cb1
DG
225 ret = consumer_socket_recv(sock, &reply, sizeof(reply));
226 if (ret < 0) {
ffe60014
DG
227 goto end;
228 }
229
230 /* An error is possible so don't touch the key and stream_count. */
0c759fc9 231 if (reply.ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
ffe60014
DG
232 ret = -1;
233 goto end;
234 }
235
236 *key = reply.key;
237 *stream_count = reply.stream_count;
0c759fc9 238 ret = 0;
ffe60014
DG
239
240end:
241 return ret;
242}
243
2f77fc4b
DG
244/*
245 * Send destroy relayd command to consumer.
246 *
247 * On success return positive value. On error, negative value.
248 */
249int consumer_send_destroy_relayd(struct consumer_socket *sock,
250 struct consumer_output *consumer)
251{
252 int ret;
253 struct lttcomm_consumer_msg msg;
254
a0377dfe
FD
255 LTTNG_ASSERT(consumer);
256 LTTNG_ASSERT(sock);
2f77fc4b 257
9363801e 258 DBG2("Sending destroy relayd command to consumer sock %d", *sock->fd_ptr);
2f77fc4b 259
53efb85a 260 memset(&msg, 0, sizeof(msg));
2f77fc4b
DG
261 msg.cmd_type = LTTNG_CONSUMER_DESTROY_RELAYD;
262 msg.u.destroy_relayd.net_seq_idx = consumer->net_seq_index;
263
264 pthread_mutex_lock(sock->lock);
52898cb1 265 ret = consumer_socket_send(sock, &msg, sizeof(msg));
2f77fc4b 266 if (ret < 0) {
52898cb1 267 goto error;
2f77fc4b
DG
268 }
269
f50f23d9
DG
270 /* Don't check the return value. The caller will do it. */
271 ret = consumer_recv_status_reply(sock);
272
2f77fc4b
DG
273 DBG2("Consumer send destroy relayd command done");
274
275error:
52898cb1 276 pthread_mutex_unlock(sock->lock);
2f77fc4b
DG
277 return ret;
278}
279
280/*
281 * For each consumer socket in the consumer output object, send a destroy
282 * relayd command.
283 */
284void consumer_output_send_destroy_relayd(struct consumer_output *consumer)
285{
2f77fc4b
DG
286 struct lttng_ht_iter iter;
287 struct consumer_socket *socket;
288
a0377dfe 289 LTTNG_ASSERT(consumer);
2f77fc4b
DG
290
291 /* Destroy any relayd connection */
6dc3064a 292 if (consumer->type == CONSUMER_DST_NET) {
2f77fc4b
DG
293 rcu_read_lock();
294 cds_lfht_for_each_entry(consumer->socks->ht, &iter.iter, socket,
295 node.node) {
c617c0c6
MD
296 int ret;
297
2f77fc4b
DG
298 /* Send destroy relayd command */
299 ret = consumer_send_destroy_relayd(socket, consumer);
300 if (ret < 0) {
c5c45efa 301 DBG("Unable to send destroy relayd command to consumer");
2f77fc4b
DG
302 /* Continue since we MUST delete everything at this point. */
303 }
304 }
305 rcu_read_unlock();
306 }
307}
308
a4b92340
DG
309/*
310 * From a consumer_data structure, allocate and add a consumer socket to the
311 * consumer output.
312 *
313 * Return 0 on success, else negative value on error
314 */
315int consumer_create_socket(struct consumer_data *data,
316 struct consumer_output *output)
317{
318 int ret = 0;
319 struct consumer_socket *socket;
320
a0377dfe 321 LTTNG_ASSERT(data);
a4b92340
DG
322
323 if (output == NULL || data->cmd_sock < 0) {
324 /*
325 * Not an error. Possible there is simply not spawned consumer or it's
326 * disabled for the tracing session asking the socket.
327 */
328 goto error;
329 }
330
331 rcu_read_lock();
332 socket = consumer_find_socket(data->cmd_sock, output);
333 rcu_read_unlock();
334 if (socket == NULL) {
4ce514c4 335 socket = consumer_allocate_socket(&data->cmd_sock);
a4b92340
DG
336 if (socket == NULL) {
337 ret = -1;
338 goto error;
339 }
340
2f77fc4b 341 socket->registered = 0;
a4b92340
DG
342 socket->lock = &data->lock;
343 rcu_read_lock();
344 consumer_add_socket(socket, output);
345 rcu_read_unlock();
346 }
347
6dc3064a
DG
348 socket->type = data->type;
349
a4b92340
DG
350 DBG3("Consumer socket created (fd: %d) and added to output",
351 data->cmd_sock);
352
353error:
354 return ret;
355}
356
7972aab2
DG
357/*
358 * Return the consumer socket from the given consumer output with the right
359 * bitness. On error, returns NULL.
360 *
361 * The caller MUST acquire a rcu read side lock and keep it until the socket
362 * object reference is not needed anymore.
363 */
364struct consumer_socket *consumer_find_socket_by_bitness(int bits,
348a81dc 365 const struct consumer_output *consumer)
7972aab2
DG
366{
367 int consumer_fd;
368 struct consumer_socket *socket = NULL;
369
48b7cdc2
FD
370 ASSERT_RCU_READ_LOCKED();
371
7972aab2
DG
372 switch (bits) {
373 case 64:
412d7227 374 consumer_fd = uatomic_read(&the_ust_consumerd64_fd);
7972aab2
DG
375 break;
376 case 32:
412d7227 377 consumer_fd = uatomic_read(&the_ust_consumerd32_fd);
7972aab2
DG
378 break;
379 default:
a0377dfe 380 abort();
7972aab2
DG
381 goto end;
382 }
383
384 socket = consumer_find_socket(consumer_fd, consumer);
385 if (!socket) {
386 ERR("Consumer socket fd %d not found in consumer obj %p",
387 consumer_fd, consumer);
388 }
389
390end:
391 return socket;
392}
393
173af62f
DG
394/*
395 * Find a consumer_socket in a consumer_output hashtable. Read side lock must
396 * be acquired before calling this function and across use of the
397 * returned consumer_socket.
398 */
399struct consumer_socket *consumer_find_socket(int key,
348a81dc 400 const struct consumer_output *consumer)
173af62f
DG
401{
402 struct lttng_ht_iter iter;
403 struct lttng_ht_node_ulong *node;
404 struct consumer_socket *socket = NULL;
405
48b7cdc2
FD
406 ASSERT_RCU_READ_LOCKED();
407
173af62f 408 /* Negative keys are lookup failures */
a4b92340 409 if (key < 0 || consumer == NULL) {
173af62f
DG
410 return NULL;
411 }
412
413 lttng_ht_lookup(consumer->socks, (void *)((unsigned long) key),
414 &iter);
415 node = lttng_ht_iter_get_node_ulong(&iter);
416 if (node != NULL) {
417 socket = caa_container_of(node, struct consumer_socket, node);
418 }
419
420 return socket;
421}
422
423/*
424 * Allocate a new consumer_socket and return the pointer.
425 */
4ce514c4 426struct consumer_socket *consumer_allocate_socket(int *fd)
173af62f
DG
427{
428 struct consumer_socket *socket = NULL;
429
a0377dfe 430 LTTNG_ASSERT(fd);
4ce514c4 431
64803277 432 socket = zmalloc<consumer_socket>();
173af62f
DG
433 if (socket == NULL) {
434 PERROR("zmalloc consumer socket");
435 goto error;
436 }
437
9363801e 438 socket->fd_ptr = fd;
4ce514c4 439 lttng_ht_node_init_ulong(&socket->node, *fd);
173af62f
DG
440
441error:
442 return socket;
443}
444
445/*
446 * Add consumer socket to consumer output object. Read side lock must be
447 * acquired before calling this function.
448 */
449void consumer_add_socket(struct consumer_socket *sock,
450 struct consumer_output *consumer)
451{
a0377dfe
FD
452 LTTNG_ASSERT(sock);
453 LTTNG_ASSERT(consumer);
48b7cdc2 454 ASSERT_RCU_READ_LOCKED();
173af62f
DG
455
456 lttng_ht_add_unique_ulong(consumer->socks, &sock->node);
457}
458
459/*
348a81dc 460 * Delete consumer socket to consumer output object. Read side lock must be
173af62f
DG
461 * acquired before calling this function.
462 */
463void consumer_del_socket(struct consumer_socket *sock,
464 struct consumer_output *consumer)
465{
466 int ret;
467 struct lttng_ht_iter iter;
468
a0377dfe
FD
469 LTTNG_ASSERT(sock);
470 LTTNG_ASSERT(consumer);
48b7cdc2 471 ASSERT_RCU_READ_LOCKED();
173af62f
DG
472
473 iter.iter.node = &sock->node.node;
474 ret = lttng_ht_del(consumer->socks, &iter);
a0377dfe 475 LTTNG_ASSERT(!ret);
173af62f
DG
476}
477
478/*
479 * RCU destroy call function.
480 */
481static void destroy_socket_rcu(struct rcu_head *head)
482{
483 struct lttng_ht_node_ulong *node =
484 caa_container_of(head, struct lttng_ht_node_ulong, head);
485 struct consumer_socket *socket =
486 caa_container_of(node, struct consumer_socket, node);
487
488 free(socket);
489}
490
491/*
48b7cdc2
FD
492 * Destroy and free socket pointer in a call RCU. The call must either:
493 * - have acquired the read side lock before calling this function, or
494 * - guarantee the validity of the `struct consumer_socket` object for the
495 * duration of the call.
173af62f
DG
496 */
497void consumer_destroy_socket(struct consumer_socket *sock)
498{
a0377dfe 499 LTTNG_ASSERT(sock);
173af62f
DG
500
501 /*
502 * We DO NOT close the file descriptor here since it is global to the
2f77fc4b
DG
503 * session daemon and is closed only if the consumer dies or a custom
504 * consumer was registered,
173af62f 505 */
2f77fc4b 506 if (sock->registered) {
9363801e
DG
507 DBG3("Consumer socket was registered. Closing fd %d", *sock->fd_ptr);
508 lttcomm_close_unix_sock(*sock->fd_ptr);
2f77fc4b 509 }
173af62f
DG
510
511 call_rcu(&sock->node.head, destroy_socket_rcu);
512}
513
00e2e675
DG
514/*
515 * Allocate and assign data to a consumer_output object.
516 *
517 * Return pointer to structure.
518 */
519struct consumer_output *consumer_create_output(enum consumer_dst_type type)
520{
521 struct consumer_output *output = NULL;
522
64803277 523 output = zmalloc<consumer_output>();
00e2e675
DG
524 if (output == NULL) {
525 PERROR("zmalloc consumer_output");
526 goto error;
527 }
528
529 /* By default, consumer output is enabled */
530 output->enabled = 1;
531 output->type = type;
d88aee68 532 output->net_seq_index = (uint64_t) -1ULL;
6addfa37 533 urcu_ref_init(&output->ref);
173af62f
DG
534
535 output->socks = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
00e2e675
DG
536
537error:
538 return output;
539}
540
af706bb7
DG
541/*
542 * Iterate over the consumer output socket hash table and destroy them. The
543 * socket file descriptor are only closed if the consumer output was
544 * registered meaning it's an external consumer.
545 */
546void consumer_destroy_output_sockets(struct consumer_output *obj)
547{
548 struct lttng_ht_iter iter;
549 struct consumer_socket *socket;
550
551 if (!obj->socks) {
552 return;
553 }
554
555 rcu_read_lock();
556 cds_lfht_for_each_entry(obj->socks->ht, &iter.iter, socket, node.node) {
557 consumer_del_socket(socket, obj);
558 consumer_destroy_socket(socket);
559 }
560 rcu_read_unlock();
561}
562
00e2e675
DG
563/*
564 * Delete the consumer_output object from the list and free the ptr.
565 */
6addfa37 566static void consumer_release_output(struct urcu_ref *ref)
00e2e675 567{
6addfa37
MD
568 struct consumer_output *obj =
569 caa_container_of(ref, struct consumer_output, ref);
00e2e675 570
af706bb7 571 consumer_destroy_output_sockets(obj);
2f77fc4b 572
af706bb7 573 if (obj->socks) {
2f77fc4b 574 /* Finally destroy HT */
3c339053 575 lttng_ht_destroy(obj->socks);
00e2e675 576 }
173af62f 577
00e2e675
DG
578 free(obj);
579}
580
6addfa37
MD
581/*
582 * Get the consumer_output object.
583 */
584void consumer_output_get(struct consumer_output *obj)
585{
586 urcu_ref_get(&obj->ref);
587}
588
589/*
590 * Put the consumer_output object.
6addfa37
MD
591 */
592void consumer_output_put(struct consumer_output *obj)
593{
594 if (!obj) {
595 return;
596 }
597 urcu_ref_put(&obj->ref, consumer_release_output);
598}
599
00e2e675
DG
600/*
601 * Copy consumer output and returned the newly allocated copy.
602 */
b178f53e 603struct consumer_output *consumer_copy_output(struct consumer_output *src)
00e2e675 604{
6dc3064a 605 int ret;
00e2e675
DG
606 struct consumer_output *output;
607
a0377dfe 608 LTTNG_ASSERT(src);
00e2e675 609
b178f53e 610 output = consumer_create_output(src->type);
00e2e675 611 if (output == NULL) {
6addfa37 612 goto end;
00e2e675 613 }
b178f53e
JG
614 output->enabled = src->enabled;
615 output->net_seq_index = src->net_seq_index;
616 memcpy(output->domain_subdir, src->domain_subdir,
617 sizeof(output->domain_subdir));
618 output->snapshot = src->snapshot;
619 output->relay_major_version = src->relay_major_version;
620 output->relay_minor_version = src->relay_minor_version;
eacb7b6f 621 output->relay_allows_clear = src->relay_allows_clear;
b178f53e
JG
622 memcpy(&output->dst, &src->dst, sizeof(output->dst));
623 ret = consumer_copy_sockets(output, src);
6dc3064a 624 if (ret < 0) {
6addfa37 625 goto error_put;
6dc3064a 626 }
6addfa37 627end:
6dc3064a
DG
628 return output;
629
6addfa37
MD
630error_put:
631 consumer_output_put(output);
6dc3064a
DG
632 return NULL;
633}
634
635/*
636 * Copy consumer sockets from src to dst.
637 *
638 * Return 0 on success or else a negative value.
639 */
640int consumer_copy_sockets(struct consumer_output *dst,
641 struct consumer_output *src)
642{
643 int ret = 0;
644 struct lttng_ht_iter iter;
645 struct consumer_socket *socket, *copy_sock;
646
a0377dfe
FD
647 LTTNG_ASSERT(dst);
648 LTTNG_ASSERT(src);
6dc3064a 649
b82c5c4d 650 rcu_read_lock();
6dc3064a
DG
651 cds_lfht_for_each_entry(src->socks->ht, &iter.iter, socket, node.node) {
652 /* Ignore socket that are already there. */
9363801e 653 copy_sock = consumer_find_socket(*socket->fd_ptr, dst);
6dc3064a
DG
654 if (copy_sock) {
655 continue;
656 }
657
173af62f 658 /* Create new socket object. */
9363801e 659 copy_sock = consumer_allocate_socket(socket->fd_ptr);
173af62f 660 if (copy_sock == NULL) {
b82c5c4d 661 rcu_read_unlock();
6dc3064a
DG
662 ret = -ENOMEM;
663 goto error;
173af62f
DG
664 }
665
09a90bcd 666 copy_sock->registered = socket->registered;
6dc3064a
DG
667 /*
668 * This is valid because this lock is shared accross all consumer
669 * object being the global lock of the consumer data structure of the
670 * session daemon.
671 */
173af62f 672 copy_sock->lock = socket->lock;
6dc3064a 673 consumer_add_socket(copy_sock, dst);
173af62f 674 }
b82c5c4d 675 rcu_read_unlock();
173af62f 676
00e2e675 677error:
6dc3064a 678 return ret;
00e2e675
DG
679}
680
681/*
b178f53e 682 * Set network URI to the consumer output.
00e2e675 683 *
ad20f474
DG
684 * Return 0 on success. Return 1 if the URI were equal. Else, negative value on
685 * error.
00e2e675 686 */
b178f53e
JG
687int consumer_set_network_uri(const struct ltt_session *session,
688 struct consumer_output *output,
00e2e675
DG
689 struct lttng_uri *uri)
690{
691 int ret;
00e2e675
DG
692 struct lttng_uri *dst_uri = NULL;
693
694 /* Code flow error safety net. */
a0377dfe
FD
695 LTTNG_ASSERT(output);
696 LTTNG_ASSERT(uri);
00e2e675
DG
697
698 switch (uri->stype) {
699 case LTTNG_STREAM_CONTROL:
b178f53e
JG
700 dst_uri = &output->dst.net.control;
701 output->dst.net.control_isset = 1;
00e2e675
DG
702 if (uri->port == 0) {
703 /* Assign default port. */
704 uri->port = DEFAULT_NETWORK_CONTROL_PORT;
a74934ba 705 } else {
b178f53e
JG
706 if (output->dst.net.data_isset && uri->port ==
707 output->dst.net.data.port) {
a74934ba
DG
708 ret = -LTTNG_ERR_INVALID;
709 goto error;
710 }
00e2e675 711 }
ad20f474 712 DBG3("Consumer control URI set with port %d", uri->port);
00e2e675
DG
713 break;
714 case LTTNG_STREAM_DATA:
b178f53e
JG
715 dst_uri = &output->dst.net.data;
716 output->dst.net.data_isset = 1;
00e2e675
DG
717 if (uri->port == 0) {
718 /* Assign default port. */
719 uri->port = DEFAULT_NETWORK_DATA_PORT;
a74934ba 720 } else {
b178f53e
JG
721 if (output->dst.net.control_isset && uri->port ==
722 output->dst.net.control.port) {
a74934ba
DG
723 ret = -LTTNG_ERR_INVALID;
724 goto error;
725 }
00e2e675 726 }
ad20f474 727 DBG3("Consumer data URI set with port %d", uri->port);
00e2e675
DG
728 break;
729 default:
730 ERR("Set network uri type unknown %d", uri->stype);
a74934ba 731 ret = -LTTNG_ERR_INVALID;
00e2e675
DG
732 goto error;
733 }
734
735 ret = uri_compare(dst_uri, uri);
736 if (!ret) {
737 /* Same URI, don't touch it and return success. */
738 DBG3("URI network compare are the same");
ad20f474 739 goto equal;
00e2e675
DG
740 }
741
742 /* URIs were not equal, replacing it. */
00e2e675 743 memcpy(dst_uri, uri, sizeof(struct lttng_uri));
b178f53e
JG
744 output->type = CONSUMER_DST_NET;
745 if (dst_uri->stype != LTTNG_STREAM_CONTROL) {
746 /* Only the control uri needs to contain the path. */
747 goto end;
748 }
00e2e675 749
b178f53e
JG
750 /*
751 * If the user has specified a subdir as part of the control
752 * URL, the session's base output directory is:
753 * /RELAYD_OUTPUT_PATH/HOSTNAME/USER_SPECIFIED_DIR
754 *
755 * Hence, the "base_dir" from which all stream files and
756 * session rotation chunks are created takes the form
757 * /HOSTNAME/USER_SPECIFIED_DIR
758 *
759 * If the user has not specified an output directory as part of
760 * the control URL, the base output directory has the form:
761 * /RELAYD_OUTPUT_PATH/HOSTNAME/SESSION_NAME-CREATION_TIME
762 *
763 * Hence, the "base_dir" from which all stream files and
764 * session rotation chunks are created takes the form
765 * /HOSTNAME/SESSION_NAME-CREATION_TIME
766 *
767 * Note that automatically generated session names already
768 * contain the session's creation time. In that case, the
769 * creation time is omitted to prevent it from being duplicated
770 * in the final directory hierarchy.
771 */
772 if (*uri->subdir) {
773 if (strstr(uri->subdir, "../")) {
774 ERR("Network URI subdirs are not allowed to walk up the path hierarchy");
775 ret = -LTTNG_ERR_INVALID;
00e2e675
DG
776 goto error;
777 }
b178f53e
JG
778 ret = snprintf(output->dst.net.base_dir,
779 sizeof(output->dst.net.base_dir),
780 "/%s/%s/", session->hostname, uri->subdir);
781 } else {
782 if (session->has_auto_generated_name) {
783 ret = snprintf(output->dst.net.base_dir,
784 sizeof(output->dst.net.base_dir),
785 "/%s/%s/", session->hostname,
786 session->name);
787 } else {
788 char session_creation_datetime[16];
789 size_t strftime_ret;
790 struct tm *timeinfo;
00e2e675 791
b178f53e
JG
792 timeinfo = localtime(&session->creation_time);
793 if (!timeinfo) {
794 ret = -LTTNG_ERR_FATAL;
795 goto error;
796 }
797 strftime_ret = strftime(session_creation_datetime,
798 sizeof(session_creation_datetime),
799 "%Y%m%d-%H%M%S", timeinfo);
800 if (strftime_ret == 0) {
801 ERR("Failed to format session creation timestamp while setting network URI");
802 ret = -LTTNG_ERR_FATAL;
803 goto error;
804 }
805 ret = snprintf(output->dst.net.base_dir,
806 sizeof(output->dst.net.base_dir),
807 "/%s/%s-%s/", session->hostname,
808 session->name,
809 session_creation_datetime);
bfc6eff0 810 }
00e2e675 811 }
b178f53e
JG
812 if (ret >= sizeof(output->dst.net.base_dir)) {
813 ret = -LTTNG_ERR_INVALID;
814 ERR("Truncation occurred while setting network output base directory");
815 goto error;
816 } else if (ret == -1) {
817 ret = -LTTNG_ERR_INVALID;
818 PERROR("Error occurred while setting network output base directory");
819 goto error;
820 }
821
822 DBG3("Consumer set network uri base_dir path %s",
823 output->dst.net.base_dir);
00e2e675 824
b178f53e 825end:
00e2e675 826 return 0;
ad20f474
DG
827equal:
828 return 1;
00e2e675 829error:
a74934ba 830 return ret;
00e2e675
DG
831}
832
833/*
834 * Send file descriptor to consumer via sock.
9a318688
JG
835 *
836 * The consumer socket lock must be held by the caller.
00e2e675 837 */
ac2f30af
JG
838int consumer_send_fds(struct consumer_socket *sock, const int *fds,
839 size_t nb_fd)
00e2e675
DG
840{
841 int ret;
842
a0377dfe
FD
843 LTTNG_ASSERT(fds);
844 LTTNG_ASSERT(sock);
845 LTTNG_ASSERT(nb_fd > 0);
846 LTTNG_ASSERT(pthread_mutex_trylock(sock->lock) == EBUSY);
00e2e675 847
9363801e 848 ret = lttcomm_send_fds_unix_sock(*sock->fd_ptr, fds, nb_fd);
00e2e675 849 if (ret < 0) {
3448e266 850 /* The above call will print a PERROR on error. */
9363801e 851 DBG("Error when sending consumer fds on sock %d", *sock->fd_ptr);
00e2e675
DG
852 goto error;
853 }
854
f50f23d9 855 ret = consumer_recv_status_reply(sock);
00e2e675
DG
856error:
857 return ret;
858}
859
ffe60014
DG
860/*
861 * Consumer send communication message structure to consumer.
9a318688
JG
862 *
863 * The consumer socket lock must be held by the caller.
ffe60014
DG
864 */
865int consumer_send_msg(struct consumer_socket *sock,
04ed9e10 866 const struct lttcomm_consumer_msg *msg)
ffe60014
DG
867{
868 int ret;
869
a0377dfe
FD
870 LTTNG_ASSERT(msg);
871 LTTNG_ASSERT(sock);
872 LTTNG_ASSERT(pthread_mutex_trylock(sock->lock) == EBUSY);
ffe60014 873
52898cb1 874 ret = consumer_socket_send(sock, msg, sizeof(struct lttcomm_consumer_msg));
ffe60014 875 if (ret < 0) {
ffe60014
DG
876 goto error;
877 }
878
879 ret = consumer_recv_status_reply(sock);
880
881error:
882 return ret;
883}
884
00e2e675
DG
885/*
886 * Consumer send channel communication message structure to consumer.
9a318688
JG
887 *
888 * The consumer socket lock must be held by the caller.
00e2e675 889 */
f50f23d9
DG
890int consumer_send_channel(struct consumer_socket *sock,
891 struct lttcomm_consumer_msg *msg)
00e2e675
DG
892{
893 int ret;
894
a0377dfe
FD
895 LTTNG_ASSERT(msg);
896 LTTNG_ASSERT(sock);
00e2e675 897
52898cb1 898 ret = consumer_send_msg(sock, msg);
00e2e675 899 if (ret < 0) {
00e2e675
DG
900 goto error;
901 }
902
903error:
904 return ret;
905}
906
ffe60014
DG
907/*
908 * Populate the given consumer msg structure with the ask_channel command
909 * information.
910 */
911void consumer_init_ask_channel_comm_msg(struct lttcomm_consumer_msg *msg,
912 uint64_t subbuf_size,
913 uint64_t num_subbuf,
914 int overwrite,
915 unsigned int switch_timer_interval,
916 unsigned int read_timer_interval,
ecc48a90 917 unsigned int live_timer_interval,
a2814ea7 918 bool is_in_live_session,
e9404c27 919 unsigned int monitor_timer_interval,
ffe60014
DG
920 int output,
921 int type,
922 uint64_t session_id,
923 const char *pathname,
924 const char *name,
d88aee68
DG
925 uint64_t relayd_id,
926 uint64_t key,
7972aab2 927 unsigned char *uuid,
1624d5b7
JD
928 uint32_t chan_id,
929 uint64_t tracefile_size,
2bba9e53 930 uint64_t tracefile_count,
1950109e 931 uint64_t session_id_per_pid,
567eb353 932 unsigned int monitor,
d7ba1388 933 uint32_t ust_app_uid,
491d1539 934 int64_t blocking_timeout,
3d071855 935 const char *root_shm_path,
e098433c 936 const char *shm_path,
1b0bebcb
JG
937 struct lttng_trace_chunk *trace_chunk,
938 const struct lttng_credentials *buffer_credentials)
ffe60014 939{
a0377dfe 940 LTTNG_ASSERT(msg);
ffe60014 941
26c468bb 942 /* Zeroed structure */
ffe60014 943 memset(msg, 0, sizeof(struct lttcomm_consumer_msg));
d2956687
JG
944 msg->u.ask_channel.buffer_credentials.uid = UINT32_MAX;
945 msg->u.ask_channel.buffer_credentials.gid = UINT32_MAX;
946
26c468bb 947 if (trace_chunk) {
d2956687
JG
948 uint64_t chunk_id;
949 enum lttng_trace_chunk_status chunk_status;
d2956687
JG
950
951 chunk_status = lttng_trace_chunk_get_id(trace_chunk, &chunk_id);
a0377dfe 952 LTTNG_ASSERT(chunk_status == LTTNG_TRACE_CHUNK_STATUS_OK);
d2956687 953 LTTNG_OPTIONAL_SET(&msg->u.ask_channel.chunk_id, chunk_id);
26c468bb 954 }
ff588497
JR
955 msg->u.ask_channel.buffer_credentials.uid =
956 lttng_credentials_get_uid(buffer_credentials);
957 msg->u.ask_channel.buffer_credentials.gid =
958 lttng_credentials_get_gid(buffer_credentials);
ffe60014
DG
959
960 msg->cmd_type = LTTNG_CONSUMER_ASK_CHANNEL_CREATION;
961 msg->u.ask_channel.subbuf_size = subbuf_size;
962 msg->u.ask_channel.num_subbuf = num_subbuf ;
963 msg->u.ask_channel.overwrite = overwrite;
964 msg->u.ask_channel.switch_timer_interval = switch_timer_interval;
965 msg->u.ask_channel.read_timer_interval = read_timer_interval;
ecc48a90 966 msg->u.ask_channel.live_timer_interval = live_timer_interval;
a2814ea7 967 msg->u.ask_channel.is_live = is_in_live_session;
e9404c27 968 msg->u.ask_channel.monitor_timer_interval = monitor_timer_interval;
ffe60014
DG
969 msg->u.ask_channel.output = output;
970 msg->u.ask_channel.type = type;
971 msg->u.ask_channel.session_id = session_id;
1950109e 972 msg->u.ask_channel.session_id_per_pid = session_id_per_pid;
ffe60014
DG
973 msg->u.ask_channel.relayd_id = relayd_id;
974 msg->u.ask_channel.key = key;
7972aab2 975 msg->u.ask_channel.chan_id = chan_id;
1624d5b7
JD
976 msg->u.ask_channel.tracefile_size = tracefile_size;
977 msg->u.ask_channel.tracefile_count = tracefile_count;
2bba9e53 978 msg->u.ask_channel.monitor = monitor;
567eb353 979 msg->u.ask_channel.ust_app_uid = ust_app_uid;
491d1539 980 msg->u.ask_channel.blocking_timeout = blocking_timeout;
ffe60014
DG
981
982 memcpy(msg->u.ask_channel.uuid, uuid, sizeof(msg->u.ask_channel.uuid));
983
10a50311
JD
984 if (pathname) {
985 strncpy(msg->u.ask_channel.pathname, pathname,
986 sizeof(msg->u.ask_channel.pathname));
987 msg->u.ask_channel.pathname[sizeof(msg->u.ask_channel.pathname)-1] = '\0';
988 }
ffe60014
DG
989
990 strncpy(msg->u.ask_channel.name, name, sizeof(msg->u.ask_channel.name));
991 msg->u.ask_channel.name[sizeof(msg->u.ask_channel.name) - 1] = '\0';
d7ba1388 992
3d071855
MD
993 if (root_shm_path) {
994 strncpy(msg->u.ask_channel.root_shm_path, root_shm_path,
995 sizeof(msg->u.ask_channel.root_shm_path));
996 msg->u.ask_channel.root_shm_path[sizeof(msg->u.ask_channel.root_shm_path) - 1] = '\0';
997 }
d7ba1388
MD
998 if (shm_path) {
999 strncpy(msg->u.ask_channel.shm_path, shm_path,
1000 sizeof(msg->u.ask_channel.shm_path));
1001 msg->u.ask_channel.shm_path[sizeof(msg->u.ask_channel.shm_path) - 1] = '\0';
1002 }
ffe60014
DG
1003}
1004
00e2e675
DG
1005/*
1006 * Init channel communication message structure.
1007 */
638e7b4e 1008void consumer_init_add_channel_comm_msg(struct lttcomm_consumer_msg *msg,
d88aee68 1009 uint64_t channel_key,
ffe60014
DG
1010 uint64_t session_id,
1011 const char *pathname,
d88aee68 1012 uint64_t relayd_id,
c30aaa51 1013 const char *name,
ffe60014
DG
1014 unsigned int nb_init_streams,
1015 enum lttng_event_output output,
1624d5b7
JD
1016 int type,
1017 uint64_t tracefile_size,
2bba9e53 1018 uint64_t tracefile_count,
ecc48a90 1019 unsigned int monitor,
e9404c27 1020 unsigned int live_timer_interval,
a2814ea7 1021 bool is_in_live_session,
d2956687
JG
1022 unsigned int monitor_timer_interval,
1023 struct lttng_trace_chunk *trace_chunk)
00e2e675 1024{
a0377dfe 1025 LTTNG_ASSERT(msg);
00e2e675 1026
00e2e675
DG
1027 /* Zeroed structure */
1028 memset(msg, 0, sizeof(struct lttcomm_consumer_msg));
1029
26c468bb 1030 if (trace_chunk) {
d2956687
JG
1031 uint64_t chunk_id;
1032 enum lttng_trace_chunk_status chunk_status;
1033
1034 chunk_status = lttng_trace_chunk_get_id(trace_chunk, &chunk_id);
a0377dfe 1035 LTTNG_ASSERT(chunk_status == LTTNG_TRACE_CHUNK_STATUS_OK);
d2956687 1036 LTTNG_OPTIONAL_SET(&msg->u.channel.chunk_id, chunk_id);
26c468bb 1037 }
d2956687 1038
00e2e675 1039 /* Send channel */
638e7b4e 1040 msg->cmd_type = LTTNG_CONSUMER_ADD_CHANNEL;
00e2e675 1041 msg->u.channel.channel_key = channel_key;
ffe60014 1042 msg->u.channel.session_id = session_id;
ffe60014 1043 msg->u.channel.relayd_id = relayd_id;
c30aaa51 1044 msg->u.channel.nb_init_streams = nb_init_streams;
ffe60014
DG
1045 msg->u.channel.output = output;
1046 msg->u.channel.type = type;
1624d5b7
JD
1047 msg->u.channel.tracefile_size = tracefile_size;
1048 msg->u.channel.tracefile_count = tracefile_count;
2bba9e53 1049 msg->u.channel.monitor = monitor;
ecc48a90 1050 msg->u.channel.live_timer_interval = live_timer_interval;
a2814ea7 1051 msg->u.channel.is_live = is_in_live_session;
e9404c27 1052 msg->u.channel.monitor_timer_interval = monitor_timer_interval;
ffe60014
DG
1053
1054 strncpy(msg->u.channel.pathname, pathname,
1055 sizeof(msg->u.channel.pathname));
1056 msg->u.channel.pathname[sizeof(msg->u.channel.pathname) - 1] = '\0';
1057
1058 strncpy(msg->u.channel.name, name, sizeof(msg->u.channel.name));
1059 msg->u.channel.name[sizeof(msg->u.channel.name) - 1] = '\0';
00e2e675
DG
1060}
1061
1062/*
1063 * Init stream communication message structure.
1064 */
e098433c 1065void consumer_init_add_stream_comm_msg(struct lttcomm_consumer_msg *msg,
d88aee68
DG
1066 uint64_t channel_key,
1067 uint64_t stream_key,
d2956687 1068 int32_t cpu)
00e2e675 1069{
a0377dfe 1070 LTTNG_ASSERT(msg);
00e2e675
DG
1071
1072 memset(msg, 0, sizeof(struct lttcomm_consumer_msg));
1073
e098433c 1074 msg->cmd_type = LTTNG_CONSUMER_ADD_STREAM;
00e2e675
DG
1075 msg->u.stream.channel_key = channel_key;
1076 msg->u.stream.stream_key = stream_key;
ffe60014 1077 msg->u.stream.cpu = cpu;
00e2e675
DG
1078}
1079
a4baae1b
JD
1080void consumer_init_streams_sent_comm_msg(struct lttcomm_consumer_msg *msg,
1081 enum lttng_consumer_command cmd,
1082 uint64_t channel_key, uint64_t net_seq_idx)
1083{
a0377dfe 1084 LTTNG_ASSERT(msg);
a4baae1b
JD
1085
1086 memset(msg, 0, sizeof(struct lttcomm_consumer_msg));
1087
1088 msg->cmd_type = cmd;
1089 msg->u.sent_streams.channel_key = channel_key;
1090 msg->u.sent_streams.net_seq_idx = net_seq_idx;
1091}
1092
00e2e675
DG
1093/*
1094 * Send stream communication structure to the consumer.
1095 */
f50f23d9
DG
1096int consumer_send_stream(struct consumer_socket *sock,
1097 struct consumer_output *dst, struct lttcomm_consumer_msg *msg,
ac2f30af 1098 const int *fds, size_t nb_fd)
00e2e675
DG
1099{
1100 int ret;
1101
a0377dfe
FD
1102 LTTNG_ASSERT(msg);
1103 LTTNG_ASSERT(dst);
1104 LTTNG_ASSERT(sock);
1105 LTTNG_ASSERT(fds);
00e2e675 1106
52898cb1 1107 ret = consumer_send_msg(sock, msg);
f50f23d9
DG
1108 if (ret < 0) {
1109 goto error;
1110 }
1111
00e2e675
DG
1112 ret = consumer_send_fds(sock, fds, nb_fd);
1113 if (ret < 0) {
1114 goto error;
1115 }
1116
1117error:
1118 return ret;
1119}
37278a1e
DG
1120
1121/*
1122 * Send relayd socket to consumer associated with a session name.
1123 *
43fade62
JG
1124 * The consumer socket lock must be held by the caller.
1125 *
37278a1e
DG
1126 * On success return positive value. On error, negative value.
1127 */
f50f23d9 1128int consumer_send_relayd_socket(struct consumer_socket *consumer_sock,
6151a90f 1129 struct lttcomm_relayd_sock *rsock, struct consumer_output *consumer,
d3e2ba59 1130 enum lttng_stream_type type, uint64_t session_id,
fb9a95c4 1131 const char *session_name, const char *hostname,
6fa5fe7c 1132 const char *base_path, int session_live_timer,
46ef2188
MD
1133 const uint64_t *current_chunk_id, time_t session_creation_time,
1134 bool session_name_contains_creation_time)
37278a1e
DG
1135{
1136 int ret;
7966af57 1137 int fd;
37278a1e
DG
1138 struct lttcomm_consumer_msg msg;
1139
1140 /* Code flow error. Safety net. */
a0377dfe
FD
1141 LTTNG_ASSERT(rsock);
1142 LTTNG_ASSERT(consumer);
1143 LTTNG_ASSERT(consumer_sock);
37278a1e 1144
53efb85a 1145 memset(&msg, 0, sizeof(msg));
37278a1e
DG
1146 /* Bail out if consumer is disabled */
1147 if (!consumer->enabled) {
f73fabfd 1148 ret = LTTNG_OK;
37278a1e
DG
1149 goto error;
1150 }
1151
d3e2ba59 1152 if (type == LTTNG_STREAM_CONTROL) {
ecd1a12f 1153 char output_path[LTTNG_PATH_MAX] = {};
07aa2e42 1154 uint64_t relayd_session_id;
ecd1a12f 1155
412d7227 1156 ret = relayd_create_session(rsock, &relayd_session_id,
6fa5fe7c 1157 session_name, hostname, base_path,
412d7227
SM
1158 session_live_timer, consumer->snapshot,
1159 session_id, the_sessiond_uuid, current_chunk_id,
46ef2188 1160 session_creation_time,
ecd1a12f
MD
1161 session_name_contains_creation_time,
1162 output_path);
d3e2ba59
JD
1163 if (ret < 0) {
1164 /* Close the control socket. */
1165 (void) relayd_close(rsock);
1166 goto error;
1167 }
07aa2e42 1168 msg.u.relayd_sock.relayd_session_id = relayd_session_id;
ecd1a12f
MD
1169 DBG("Created session on relay, output path reply: %s",
1170 output_path);
d3e2ba59
JD
1171 }
1172
37278a1e
DG
1173 msg.cmd_type = LTTNG_CONSUMER_ADD_RELAYD_SOCKET;
1174 /*
1175 * Assign network consumer output index using the temporary consumer since
1176 * this call should only be made from within a set_consumer_uri() function
1177 * call in the session daemon.
1178 */
1179 msg.u.relayd_sock.net_index = consumer->net_seq_index;
1180 msg.u.relayd_sock.type = type;
46e6455f 1181 msg.u.relayd_sock.session_id = session_id;
4222116f
JR
1182 msg.u.relayd_sock.major = rsock->major;
1183 msg.u.relayd_sock.minor = rsock->minor;
1184 msg.u.relayd_sock.relayd_socket_protocol = rsock->sock.proto;
37278a1e 1185
9363801e 1186 DBG3("Sending relayd sock info to consumer on %d", *consumer_sock->fd_ptr);
52898cb1 1187 ret = consumer_send_msg(consumer_sock, &msg);
f50f23d9
DG
1188 if (ret < 0) {
1189 goto error;
1190 }
1191
37278a1e 1192 DBG3("Sending relayd socket file descriptor to consumer");
7966af57
SM
1193 fd = rsock->sock.fd;
1194 ret = consumer_send_fds(consumer_sock, &fd, 1);
37278a1e
DG
1195 if (ret < 0) {
1196 goto error;
1197 }
1198
1199 DBG2("Consumer relayd socket sent");
1200
1201error:
1202 return ret;
1203}
173af62f 1204
62c43103
JD
1205static
1206int consumer_send_pipe(struct consumer_socket *consumer_sock,
1207 enum lttng_consumer_command cmd, int pipe)
e9404c27
JG
1208{
1209 int ret;
1210 struct lttcomm_consumer_msg msg;
62c43103
JD
1211 const char *pipe_name;
1212 const char *command_name;
1213
1214 switch (cmd) {
1215 case LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE:
1216 pipe_name = "channel monitor";
1217 command_name = "SET_CHANNEL_MONITOR_PIPE";
1218 break;
62c43103
JD
1219 default:
1220 ERR("Unexpected command received in %s (cmd = %d)", __func__,
1221 (int) cmd);
1222 abort();
1223 }
e9404c27
JG
1224
1225 /* Code flow error. Safety net. */
1226
1227 memset(&msg, 0, sizeof(msg));
62c43103 1228 msg.cmd_type = cmd;
e9404c27 1229
3e4dc117 1230 pthread_mutex_lock(consumer_sock->lock);
62c43103 1231 DBG3("Sending %s command to consumer", command_name);
e9404c27
JG
1232 ret = consumer_send_msg(consumer_sock, &msg);
1233 if (ret < 0) {
1234 goto error;
1235 }
1236
62c43103
JD
1237 DBG3("Sending %s pipe %d to consumer on socket %d",
1238 pipe_name,
e9404c27
JG
1239 pipe, *consumer_sock->fd_ptr);
1240 ret = consumer_send_fds(consumer_sock, &pipe, 1);
1241 if (ret < 0) {
1242 goto error;
1243 }
1244
62c43103 1245 DBG2("%s pipe successfully sent", pipe_name);
e9404c27 1246error:
3e4dc117 1247 pthread_mutex_unlock(consumer_sock->lock);
e9404c27
JG
1248 return ret;
1249}
1250
62c43103
JD
1251int consumer_send_channel_monitor_pipe(struct consumer_socket *consumer_sock,
1252 int pipe)
1253{
1254 return consumer_send_pipe(consumer_sock,
1255 LTTNG_CONSUMER_SET_CHANNEL_MONITOR_PIPE, pipe);
1256}
1257
806e2684 1258/*
5e280d77
MD
1259 * Ask the consumer if the data is pending for the specific session id.
1260 * Returns 1 if data is pending, 0 otherwise, or < 0 on error.
806e2684 1261 */
d88aee68 1262int consumer_is_data_pending(uint64_t session_id,
806e2684
DG
1263 struct consumer_output *consumer)
1264{
1265 int ret;
6d805429 1266 int32_t ret_code = 0; /* Default is that the data is NOT pending */
806e2684
DG
1267 struct consumer_socket *socket;
1268 struct lttng_ht_iter iter;
1269 struct lttcomm_consumer_msg msg;
1270
a0377dfe 1271 LTTNG_ASSERT(consumer);
806e2684 1272
53efb85a 1273 DBG3("Consumer data pending for id %" PRIu64, session_id);
806e2684 1274
53efb85a
MD
1275 memset(&msg, 0, sizeof(msg));
1276 msg.cmd_type = LTTNG_CONSUMER_DATA_PENDING;
d88aee68 1277 msg.u.data_pending.session_id = session_id;
806e2684 1278
c8f59ee5 1279 /* Send command for each consumer */
b82c5c4d 1280 rcu_read_lock();
806e2684
DG
1281 cds_lfht_for_each_entry(consumer->socks->ht, &iter.iter, socket,
1282 node.node) {
806e2684 1283 pthread_mutex_lock(socket->lock);
52898cb1 1284 ret = consumer_socket_send(socket, &msg, sizeof(msg));
806e2684 1285 if (ret < 0) {
806e2684 1286 pthread_mutex_unlock(socket->lock);
b82c5c4d 1287 goto error_unlock;
806e2684
DG
1288 }
1289
f50f23d9
DG
1290 /*
1291 * No need for a recv reply status because the answer to the command is
1292 * the reply status message.
1293 */
1294
52898cb1
DG
1295 ret = consumer_socket_recv(socket, &ret_code, sizeof(ret_code));
1296 if (ret < 0) {
806e2684 1297 pthread_mutex_unlock(socket->lock);
b82c5c4d 1298 goto error_unlock;
806e2684 1299 }
806e2684
DG
1300 pthread_mutex_unlock(socket->lock);
1301
6d805429 1302 if (ret_code == 1) {
806e2684
DG
1303 break;
1304 }
1305 }
b82c5c4d 1306 rcu_read_unlock();
806e2684 1307
d88aee68
DG
1308 DBG("Consumer data is %s pending for session id %" PRIu64,
1309 ret_code == 1 ? "" : "NOT", session_id);
806e2684
DG
1310 return ret_code;
1311
b82c5c4d
DG
1312error_unlock:
1313 rcu_read_unlock();
806e2684
DG
1314 return -1;
1315}
7972aab2
DG
1316
1317/*
1318 * Send a flush command to consumer using the given channel key.
1319 *
1320 * Return 0 on success else a negative value.
1321 */
1322int consumer_flush_channel(struct consumer_socket *socket, uint64_t key)
1323{
1324 int ret;
1325 struct lttcomm_consumer_msg msg;
1326
a0377dfe 1327 LTTNG_ASSERT(socket);
7972aab2
DG
1328
1329 DBG2("Consumer flush channel key %" PRIu64, key);
1330
53efb85a 1331 memset(&msg, 0, sizeof(msg));
7972aab2
DG
1332 msg.cmd_type = LTTNG_CONSUMER_FLUSH_CHANNEL;
1333 msg.u.flush_channel.key = key;
1334
1335 pthread_mutex_lock(socket->lock);
1336 health_code_update();
1337
1338 ret = consumer_send_msg(socket, &msg);
1339 if (ret < 0) {
1340 goto end;
1341 }
1342
1343end:
1344 health_code_update();
1345 pthread_mutex_unlock(socket->lock);
1346 return ret;
1347}
1348
0dd01979
MD
1349/*
1350 * Send a clear quiescent command to consumer using the given channel key.
1351 *
1352 * Return 0 on success else a negative value.
1353 */
1354int consumer_clear_quiescent_channel(struct consumer_socket *socket, uint64_t key)
1355{
1356 int ret;
1357 struct lttcomm_consumer_msg msg;
1358
a0377dfe 1359 LTTNG_ASSERT(socket);
0dd01979
MD
1360
1361 DBG2("Consumer clear quiescent channel key %" PRIu64, key);
1362
1363 memset(&msg, 0, sizeof(msg));
1364 msg.cmd_type = LTTNG_CONSUMER_CLEAR_QUIESCENT_CHANNEL;
1365 msg.u.clear_quiescent_channel.key = key;
1366
1367 pthread_mutex_lock(socket->lock);
1368 health_code_update();
1369
1370 ret = consumer_send_msg(socket, &msg);
1371 if (ret < 0) {
1372 goto end;
1373 }
1374
1375end:
1376 health_code_update();
1377 pthread_mutex_unlock(socket->lock);
1378 return ret;
1379}
1380
7972aab2 1381/*
dc2bbdae
MD
1382 * Send a close metadata command to consumer using the given channel key.
1383 * Called with registry lock held.
7972aab2
DG
1384 *
1385 * Return 0 on success else a negative value.
1386 */
1387int consumer_close_metadata(struct consumer_socket *socket,
1388 uint64_t metadata_key)
1389{
1390 int ret;
1391 struct lttcomm_consumer_msg msg;
1392
a0377dfe 1393 LTTNG_ASSERT(socket);
7972aab2
DG
1394
1395 DBG2("Consumer close metadata channel key %" PRIu64, metadata_key);
1396
53efb85a 1397 memset(&msg, 0, sizeof(msg));
7972aab2
DG
1398 msg.cmd_type = LTTNG_CONSUMER_CLOSE_METADATA;
1399 msg.u.close_metadata.key = metadata_key;
1400
1401 pthread_mutex_lock(socket->lock);
1402 health_code_update();
1403
1404 ret = consumer_send_msg(socket, &msg);
1405 if (ret < 0) {
1406 goto end;
1407 }
1408
1409end:
1410 health_code_update();
1411 pthread_mutex_unlock(socket->lock);
1412 return ret;
1413}
1414
1415/*
1416 * Send a setup metdata command to consumer using the given channel key.
1417 *
1418 * Return 0 on success else a negative value.
1419 */
1420int consumer_setup_metadata(struct consumer_socket *socket,
1421 uint64_t metadata_key)
1422{
1423 int ret;
1424 struct lttcomm_consumer_msg msg;
1425
a0377dfe 1426 LTTNG_ASSERT(socket);
7972aab2
DG
1427
1428 DBG2("Consumer setup metadata channel key %" PRIu64, metadata_key);
1429
53efb85a 1430 memset(&msg, 0, sizeof(msg));
7972aab2
DG
1431 msg.cmd_type = LTTNG_CONSUMER_SETUP_METADATA;
1432 msg.u.setup_metadata.key = metadata_key;
1433
1434 pthread_mutex_lock(socket->lock);
1435 health_code_update();
1436
1437 ret = consumer_send_msg(socket, &msg);
1438 if (ret < 0) {
1439 goto end;
1440 }
1441
1442end:
1443 health_code_update();
1444 pthread_mutex_unlock(socket->lock);
1445 return ret;
1446}
1447
1448/*
dc2bbdae
MD
1449 * Send metadata string to consumer.
1450 * RCU read-side lock must be held to guarantee existence of socket.
7972aab2
DG
1451 *
1452 * Return 0 on success else a negative value.
1453 */
1454int consumer_push_metadata(struct consumer_socket *socket,
1455 uint64_t metadata_key, char *metadata_str, size_t len,
93ec662e 1456 size_t target_offset, uint64_t version)
7972aab2
DG
1457{
1458 int ret;
1459 struct lttcomm_consumer_msg msg;
1460
a0377dfe 1461 LTTNG_ASSERT(socket);
48b7cdc2 1462 ASSERT_RCU_READ_LOCKED();
7972aab2 1463
9363801e 1464 DBG2("Consumer push metadata to consumer socket %d", *socket->fd_ptr);
7972aab2 1465
dc2bbdae
MD
1466 pthread_mutex_lock(socket->lock);
1467
53efb85a 1468 memset(&msg, 0, sizeof(msg));
7972aab2
DG
1469 msg.cmd_type = LTTNG_CONSUMER_PUSH_METADATA;
1470 msg.u.push_metadata.key = metadata_key;
1471 msg.u.push_metadata.target_offset = target_offset;
1472 msg.u.push_metadata.len = len;
93ec662e 1473 msg.u.push_metadata.version = version;
7972aab2 1474
7972aab2
DG
1475 health_code_update();
1476 ret = consumer_send_msg(socket, &msg);
331744e3 1477 if (ret < 0 || len == 0) {
7972aab2
DG
1478 goto end;
1479 }
1480
9363801e
DG
1481 DBG3("Consumer pushing metadata on sock %d of len %zu", *socket->fd_ptr,
1482 len);
7972aab2 1483
52898cb1 1484 ret = consumer_socket_send(socket, metadata_str, len);
7972aab2
DG
1485 if (ret < 0) {
1486 goto end;
1487 }
1488
1489 health_code_update();
1490 ret = consumer_recv_status_reply(socket);
1491 if (ret < 0) {
1492 goto end;
1493 }
1494
1495end:
dc2bbdae 1496 pthread_mutex_unlock(socket->lock);
7972aab2 1497 health_code_update();
7972aab2
DG
1498 return ret;
1499}
6dc3064a
DG
1500
1501/*
1502 * Ask the consumer to snapshot a specific channel using the key.
1503 *
9a654598 1504 * Returns LTTNG_OK on success or else an LTTng error code.
6dc3064a 1505 */
9a654598 1506enum lttng_error_code consumer_snapshot_channel(struct consumer_socket *socket,
348a81dc 1507 uint64_t key, const struct consumer_output *output, int metadata,
f46376a1 1508 const char *channel_path,
d2956687 1509 uint64_t nb_packets_per_stream)
6dc3064a
DG
1510{
1511 int ret;
9a654598 1512 enum lttng_error_code status = LTTNG_OK;
6dc3064a
DG
1513 struct lttcomm_consumer_msg msg;
1514
a0377dfe
FD
1515 LTTNG_ASSERT(socket);
1516 LTTNG_ASSERT(output);
6dc3064a
DG
1517
1518 DBG("Consumer snapshot channel key %" PRIu64, key);
1519
ee91bab2 1520 memset(&msg, 0, sizeof(msg));
6dc3064a
DG
1521 msg.cmd_type = LTTNG_CONSUMER_SNAPSHOT_CHANNEL;
1522 msg.u.snapshot_channel.key = key;
d07ceecd 1523 msg.u.snapshot_channel.nb_packets_per_stream = nb_packets_per_stream;
6dc3064a
DG
1524 msg.u.snapshot_channel.metadata = metadata;
1525
348a81dc 1526 if (output->type == CONSUMER_DST_NET) {
d2956687 1527 msg.u.snapshot_channel.relayd_id =
348a81dc 1528 output->net_seq_index;
6dc3064a 1529 msg.u.snapshot_channel.use_relayd = 1;
6dc3064a 1530 } else {
07b86b52 1531 msg.u.snapshot_channel.relayd_id = (uint64_t) -1ULL;
d2956687
JG
1532 }
1533 ret = lttng_strncpy(msg.u.snapshot_channel.pathname,
1534 channel_path,
1535 sizeof(msg.u.snapshot_channel.pathname));
1536 if (ret < 0) {
1537 ERR("Snapshot path exceeds the maximal allowed length of %zu bytes (%zu bytes required) with path \"%s\"",
1538 sizeof(msg.u.snapshot_channel.pathname),
1539 strlen(channel_path),
1540 channel_path);
1541 status = LTTNG_ERR_SNAPSHOT_FAIL;
1542 goto error;
6dc3064a
DG
1543 }
1544
1545 health_code_update();
9d1103e6 1546 pthread_mutex_lock(socket->lock);
6dc3064a 1547 ret = consumer_send_msg(socket, &msg);
9d1103e6 1548 pthread_mutex_unlock(socket->lock);
6dc3064a 1549 if (ret < 0) {
9bbfb88c
MD
1550 switch (-ret) {
1551 case LTTCOMM_CONSUMERD_CHAN_NOT_FOUND:
9a654598 1552 status = LTTNG_ERR_CHAN_NOT_FOUND;
9bbfb88c
MD
1553 break;
1554 default:
9a654598 1555 status = LTTNG_ERR_SNAPSHOT_FAIL;
9bbfb88c
MD
1556 break;
1557 }
6dc3064a
DG
1558 goto error;
1559 }
1560
1561error:
1562 health_code_update();
9a654598 1563 return status;
6dc3064a 1564}
fb83fe64
JD
1565
1566/*
1567 * Ask the consumer the number of discarded events for a channel.
1568 */
1569int consumer_get_discarded_events(uint64_t session_id, uint64_t channel_key,
1570 struct consumer_output *consumer, uint64_t *discarded)
1571{
1572 int ret;
1573 struct consumer_socket *socket;
1574 struct lttng_ht_iter iter;
1575 struct lttcomm_consumer_msg msg;
1576
a0377dfe 1577 LTTNG_ASSERT(consumer);
fb83fe64
JD
1578
1579 DBG3("Consumer discarded events id %" PRIu64, session_id);
1580
1581 memset(&msg, 0, sizeof(msg));
1582 msg.cmd_type = LTTNG_CONSUMER_DISCARDED_EVENTS;
1583 msg.u.discarded_events.session_id = session_id;
1584 msg.u.discarded_events.channel_key = channel_key;
1585
1586 *discarded = 0;
1587
1588 /* Send command for each consumer */
1589 rcu_read_lock();
1590 cds_lfht_for_each_entry(consumer->socks->ht, &iter.iter, socket,
1591 node.node) {
1592 uint64_t consumer_discarded = 0;
1593 pthread_mutex_lock(socket->lock);
1594 ret = consumer_socket_send(socket, &msg, sizeof(msg));
1595 if (ret < 0) {
1596 pthread_mutex_unlock(socket->lock);
1597 goto end;
1598 }
1599
1600 /*
1601 * No need for a recv reply status because the answer to the
1602 * command is the reply status message.
1603 */
1604 ret = consumer_socket_recv(socket, &consumer_discarded,
1605 sizeof(consumer_discarded));
1606 if (ret < 0) {
1607 ERR("get discarded events");
1608 pthread_mutex_unlock(socket->lock);
1609 goto end;
1610 }
1611 pthread_mutex_unlock(socket->lock);
1612 *discarded += consumer_discarded;
1613 }
1614 ret = 0;
1615 DBG("Consumer discarded %" PRIu64 " events in session id %" PRIu64,
1616 *discarded, session_id);
1617
1618end:
1619 rcu_read_unlock();
1620 return ret;
1621}
1622
1623/*
1624 * Ask the consumer the number of lost packets for a channel.
1625 */
1626int consumer_get_lost_packets(uint64_t session_id, uint64_t channel_key,
1627 struct consumer_output *consumer, uint64_t *lost)
1628{
1629 int ret;
1630 struct consumer_socket *socket;
1631 struct lttng_ht_iter iter;
1632 struct lttcomm_consumer_msg msg;
1633
a0377dfe 1634 LTTNG_ASSERT(consumer);
fb83fe64
JD
1635
1636 DBG3("Consumer lost packets id %" PRIu64, session_id);
1637
1638 memset(&msg, 0, sizeof(msg));
1639 msg.cmd_type = LTTNG_CONSUMER_LOST_PACKETS;
1640 msg.u.lost_packets.session_id = session_id;
1641 msg.u.lost_packets.channel_key = channel_key;
1642
1643 *lost = 0;
1644
1645 /* Send command for each consumer */
1646 rcu_read_lock();
1647 cds_lfht_for_each_entry(consumer->socks->ht, &iter.iter, socket,
1648 node.node) {
1649 uint64_t consumer_lost = 0;
1650 pthread_mutex_lock(socket->lock);
1651 ret = consumer_socket_send(socket, &msg, sizeof(msg));
1652 if (ret < 0) {
1653 pthread_mutex_unlock(socket->lock);
1654 goto end;
1655 }
1656
1657 /*
1658 * No need for a recv reply status because the answer to the
1659 * command is the reply status message.
1660 */
1661 ret = consumer_socket_recv(socket, &consumer_lost,
1662 sizeof(consumer_lost));
1663 if (ret < 0) {
1664 ERR("get lost packets");
1665 pthread_mutex_unlock(socket->lock);
1666 goto end;
1667 }
1668 pthread_mutex_unlock(socket->lock);
1669 *lost += consumer_lost;
1670 }
1671 ret = 0;
1672 DBG("Consumer lost %" PRIu64 " packets in session id %" PRIu64,
1673 *lost, session_id);
1674
1675end:
1676 rcu_read_unlock();
1677 return ret;
1678}
a1ae2ea5 1679
5c408ad8
JD
1680/*
1681 * Ask the consumer to rotate a channel.
5c408ad8
JD
1682 *
1683 * The new_chunk_id is the session->rotate_count that has been incremented
1684 * when the rotation started. On the relay, this allows to keep track in which
1685 * chunk each stream is currently writing to (for the rotate_pending operation).
1686 */
1687int consumer_rotate_channel(struct consumer_socket *socket, uint64_t key,
f46376a1 1688 struct consumer_output *output,
d2956687 1689 bool is_metadata_channel)
5c408ad8
JD
1690{
1691 int ret;
1692 struct lttcomm_consumer_msg msg;
1693
a0377dfe 1694 LTTNG_ASSERT(socket);
5c408ad8
JD
1695
1696 DBG("Consumer rotate channel key %" PRIu64, key);
1697
1698 pthread_mutex_lock(socket->lock);
1699 memset(&msg, 0, sizeof(msg));
1700 msg.cmd_type = LTTNG_CONSUMER_ROTATE_CHANNEL;
1701 msg.u.rotate_channel.key = key;
1702 msg.u.rotate_channel.metadata = !!is_metadata_channel;
5c408ad8
JD
1703
1704 if (output->type == CONSUMER_DST_NET) {
1705 msg.u.rotate_channel.relayd_id = output->net_seq_index;
5c408ad8
JD
1706 } else {
1707 msg.u.rotate_channel.relayd_id = (uint64_t) -1ULL;
5c408ad8
JD
1708 }
1709
1710 health_code_update();
1711 ret = consumer_send_msg(socket, &msg);
1712 if (ret < 0) {
20f37cb4
MD
1713 switch (-ret) {
1714 case LTTCOMM_CONSUMERD_CHAN_NOT_FOUND:
1715 ret = -LTTNG_ERR_CHAN_NOT_FOUND;
1716 break;
1717 default:
1718 ret = -LTTNG_ERR_ROTATION_FAIL_CONSUMER;
1719 break;
1720 }
5c408ad8
JD
1721 goto error;
1722 }
5c408ad8
JD
1723error:
1724 pthread_mutex_unlock(socket->lock);
1725 health_code_update();
1726 return ret;
1727}
1728
04ed9e10
JG
1729int consumer_open_channel_packets(struct consumer_socket *socket, uint64_t key)
1730{
1731 int ret;
7966af57 1732 lttcomm_consumer_msg msg = {
04ed9e10 1733 .cmd_type = LTTNG_CONSUMER_OPEN_CHANNEL_PACKETS,
1c9a0b0e 1734 .u = {},
04ed9e10 1735 };
7966af57 1736 msg.u.open_channel_packets.key = key;
04ed9e10 1737
a0377dfe 1738 LTTNG_ASSERT(socket);
04ed9e10
JG
1739
1740 DBG("Consumer open channel packets: channel key = %" PRIu64, key);
1741
1742 health_code_update();
1743
1744 pthread_mutex_lock(socket->lock);
1745 ret = consumer_send_msg(socket, &msg);
1746 pthread_mutex_unlock(socket->lock);
1747 if (ret < 0) {
1748 goto error_socket;
1749 }
1750
1751error_socket:
1752 health_code_update();
1753 return ret;
1754}
1755
51a4828f
MD
1756int consumer_clear_channel(struct consumer_socket *socket, uint64_t key)
1757{
1758 int ret;
1759 struct lttcomm_consumer_msg msg;
1760
a0377dfe 1761 LTTNG_ASSERT(socket);
51a4828f
MD
1762
1763 DBG("Consumer clear channel %" PRIu64, key);
1764
1765 memset(&msg, 0, sizeof(msg));
1766 msg.cmd_type = LTTNG_CONSUMER_CLEAR_CHANNEL;
1767 msg.u.clear_channel.key = key;
1768
1769 health_code_update();
1770
1771 pthread_mutex_lock(socket->lock);
1772 ret = consumer_send_msg(socket, &msg);
1773 if (ret < 0) {
1774 goto error_socket;
1775 }
1776
1777error_socket:
1778 pthread_mutex_unlock(socket->lock);
1779
1780 health_code_update();
1781 return ret;
1782}
1783
d2956687
JG
1784int consumer_init(struct consumer_socket *socket,
1785 const lttng_uuid sessiond_uuid)
00fb02ac
JD
1786{
1787 int ret;
d2956687
JG
1788 struct lttcomm_consumer_msg msg = {
1789 .cmd_type = LTTNG_CONSUMER_INIT,
1c9a0b0e 1790 .u = {},
d2956687 1791 };
00fb02ac 1792
a0377dfe 1793 LTTNG_ASSERT(socket);
00fb02ac 1794
d2956687
JG
1795 DBG("Sending consumer initialization command");
1796 lttng_uuid_copy(msg.u.init.sessiond_uuid, sessiond_uuid);
00fb02ac
JD
1797
1798 health_code_update();
1799 ret = consumer_send_msg(socket, &msg);
1800 if (ret < 0) {
1801 goto error;
1802 }
1803
d88744a4
JD
1804error:
1805 health_code_update();
1806 return ret;
1807}
1808
1809/*
d2956687 1810 * Ask the consumer to create a new chunk for a given session.
92816cc3 1811 *
d2956687 1812 * Called with the consumer socket lock held.
92816cc3 1813 */
d2956687
JG
1814int consumer_create_trace_chunk(struct consumer_socket *socket,
1815 uint64_t relayd_id, uint64_t session_id,
5da88b0f
MD
1816 struct lttng_trace_chunk *chunk,
1817 const char *domain_subdir)
92816cc3
JG
1818{
1819 int ret;
d2956687
JG
1820 enum lttng_trace_chunk_status chunk_status;
1821 struct lttng_credentials chunk_credentials;
5da88b0f
MD
1822 const struct lttng_directory_handle *chunk_directory_handle = NULL;
1823 struct lttng_directory_handle *domain_handle = NULL;
1824 int domain_dirfd;
d2956687 1825 const char *chunk_name;
913a542b 1826 bool chunk_name_overridden;
d2956687
JG
1827 uint64_t chunk_id;
1828 time_t creation_timestamp;
1829 char creation_timestamp_buffer[ISO8601_STR_LEN];
1830 const char *creation_timestamp_str = "(none)";
1831 const bool chunk_has_local_output = relayd_id == -1ULL;
69ebf37e 1832 enum lttng_trace_chunk_status tc_status;
d2956687
JG
1833 struct lttcomm_consumer_msg msg = {
1834 .cmd_type = LTTNG_CONSUMER_CREATE_TRACE_CHUNK,
1c9a0b0e 1835 .u = {},
d2956687 1836 };
7966af57 1837 msg.u.create_trace_chunk.session_id = session_id;
92816cc3 1838
a0377dfe
FD
1839 LTTNG_ASSERT(socket);
1840 LTTNG_ASSERT(chunk);
92816cc3 1841
d2956687
JG
1842 if (relayd_id != -1ULL) {
1843 LTTNG_OPTIONAL_SET(&msg.u.create_trace_chunk.relayd_id,
1844 relayd_id);
1845 }
92816cc3 1846
d2956687 1847 chunk_status = lttng_trace_chunk_get_name(chunk, &chunk_name,
913a542b 1848 &chunk_name_overridden);
d2956687
JG
1849 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK &&
1850 chunk_status != LTTNG_TRACE_CHUNK_STATUS_NONE) {
1851 ERR("Failed to get name of trace chunk");
1852 ret = -LTTNG_ERR_FATAL;
92816cc3
JG
1853 goto error;
1854 }
913a542b 1855 if (chunk_name_overridden) {
d2956687
JG
1856 ret = lttng_strncpy(msg.u.create_trace_chunk.override_name,
1857 chunk_name,
1858 sizeof(msg.u.create_trace_chunk.override_name));
1859 if (ret) {
1860 ERR("Trace chunk name \"%s\" exceeds the maximal length allowed by the consumer protocol",
1861 chunk_name);
1862 ret = -LTTNG_ERR_FATAL;
1863 goto error;
1864 }
1865 }
92816cc3 1866
d2956687
JG
1867 chunk_status = lttng_trace_chunk_get_creation_timestamp(chunk,
1868 &creation_timestamp);
1869 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
1870 ret = -LTTNG_ERR_FATAL;
92816cc3
JG
1871 goto error;
1872 }
d2956687
JG
1873 msg.u.create_trace_chunk.creation_timestamp =
1874 (uint64_t) creation_timestamp;
1875 /* Only used for logging purposes. */
1876 ret = time_to_iso8601_str(creation_timestamp,
1877 creation_timestamp_buffer,
1878 sizeof(creation_timestamp_buffer));
1879 creation_timestamp_str = !ret ? creation_timestamp_buffer :
1880 "(formatting error)";
1881
1882 chunk_status = lttng_trace_chunk_get_id(chunk, &chunk_id);
1883 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
1884 /*
1885 * Anonymous trace chunks should never be transmitted
1886 * to remote peers (consumerd and relayd). They are used
1887 * internally for backward-compatibility purposes.
1888 */
1889 ret = -LTTNG_ERR_FATAL;
1890 goto error;
1891 }
1892 msg.u.create_trace_chunk.chunk_id = chunk_id;
92816cc3 1893
d2956687 1894 if (chunk_has_local_output) {
cbf53d23 1895 chunk_status = lttng_trace_chunk_borrow_chunk_directory_handle(
d2956687
JG
1896 chunk, &chunk_directory_handle);
1897 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
1898 ret = -LTTNG_ERR_FATAL;
1899 goto error;
1900 }
e5add6d0
JG
1901 chunk_status = lttng_trace_chunk_get_credentials(
1902 chunk, &chunk_credentials);
1903 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
1904 /*
1905 * Not associating credentials to a sessiond chunk is a
1906 * fatal internal error.
1907 */
1908 ret = -LTTNG_ERR_FATAL;
1909 goto error;
1910 }
69ebf37e
JR
1911 tc_status = lttng_trace_chunk_create_subdirectory(
1912 chunk, domain_subdir);
1913 if (tc_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
5da88b0f
MD
1914 PERROR("Failed to create chunk domain output directory \"%s\"",
1915 domain_subdir);
1916 ret = -LTTNG_ERR_FATAL;
1917 goto error;
1918 }
1919 domain_handle = lttng_directory_handle_create_from_handle(
1920 domain_subdir,
1921 chunk_directory_handle);
1922 if (!domain_handle) {
1923 ret = -LTTNG_ERR_FATAL;
1924 goto error;
1925 }
1926
1927 /*
1928 * This will only compile on platforms that support
1929 * dirfd (POSIX.2008). This is fine as the session daemon
1930 * is only built for such platforms.
1931 *
1932 * The ownership of the chunk directory handle's is maintained
1933 * by the trace chunk.
1934 */
1935 domain_dirfd = lttng_directory_handle_get_dirfd(
1936 domain_handle);
a0377dfe 1937 LTTNG_ASSERT(domain_dirfd >= 0);
5da88b0f 1938
e5add6d0 1939 msg.u.create_trace_chunk.credentials.value.uid =
ff588497 1940 lttng_credentials_get_uid(&chunk_credentials);
e5add6d0 1941 msg.u.create_trace_chunk.credentials.value.gid =
ff588497 1942 lttng_credentials_get_gid(&chunk_credentials);
e5add6d0 1943 msg.u.create_trace_chunk.credentials.is_set = 1;
d2956687 1944 }
d88744a4 1945
d2956687
JG
1946 DBG("Sending consumer create trace chunk command: relayd_id = %" PRId64
1947 ", session_id = %" PRIu64 ", chunk_id = %" PRIu64
1948 ", creation_timestamp = %s",
1949 relayd_id, session_id, chunk_id,
1950 creation_timestamp_str);
d88744a4
JD
1951 health_code_update();
1952 ret = consumer_send_msg(socket, &msg);
d2956687 1953 health_code_update();
d88744a4 1954 if (ret < 0) {
d2956687
JG
1955 ERR("Trace chunk creation error on consumer");
1956 ret = -LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER;
d88744a4
JD
1957 goto error;
1958 }
1959
d2956687 1960 if (chunk_has_local_output) {
5da88b0f 1961 DBG("Sending trace chunk domain directory fd to consumer");
d2956687 1962 health_code_update();
5da88b0f 1963 ret = consumer_send_fds(socket, &domain_dirfd, 1);
d2956687
JG
1964 health_code_update();
1965 if (ret < 0) {
1966 ERR("Trace chunk creation error on consumer");
1967 ret = -LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER;
1968 goto error;
1969 }
d88744a4 1970 }
00fb02ac 1971error:
5da88b0f 1972 lttng_directory_handle_put(domain_handle);
00fb02ac
JD
1973 return ret;
1974}
1975
a1ae2ea5 1976/*
d2956687 1977 * Ask the consumer to close a trace chunk for a given session.
a1ae2ea5
JD
1978 *
1979 * Called with the consumer socket lock held.
1980 */
d2956687
JG
1981int consumer_close_trace_chunk(struct consumer_socket *socket,
1982 uint64_t relayd_id, uint64_t session_id,
ecd1a12f
MD
1983 struct lttng_trace_chunk *chunk,
1984 char *closed_trace_chunk_path)
a1ae2ea5
JD
1985{
1986 int ret;
d2956687 1987 enum lttng_trace_chunk_status chunk_status;
7966af57
SM
1988 lttcomm_consumer_msg msg = {
1989 .cmd_type = LTTNG_CONSUMER_CLOSE_TRACE_CHUNK,
1c9a0b0e 1990 .u = {},
d2956687 1991 };
7966af57
SM
1992 msg.u.close_trace_chunk.session_id = session_id;
1993
ecd1a12f 1994 struct lttcomm_consumer_close_trace_chunk_reply reply;
d2956687
JG
1995 uint64_t chunk_id;
1996 time_t close_timestamp;
bbc4768c
JG
1997 enum lttng_trace_chunk_command_type close_command;
1998 const char *close_command_name = "none";
ecd1a12f 1999 struct lttng_dynamic_buffer path_reception_buffer;
a1ae2ea5 2000
a0377dfe 2001 LTTNG_ASSERT(socket);
ecd1a12f 2002 lttng_dynamic_buffer_init(&path_reception_buffer);
a1ae2ea5 2003
d2956687 2004 if (relayd_id != -1ULL) {
bbc4768c
JG
2005 LTTNG_OPTIONAL_SET(
2006 &msg.u.close_trace_chunk.relayd_id, relayd_id);
2007 }
2008
2009 chunk_status = lttng_trace_chunk_get_close_command(
2010 chunk, &close_command);
2011 switch (chunk_status) {
2012 case LTTNG_TRACE_CHUNK_STATUS_OK:
2013 LTTNG_OPTIONAL_SET(&msg.u.close_trace_chunk.close_command,
2014 (uint32_t) close_command);
2015 break;
2016 case LTTNG_TRACE_CHUNK_STATUS_NONE:
2017 break;
2018 default:
2019 ERR("Failed to get trace chunk close command");
2020 ret = -1;
2021 goto error;
a1ae2ea5
JD
2022 }
2023
d2956687
JG
2024 chunk_status = lttng_trace_chunk_get_id(chunk, &chunk_id);
2025 /*
2026 * Anonymous trace chunks should never be transmitted to remote peers
2027 * (consumerd and relayd). They are used internally for
2028 * backward-compatibility purposes.
2029 */
a0377dfe 2030 LTTNG_ASSERT(chunk_status == LTTNG_TRACE_CHUNK_STATUS_OK);
d2956687
JG
2031 msg.u.close_trace_chunk.chunk_id = chunk_id;
2032
2033 chunk_status = lttng_trace_chunk_get_close_timestamp(chunk,
2034 &close_timestamp);
2035 /*
2036 * A trace chunk should be closed locally before being closed remotely.
2037 * Otherwise, the close timestamp would never be transmitted to the
2038 * peers.
2039 */
a0377dfe 2040 LTTNG_ASSERT(chunk_status == LTTNG_TRACE_CHUNK_STATUS_OK);
d2956687
JG
2041 msg.u.close_trace_chunk.close_timestamp = (uint64_t) close_timestamp;
2042
bbc4768c
JG
2043 if (msg.u.close_trace_chunk.close_command.is_set) {
2044 close_command_name = lttng_trace_chunk_command_type_get_name(
2045 close_command);
2046 }
d2956687 2047 DBG("Sending consumer close trace chunk command: relayd_id = %" PRId64
bbc4768c
JG
2048 ", session_id = %" PRIu64 ", chunk_id = %" PRIu64
2049 ", close command = \"%s\"",
2050 relayd_id, session_id, chunk_id, close_command_name);
a1ae2ea5
JD
2051
2052 health_code_update();
ecd1a12f 2053 ret = consumer_socket_send(socket, &msg, sizeof(struct lttcomm_consumer_msg));
a1ae2ea5 2054 if (ret < 0) {
d2956687 2055 ret = -LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER;
a1ae2ea5
JD
2056 goto error;
2057 }
ecd1a12f
MD
2058 ret = consumer_socket_recv(socket, &reply, sizeof(reply));
2059 if (ret < 0) {
2060 ret = -LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER;
2061 goto error;
2062 }
2063 if (reply.path_length >= LTTNG_PATH_MAX) {
2064 ERR("Invalid path returned by relay daemon: %" PRIu32 "bytes exceeds maximal allowed length of %d bytes",
2065 reply.path_length, LTTNG_PATH_MAX);
2066 ret = -LTTNG_ERR_INVALID_PROTOCOL;
2067 goto error;
2068 }
2069 ret = lttng_dynamic_buffer_set_size(&path_reception_buffer,
2070 reply.path_length);
2071 if (ret) {
2072 ERR("Failed to allocate reception buffer of path returned by the \"close trace chunk\" command");
2073 ret = -LTTNG_ERR_NOMEM;
2074 goto error;
2075 }
2076 ret = consumer_socket_recv(socket, path_reception_buffer.data,
2077 path_reception_buffer.size);
2078 if (ret < 0) {
2079 ERR("Communication error while receiving path of closed trace chunk");
2080 ret = -LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER;
2081 goto error;
2082 }
2083 if (path_reception_buffer.data[path_reception_buffer.size - 1] != '\0') {
2084 ERR("Invalid path returned by relay daemon: not null-terminated");
2085 ret = -LTTNG_ERR_INVALID_PROTOCOL;
2086 goto error;
2087 }
2088 if (closed_trace_chunk_path) {
2089 /*
2090 * closed_trace_chunk_path is assumed to have a length >=
2091 * LTTNG_PATH_MAX
2092 */
2093 memcpy(closed_trace_chunk_path, path_reception_buffer.data,
2094 path_reception_buffer.size);
2095 }
a1ae2ea5 2096error:
ecd1a12f 2097 lttng_dynamic_buffer_reset(&path_reception_buffer);
a1ae2ea5
JD
2098 health_code_update();
2099 return ret;
2100}
3654ed19 2101
d2956687
JG
2102/*
2103 * Ask the consumer if a trace chunk exists.
2104 *
2105 * Called with the consumer socket lock held.
2106 * Returns 0 on success, or a negative value on error.
2107 */
2108int consumer_trace_chunk_exists(struct consumer_socket *socket,
2109 uint64_t relayd_id, uint64_t session_id,
2110 struct lttng_trace_chunk *chunk,
2111 enum consumer_trace_chunk_exists_status *result)
3654ed19
JG
2112{
2113 int ret;
d2956687 2114 enum lttng_trace_chunk_status chunk_status;
7966af57 2115 lttcomm_consumer_msg msg = {
d2956687 2116 .cmd_type = LTTNG_CONSUMER_TRACE_CHUNK_EXISTS,
1c9a0b0e 2117 .u = {},
3654ed19 2118 };
7966af57
SM
2119 msg.u.trace_chunk_exists.session_id = session_id;
2120
d2956687
JG
2121 uint64_t chunk_id;
2122 const char *consumer_reply_str;
3654ed19 2123
a0377dfe 2124 LTTNG_ASSERT(socket);
3654ed19 2125
d2956687
JG
2126 if (relayd_id != -1ULL) {
2127 LTTNG_OPTIONAL_SET(&msg.u.trace_chunk_exists.relayd_id,
2128 relayd_id);
2129 }
2130
2131 chunk_status = lttng_trace_chunk_get_id(chunk, &chunk_id);
2132 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
2133 /*
2134 * Anonymous trace chunks should never be transmitted
2135 * to remote peers (consumerd and relayd). They are used
2136 * internally for backward-compatibility purposes.
2137 */
2138 ret = -LTTNG_ERR_FATAL;
2139 goto error;
2140 }
2141 msg.u.trace_chunk_exists.chunk_id = chunk_id;
2142
2143 DBG("Sending consumer trace chunk exists command: relayd_id = %" PRId64
2144 ", session_id = %" PRIu64
2145 ", chunk_id = %" PRIu64, relayd_id, session_id, chunk_id);
3654ed19
JG
2146
2147 health_code_update();
2148 ret = consumer_send_msg(socket, &msg);
d2956687
JG
2149 switch (-ret) {
2150 case LTTCOMM_CONSUMERD_UNKNOWN_TRACE_CHUNK:
2151 consumer_reply_str = "unknown trace chunk";
2152 *result = CONSUMER_TRACE_CHUNK_EXISTS_STATUS_UNKNOWN_CHUNK;
2153 break;
2154 case LTTCOMM_CONSUMERD_TRACE_CHUNK_EXISTS_LOCAL:
2155 consumer_reply_str = "trace chunk exists locally";
2156 *result = CONSUMER_TRACE_CHUNK_EXISTS_STATUS_EXISTS_LOCAL;
2157 break;
2158 case LTTCOMM_CONSUMERD_TRACE_CHUNK_EXISTS_REMOTE:
2159 consumer_reply_str = "trace chunk exists on remote peer";
2160 *result = CONSUMER_TRACE_CHUNK_EXISTS_STATUS_EXISTS_REMOTE;
2161 break;
2162 default:
2163 ERR("Consumer returned an error from TRACE_CHUNK_EXISTS command");
2164 ret = -1;
3654ed19
JG
2165 goto error;
2166 }
d2956687
JG
2167 DBG("Consumer reply to TRACE_CHUNK_EXISTS command: %s",
2168 consumer_reply_str);
2169 ret = 0;
3654ed19
JG
2170error:
2171 health_code_update();
2172 return ret;
2173}
This page took 0.184996 seconds and 4 git commands to generate.