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