Fix: race with the viewer and readiness of streams
[lttng-tools.git] / src / bin / lttng-sessiond / consumer.c
1 /*
2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18 #define _GNU_SOURCE
19 #include <assert.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <sys/stat.h>
24 #include <sys/types.h>
25 #include <unistd.h>
26 #include <inttypes.h>
27
28 #include <common/common.h>
29 #include <common/defaults.h>
30 #include <common/uri.h>
31 #include <common/relayd/relayd.h>
32
33 #include "consumer.h"
34 #include "health-sessiond.h"
35 #include "ust-app.h"
36 #include "utils.h"
37
38 /*
39 * Send a data payload using a given consumer socket of size len.
40 *
41 * The consumer socket lock MUST be acquired before calling this since this
42 * function can change the fd value.
43 *
44 * Return 0 on success else a negative value on error.
45 */
46 int consumer_socket_send(struct consumer_socket *socket, void *msg, size_t len)
47 {
48 int fd;
49 ssize_t size;
50
51 assert(socket);
52 assert(socket->fd_ptr);
53 assert(msg);
54
55 /* Consumer socket is invalid. Stopping. */
56 fd = *socket->fd_ptr;
57 if (fd < 0) {
58 goto error;
59 }
60
61 size = lttcomm_send_unix_sock(fd, msg, len);
62 if (size < 0) {
63 /* The above call will print a PERROR on error. */
64 DBG("Error when sending data to consumer on sock %d", fd);
65 /*
66 * At this point, the socket is not usable anymore thus closing it and
67 * setting the file descriptor to -1 so it is not reused.
68 */
69
70 /* This call will PERROR on error. */
71 (void) lttcomm_close_unix_sock(fd);
72 *socket->fd_ptr = -1;
73 goto error;
74 }
75
76 return 0;
77
78 error:
79 return -1;
80 }
81
82 /*
83 * Receive a data payload using a given consumer socket of size len.
84 *
85 * The consumer socket lock MUST be acquired before calling this since this
86 * function can change the fd value.
87 *
88 * Return 0 on success else a negative value on error.
89 */
90 int consumer_socket_recv(struct consumer_socket *socket, void *msg, size_t len)
91 {
92 int fd;
93 ssize_t size;
94
95 assert(socket);
96 assert(socket->fd_ptr);
97 assert(msg);
98
99 /* Consumer socket is invalid. Stopping. */
100 fd = *socket->fd_ptr;
101 if (fd < 0) {
102 goto error;
103 }
104
105 size = lttcomm_recv_unix_sock(fd, msg, len);
106 if (size <= 0) {
107 /* The above call will print a PERROR on error. */
108 DBG("Error when receiving data from the consumer socket %d", fd);
109 /*
110 * At this point, the socket is not usable anymore thus closing it and
111 * setting the file descriptor to -1 so it is not reused.
112 */
113
114 /* This call will PERROR on error. */
115 (void) lttcomm_close_unix_sock(fd);
116 *socket->fd_ptr = -1;
117 goto error;
118 }
119
120 return 0;
121
122 error:
123 return -1;
124 }
125
126 /*
127 * Receive a reply command status message from the consumer. Consumer socket
128 * lock MUST be acquired before calling this function.
129 *
130 * Return 0 on success, -1 on recv error or a negative lttng error code which
131 * was possibly returned by the consumer.
132 */
133 int consumer_recv_status_reply(struct consumer_socket *sock)
134 {
135 int ret;
136 struct lttcomm_consumer_status_msg reply;
137
138 assert(sock);
139
140 ret = consumer_socket_recv(sock, &reply, sizeof(reply));
141 if (ret < 0) {
142 goto end;
143 }
144
145 if (reply.ret_code == LTTCOMM_CONSUMERD_SUCCESS) {
146 /* All good. */
147 ret = 0;
148 } else {
149 ret = -reply.ret_code;
150 DBG("Consumer ret code %d", ret);
151 }
152
153 end:
154 return ret;
155 }
156
157 /*
158 * Once the ASK_CHANNEL command is sent to the consumer, the channel
159 * information are sent back. This call receives that data and populates key
160 * and stream_count.
161 *
162 * On success return 0 and both key and stream_count are set. On error, a
163 * negative value is sent back and both parameters are untouched.
164 */
165 int consumer_recv_status_channel(struct consumer_socket *sock,
166 uint64_t *key, unsigned int *stream_count)
167 {
168 int ret;
169 struct lttcomm_consumer_status_channel reply;
170
171 assert(sock);
172 assert(stream_count);
173 assert(key);
174
175 ret = consumer_socket_recv(sock, &reply, sizeof(reply));
176 if (ret < 0) {
177 goto end;
178 }
179
180 /* An error is possible so don't touch the key and stream_count. */
181 if (reply.ret_code != LTTCOMM_CONSUMERD_SUCCESS) {
182 ret = -1;
183 goto end;
184 }
185
186 *key = reply.key;
187 *stream_count = reply.stream_count;
188 ret = 0;
189
190 end:
191 return ret;
192 }
193
194 /*
195 * Send destroy relayd command to consumer.
196 *
197 * On success return positive value. On error, negative value.
198 */
199 int consumer_send_destroy_relayd(struct consumer_socket *sock,
200 struct consumer_output *consumer)
201 {
202 int ret;
203 struct lttcomm_consumer_msg msg;
204
205 assert(consumer);
206 assert(sock);
207
208 DBG2("Sending destroy relayd command to consumer sock %d", *sock->fd_ptr);
209
210 msg.cmd_type = LTTNG_CONSUMER_DESTROY_RELAYD;
211 msg.u.destroy_relayd.net_seq_idx = consumer->net_seq_index;
212
213 pthread_mutex_lock(sock->lock);
214 ret = consumer_socket_send(sock, &msg, sizeof(msg));
215 if (ret < 0) {
216 goto error;
217 }
218
219 /* Don't check the return value. The caller will do it. */
220 ret = consumer_recv_status_reply(sock);
221
222 DBG2("Consumer send destroy relayd command done");
223
224 error:
225 pthread_mutex_unlock(sock->lock);
226 return ret;
227 }
228
229 /*
230 * For each consumer socket in the consumer output object, send a destroy
231 * relayd command.
232 */
233 void consumer_output_send_destroy_relayd(struct consumer_output *consumer)
234 {
235 struct lttng_ht_iter iter;
236 struct consumer_socket *socket;
237
238 assert(consumer);
239
240 /* Destroy any relayd connection */
241 if (consumer->type == CONSUMER_DST_NET) {
242 rcu_read_lock();
243 cds_lfht_for_each_entry(consumer->socks->ht, &iter.iter, socket,
244 node.node) {
245 int ret;
246
247 /* Send destroy relayd command */
248 ret = consumer_send_destroy_relayd(socket, consumer);
249 if (ret < 0) {
250 DBG("Unable to send destroy relayd command to consumer");
251 /* Continue since we MUST delete everything at this point. */
252 }
253 }
254 rcu_read_unlock();
255 }
256 }
257
258 /*
259 * From a consumer_data structure, allocate and add a consumer socket to the
260 * consumer output.
261 *
262 * Return 0 on success, else negative value on error
263 */
264 int consumer_create_socket(struct consumer_data *data,
265 struct consumer_output *output)
266 {
267 int ret = 0;
268 struct consumer_socket *socket;
269
270 assert(data);
271
272 if (output == NULL || data->cmd_sock < 0) {
273 /*
274 * Not an error. Possible there is simply not spawned consumer or it's
275 * disabled for the tracing session asking the socket.
276 */
277 goto error;
278 }
279
280 rcu_read_lock();
281 socket = consumer_find_socket(data->cmd_sock, output);
282 rcu_read_unlock();
283 if (socket == NULL) {
284 socket = consumer_allocate_socket(&data->cmd_sock);
285 if (socket == NULL) {
286 ret = -1;
287 goto error;
288 }
289
290 socket->registered = 0;
291 socket->lock = &data->lock;
292 rcu_read_lock();
293 consumer_add_socket(socket, output);
294 rcu_read_unlock();
295 }
296
297 socket->type = data->type;
298
299 DBG3("Consumer socket created (fd: %d) and added to output",
300 data->cmd_sock);
301
302 error:
303 return ret;
304 }
305
306 /*
307 * Return the consumer socket from the given consumer output with the right
308 * bitness. On error, returns NULL.
309 *
310 * The caller MUST acquire a rcu read side lock and keep it until the socket
311 * object reference is not needed anymore.
312 */
313 struct consumer_socket *consumer_find_socket_by_bitness(int bits,
314 struct consumer_output *consumer)
315 {
316 int consumer_fd;
317 struct consumer_socket *socket = NULL;
318
319 switch (bits) {
320 case 64:
321 consumer_fd = uatomic_read(&ust_consumerd64_fd);
322 break;
323 case 32:
324 consumer_fd = uatomic_read(&ust_consumerd32_fd);
325 break;
326 default:
327 assert(0);
328 goto end;
329 }
330
331 socket = consumer_find_socket(consumer_fd, consumer);
332 if (!socket) {
333 ERR("Consumer socket fd %d not found in consumer obj %p",
334 consumer_fd, consumer);
335 }
336
337 end:
338 return socket;
339 }
340
341 /*
342 * Find a consumer_socket in a consumer_output hashtable. Read side lock must
343 * be acquired before calling this function and across use of the
344 * returned consumer_socket.
345 */
346 struct consumer_socket *consumer_find_socket(int key,
347 struct consumer_output *consumer)
348 {
349 struct lttng_ht_iter iter;
350 struct lttng_ht_node_ulong *node;
351 struct consumer_socket *socket = NULL;
352
353 /* Negative keys are lookup failures */
354 if (key < 0 || consumer == NULL) {
355 return NULL;
356 }
357
358 lttng_ht_lookup(consumer->socks, (void *)((unsigned long) key),
359 &iter);
360 node = lttng_ht_iter_get_node_ulong(&iter);
361 if (node != NULL) {
362 socket = caa_container_of(node, struct consumer_socket, node);
363 }
364
365 return socket;
366 }
367
368 /*
369 * Allocate a new consumer_socket and return the pointer.
370 */
371 struct consumer_socket *consumer_allocate_socket(int *fd)
372 {
373 struct consumer_socket *socket = NULL;
374
375 assert(fd);
376
377 socket = zmalloc(sizeof(struct consumer_socket));
378 if (socket == NULL) {
379 PERROR("zmalloc consumer socket");
380 goto error;
381 }
382
383 socket->fd_ptr = fd;
384 lttng_ht_node_init_ulong(&socket->node, *fd);
385
386 error:
387 return socket;
388 }
389
390 /*
391 * Add consumer socket to consumer output object. Read side lock must be
392 * acquired before calling this function.
393 */
394 void consumer_add_socket(struct consumer_socket *sock,
395 struct consumer_output *consumer)
396 {
397 assert(sock);
398 assert(consumer);
399
400 lttng_ht_add_unique_ulong(consumer->socks, &sock->node);
401 }
402
403 /*
404 * Delte consumer socket to consumer output object. Read side lock must be
405 * acquired before calling this function.
406 */
407 void consumer_del_socket(struct consumer_socket *sock,
408 struct consumer_output *consumer)
409 {
410 int ret;
411 struct lttng_ht_iter iter;
412
413 assert(sock);
414 assert(consumer);
415
416 iter.iter.node = &sock->node.node;
417 ret = lttng_ht_del(consumer->socks, &iter);
418 assert(!ret);
419 }
420
421 /*
422 * RCU destroy call function.
423 */
424 static void destroy_socket_rcu(struct rcu_head *head)
425 {
426 struct lttng_ht_node_ulong *node =
427 caa_container_of(head, struct lttng_ht_node_ulong, head);
428 struct consumer_socket *socket =
429 caa_container_of(node, struct consumer_socket, node);
430
431 free(socket);
432 }
433
434 /*
435 * Destroy and free socket pointer in a call RCU. Read side lock must be
436 * acquired before calling this function.
437 */
438 void consumer_destroy_socket(struct consumer_socket *sock)
439 {
440 assert(sock);
441
442 /*
443 * We DO NOT close the file descriptor here since it is global to the
444 * session daemon and is closed only if the consumer dies or a custom
445 * consumer was registered,
446 */
447 if (sock->registered) {
448 DBG3("Consumer socket was registered. Closing fd %d", *sock->fd_ptr);
449 lttcomm_close_unix_sock(*sock->fd_ptr);
450 }
451
452 call_rcu(&sock->node.head, destroy_socket_rcu);
453 }
454
455 /*
456 * Allocate and assign data to a consumer_output object.
457 *
458 * Return pointer to structure.
459 */
460 struct consumer_output *consumer_create_output(enum consumer_dst_type type)
461 {
462 struct consumer_output *output = NULL;
463
464 output = zmalloc(sizeof(struct consumer_output));
465 if (output == NULL) {
466 PERROR("zmalloc consumer_output");
467 goto error;
468 }
469
470 /* By default, consumer output is enabled */
471 output->enabled = 1;
472 output->type = type;
473 output->net_seq_index = (uint64_t) -1ULL;
474
475 output->socks = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
476
477 error:
478 return output;
479 }
480
481 /*
482 * Iterate over the consumer output socket hash table and destroy them. The
483 * socket file descriptor are only closed if the consumer output was
484 * registered meaning it's an external consumer.
485 */
486 void consumer_destroy_output_sockets(struct consumer_output *obj)
487 {
488 struct lttng_ht_iter iter;
489 struct consumer_socket *socket;
490
491 if (!obj->socks) {
492 return;
493 }
494
495 rcu_read_lock();
496 cds_lfht_for_each_entry(obj->socks->ht, &iter.iter, socket, node.node) {
497 consumer_del_socket(socket, obj);
498 consumer_destroy_socket(socket);
499 }
500 rcu_read_unlock();
501 }
502
503 /*
504 * Delete the consumer_output object from the list and free the ptr.
505 *
506 * Should *NOT* be called with RCU read-side lock held.
507 */
508 void consumer_destroy_output(struct consumer_output *obj)
509 {
510 if (obj == NULL) {
511 return;
512 }
513
514 consumer_destroy_output_sockets(obj);
515
516 if (obj->socks) {
517 /* Finally destroy HT */
518 ht_cleanup_push(obj->socks);
519 }
520
521 free(obj);
522 }
523
524 /*
525 * Copy consumer output and returned the newly allocated copy.
526 *
527 * Should *NOT* be called with RCU read-side lock held.
528 */
529 struct consumer_output *consumer_copy_output(struct consumer_output *obj)
530 {
531 int ret;
532 struct lttng_ht *tmp_ht_ptr;
533 struct consumer_output *output;
534
535 assert(obj);
536
537 output = consumer_create_output(obj->type);
538 if (output == NULL) {
539 goto error;
540 }
541 /* Avoid losing the HT reference after the memcpy() */
542 tmp_ht_ptr = output->socks;
543
544 memcpy(output, obj, sizeof(struct consumer_output));
545
546 /* Putting back the HT pointer and start copying socket(s). */
547 output->socks = tmp_ht_ptr;
548
549 ret = consumer_copy_sockets(output, obj);
550 if (ret < 0) {
551 goto malloc_error;
552 }
553
554 error:
555 return output;
556
557 malloc_error:
558 consumer_destroy_output(output);
559 return NULL;
560 }
561
562 /*
563 * Copy consumer sockets from src to dst.
564 *
565 * Return 0 on success or else a negative value.
566 */
567 int consumer_copy_sockets(struct consumer_output *dst,
568 struct consumer_output *src)
569 {
570 int ret = 0;
571 struct lttng_ht_iter iter;
572 struct consumer_socket *socket, *copy_sock;
573
574 assert(dst);
575 assert(src);
576
577 rcu_read_lock();
578 cds_lfht_for_each_entry(src->socks->ht, &iter.iter, socket, node.node) {
579 /* Ignore socket that are already there. */
580 copy_sock = consumer_find_socket(*socket->fd_ptr, dst);
581 if (copy_sock) {
582 continue;
583 }
584
585 /* Create new socket object. */
586 copy_sock = consumer_allocate_socket(socket->fd_ptr);
587 if (copy_sock == NULL) {
588 rcu_read_unlock();
589 ret = -ENOMEM;
590 goto error;
591 }
592
593 copy_sock->registered = socket->registered;
594 /*
595 * This is valid because this lock is shared accross all consumer
596 * object being the global lock of the consumer data structure of the
597 * session daemon.
598 */
599 copy_sock->lock = socket->lock;
600 consumer_add_socket(copy_sock, dst);
601 }
602 rcu_read_unlock();
603
604 error:
605 return ret;
606 }
607
608 /*
609 * Set network URI to the consumer output object.
610 *
611 * Return 0 on success. Return 1 if the URI were equal. Else, negative value on
612 * error.
613 */
614 int consumer_set_network_uri(struct consumer_output *obj,
615 struct lttng_uri *uri)
616 {
617 int ret;
618 char tmp_path[PATH_MAX];
619 char hostname[HOST_NAME_MAX];
620 struct lttng_uri *dst_uri = NULL;
621
622 /* Code flow error safety net. */
623 assert(obj);
624 assert(uri);
625
626 switch (uri->stype) {
627 case LTTNG_STREAM_CONTROL:
628 dst_uri = &obj->dst.net.control;
629 obj->dst.net.control_isset = 1;
630 if (uri->port == 0) {
631 /* Assign default port. */
632 uri->port = DEFAULT_NETWORK_CONTROL_PORT;
633 } else {
634 if (obj->dst.net.data_isset && uri->port ==
635 obj->dst.net.data.port) {
636 ret = -LTTNG_ERR_INVALID;
637 goto error;
638 }
639 }
640 DBG3("Consumer control URI set with port %d", uri->port);
641 break;
642 case LTTNG_STREAM_DATA:
643 dst_uri = &obj->dst.net.data;
644 obj->dst.net.data_isset = 1;
645 if (uri->port == 0) {
646 /* Assign default port. */
647 uri->port = DEFAULT_NETWORK_DATA_PORT;
648 } else {
649 if (obj->dst.net.control_isset && uri->port ==
650 obj->dst.net.control.port) {
651 ret = -LTTNG_ERR_INVALID;
652 goto error;
653 }
654 }
655 DBG3("Consumer data URI set with port %d", uri->port);
656 break;
657 default:
658 ERR("Set network uri type unknown %d", uri->stype);
659 ret = -LTTNG_ERR_INVALID;
660 goto error;
661 }
662
663 ret = uri_compare(dst_uri, uri);
664 if (!ret) {
665 /* Same URI, don't touch it and return success. */
666 DBG3("URI network compare are the same");
667 goto equal;
668 }
669
670 /* URIs were not equal, replacing it. */
671 memset(dst_uri, 0, sizeof(struct lttng_uri));
672 memcpy(dst_uri, uri, sizeof(struct lttng_uri));
673 obj->type = CONSUMER_DST_NET;
674
675 /* Handle subdir and add hostname in front. */
676 if (dst_uri->stype == LTTNG_STREAM_CONTROL) {
677 /* Get hostname to append it in the pathname */
678 ret = gethostname(hostname, sizeof(hostname));
679 if (ret < 0) {
680 PERROR("gethostname. Fallback on default localhost");
681 strncpy(hostname, "localhost", sizeof(hostname));
682 }
683 hostname[sizeof(hostname) - 1] = '\0';
684
685 /* Setup consumer subdir if none present in the control URI */
686 if (strlen(dst_uri->subdir) == 0) {
687 ret = snprintf(tmp_path, sizeof(tmp_path), "%s/%s",
688 hostname, obj->subdir);
689 } else {
690 ret = snprintf(tmp_path, sizeof(tmp_path), "%s/%s",
691 hostname, dst_uri->subdir);
692 }
693 if (ret < 0) {
694 PERROR("snprintf set consumer uri subdir");
695 ret = -LTTNG_ERR_NOMEM;
696 goto error;
697 }
698
699 strncpy(obj->subdir, tmp_path, sizeof(obj->subdir));
700 DBG3("Consumer set network uri subdir path %s", tmp_path);
701 }
702
703 return 0;
704 equal:
705 return 1;
706 error:
707 return ret;
708 }
709
710 /*
711 * Send file descriptor to consumer via sock.
712 */
713 int consumer_send_fds(struct consumer_socket *sock, int *fds, size_t nb_fd)
714 {
715 int ret;
716
717 assert(fds);
718 assert(sock);
719 assert(nb_fd > 0);
720
721 ret = lttcomm_send_fds_unix_sock(*sock->fd_ptr, fds, nb_fd);
722 if (ret < 0) {
723 /* The above call will print a PERROR on error. */
724 DBG("Error when sending consumer fds on sock %d", *sock->fd_ptr);
725 goto error;
726 }
727
728 ret = consumer_recv_status_reply(sock);
729
730 error:
731 return ret;
732 }
733
734 /*
735 * Consumer send communication message structure to consumer.
736 */
737 int consumer_send_msg(struct consumer_socket *sock,
738 struct lttcomm_consumer_msg *msg)
739 {
740 int ret;
741
742 assert(msg);
743 assert(sock);
744
745 ret = consumer_socket_send(sock, msg, sizeof(struct lttcomm_consumer_msg));
746 if (ret < 0) {
747 goto error;
748 }
749
750 ret = consumer_recv_status_reply(sock);
751
752 error:
753 return ret;
754 }
755
756 /*
757 * Consumer send channel communication message structure to consumer.
758 */
759 int consumer_send_channel(struct consumer_socket *sock,
760 struct lttcomm_consumer_msg *msg)
761 {
762 int ret;
763
764 assert(msg);
765 assert(sock);
766
767 ret = consumer_send_msg(sock, msg);
768 if (ret < 0) {
769 goto error;
770 }
771
772 error:
773 return ret;
774 }
775
776 /*
777 * Populate the given consumer msg structure with the ask_channel command
778 * information.
779 */
780 void consumer_init_ask_channel_comm_msg(struct lttcomm_consumer_msg *msg,
781 uint64_t subbuf_size,
782 uint64_t num_subbuf,
783 int overwrite,
784 unsigned int switch_timer_interval,
785 unsigned int read_timer_interval,
786 unsigned int live_timer_interval,
787 int output,
788 int type,
789 uint64_t session_id,
790 const char *pathname,
791 const char *name,
792 uid_t uid,
793 gid_t gid,
794 uint64_t relayd_id,
795 uint64_t key,
796 unsigned char *uuid,
797 uint32_t chan_id,
798 uint64_t tracefile_size,
799 uint64_t tracefile_count,
800 uint64_t session_id_per_pid,
801 unsigned int monitor,
802 uint32_t ust_app_uid)
803 {
804 assert(msg);
805
806 /* Zeroed structure */
807 memset(msg, 0, sizeof(struct lttcomm_consumer_msg));
808
809 msg->cmd_type = LTTNG_CONSUMER_ASK_CHANNEL_CREATION;
810 msg->u.ask_channel.subbuf_size = subbuf_size;
811 msg->u.ask_channel.num_subbuf = num_subbuf ;
812 msg->u.ask_channel.overwrite = overwrite;
813 msg->u.ask_channel.switch_timer_interval = switch_timer_interval;
814 msg->u.ask_channel.read_timer_interval = read_timer_interval;
815 msg->u.ask_channel.live_timer_interval = live_timer_interval;
816 msg->u.ask_channel.output = output;
817 msg->u.ask_channel.type = type;
818 msg->u.ask_channel.session_id = session_id;
819 msg->u.ask_channel.session_id_per_pid = session_id_per_pid;
820 msg->u.ask_channel.uid = uid;
821 msg->u.ask_channel.gid = gid;
822 msg->u.ask_channel.relayd_id = relayd_id;
823 msg->u.ask_channel.key = key;
824 msg->u.ask_channel.chan_id = chan_id;
825 msg->u.ask_channel.tracefile_size = tracefile_size;
826 msg->u.ask_channel.tracefile_count = tracefile_count;
827 msg->u.ask_channel.monitor = monitor;
828 msg->u.ask_channel.ust_app_uid = ust_app_uid;
829
830 memcpy(msg->u.ask_channel.uuid, uuid, sizeof(msg->u.ask_channel.uuid));
831
832 if (pathname) {
833 strncpy(msg->u.ask_channel.pathname, pathname,
834 sizeof(msg->u.ask_channel.pathname));
835 msg->u.ask_channel.pathname[sizeof(msg->u.ask_channel.pathname)-1] = '\0';
836 }
837
838 strncpy(msg->u.ask_channel.name, name, sizeof(msg->u.ask_channel.name));
839 msg->u.ask_channel.name[sizeof(msg->u.ask_channel.name) - 1] = '\0';
840 }
841
842 /*
843 * Init channel communication message structure.
844 */
845 void consumer_init_channel_comm_msg(struct lttcomm_consumer_msg *msg,
846 enum lttng_consumer_command cmd,
847 uint64_t channel_key,
848 uint64_t session_id,
849 const char *pathname,
850 uid_t uid,
851 gid_t gid,
852 uint64_t relayd_id,
853 const char *name,
854 unsigned int nb_init_streams,
855 enum lttng_event_output output,
856 int type,
857 uint64_t tracefile_size,
858 uint64_t tracefile_count,
859 unsigned int monitor,
860 unsigned int live_timer_interval)
861 {
862 assert(msg);
863
864 /* Zeroed structure */
865 memset(msg, 0, sizeof(struct lttcomm_consumer_msg));
866
867 /* Send channel */
868 msg->cmd_type = cmd;
869 msg->u.channel.channel_key = channel_key;
870 msg->u.channel.session_id = session_id;
871 msg->u.channel.uid = uid;
872 msg->u.channel.gid = gid;
873 msg->u.channel.relayd_id = relayd_id;
874 msg->u.channel.nb_init_streams = nb_init_streams;
875 msg->u.channel.output = output;
876 msg->u.channel.type = type;
877 msg->u.channel.tracefile_size = tracefile_size;
878 msg->u.channel.tracefile_count = tracefile_count;
879 msg->u.channel.monitor = monitor;
880 msg->u.channel.live_timer_interval = live_timer_interval;
881
882 strncpy(msg->u.channel.pathname, pathname,
883 sizeof(msg->u.channel.pathname));
884 msg->u.channel.pathname[sizeof(msg->u.channel.pathname) - 1] = '\0';
885
886 strncpy(msg->u.channel.name, name, sizeof(msg->u.channel.name));
887 msg->u.channel.name[sizeof(msg->u.channel.name) - 1] = '\0';
888 }
889
890 /*
891 * Init stream communication message structure.
892 */
893 void consumer_init_stream_comm_msg(struct lttcomm_consumer_msg *msg,
894 enum lttng_consumer_command cmd,
895 uint64_t channel_key,
896 uint64_t stream_key,
897 int cpu)
898 {
899 assert(msg);
900
901 memset(msg, 0, sizeof(struct lttcomm_consumer_msg));
902
903 msg->cmd_type = cmd;
904 msg->u.stream.channel_key = channel_key;
905 msg->u.stream.stream_key = stream_key;
906 msg->u.stream.cpu = cpu;
907 }
908
909 void consumer_init_streams_sent_comm_msg(struct lttcomm_consumer_msg *msg,
910 enum lttng_consumer_command cmd,
911 uint64_t channel_key, uint64_t net_seq_idx)
912 {
913 assert(msg);
914
915 memset(msg, 0, sizeof(struct lttcomm_consumer_msg));
916
917 msg->cmd_type = cmd;
918 msg->u.sent_streams.channel_key = channel_key;
919 msg->u.sent_streams.net_seq_idx = net_seq_idx;
920 }
921
922 /*
923 * Send stream communication structure to the consumer.
924 */
925 int consumer_send_stream(struct consumer_socket *sock,
926 struct consumer_output *dst, struct lttcomm_consumer_msg *msg,
927 int *fds, size_t nb_fd)
928 {
929 int ret;
930
931 assert(msg);
932 assert(dst);
933 assert(sock);
934 assert(fds);
935
936 ret = consumer_send_msg(sock, msg);
937 if (ret < 0) {
938 goto error;
939 }
940
941 ret = consumer_send_fds(sock, fds, nb_fd);
942 if (ret < 0) {
943 goto error;
944 }
945
946 error:
947 return ret;
948 }
949
950 /*
951 * Send relayd socket to consumer associated with a session name.
952 *
953 * On success return positive value. On error, negative value.
954 */
955 int consumer_send_relayd_socket(struct consumer_socket *consumer_sock,
956 struct lttcomm_relayd_sock *rsock, struct consumer_output *consumer,
957 enum lttng_stream_type type, uint64_t session_id,
958 char *session_name, char *hostname, int session_live_timer)
959 {
960 int ret;
961 struct lttcomm_consumer_msg msg;
962
963 /* Code flow error. Safety net. */
964 assert(rsock);
965 assert(consumer);
966 assert(consumer_sock);
967
968 /* Bail out if consumer is disabled */
969 if (!consumer->enabled) {
970 ret = LTTNG_OK;
971 goto error;
972 }
973
974 if (type == LTTNG_STREAM_CONTROL) {
975 ret = relayd_create_session(rsock,
976 &msg.u.relayd_sock.relayd_session_id,
977 session_name, hostname, session_live_timer,
978 consumer->snapshot);
979 if (ret < 0) {
980 /* Close the control socket. */
981 (void) relayd_close(rsock);
982 goto error;
983 }
984 }
985
986 msg.cmd_type = LTTNG_CONSUMER_ADD_RELAYD_SOCKET;
987 /*
988 * Assign network consumer output index using the temporary consumer since
989 * this call should only be made from within a set_consumer_uri() function
990 * call in the session daemon.
991 */
992 msg.u.relayd_sock.net_index = consumer->net_seq_index;
993 msg.u.relayd_sock.type = type;
994 msg.u.relayd_sock.session_id = session_id;
995 memcpy(&msg.u.relayd_sock.sock, rsock, sizeof(msg.u.relayd_sock.sock));
996
997 DBG3("Sending relayd sock info to consumer on %d", *consumer_sock->fd_ptr);
998 ret = consumer_send_msg(consumer_sock, &msg);
999 if (ret < 0) {
1000 goto error;
1001 }
1002
1003 DBG3("Sending relayd socket file descriptor to consumer");
1004 ret = consumer_send_fds(consumer_sock, &rsock->sock.fd, 1);
1005 if (ret < 0) {
1006 goto error;
1007 }
1008
1009 DBG2("Consumer relayd socket sent");
1010
1011 error:
1012 return ret;
1013 }
1014
1015 /*
1016 * Set consumer subdirectory using the session name and a generated datetime if
1017 * needed. This is appended to the current subdirectory.
1018 */
1019 int consumer_set_subdir(struct consumer_output *consumer,
1020 const char *session_name)
1021 {
1022 int ret = 0;
1023 unsigned int have_default_name = 0;
1024 char datetime[16], tmp_path[PATH_MAX];
1025 time_t rawtime;
1026 struct tm *timeinfo;
1027
1028 assert(consumer);
1029 assert(session_name);
1030
1031 memset(tmp_path, 0, sizeof(tmp_path));
1032
1033 /* Flag if we have a default session. */
1034 if (strncmp(session_name, DEFAULT_SESSION_NAME "-",
1035 strlen(DEFAULT_SESSION_NAME) + 1) == 0) {
1036 have_default_name = 1;
1037 } else {
1038 /* Get date and time for session path */
1039 time(&rawtime);
1040 timeinfo = localtime(&rawtime);
1041 strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
1042 }
1043
1044 if (have_default_name) {
1045 ret = snprintf(tmp_path, sizeof(tmp_path),
1046 "%s/%s", consumer->subdir, session_name);
1047 } else {
1048 ret = snprintf(tmp_path, sizeof(tmp_path),
1049 "%s/%s-%s/", consumer->subdir, session_name, datetime);
1050 }
1051 if (ret < 0) {
1052 PERROR("snprintf session name date");
1053 goto error;
1054 }
1055
1056 strncpy(consumer->subdir, tmp_path, sizeof(consumer->subdir));
1057 DBG2("Consumer subdir set to %s", consumer->subdir);
1058
1059 error:
1060 return ret;
1061 }
1062
1063 /*
1064 * Ask the consumer if the data is ready to read (NOT pending) for the specific
1065 * session id.
1066 *
1067 * This function has a different behavior with the consumer i.e. that it waits
1068 * for a reply from the consumer if yes or no the data is pending.
1069 */
1070 int consumer_is_data_pending(uint64_t session_id,
1071 struct consumer_output *consumer)
1072 {
1073 int ret;
1074 int32_t ret_code = 0; /* Default is that the data is NOT pending */
1075 struct consumer_socket *socket;
1076 struct lttng_ht_iter iter;
1077 struct lttcomm_consumer_msg msg;
1078
1079 assert(consumer);
1080
1081 msg.cmd_type = LTTNG_CONSUMER_DATA_PENDING;
1082
1083 msg.u.data_pending.session_id = session_id;
1084
1085 DBG3("Consumer data pending for id %" PRIu64, session_id);
1086
1087 /* Send command for each consumer */
1088 rcu_read_lock();
1089 cds_lfht_for_each_entry(consumer->socks->ht, &iter.iter, socket,
1090 node.node) {
1091 pthread_mutex_lock(socket->lock);
1092 ret = consumer_socket_send(socket, &msg, sizeof(msg));
1093 if (ret < 0) {
1094 pthread_mutex_unlock(socket->lock);
1095 goto error_unlock;
1096 }
1097
1098 /*
1099 * No need for a recv reply status because the answer to the command is
1100 * the reply status message.
1101 */
1102
1103 ret = consumer_socket_recv(socket, &ret_code, sizeof(ret_code));
1104 if (ret < 0) {
1105 pthread_mutex_unlock(socket->lock);
1106 goto error_unlock;
1107 }
1108 pthread_mutex_unlock(socket->lock);
1109
1110 if (ret_code == 1) {
1111 break;
1112 }
1113 }
1114 rcu_read_unlock();
1115
1116 DBG("Consumer data is %s pending for session id %" PRIu64,
1117 ret_code == 1 ? "" : "NOT", session_id);
1118 return ret_code;
1119
1120 error_unlock:
1121 rcu_read_unlock();
1122 return -1;
1123 }
1124
1125 /*
1126 * Send a flush command to consumer using the given channel key.
1127 *
1128 * Return 0 on success else a negative value.
1129 */
1130 int consumer_flush_channel(struct consumer_socket *socket, uint64_t key)
1131 {
1132 int ret;
1133 struct lttcomm_consumer_msg msg;
1134
1135 assert(socket);
1136
1137 DBG2("Consumer flush channel key %" PRIu64, key);
1138
1139 msg.cmd_type = LTTNG_CONSUMER_FLUSH_CHANNEL;
1140 msg.u.flush_channel.key = key;
1141
1142 pthread_mutex_lock(socket->lock);
1143 health_code_update();
1144
1145 ret = consumer_send_msg(socket, &msg);
1146 if (ret < 0) {
1147 goto end;
1148 }
1149
1150 end:
1151 health_code_update();
1152 pthread_mutex_unlock(socket->lock);
1153 return ret;
1154 }
1155
1156 /*
1157 * Send a close metdata command to consumer using the given channel key.
1158 *
1159 * Return 0 on success else a negative value.
1160 */
1161 int consumer_close_metadata(struct consumer_socket *socket,
1162 uint64_t metadata_key)
1163 {
1164 int ret;
1165 struct lttcomm_consumer_msg msg;
1166
1167 assert(socket);
1168
1169 DBG2("Consumer close metadata channel key %" PRIu64, metadata_key);
1170
1171 msg.cmd_type = LTTNG_CONSUMER_CLOSE_METADATA;
1172 msg.u.close_metadata.key = metadata_key;
1173
1174 pthread_mutex_lock(socket->lock);
1175 health_code_update();
1176
1177 ret = consumer_send_msg(socket, &msg);
1178 if (ret < 0) {
1179 goto end;
1180 }
1181
1182 end:
1183 health_code_update();
1184 pthread_mutex_unlock(socket->lock);
1185 return ret;
1186 }
1187
1188 /*
1189 * Send a setup metdata command to consumer using the given channel key.
1190 *
1191 * Return 0 on success else a negative value.
1192 */
1193 int consumer_setup_metadata(struct consumer_socket *socket,
1194 uint64_t metadata_key)
1195 {
1196 int ret;
1197 struct lttcomm_consumer_msg msg;
1198
1199 assert(socket);
1200
1201 DBG2("Consumer setup metadata channel key %" PRIu64, metadata_key);
1202
1203 msg.cmd_type = LTTNG_CONSUMER_SETUP_METADATA;
1204 msg.u.setup_metadata.key = metadata_key;
1205
1206 pthread_mutex_lock(socket->lock);
1207 health_code_update();
1208
1209 ret = consumer_send_msg(socket, &msg);
1210 if (ret < 0) {
1211 goto end;
1212 }
1213
1214 end:
1215 health_code_update();
1216 pthread_mutex_unlock(socket->lock);
1217 return ret;
1218 }
1219
1220 /*
1221 * Send metadata string to consumer. Socket lock MUST be acquired.
1222 *
1223 * Return 0 on success else a negative value.
1224 */
1225 int consumer_push_metadata(struct consumer_socket *socket,
1226 uint64_t metadata_key, char *metadata_str, size_t len,
1227 size_t target_offset)
1228 {
1229 int ret;
1230 struct lttcomm_consumer_msg msg;
1231
1232 assert(socket);
1233
1234 DBG2("Consumer push metadata to consumer socket %d", *socket->fd_ptr);
1235
1236 msg.cmd_type = LTTNG_CONSUMER_PUSH_METADATA;
1237 msg.u.push_metadata.key = metadata_key;
1238 msg.u.push_metadata.target_offset = target_offset;
1239 msg.u.push_metadata.len = len;
1240
1241 health_code_update();
1242 ret = consumer_send_msg(socket, &msg);
1243 if (ret < 0 || len == 0) {
1244 goto end;
1245 }
1246
1247 DBG3("Consumer pushing metadata on sock %d of len %zu", *socket->fd_ptr,
1248 len);
1249
1250 ret = consumer_socket_send(socket, metadata_str, len);
1251 if (ret < 0) {
1252 goto end;
1253 }
1254
1255 health_code_update();
1256 ret = consumer_recv_status_reply(socket);
1257 if (ret < 0) {
1258 goto end;
1259 }
1260
1261 end:
1262 health_code_update();
1263 return ret;
1264 }
1265
1266 /*
1267 * Ask the consumer to snapshot a specific channel using the key.
1268 *
1269 * Return 0 on success or else a negative error.
1270 */
1271 int consumer_snapshot_channel(struct consumer_socket *socket, uint64_t key,
1272 struct snapshot_output *output, int metadata, uid_t uid, gid_t gid,
1273 const char *session_path, int wait, int max_stream_size)
1274 {
1275 int ret;
1276 struct lttcomm_consumer_msg msg;
1277
1278 assert(socket);
1279 assert(output);
1280 assert(output->consumer);
1281
1282 DBG("Consumer snapshot channel key %" PRIu64, key);
1283
1284 memset(&msg, 0, sizeof(msg));
1285 msg.cmd_type = LTTNG_CONSUMER_SNAPSHOT_CHANNEL;
1286 msg.u.snapshot_channel.key = key;
1287 msg.u.snapshot_channel.max_stream_size = max_stream_size;
1288 msg.u.snapshot_channel.metadata = metadata;
1289
1290 if (output->consumer->type == CONSUMER_DST_NET) {
1291 msg.u.snapshot_channel.relayd_id = output->consumer->net_seq_index;
1292 msg.u.snapshot_channel.use_relayd = 1;
1293 ret = snprintf(msg.u.snapshot_channel.pathname,
1294 sizeof(msg.u.snapshot_channel.pathname),
1295 "%s/%s-%s-%" PRIu64 "%s", output->consumer->subdir,
1296 output->name, output->datetime, output->nb_snapshot,
1297 session_path);
1298 if (ret < 0) {
1299 ret = -LTTNG_ERR_NOMEM;
1300 goto error;
1301 }
1302 } else {
1303 ret = snprintf(msg.u.snapshot_channel.pathname,
1304 sizeof(msg.u.snapshot_channel.pathname),
1305 "%s/%s-%s-%" PRIu64 "%s", output->consumer->dst.trace_path,
1306 output->name, output->datetime, output->nb_snapshot,
1307 session_path);
1308 if (ret < 0) {
1309 ret = -LTTNG_ERR_NOMEM;
1310 goto error;
1311 }
1312 msg.u.snapshot_channel.relayd_id = (uint64_t) -1ULL;
1313
1314 /* Create directory. Ignore if exist. */
1315 ret = run_as_mkdir_recursive(msg.u.snapshot_channel.pathname,
1316 S_IRWXU | S_IRWXG, uid, gid);
1317 if (ret < 0) {
1318 if (ret != -EEXIST) {
1319 ERR("Trace directory creation error");
1320 goto error;
1321 }
1322 }
1323 }
1324
1325 health_code_update();
1326 ret = consumer_send_msg(socket, &msg);
1327 if (ret < 0) {
1328 goto error;
1329 }
1330
1331 error:
1332 health_code_update();
1333 return ret;
1334 }
This page took 0.095879 seconds and 4 git commands to generate.