2 * Copyright (C) 2019 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
7 #include <common/defaults.hpp>
8 #include <common/error.hpp>
9 #include <common/macros.hpp>
10 #include <common/uri.hpp>
12 #include <lttng/session-descriptor-internal.hpp>
18 struct lttng_session_descriptor_network_location
{
19 struct lttng_uri
*control
;
20 struct lttng_uri
*data
;
24 struct lttng_session_descriptor
{
25 enum lttng_session_descriptor_type type
;
27 * If an output type that is not OUTPUT_TYPE_NONE is specified,
28 * it means that an output of that type must be generated at
29 * session-creation time.
31 enum lttng_session_descriptor_output_type output_type
;
34 struct lttng_session_descriptor_network_location network
;
35 struct lttng_uri
*local
;
40 struct lttng_session_descriptor_snapshot
{
41 struct lttng_session_descriptor base
;
43 * Assumes at-most one snapshot output is supported. Uses
44 * the output field of the base class.
48 struct lttng_session_descriptor_live
{
49 struct lttng_session_descriptor base
;
50 unsigned long long live_timer_us
;
53 struct lttng_session_descriptor_comm
{
54 /* enum lttng_session_descriptor_type */
56 /* enum lttng_session_descriptor_output_type */
58 /* Includes trailing null. */
60 /* Name follows, followed by URIs */
64 struct lttng_session_descriptor_live_comm
{
65 struct lttng_session_descriptor_comm base
;
66 /* Live-specific parameters. */
67 uint64_t live_timer_us
;
71 static struct lttng_uri
*uri_copy(const struct lttng_uri
*uri
)
73 struct lttng_uri
*new_uri
= nullptr;
79 new_uri
= zmalloc
<lttng_uri
>();
83 memcpy(new_uri
, uri
, sizeof(*new_uri
));
88 static struct lttng_uri
*uri_from_path(const char *path
)
90 struct lttng_uri
*uris
= nullptr;
92 char local_protocol_string
[LTTNG_PATH_MAX
+ sizeof("file://")] = "file://";
94 if (strlen(path
) >= LTTNG_PATH_MAX
) {
99 /* Not an absolute path. */
103 strncat(local_protocol_string
, path
, LTTNG_PATH_MAX
);
104 uri_count
= uri_parse(local_protocol_string
, &uris
);
105 if (uri_count
!= 1) {
108 if (uris
[0].dtype
!= LTTNG_DST_PATH
) {
119 static void network_location_fini(struct lttng_session_descriptor_network_location
*location
)
121 free(location
->control
);
122 free(location
->data
);
125 /* Assumes ownership of control and data. */
127 network_location_set_from_lttng_uris(struct lttng_session_descriptor_network_location
*location
,
128 struct lttng_uri
*control
,
129 struct lttng_uri
*data
)
133 if (!control
&& !data
) {
137 if (!(control
&& data
)) {
138 /* None or both must be set. */
143 if (control
->stype
!= LTTNG_STREAM_CONTROL
|| data
->stype
!= LTTNG_STREAM_DATA
) {
148 free(location
->control
);
149 free(location
->data
);
150 location
->control
= control
;
151 location
->data
= data
;
161 network_location_set_from_uri_strings(struct lttng_session_descriptor_network_location
*location
,
167 struct lttng_uri
*parsed_uris
= nullptr;
168 struct lttng_uri
*control_uri
= nullptr;
169 struct lttng_uri
*data_uri
= nullptr;
171 uri_count
= uri_parse_str_urls(control
, data
, &parsed_uris
);
172 if (uri_count
!= 2 && uri_count
!= 0) {
178 * uri_parse_str_urls returns a contiguous array of lttng_uris whereas
179 * session descriptors expect individually allocated lttng_uris.
181 if (uri_count
== 2) {
182 control_uri
= zmalloc
<lttng_uri
>();
183 data_uri
= zmalloc
<lttng_uri
>();
184 if (!control_uri
|| !data_uri
) {
188 memcpy(control_uri
, &parsed_uris
[0], sizeof(*control_uri
));
189 memcpy(data_uri
, &parsed_uris
[1], sizeof(*data_uri
));
192 /* Ownership of control and data uris is transferred. */
193 ret
= network_location_set_from_lttng_uris(location
, control_uri
, data_uri
);
194 control_uri
= nullptr;
203 struct lttng_session_descriptor
*lttng_session_descriptor_create(const char *name
)
205 struct lttng_session_descriptor
*descriptor
;
207 descriptor
= zmalloc
<lttng_session_descriptor
>();
212 descriptor
->type
= LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR
;
213 descriptor
->output_type
= LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
;
214 if (lttng_session_descriptor_set_session_name(descriptor
, name
)) {
219 lttng_session_descriptor_destroy(descriptor
);
223 /* Ownership of uri is transferred. */
224 static struct lttng_session_descriptor
*
225 _lttng_session_descriptor_local_create(const char *name
, struct lttng_uri
*uri
)
227 struct lttng_session_descriptor
*descriptor
;
229 descriptor
= lttng_session_descriptor_create(name
);
233 descriptor
->type
= LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR
;
234 descriptor
->output_type
= LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
;
236 if (uri
->dtype
!= LTTNG_DST_PATH
) {
239 descriptor
->output
.local
= uri
;
245 lttng_session_descriptor_destroy(descriptor
);
249 struct lttng_session_descriptor
*lttng_session_descriptor_local_create(const char *name
,
252 struct lttng_uri
*uri
= nullptr;
253 struct lttng_session_descriptor
*descriptor
;
256 uri
= uri_from_path(path
);
261 descriptor
= _lttng_session_descriptor_local_create(name
, uri
);
267 /* Assumes the ownership of both uris. */
268 static struct lttng_session_descriptor
*_lttng_session_descriptor_network_create(
269 const char *name
, struct lttng_uri
*control
, struct lttng_uri
*data
)
272 struct lttng_session_descriptor
*descriptor
;
274 descriptor
= lttng_session_descriptor_create(name
);
279 descriptor
->type
= LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR
;
280 descriptor
->output_type
= LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
;
281 /* Assumes the ownership of both uris. */
282 ret
= network_location_set_from_lttng_uris(&descriptor
->output
.network
, control
, data
);
290 lttng_session_descriptor_destroy(descriptor
);
296 struct lttng_session_descriptor
*lttng_session_descriptor_network_create(const char *name
,
297 const char *control_url
,
298 const char *data_url
)
301 struct lttng_session_descriptor
*descriptor
;
303 descriptor
= _lttng_session_descriptor_network_create(name
, nullptr, nullptr);
308 ret
= network_location_set_from_uri_strings(
309 &descriptor
->output
.network
, control_url
, data_url
);
315 lttng_session_descriptor_destroy(descriptor
);
319 static struct lttng_session_descriptor_snapshot
*
320 _lttng_session_descriptor_snapshot_create(const char *name
)
322 struct lttng_session_descriptor_snapshot
*descriptor
;
324 descriptor
= zmalloc
<lttng_session_descriptor_snapshot
>();
329 descriptor
->base
.type
= LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
;
330 descriptor
->base
.output_type
= LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
;
331 if (lttng_session_descriptor_set_session_name(&descriptor
->base
, name
)) {
336 lttng_session_descriptor_destroy(descriptor
? &descriptor
->base
: nullptr);
340 /* Ownership of control and data is transferred. */
341 static struct lttng_session_descriptor_snapshot
*_lttng_session_descriptor_snapshot_network_create(
342 const char *name
, struct lttng_uri
*control
, struct lttng_uri
*data
)
345 struct lttng_session_descriptor_snapshot
*descriptor
;
347 descriptor
= _lttng_session_descriptor_snapshot_create(name
);
352 descriptor
->base
.output_type
= LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
;
353 /* Ownership of control and data is transferred. */
354 ret
= network_location_set_from_lttng_uris(&descriptor
->base
.output
.network
, control
, data
);
364 lttng_session_descriptor_destroy(descriptor
? &descriptor
->base
: nullptr);
368 struct lttng_session_descriptor
*lttng_session_descriptor_snapshot_create(const char *name
)
370 struct lttng_session_descriptor_snapshot
*descriptor
;
372 descriptor
= _lttng_session_descriptor_snapshot_create(name
);
373 return descriptor
? &descriptor
->base
: nullptr;
376 struct lttng_session_descriptor
*lttng_session_descriptor_snapshot_network_create(
377 const char *name
, const char *control_url
, const char *data_url
)
380 struct lttng_session_descriptor_snapshot
*descriptor
;
382 descriptor
= _lttng_session_descriptor_snapshot_network_create(name
, nullptr, nullptr);
387 ret
= network_location_set_from_uri_strings(
388 &descriptor
->base
.output
.network
, control_url
, data_url
);
392 return &descriptor
->base
;
394 lttng_session_descriptor_destroy(descriptor
? &descriptor
->base
: nullptr);
398 /* Ownership of uri is transferred. */
399 static struct lttng_session_descriptor_snapshot
*
400 _lttng_session_descriptor_snapshot_local_create(const char *name
, struct lttng_uri
*uri
)
402 struct lttng_session_descriptor_snapshot
*descriptor
;
404 descriptor
= _lttng_session_descriptor_snapshot_create(name
);
408 descriptor
->base
.output_type
= LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
;
410 if (uri
->dtype
!= LTTNG_DST_PATH
) {
413 descriptor
->base
.output
.local
= uri
;
419 lttng_session_descriptor_destroy(descriptor
? &descriptor
->base
: nullptr);
423 struct lttng_session_descriptor
*lttng_session_descriptor_snapshot_local_create(const char *name
,
426 struct lttng_uri
*path_uri
= nullptr;
427 struct lttng_session_descriptor_snapshot
*descriptor
;
430 path_uri
= uri_from_path(path
);
435 descriptor
= _lttng_session_descriptor_snapshot_local_create(name
, path_uri
);
436 return descriptor
? &descriptor
->base
: nullptr;
441 static struct lttng_session_descriptor_live
*
442 _lttng_session_descriptor_live_create(const char *name
, unsigned long long live_timer_interval_us
)
444 struct lttng_session_descriptor_live
*descriptor
= nullptr;
446 if (live_timer_interval_us
== 0) {
449 descriptor
= zmalloc
<lttng_session_descriptor_live
>();
454 descriptor
->base
.type
= LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
;
455 descriptor
->base
.output_type
= LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
;
456 descriptor
->live_timer_us
= live_timer_interval_us
;
457 if (lttng_session_descriptor_set_session_name(&descriptor
->base
, name
)) {
463 lttng_session_descriptor_destroy(descriptor
? &descriptor
->base
: nullptr);
467 /* Ownership of control and data is transferred. */
468 static struct lttng_session_descriptor_live
*
469 _lttng_session_descriptor_live_network_create(const char *name
,
470 struct lttng_uri
*control
,
471 struct lttng_uri
*data
,
472 unsigned long long live_timer_interval_us
)
475 struct lttng_session_descriptor_live
*descriptor
;
477 descriptor
= _lttng_session_descriptor_live_create(name
, live_timer_interval_us
);
482 descriptor
->base
.output_type
= LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
;
484 /* Ownerwhip of control and data is transferred. */
485 ret
= network_location_set_from_lttng_uris(&descriptor
->base
.output
.network
, control
, data
);
495 lttng_session_descriptor_destroy(descriptor
? &descriptor
->base
: nullptr);
499 struct lttng_session_descriptor
*
500 lttng_session_descriptor_live_create(const char *name
, unsigned long long live_timer_us
)
502 struct lttng_session_descriptor_live
*descriptor
;
504 descriptor
= _lttng_session_descriptor_live_create(name
, live_timer_us
);
506 return descriptor
? &descriptor
->base
: nullptr;
509 struct lttng_session_descriptor
*
510 lttng_session_descriptor_live_network_create(const char *name
,
511 const char *control_url
,
512 const char *data_url
,
513 unsigned long long live_timer_us
)
516 struct lttng_session_descriptor_live
*descriptor
;
518 descriptor
= _lttng_session_descriptor_live_network_create(
519 name
, nullptr, nullptr, live_timer_us
);
524 ret
= network_location_set_from_uri_strings(
525 &descriptor
->base
.output
.network
, control_url
, data_url
);
529 return &descriptor
->base
;
531 lttng_session_descriptor_destroy(descriptor
? &descriptor
->base
: nullptr);
535 void lttng_session_descriptor_destroy(struct lttng_session_descriptor
*descriptor
)
541 switch (descriptor
->output_type
) {
542 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
544 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
545 free(descriptor
->output
.local
);
547 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
548 network_location_fini(&descriptor
->output
.network
);
554 free(descriptor
->name
);
558 ssize_t
lttng_session_descriptor_create_from_buffer(const struct lttng_buffer_view
*payload
,
559 struct lttng_session_descriptor
**descriptor
)
562 ssize_t offset
= 0, ret
;
563 struct lttng_buffer_view current_view
;
564 const char *name
= nullptr;
565 const struct lttng_session_descriptor_comm
*base_header
;
566 size_t max_expected_uri_count
;
567 uint64_t live_timer_us
= 0;
568 struct lttng_uri
*uris
[2] = {};
569 enum lttng_session_descriptor_type type
;
570 enum lttng_session_descriptor_output_type output_type
;
572 current_view
= lttng_buffer_view_from_view(payload
, offset
, sizeof(*base_header
));
573 if (!lttng_buffer_view_is_valid(¤t_view
)) {
578 base_header
= (typeof(base_header
)) current_view
.data
;
579 switch (base_header
->type
) {
580 case LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR
:
581 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
583 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
585 const struct lttng_session_descriptor_live_comm
*live_header
;
587 current_view
= lttng_buffer_view_from_view(payload
, offset
, sizeof(*live_header
));
588 if (!lttng_buffer_view_is_valid(¤t_view
)) {
593 live_header
= (typeof(live_header
)) current_view
.data
;
594 live_timer_us
= live_header
->live_timer_us
;
601 /* type has been validated. */
602 type
= (lttng_session_descriptor_type
) base_header
->type
;
604 switch (base_header
->output_type
) {
605 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
606 max_expected_uri_count
= 0;
608 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
609 max_expected_uri_count
= 1;
611 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
612 max_expected_uri_count
= 2;
618 /* output_type has been validated. */
619 output_type
= (lttng_session_descriptor_output_type
) base_header
->output_type
;
621 /* Skip after header. */
622 offset
+= current_view
.size
;
623 if (!base_header
->name_len
) {
628 current_view
= lttng_buffer_view_from_view(payload
, offset
, base_header
->name_len
);
629 if (!lttng_buffer_view_is_valid(¤t_view
)) {
634 name
= current_view
.data
;
635 if (base_header
->name_len
== 1 || name
[base_header
->name_len
- 1] ||
636 strlen(name
) != base_header
->name_len
- 1) {
638 * Check that the name is not NULL, is NULL-terminated, and
639 * does not contain a NULL before the last byte.
645 /* Skip after the name. */
646 offset
+= base_header
->name_len
;
648 if (base_header
->uri_count
> max_expected_uri_count
) {
653 for (i
= 0; i
< base_header
->uri_count
; i
++) {
654 struct lttng_uri
*uri
;
657 current_view
= lttng_buffer_view_from_view(payload
, offset
, sizeof(*uri
));
658 if (!lttng_buffer_view_is_valid(¤t_view
)) {
663 uri
= (typeof(uri
)) current_view
.data
;
664 uris
[i
] = zmalloc
<lttng_uri
>();
669 memcpy(uris
[i
], uri
, sizeof(*uri
));
670 offset
+= sizeof(*uri
);
674 case LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR
:
675 switch (output_type
) {
676 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
677 *descriptor
= lttng_session_descriptor_create(name
);
679 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
680 *descriptor
= _lttng_session_descriptor_local_create(name
, uris
[0]);
682 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
684 _lttng_session_descriptor_network_create(name
, uris
[0], uris
[1]);
687 /* Already checked. */
691 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT
:
693 struct lttng_session_descriptor_snapshot
*snapshot
;
694 switch (output_type
) {
695 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
696 snapshot
= _lttng_session_descriptor_snapshot_create(name
);
698 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
699 snapshot
= _lttng_session_descriptor_snapshot_local_create(name
, uris
[0]);
701 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
702 snapshot
= _lttng_session_descriptor_snapshot_network_create(
703 name
, uris
[0], uris
[1]);
706 /* Already checked. */
709 *descriptor
= snapshot
? &snapshot
->base
: nullptr;
712 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
:
714 struct lttng_session_descriptor_live
*live
;
716 switch (output_type
) {
717 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
718 live
= _lttng_session_descriptor_live_create(name
, live_timer_us
);
720 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
721 live
= _lttng_session_descriptor_live_network_create(
722 name
, uris
[0], uris
[1], live_timer_us
);
724 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
728 /* Already checked. */
731 *descriptor
= live
? &live
->base
: nullptr;
735 /* Already checked. */
738 memset(uris
, 0, sizeof(uris
));
751 int lttng_session_descriptor_serialize(const struct lttng_session_descriptor
*descriptor
,
752 struct lttng_dynamic_buffer
*buffer
)
755 /* There are, at most, two URIs to serialize. */
756 struct lttng_uri
*uris
[2] = {};
757 size_t uri_count
= 0;
758 /* The live header is a superset of all headers. */
759 struct lttng_session_descriptor_live_comm header
= {
761 .type
= (uint8_t) descriptor
->type
,
762 .output_type
= (uint8_t) descriptor
->output_type
,
763 .name_len
= (uint32_t) (descriptor
->name
?
764 strlen(descriptor
->name
) + 1 : 0),
770 const void *header_ptr
= nullptr;
773 switch (descriptor
->output_type
) {
774 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
776 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
777 uris
[0] = descriptor
->output
.local
;
779 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
780 uris
[0] = descriptor
->output
.network
.control
;
781 uris
[1] = descriptor
->output
.network
.data
;
787 uri_count
+= !!uris
[0];
788 uri_count
+= !!uris
[1];
790 header
.base
.uri_count
= uri_count
;
791 if (descriptor
->type
== LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE
) {
792 const struct lttng_session_descriptor_live
*live
= lttng::utils::container_of(
793 descriptor
, <tng_session_descriptor_live::base
);
795 header
.live_timer_us
= live
->live_timer_us
;
796 header_ptr
= &header
;
797 header_size
= sizeof(header
);
799 header_ptr
= &header
.base
;
800 header_size
= sizeof(header
.base
);
803 ret
= lttng_dynamic_buffer_append(buffer
, header_ptr
, header_size
);
807 if (header
.base
.name_len
) {
808 ret
= lttng_dynamic_buffer_append(buffer
, descriptor
->name
, header
.base
.name_len
);
814 for (i
= 0; i
< uri_count
; i
++) {
815 ret
= lttng_dynamic_buffer_append(buffer
, uris
[i
], sizeof(struct lttng_uri
));
824 enum lttng_session_descriptor_type
825 lttng_session_descriptor_get_type(const struct lttng_session_descriptor
*descriptor
)
827 return descriptor
->type
;
830 enum lttng_session_descriptor_output_type
831 lttng_session_descriptor_get_output_type(const struct lttng_session_descriptor
*descriptor
)
833 return descriptor
->output_type
;
836 void lttng_session_descriptor_get_local_output_uri(
837 const struct lttng_session_descriptor
*descriptor
, struct lttng_uri
*local_uri
)
839 memcpy(local_uri
, descriptor
->output
.local
, sizeof(*local_uri
));
842 void lttng_session_descriptor_get_network_output_uris(
843 const struct lttng_session_descriptor
*descriptor
,
844 struct lttng_uri
*control
,
845 struct lttng_uri
*data
)
847 memcpy(control
, descriptor
->output
.network
.control
, sizeof(*control
));
848 memcpy(data
, descriptor
->output
.network
.data
, sizeof(*data
));
852 lttng_session_descriptor_live_get_timer_interval(const struct lttng_session_descriptor
*descriptor
)
854 struct lttng_session_descriptor_live
*live
;
856 live
= lttng::utils::container_of(descriptor
, <tng_session_descriptor_live::base
);
857 return live
->live_timer_us
;
860 enum lttng_session_descriptor_status
861 lttng_session_descriptor_get_session_name(const struct lttng_session_descriptor
*descriptor
,
862 const char **session_name
)
864 enum lttng_session_descriptor_status status
;
866 if (!descriptor
|| !session_name
) {
867 status
= LTTNG_SESSION_DESCRIPTOR_STATUS_INVALID
;
871 *session_name
= descriptor
->name
;
872 status
= descriptor
->name
? LTTNG_SESSION_DESCRIPTOR_STATUS_OK
:
873 LTTNG_SESSION_DESCRIPTOR_STATUS_UNSET
;
878 int lttng_session_descriptor_set_session_name(struct lttng_session_descriptor
*descriptor
,
887 if (strlen(name
) >= LTTNG_NAME_MAX
) {
891 new_name
= strdup(name
);
896 free(descriptor
->name
);
897 descriptor
->name
= new_name
;
902 bool lttng_session_descriptor_is_output_destination_initialized(
903 const struct lttng_session_descriptor
*descriptor
)
905 switch (descriptor
->output_type
) {
906 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
908 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
909 return descriptor
->output
.local
;
910 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
911 return descriptor
->output
.network
.control
;
917 bool lttng_session_descriptor_has_output_directory(const struct lttng_session_descriptor
*descriptor
)
919 switch (descriptor
->output_type
) {
920 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
922 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
923 if (descriptor
->output
.local
) {
924 return *descriptor
->output
.local
->dst
.path
;
927 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
928 if (descriptor
->output
.network
.control
) {
929 return *descriptor
->output
.network
.control
->subdir
;
938 enum lttng_error_code
939 lttng_session_descriptor_set_default_output(struct lttng_session_descriptor
*descriptor
,
940 time_t *session_creation_time
,
941 const char *absolute_home_path
)
943 enum lttng_error_code ret_code
= LTTNG_OK
;
944 struct lttng_uri
*uris
= nullptr;
946 switch (descriptor
->output_type
) {
947 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
:
949 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
953 char local_uri
[LTTNG_PATH_MAX
];
954 char creation_datetime_suffix
[17] = {};
956 if (session_creation_time
) {
960 timeinfo
= localtime(session_creation_time
);
962 ret_code
= LTTNG_ERR_FATAL
;
965 strftime_ret
= strftime(creation_datetime_suffix
,
966 sizeof(creation_datetime_suffix
),
969 if (strftime_ret
== 0) {
970 ERR("Failed to format session creation timestamp while setting default local output destination");
971 ret_code
= LTTNG_ERR_FATAL
;
975 LTTNG_ASSERT(descriptor
->name
);
976 ret
= snprintf(local_uri
,
980 DEFAULT_TRACE_DIR_NAME
,
982 creation_datetime_suffix
);
983 if (ret
>= sizeof(local_uri
)) {
984 ERR("Truncation occurred while setting default local output destination");
985 ret_code
= LTTNG_ERR_SET_URL
;
987 } else if (ret
< 0) {
988 PERROR("Failed to format default local output URI");
989 ret_code
= LTTNG_ERR_SET_URL
;
993 uri_ret
= uri_parse(local_uri
, &uris
);
995 ret_code
= LTTNG_ERR_SET_URL
;
998 free(descriptor
->output
.local
);
999 descriptor
->output
.local
= &uris
[0];
1003 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
1007 struct lttng_uri
*control
= nullptr, *data
= nullptr;
1009 uri_ret
= uri_parse_str_urls("net://127.0.0.1", nullptr, &uris
);
1011 ret_code
= LTTNG_ERR_SET_URL
;
1015 control
= uri_copy(&uris
[0]);
1016 data
= uri_copy(&uris
[1]);
1017 if (!control
|| !data
) {
1020 ret_code
= LTTNG_ERR_SET_URL
;
1024 /* Ownership of uris is transferred. */
1025 ret
= network_location_set_from_lttng_uris(
1026 &descriptor
->output
.network
, control
, data
);
1029 ret_code
= LTTNG_ERR_SET_URL
;
1043 * Note that only properties that can be populated by the session daemon
1044 * (output destination and name) are assigned.
1046 int lttng_session_descriptor_assign(struct lttng_session_descriptor
*dst
,
1047 const struct lttng_session_descriptor
*src
)
1051 if (dst
->type
!= src
->type
) {
1055 if (dst
->output_type
!= src
->output_type
) {
1059 ret
= lttng_session_descriptor_set_session_name(dst
, src
->name
);
1063 switch (dst
->output_type
) {
1064 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL
:
1065 free(dst
->output
.local
);
1066 dst
->output
.local
= uri_copy(src
->output
.local
);
1067 if (!dst
->output
.local
) {
1072 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK
:
1074 struct lttng_uri
*control_copy
= nullptr, *data_copy
= nullptr;
1076 control_copy
= uri_copy(dst
->output
.network
.control
);
1077 if (!control_copy
&& dst
->output
.network
.control
) {
1081 data_copy
= uri_copy(dst
->output
.network
.data
);
1082 if (!data_copy
&& dst
->output
.network
.data
) {
1087 ret
= network_location_set_from_lttng_uris(
1088 &dst
->output
.network
, control_copy
, data_copy
);
1091 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE
: