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