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