2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
9 #include <common/error.h>
10 #include <common/macros.h>
11 #include <common/compat/string.h>
13 #include <lttng/constant.h>
14 #include <lttng/userspace-probe-internal.h>
16 enum lttng_userspace_probe_location_lookup_method_type
17 lttng_userspace_probe_location_lookup_method_get_type(
18 const struct lttng_userspace_probe_location_lookup_method
*lookup_method
)
20 return lookup_method
? lookup_method
->type
:
21 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_UNKNOWN
;
24 void lttng_userspace_probe_location_lookup_method_destroy(
25 struct lttng_userspace_probe_location_lookup_method
*lookup_method
)
34 struct lttng_userspace_probe_location_lookup_method
*
35 lttng_userspace_probe_location_lookup_method_function_elf_create(void)
37 struct lttng_userspace_probe_location_lookup_method
*ret
= NULL
;
38 struct lttng_userspace_probe_location_lookup_method_elf
*elf_method
;
40 elf_method
= zmalloc(sizeof(*elf_method
));
46 ret
= &elf_method
->parent
;
47 ret
->type
= LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF
;
52 struct lttng_userspace_probe_location_lookup_method
*
53 lttng_userspace_probe_location_lookup_method_tracepoint_sdt_create(void)
55 struct lttng_userspace_probe_location_lookup_method
*ret
= NULL
;
56 struct lttng_userspace_probe_location_lookup_method_sdt
*sdt_method
;
58 sdt_method
= zmalloc(sizeof(*sdt_method
));
64 ret
= &sdt_method
->parent
;
65 ret
->type
= LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT
;
70 enum lttng_userspace_probe_location_type
lttng_userspace_probe_location_get_type(
71 const struct lttng_userspace_probe_location
*location
)
73 return location
? location
->type
:
74 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_UNKNOWN
;
78 void lttng_userspace_probe_location_function_destroy(
79 struct lttng_userspace_probe_location
*location
)
81 struct lttng_userspace_probe_location_function
*location_function
= NULL
;
85 location_function
= container_of(location
,
86 struct lttng_userspace_probe_location_function
, parent
);
88 assert(location_function
);
90 free(location_function
->function_name
);
91 free(location_function
->binary_path
);
92 if (location_function
->binary_fd
>= 0) {
93 if (close(location_function
->binary_fd
)) {
101 void lttng_userspace_probe_location_tracepoint_destroy(
102 struct lttng_userspace_probe_location
*location
)
104 struct lttng_userspace_probe_location_tracepoint
*location_tracepoint
= NULL
;
108 location_tracepoint
= container_of(location
,
109 struct lttng_userspace_probe_location_tracepoint
,
112 assert(location_tracepoint
);
114 free(location_tracepoint
->probe_name
);
115 free(location_tracepoint
->provider_name
);
116 free(location_tracepoint
->binary_path
);
117 if (location_tracepoint
->binary_fd
>= 0) {
118 if (close(location_tracepoint
->binary_fd
)) {
125 void lttng_userspace_probe_location_destroy(
126 struct lttng_userspace_probe_location
*location
)
132 lttng_userspace_probe_location_lookup_method_destroy(
133 location
->lookup_method
);
135 switch (location
->type
) {
136 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
:
137 lttng_userspace_probe_location_function_destroy(location
);
139 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
:
140 lttng_userspace_probe_location_tracepoint_destroy(location
);
147 static struct lttng_userspace_probe_location
*
148 lttng_userspace_probe_location_function_create_no_check(const char *binary_path
,
149 const char *function_name
,
150 struct lttng_userspace_probe_location_lookup_method
*lookup_method
,
154 char *function_name_copy
= NULL
, *binary_path_copy
= NULL
;
155 struct lttng_userspace_probe_location
*ret
= NULL
;
156 struct lttng_userspace_probe_location_function
*location
;
159 binary_fd
= open(binary_path
, O_RDONLY
);
161 PERROR("Error opening the binary");
168 function_name_copy
= lttng_strndup(function_name
, LTTNG_SYMBOL_NAME_LEN
);
169 if (!function_name_copy
) {
170 PERROR("Error duplicating the function name");
174 binary_path_copy
= lttng_strndup(binary_path
, LTTNG_PATH_MAX
);
175 if (!binary_path_copy
) {
176 PERROR("Error duplicating the function name");
180 location
= zmalloc(sizeof(*location
));
182 PERROR("Error allocating userspace probe location");
186 location
->function_name
= function_name_copy
;
187 location
->binary_path
= binary_path_copy
;
188 location
->binary_fd
= binary_fd
;
189 location
->instrumentation_type
=
190 LTTNG_USERSPACE_PROBE_LOCATION_FUNCTION_INSTRUMENTATION_TYPE_ENTRY
;
192 ret
= &location
->parent
;
193 ret
->lookup_method
= lookup_method
;
194 ret
->type
= LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
;
198 free(function_name_copy
);
199 free(binary_path_copy
);
200 if (binary_fd
>= 0) {
201 if (close(binary_fd
)) {
202 PERROR("Error closing binary fd in error path");
209 static struct lttng_userspace_probe_location
*
210 lttng_userspace_probe_location_tracepoint_create_no_check(const char *binary_path
,
211 const char *provider_name
, const char *probe_name
,
212 struct lttng_userspace_probe_location_lookup_method
*lookup_method
,
216 char *probe_name_copy
= NULL
;
217 char *provider_name_copy
= NULL
;
218 char *binary_path_copy
= NULL
;
219 struct lttng_userspace_probe_location
*ret
= NULL
;
220 struct lttng_userspace_probe_location_tracepoint
*location
;
223 binary_fd
= open(binary_path
, O_RDONLY
);
232 probe_name_copy
= lttng_strndup(probe_name
, LTTNG_SYMBOL_NAME_LEN
);
233 if (!probe_name_copy
) {
234 PERROR("lttng_strndup");
238 provider_name_copy
= lttng_strndup(provider_name
, LTTNG_SYMBOL_NAME_LEN
);
239 if (!provider_name_copy
) {
240 PERROR("lttng_strndup");
244 binary_path_copy
= lttng_strndup(binary_path
, LTTNG_PATH_MAX
);
245 if (!binary_path_copy
) {
246 PERROR("lttng_strndup");
250 location
= zmalloc(sizeof(*location
));
256 location
->probe_name
= probe_name_copy
;
257 location
->provider_name
= provider_name_copy
;
258 location
->binary_path
= binary_path_copy
;
259 location
->binary_fd
= binary_fd
;
261 ret
= &location
->parent
;
262 ret
->lookup_method
= lookup_method
;
263 ret
->type
= LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
;
267 free(probe_name_copy
);
268 free(provider_name_copy
);
269 free(binary_path_copy
);
270 if (binary_fd
>= 0) {
271 if (close(binary_fd
)) {
272 PERROR("Error closing binary fd in error path");
279 struct lttng_userspace_probe_location
*
280 lttng_userspace_probe_location_function_create(const char *binary_path
,
281 const char *function_name
,
282 struct lttng_userspace_probe_location_lookup_method
*lookup_method
)
284 struct lttng_userspace_probe_location
*ret
= NULL
;
286 if (!binary_path
|| !function_name
) {
287 ERR("Invalid argument(s)");
291 switch (lttng_userspace_probe_location_lookup_method_get_type(
293 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_DEFAULT
:
294 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF
:
297 /* Invalid probe location lookup method. */
301 ret
= lttng_userspace_probe_location_function_create_no_check(
302 binary_path
, function_name
, lookup_method
, true);
307 struct lttng_userspace_probe_location
*
308 lttng_userspace_probe_location_tracepoint_create(const char *binary_path
,
309 const char *provider_name
, const char *probe_name
,
310 struct lttng_userspace_probe_location_lookup_method
*lookup_method
)
312 struct lttng_userspace_probe_location
*ret
= NULL
;
314 if (!binary_path
|| !probe_name
|| !provider_name
) {
315 ERR("Invalid argument(s)");
319 switch (lttng_userspace_probe_location_lookup_method_get_type(
321 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT
:
324 /* Invalid probe location lookup method. */
328 ret
= lttng_userspace_probe_location_tracepoint_create_no_check(
329 binary_path
, provider_name
, probe_name
, lookup_method
, true);
334 static struct lttng_userspace_probe_location_lookup_method
*
335 lttng_userspace_probe_location_lookup_method_function_elf_copy(
336 const struct lttng_userspace_probe_location_lookup_method
*lookup_method
)
338 struct lttng_userspace_probe_location_lookup_method
*parent
= NULL
;
339 struct lttng_userspace_probe_location_lookup_method_elf
*elf_method
;
341 assert(lookup_method
);
342 assert(lookup_method
->type
==
343 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF
);
345 elf_method
= zmalloc(sizeof(*elf_method
));
347 PERROR("Error allocating ELF userspace probe lookup method");
351 elf_method
->parent
.type
= lookup_method
->type
;
352 parent
= &elf_method
->parent
;
361 static struct lttng_userspace_probe_location_lookup_method
*
362 lttng_userspace_probe_location_lookup_method_tracepoint_sdt_copy(
363 struct lttng_userspace_probe_location_lookup_method
*lookup_method
)
365 struct lttng_userspace_probe_location_lookup_method
*parent
= NULL
;
366 struct lttng_userspace_probe_location_lookup_method_sdt
*sdt_method
;
368 assert(lookup_method
);
369 assert(lookup_method
->type
==
370 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT
);
372 sdt_method
= zmalloc(sizeof(*sdt_method
));
378 sdt_method
->parent
.type
= lookup_method
->type
;
379 parent
= &sdt_method
->parent
;
389 static struct lttng_userspace_probe_location
*
390 lttng_userspace_probe_location_function_copy(
391 const struct lttng_userspace_probe_location
*location
)
393 enum lttng_userspace_probe_location_lookup_method_type lookup_type
;
394 struct lttng_userspace_probe_location
*new_location
= NULL
;
395 struct lttng_userspace_probe_location_lookup_method
*lookup_method
= NULL
;
396 const char *binary_path
= NULL
;
397 const char *function_name
= NULL
;
401 assert(location
->type
== LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
);
403 /* Get probe location fields */
404 binary_path
= lttng_userspace_probe_location_function_get_binary_path(location
);
406 ERR("Userspace probe binary path is NULL");
410 function_name
= lttng_userspace_probe_location_function_get_function_name(location
);
411 if (!function_name
) {
412 ERR("Userspace probe function name is NULL");
416 /* Duplicate the binary fd */
417 fd
= lttng_userspace_probe_location_function_get_binary_fd(location
);
419 ERR("Error getting file descriptor to binary");
425 PERROR("Error duplicating file descriptor to binary");
430 * Duplicate probe location method fields
432 lookup_type
= lttng_userspace_probe_location_lookup_method_get_type(
433 location
->lookup_method
);
434 switch (lookup_type
) {
435 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF
:
437 lttng_userspace_probe_location_lookup_method_function_elf_copy(
438 location
->lookup_method
);
439 if (!lookup_method
) {
444 /* Invalid probe location lookup method. */
448 /* Create the probe_location */
449 new_location
= lttng_userspace_probe_location_function_create_no_check(
450 binary_path
, function_name
, lookup_method
, false);
452 goto destroy_lookup_method
;
455 /* Set the duplicated fd to the new probe_location */
456 if (lttng_userspace_probe_location_function_set_binary_fd(new_location
, new_fd
) < 0) {
457 goto destroy_probe_location
;
462 destroy_probe_location
:
463 lttng_userspace_probe_location_destroy(new_location
);
464 destroy_lookup_method
:
465 lttng_userspace_probe_location_lookup_method_destroy(lookup_method
);
467 if (close(new_fd
) < 0) {
468 PERROR("Error closing duplicated file descriptor in error path");
476 static struct lttng_userspace_probe_location
*
477 lttng_userspace_probe_location_tracepoint_copy(
478 const struct lttng_userspace_probe_location
*location
)
480 enum lttng_userspace_probe_location_lookup_method_type lookup_type
;
481 struct lttng_userspace_probe_location
*new_location
= NULL
;
482 struct lttng_userspace_probe_location_lookup_method
*lookup_method
= NULL
;
483 const char *binary_path
= NULL
;
484 const char *probe_name
= NULL
;
485 const char *provider_name
= NULL
;
489 assert(location
->type
== LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
);
491 /* Get probe location fields */
492 binary_path
= lttng_userspace_probe_location_tracepoint_get_binary_path(location
);
494 ERR("Userspace probe binary path is NULL");
498 probe_name
= lttng_userspace_probe_location_tracepoint_get_probe_name(location
);
500 ERR("Userspace probe probe name is NULL");
504 provider_name
= lttng_userspace_probe_location_tracepoint_get_provider_name(location
);
505 if (!provider_name
) {
506 ERR("Userspace probe provider name is NULL");
510 /* Duplicate the binary fd */
511 fd
= lttng_userspace_probe_location_tracepoint_get_binary_fd(location
);
513 ERR("Error getting file descriptor to binary");
519 PERROR("Error duplicating file descriptor to binary");
524 * Duplicate probe location method fields
526 lookup_type
= lttng_userspace_probe_location_lookup_method_get_type(
527 location
->lookup_method
);
528 switch (lookup_type
) {
529 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT
:
531 lttng_userspace_probe_location_lookup_method_tracepoint_sdt_copy(
532 location
->lookup_method
);
533 if (!lookup_method
) {
538 /* Invalid probe location lookup method. */
542 /* Create the probe_location */
543 new_location
= lttng_userspace_probe_location_tracepoint_create_no_check(
544 binary_path
, provider_name
, probe_name
, lookup_method
, false);
546 goto destroy_lookup_method
;
549 /* Set the duplicated fd to the new probe_location */
550 if (lttng_userspace_probe_location_tracepoint_set_binary_fd(new_location
, new_fd
) < 0) {
551 goto destroy_probe_location
;
556 destroy_probe_location
:
557 lttng_userspace_probe_location_destroy(new_location
);
558 destroy_lookup_method
:
559 lttng_userspace_probe_location_lookup_method_destroy(lookup_method
);
561 if (close(new_fd
) < 0) {
562 PERROR("Error closing duplicated file descriptor in error path");
570 const char *lttng_userspace_probe_location_function_get_binary_path(
571 const struct lttng_userspace_probe_location
*location
)
573 const char *ret
= NULL
;
574 struct lttng_userspace_probe_location_function
*function_location
;
576 if (!location
|| lttng_userspace_probe_location_get_type(location
) !=
577 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
) {
578 ERR("Invalid argument(s)");
582 function_location
= container_of(location
,
583 struct lttng_userspace_probe_location_function
,
585 ret
= function_location
->binary_path
;
590 const char *lttng_userspace_probe_location_tracepoint_get_binary_path(
591 const struct lttng_userspace_probe_location
*location
)
593 const char *ret
= NULL
;
594 struct lttng_userspace_probe_location_tracepoint
*tracepoint_location
;
596 if (!location
|| lttng_userspace_probe_location_get_type(location
) !=
597 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
) {
598 ERR("Invalid argument(s)");
602 tracepoint_location
= container_of(location
,
603 struct lttng_userspace_probe_location_tracepoint
,
605 ret
= tracepoint_location
->binary_path
;
610 const char *lttng_userspace_probe_location_function_get_function_name(
611 const struct lttng_userspace_probe_location
*location
)
613 const char *ret
= NULL
;
614 struct lttng_userspace_probe_location_function
*function_location
;
616 if (!location
|| lttng_userspace_probe_location_get_type(location
) !=
617 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
) {
618 ERR("Invalid argument(s)");
622 function_location
= container_of(location
,
623 struct lttng_userspace_probe_location_function
, parent
);
624 ret
= function_location
->function_name
;
629 const char *lttng_userspace_probe_location_tracepoint_get_probe_name(
630 const struct lttng_userspace_probe_location
*location
)
632 const char *ret
= NULL
;
633 struct lttng_userspace_probe_location_tracepoint
*tracepoint_location
;
635 if (!location
|| lttng_userspace_probe_location_get_type(location
) !=
636 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
) {
637 ERR("Invalid argument(s)");
641 tracepoint_location
= container_of(location
,
642 struct lttng_userspace_probe_location_tracepoint
, parent
);
643 ret
= tracepoint_location
->probe_name
;
648 const char *lttng_userspace_probe_location_tracepoint_get_provider_name(
649 const struct lttng_userspace_probe_location
*location
)
651 const char *ret
= NULL
;
652 struct lttng_userspace_probe_location_tracepoint
*tracepoint_location
;
654 if (!location
|| lttng_userspace_probe_location_get_type(location
) !=
655 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
) {
656 ERR("Invalid argument(s)");
660 tracepoint_location
= container_of(location
,
661 struct lttng_userspace_probe_location_tracepoint
, parent
);
662 ret
= tracepoint_location
->provider_name
;
667 int lttng_userspace_probe_location_function_get_binary_fd(
668 const struct lttng_userspace_probe_location
*location
)
671 struct lttng_userspace_probe_location_function
*function_location
;
673 if (!location
|| lttng_userspace_probe_location_get_type(location
) !=
674 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
) {
675 ERR("Invalid argument(s)");
679 function_location
= container_of(location
,
680 struct lttng_userspace_probe_location_function
, parent
);
681 ret
= function_location
->binary_fd
;
686 enum lttng_userspace_probe_location_function_instrumentation_type
687 lttng_userspace_probe_location_function_get_instrumentation_type(
688 const struct lttng_userspace_probe_location
*location
)
690 enum lttng_userspace_probe_location_function_instrumentation_type type
;
691 struct lttng_userspace_probe_location_function
*function_location
;
693 if (!location
|| lttng_userspace_probe_location_get_type(location
) !=
694 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
) {
695 ERR("Invalid argument(s)");
696 type
= LTTNG_USERSPACE_PROBE_LOCATION_FUNCTION_INSTRUMENTATION_TYPE_UNKNOWN
;
700 function_location
= container_of(location
,
701 struct lttng_userspace_probe_location_function
, parent
);
702 type
= function_location
->instrumentation_type
;
707 enum lttng_userspace_probe_location_status
708 lttng_userspace_probe_location_function_set_instrumentation_type(
709 const struct lttng_userspace_probe_location
*location
,
710 enum lttng_userspace_probe_location_function_instrumentation_type instrumentation_type
)
712 enum lttng_userspace_probe_location_status status
=
713 LTTNG_USERSPACE_PROBE_LOCATION_STATUS_OK
;
714 struct lttng_userspace_probe_location_function
*function_location
;
716 if (!location
|| lttng_userspace_probe_location_get_type(location
) !=
717 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
||
718 instrumentation_type
!=
719 LTTNG_USERSPACE_PROBE_LOCATION_FUNCTION_INSTRUMENTATION_TYPE_ENTRY
) {
720 ERR("Invalid argument(s)");
721 status
= LTTNG_USERSPACE_PROBE_LOCATION_STATUS_INVALID
;
725 function_location
= container_of(location
,
726 struct lttng_userspace_probe_location_function
, parent
);
727 function_location
->instrumentation_type
= instrumentation_type
;
732 int lttng_userspace_probe_location_tracepoint_get_binary_fd(
733 const struct lttng_userspace_probe_location
*location
)
736 struct lttng_userspace_probe_location_tracepoint
*tracepoint_location
;
738 if (!location
|| lttng_userspace_probe_location_get_type(location
) !=
739 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
) {
740 ERR("Invalid argument(s)");
744 tracepoint_location
= container_of(location
,
745 struct lttng_userspace_probe_location_tracepoint
, parent
);
746 ret
= tracepoint_location
->binary_fd
;
751 static struct lttng_userspace_probe_location_lookup_method
*
752 lttng_userspace_probe_location_function_get_lookup_method(
753 const struct lttng_userspace_probe_location
*location
)
755 struct lttng_userspace_probe_location_lookup_method
*ret
= NULL
;
757 if (!location
|| lttng_userspace_probe_location_get_type(location
) !=
758 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
) {
759 ERR("Invalid argument(s)");
763 ret
= location
->lookup_method
;
768 static struct lttng_userspace_probe_location_lookup_method
*
769 lttng_userspace_probe_location_tracepoint_get_lookup_method(
770 const struct lttng_userspace_probe_location
*location
)
772 struct lttng_userspace_probe_location_lookup_method
*ret
= NULL
;
774 if (!location
|| lttng_userspace_probe_location_get_type(location
) !=
775 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
) {
776 ERR("Invalid argument(s)");
780 ret
= location
->lookup_method
;
785 const struct lttng_userspace_probe_location_lookup_method
*
786 lttng_userspace_probe_location_get_lookup_method(
787 const struct lttng_userspace_probe_location
*location
)
789 struct lttng_userspace_probe_location_lookup_method
*ret
= NULL
;
792 switch (location
->type
) {
793 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
:
794 ret
= lttng_userspace_probe_location_function_get_lookup_method(
797 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
:
798 ret
= lttng_userspace_probe_location_tracepoint_get_lookup_method(
802 ERR("Unknowned lookup method.");
809 int lttng_userspace_probe_location_lookup_method_serialize(
810 struct lttng_userspace_probe_location_lookup_method
*method
,
811 struct lttng_dynamic_buffer
*buffer
)
814 struct lttng_userspace_probe_location_lookup_method_comm
817 lookup_method_comm
.type
= (int8_t) (method
? method
->type
:
818 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_DEFAULT
);
820 ret
= lttng_dynamic_buffer_append(buffer
, &lookup_method_comm
,
821 sizeof(lookup_method_comm
));
826 ret
= sizeof(lookup_method_comm
);
832 int lttng_userspace_probe_location_function_serialize(
833 const struct lttng_userspace_probe_location
*location
,
834 struct lttng_dynamic_buffer
*buffer
,
838 size_t function_name_len
, binary_path_len
;
839 struct lttng_userspace_probe_location_function
*location_function
;
840 struct lttng_userspace_probe_location_function_comm location_function_comm
;
843 assert(lttng_userspace_probe_location_get_type(location
) ==
844 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
);
846 location_function
= container_of(location
,
847 struct lttng_userspace_probe_location_function
,
849 if (!location_function
->function_name
|| !location_function
->binary_path
) {
850 ret
= -LTTNG_ERR_INVALID
;
854 if (binary_fd
&& location_function
->binary_fd
< 0) {
855 ret
= -LTTNG_ERR_INVALID
;
860 *binary_fd
= location_function
->binary_fd
;
863 function_name_len
= strlen(location_function
->function_name
);
864 if (function_name_len
== 0) {
865 ret
= -LTTNG_ERR_INVALID
;
868 binary_path_len
= strlen(location_function
->binary_path
);
869 if (binary_path_len
== 0) {
870 ret
= -LTTNG_ERR_INVALID
;
874 location_function_comm
.function_name_len
= function_name_len
+ 1;
875 location_function_comm
.binary_path_len
= binary_path_len
+ 1;
878 ret
= lttng_dynamic_buffer_append(buffer
,
879 &location_function_comm
,
880 sizeof(location_function_comm
));
882 ret
= -LTTNG_ERR_INVALID
;
885 ret
= lttng_dynamic_buffer_append(buffer
,
886 location_function
->function_name
,
887 location_function_comm
.function_name_len
);
889 ret
= -LTTNG_ERR_INVALID
;
892 ret
= lttng_dynamic_buffer_append(buffer
,
893 location_function
->binary_path
,
894 location_function_comm
.binary_path_len
);
896 ret
= -LTTNG_ERR_INVALID
;
900 ret
= sizeof(location_function_comm
) +
901 location_function_comm
.function_name_len
+
902 location_function_comm
.binary_path_len
;
908 int lttng_userspace_probe_location_tracepoint_serialize(
909 const struct lttng_userspace_probe_location
*location
,
910 struct lttng_dynamic_buffer
*buffer
,
914 size_t probe_name_len
, provider_name_len
, binary_path_len
;
915 struct lttng_userspace_probe_location_tracepoint
*location_tracepoint
;
916 struct lttng_userspace_probe_location_tracepoint_comm location_tracepoint_comm
;
919 assert(lttng_userspace_probe_location_get_type(location
) ==
920 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
);
922 location_tracepoint
= container_of(location
,
923 struct lttng_userspace_probe_location_tracepoint
,
925 if (!location_tracepoint
->probe_name
||
926 !location_tracepoint
->provider_name
||
927 !location_tracepoint
->binary_path
) {
928 ret
= -LTTNG_ERR_INVALID
;
932 if (binary_fd
&& location_tracepoint
->binary_fd
< 0) {
933 ret
= -LTTNG_ERR_INVALID
;
938 *binary_fd
= location_tracepoint
->binary_fd
;
941 probe_name_len
= strlen(location_tracepoint
->probe_name
);
942 if (probe_name_len
== 0) {
943 ret
= -LTTNG_ERR_INVALID
;
947 provider_name_len
= strlen(location_tracepoint
->provider_name
);
948 if (provider_name_len
== 0) {
949 ret
= -LTTNG_ERR_INVALID
;
953 binary_path_len
= strlen(location_tracepoint
->binary_path
);
954 if (binary_path_len
== 0) {
955 ret
= -LTTNG_ERR_INVALID
;
959 location_tracepoint_comm
.probe_name_len
= probe_name_len
+ 1;
960 location_tracepoint_comm
.provider_name_len
= provider_name_len
+ 1;
961 location_tracepoint_comm
.binary_path_len
= binary_path_len
+ 1;
964 ret
= lttng_dynamic_buffer_append(buffer
,
965 &location_tracepoint_comm
,
966 sizeof(location_tracepoint_comm
));
968 ret
= -LTTNG_ERR_INVALID
;
971 ret
= lttng_dynamic_buffer_append(buffer
,
972 location_tracepoint
->probe_name
,
973 location_tracepoint_comm
.probe_name_len
);
975 ret
= -LTTNG_ERR_INVALID
;
978 ret
= lttng_dynamic_buffer_append(buffer
,
979 location_tracepoint
->provider_name
,
980 location_tracepoint_comm
.provider_name_len
);
982 ret
= -LTTNG_ERR_INVALID
;
985 ret
= lttng_dynamic_buffer_append(buffer
,
986 location_tracepoint
->binary_path
,
987 location_tracepoint_comm
.binary_path_len
);
989 ret
= -LTTNG_ERR_INVALID
;
993 ret
= sizeof(location_tracepoint_comm
) +
994 location_tracepoint_comm
.probe_name_len
+
995 location_tracepoint_comm
.provider_name_len
+
996 location_tracepoint_comm
.binary_path_len
;
1002 int lttng_userspace_probe_location_serialize(
1003 const struct lttng_userspace_probe_location
*location
,
1004 struct lttng_dynamic_buffer
*buffer
,
1007 int ret
, buffer_use
= 0;
1008 struct lttng_userspace_probe_location_comm location_generic_comm
;
1011 ERR("Invalid argument(s)");
1012 ret
= -LTTNG_ERR_INVALID
;
1016 memset(&location_generic_comm
, 0, sizeof(location_generic_comm
));
1018 location_generic_comm
.type
= (int8_t) location
->type
;
1020 ret
= lttng_dynamic_buffer_append(buffer
, &location_generic_comm
,
1021 sizeof(location_generic_comm
));
1026 buffer_use
+= sizeof(location_generic_comm
);
1028 switch (lttng_userspace_probe_location_get_type(location
)) {
1029 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
:
1030 ret
= lttng_userspace_probe_location_function_serialize(
1031 location
, buffer
, binary_fd
);
1033 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
:
1034 ret
= lttng_userspace_probe_location_tracepoint_serialize(
1035 location
, buffer
, binary_fd
);
1038 ERR("Unsupported probe location type");
1039 ret
= -LTTNG_ERR_INVALID
;
1047 ret
= lttng_userspace_probe_location_lookup_method_serialize(
1048 location
->lookup_method
, buffer
);
1058 int lttng_userspace_probe_location_function_create_from_buffer(
1059 const struct lttng_buffer_view
*buffer
,
1060 struct lttng_userspace_probe_location
**location
)
1062 struct lttng_userspace_probe_location_function_comm
*location_function_comm
;
1063 const char *function_name_src
, *binary_path_src
;
1064 char *function_name
= NULL
, *binary_path
= NULL
;
1068 assert(buffer
->data
);
1071 location_function_comm
=
1072 (struct lttng_userspace_probe_location_function_comm
*) buffer
->data
;
1074 const size_t expected_size
= sizeof(*location_function_comm
) +
1075 location_function_comm
->function_name_len
+
1076 location_function_comm
->binary_path_len
;
1078 if (buffer
->size
< expected_size
) {
1079 ret
= -LTTNG_ERR_INVALID
;
1083 function_name_src
= buffer
->data
+ sizeof(*location_function_comm
);
1084 binary_path_src
= function_name_src
+
1085 location_function_comm
->function_name_len
;
1087 if (function_name_src
[location_function_comm
->function_name_len
- 1] != '\0') {
1088 ret
= -LTTNG_ERR_INVALID
;
1091 if (binary_path_src
[location_function_comm
->binary_path_len
- 1] != '\0') {
1092 ret
= -LTTNG_ERR_INVALID
;
1096 function_name
= lttng_strndup(function_name_src
, LTTNG_SYMBOL_NAME_LEN
);
1097 if (!function_name
) {
1098 PERROR("lttng_strndup");
1102 binary_path
= lttng_strndup(binary_path_src
, LTTNG_PATH_MAX
);
1104 PERROR("lttng_strndup");
1108 *location
= lttng_userspace_probe_location_function_create_no_check(
1109 binary_path
, function_name
, NULL
, false);
1111 ret
= -LTTNG_ERR_INVALID
;
1115 ret
= (int) expected_size
;
1117 free(function_name
);
1123 int lttng_userspace_probe_location_tracepoint_create_from_buffer(
1124 const struct lttng_buffer_view
*buffer
,
1125 struct lttng_userspace_probe_location
**location
)
1127 struct lttng_userspace_probe_location_tracepoint_comm
*location_tracepoint_comm
;
1128 const char *probe_name_src
, *provider_name_src
, *binary_path_src
;
1129 char *probe_name
= NULL
, *provider_name
= NULL
, *binary_path
= NULL
;
1133 assert(buffer
->data
);
1136 location_tracepoint_comm
=
1137 (struct lttng_userspace_probe_location_tracepoint_comm
*) buffer
->data
;
1139 const size_t expected_size
= sizeof(*location_tracepoint_comm
) +
1140 location_tracepoint_comm
->probe_name_len
+
1141 location_tracepoint_comm
->provider_name_len
+
1142 location_tracepoint_comm
->binary_path_len
;
1144 if (buffer
->size
< expected_size
) {
1145 ret
= -LTTNG_ERR_INVALID
;
1149 probe_name_src
= buffer
->data
+ sizeof(*location_tracepoint_comm
);
1150 provider_name_src
= probe_name_src
+
1151 location_tracepoint_comm
->probe_name_len
;
1152 binary_path_src
= provider_name_src
+
1153 location_tracepoint_comm
->provider_name_len
;
1155 if (probe_name_src
[location_tracepoint_comm
->probe_name_len
- 1] != '\0') {
1156 ret
= -LTTNG_ERR_INVALID
;
1160 if (provider_name_src
[location_tracepoint_comm
->provider_name_len
- 1] != '\0') {
1161 ret
= -LTTNG_ERR_INVALID
;
1165 if (binary_path_src
[location_tracepoint_comm
->binary_path_len
- 1] != '\0') {
1166 ret
= -LTTNG_ERR_INVALID
;
1170 probe_name
= lttng_strndup(probe_name_src
, LTTNG_SYMBOL_NAME_LEN
);
1172 PERROR("lttng_strndup");
1175 provider_name
= lttng_strndup(provider_name_src
, LTTNG_SYMBOL_NAME_LEN
);
1176 if (!provider_name
) {
1177 PERROR("lttng_strndup");
1181 binary_path
= lttng_strndup(binary_path_src
, LTTNG_SYMBOL_NAME_LEN
);
1183 PERROR("lttng_strndup");
1187 *location
= lttng_userspace_probe_location_tracepoint_create_no_check(
1188 binary_path
, provider_name
, probe_name
, NULL
, false);
1190 ret
= -LTTNG_ERR_INVALID
;
1194 ret
= (int) expected_size
;
1197 free(provider_name
);
1203 int lttng_userspace_probe_location_lookup_method_create_from_buffer(
1204 struct lttng_buffer_view
*buffer
,
1205 struct lttng_userspace_probe_location_lookup_method
**lookup_method
)
1208 struct lttng_userspace_probe_location_lookup_method_comm
*lookup_comm
;
1209 enum lttng_userspace_probe_location_lookup_method_type type
;
1212 assert(buffer
->data
);
1213 assert(lookup_method
);
1215 if (buffer
->size
< sizeof(*lookup_comm
)) {
1216 ret
= -LTTNG_ERR_INVALID
;
1220 lookup_comm
= (struct lttng_userspace_probe_location_lookup_method_comm
*)
1222 type
= (enum lttng_userspace_probe_location_lookup_method_type
)
1225 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_DEFAULT
:
1226 *lookup_method
= NULL
;
1228 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF
:
1230 lttng_userspace_probe_location_lookup_method_function_elf_create();
1231 if (!(*lookup_method
)) {
1232 ret
= -LTTNG_ERR_INVALID
;
1236 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT
:
1238 lttng_userspace_probe_location_lookup_method_tracepoint_sdt_create();
1239 if (!(*lookup_method
)) {
1240 ret
= -LTTNG_ERR_INVALID
;
1245 ret
= -LTTNG_ERR_INVALID
;
1249 ret
= sizeof(*lookup_comm
);
1255 int lttng_userspace_probe_location_create_from_buffer(
1256 const struct lttng_buffer_view
*buffer
,
1257 struct lttng_userspace_probe_location
**location
)
1259 struct lttng_userspace_probe_location_lookup_method
*lookup_method
;
1260 struct lttng_userspace_probe_location_comm
*probe_location_comm
;
1261 enum lttng_userspace_probe_location_type type
;
1262 struct lttng_buffer_view lookup_method_view
;
1268 assert(buffer
->data
);
1271 lookup_method
= NULL
;
1273 if (buffer
->size
<= sizeof(*probe_location_comm
)) {
1274 ret
= -LTTNG_ERR_INVALID
;
1278 probe_location_comm
=
1279 (struct lttng_userspace_probe_location_comm
*) buffer
->data
;
1280 type
= (enum lttng_userspace_probe_location_type
) probe_location_comm
->type
;
1281 consumed
+= sizeof(*probe_location_comm
);
1284 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
:
1286 struct lttng_buffer_view view
= lttng_buffer_view_from_view(
1287 buffer
, consumed
, buffer
->size
- consumed
);
1289 ret
= lttng_userspace_probe_location_function_create_from_buffer(
1296 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
:
1298 struct lttng_buffer_view view
= lttng_buffer_view_from_view(
1299 buffer
, consumed
, buffer
->size
- consumed
);
1301 ret
= lttng_userspace_probe_location_tracepoint_create_from_buffer(
1309 ret
= -LTTNG_ERR_INVALID
;
1314 if (buffer
->size
<= consumed
) {
1315 ret
= -LTTNG_ERR_INVALID
;
1319 lookup_method_view
= lttng_buffer_view_from_view(buffer
, consumed
,
1320 buffer
->size
- consumed
);
1321 ret
= lttng_userspace_probe_location_lookup_method_create_from_buffer(
1322 &lookup_method_view
, &lookup_method
);
1324 ret
= -LTTNG_ERR_INVALID
;
1328 assert(lookup_method
);
1329 (*location
)->lookup_method
= lookup_method
;
1330 lookup_method
= NULL
;
1337 int lttng_userspace_probe_location_function_set_binary_fd(
1338 struct lttng_userspace_probe_location
*location
, int binary_fd
)
1341 struct lttng_userspace_probe_location_function
*function_location
;
1344 assert(location
->type
== LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
);
1346 function_location
= container_of(location
,
1347 struct lttng_userspace_probe_location_function
, parent
);
1348 if (function_location
->binary_fd
>= 0) {
1349 ret
= close(function_location
->binary_fd
);
1352 ret
= -LTTNG_ERR_INVALID
;
1357 function_location
->binary_fd
= binary_fd
;
1363 int lttng_userspace_probe_location_tracepoint_set_binary_fd(
1364 struct lttng_userspace_probe_location
*location
, int binary_fd
)
1367 struct lttng_userspace_probe_location_tracepoint
*tracepoint_location
;
1370 assert(location
->type
== LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
);
1372 tracepoint_location
= container_of(location
,
1373 struct lttng_userspace_probe_location_tracepoint
, parent
);
1374 if (tracepoint_location
->binary_fd
>= 0) {
1375 ret
= close(tracepoint_location
->binary_fd
);
1378 ret
= -LTTNG_ERR_INVALID
;
1383 tracepoint_location
->binary_fd
= binary_fd
;
1389 int lttng_userspace_probe_location_function_flatten(
1390 const struct lttng_userspace_probe_location
*location
,
1391 struct lttng_dynamic_buffer
*buffer
)
1393 struct lttng_userspace_probe_location_lookup_method_elf flat_lookup_method
;
1394 struct lttng_userspace_probe_location_function
*probe_function
;
1395 struct lttng_userspace_probe_location_function flat_probe
;
1396 size_t function_name_len
, binary_path_len
;
1397 size_t padding_needed
= 0;
1398 char *flat_probe_start
;
1399 int storage_needed
= 0;
1404 if (location
->lookup_method
&& location
->lookup_method
->type
!=
1405 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF
) {
1406 ret
= -LTTNG_ERR_INVALID
;
1410 probe_function
= container_of(location
,
1411 struct lttng_userspace_probe_location_function
,
1413 assert(probe_function
->function_name
);
1414 assert(probe_function
->binary_path
);
1417 sizeof(struct lttng_userspace_probe_location_function
);
1418 function_name_len
= strlen(probe_function
->function_name
) + 1;
1419 binary_path_len
= strlen(probe_function
->binary_path
) + 1;
1420 storage_needed
+= function_name_len
+ binary_path_len
;
1423 * The lookup method is aligned to 64-bit within the buffer.
1424 * This is needed even if there is no lookup method since
1425 * the next structure in the buffer probably needs to be
1426 * aligned too (depending on the arch).
1428 padding_needed
= ALIGN_TO(storage_needed
, sizeof(uint64_t)) - storage_needed
;
1429 storage_needed
+= padding_needed
;
1431 if (location
->lookup_method
) {
1432 /* NOTE: elf look-up method is assumed here. */
1433 storage_needed
+= sizeof(struct lttng_userspace_probe_location_lookup_method_elf
);
1437 ret
= storage_needed
;
1441 if (lttng_dynamic_buffer_get_capacity_left(buffer
) < storage_needed
) {
1442 ret
= lttng_dynamic_buffer_set_capacity(buffer
,
1443 buffer
->size
+ storage_needed
);
1449 memset(&flat_probe
, 0, sizeof(flat_probe
));
1451 flat_probe_start
= buffer
->data
+ buffer
->size
;
1452 flat_probe
.parent
.type
= location
->type
;
1454 * The lookup method, if present, is the last element in the flat
1455 * representation of the probe.
1457 if (location
->lookup_method
) {
1458 flat_probe
.parent
.lookup_method
=
1459 (struct lttng_userspace_probe_location_lookup_method
*)
1460 (flat_probe_start
+ sizeof(flat_probe
) +
1461 function_name_len
+ binary_path_len
+ padding_needed
);
1463 flat_probe
.parent
.lookup_method
= NULL
;
1466 flat_probe
.function_name
= flat_probe_start
+ sizeof(flat_probe
);
1467 flat_probe
.binary_path
= flat_probe
.function_name
+ function_name_len
;
1468 flat_probe
.binary_fd
= -1;
1469 ret
= lttng_dynamic_buffer_append(buffer
, &flat_probe
,
1470 sizeof(flat_probe
));
1475 ret
= lttng_dynamic_buffer_append(buffer
,
1476 probe_function
->function_name
, function_name_len
);
1480 ret
= lttng_dynamic_buffer_append(buffer
,
1481 probe_function
->binary_path
, binary_path_len
);
1486 /* Insert padding before the lookup method. */
1487 ret
= lttng_dynamic_buffer_set_size(buffer
,
1488 buffer
->size
+ padding_needed
);
1493 if (!location
->lookup_method
) {
1494 /* Not an error, the default method is used. */
1495 ret
= storage_needed
;
1499 memset(&flat_lookup_method
, 0, sizeof(flat_lookup_method
));
1500 flat_lookup_method
.parent
.type
=
1501 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF
;
1502 ret
= lttng_dynamic_buffer_append(buffer
,
1503 &flat_lookup_method
, sizeof(flat_lookup_method
));
1507 ret
= storage_needed
;
1513 int lttng_userspace_probe_location_tracepoint_flatten(
1514 const struct lttng_userspace_probe_location
*location
,
1515 struct lttng_dynamic_buffer
*buffer
)
1517 struct lttng_userspace_probe_location_lookup_method_sdt flat_lookup_method
;
1518 struct lttng_userspace_probe_location_tracepoint
*probe_tracepoint
;
1519 struct lttng_userspace_probe_location_tracepoint flat_probe
;
1520 size_t probe_name_len
, provider_name_len
, binary_path_len
;
1521 size_t padding_needed
= 0;
1522 int storage_needed
= 0;
1523 char *flat_probe_start
;
1528 /* Only SDT tracepoints are supported at the moment */
1529 if (location
->lookup_method
&& location
->lookup_method
->type
!=
1530 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT
) {
1531 ret
= -LTTNG_ERR_INVALID
;
1534 probe_tracepoint
= container_of(location
,
1535 struct lttng_userspace_probe_location_tracepoint
,
1537 assert(probe_tracepoint
->probe_name
);
1538 assert(probe_tracepoint
->provider_name
);
1539 assert(probe_tracepoint
->binary_path
);
1541 /* Compute the storage space needed to flatten the probe location */
1542 storage_needed
+= sizeof(struct lttng_userspace_probe_location_tracepoint
);
1544 probe_name_len
= strlen(probe_tracepoint
->probe_name
) + 1;
1545 provider_name_len
= strlen(probe_tracepoint
->provider_name
) + 1;
1546 binary_path_len
= strlen(probe_tracepoint
->binary_path
) + 1;
1548 storage_needed
+= probe_name_len
+ provider_name_len
+ binary_path_len
;
1551 * The lookup method is aligned to 64-bit within the buffer.
1552 * This is needed even if there is no lookup method since
1553 * the next structure in the buffer probably needs to be
1554 * aligned too (depending on the arch).
1556 padding_needed
= ALIGN_TO(storage_needed
, sizeof(uint64_t)) - storage_needed
;
1557 storage_needed
+= padding_needed
;
1559 if (location
->lookup_method
) {
1560 /* NOTE: elf look-up method is assumed here. */
1562 sizeof(struct lttng_userspace_probe_location_lookup_method_elf
);
1566 * If the caller set buffer to NULL, return the size of the needed buffer.
1569 ret
= storage_needed
;
1573 if (lttng_dynamic_buffer_get_capacity_left(buffer
) < storage_needed
) {
1574 ret
= lttng_dynamic_buffer_set_capacity(buffer
,
1575 buffer
->size
+ storage_needed
);
1581 memset(&flat_probe
, 0, sizeof(flat_probe
));
1583 flat_probe_start
= buffer
->data
+ buffer
->size
;
1584 flat_probe
.parent
.type
= location
->type
;
1587 * The lookup method, if present, is the last element in the flat
1588 * representation of the probe.
1590 if (location
->lookup_method
) {
1591 flat_probe
.parent
.lookup_method
=
1592 (struct lttng_userspace_probe_location_lookup_method
*)
1593 (flat_probe_start
+ sizeof(flat_probe
) +
1594 probe_name_len
+ provider_name_len
+
1595 binary_path_len
+ padding_needed
);
1597 flat_probe
.parent
.lookup_method
= NULL
;
1600 flat_probe
.probe_name
= flat_probe_start
+ sizeof(flat_probe
);
1601 flat_probe
.provider_name
= flat_probe
.probe_name
+ probe_name_len
;
1602 flat_probe
.binary_path
= flat_probe
.provider_name
+ provider_name_len
;
1603 flat_probe
.binary_fd
= -1;
1604 ret
= lttng_dynamic_buffer_append(buffer
, &flat_probe
, sizeof(flat_probe
));
1609 /* Append all the fields to the buffer */
1610 ret
= lttng_dynamic_buffer_append(buffer
,
1611 probe_tracepoint
->probe_name
, probe_name_len
);
1615 ret
= lttng_dynamic_buffer_append(buffer
,
1616 probe_tracepoint
->provider_name
, provider_name_len
);
1620 ret
= lttng_dynamic_buffer_append(buffer
,
1621 probe_tracepoint
->binary_path
, binary_path_len
);
1626 /* Insert padding before the lookup method. */
1627 ret
= lttng_dynamic_buffer_set_size(buffer
, buffer
->size
+ padding_needed
);
1632 if (!location
->lookup_method
) {
1633 /* Not an error, the default method is used. */
1634 ret
= storage_needed
;
1638 memset(&flat_lookup_method
, 0, sizeof(flat_lookup_method
));
1640 flat_lookup_method
.parent
.type
=
1641 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT
;
1642 ret
= lttng_dynamic_buffer_append(buffer
,
1643 &flat_lookup_method
, sizeof(flat_lookup_method
));
1647 ret
= storage_needed
;
1653 int lttng_userspace_probe_location_flatten(
1654 const struct lttng_userspace_probe_location
*location
,
1655 struct lttng_dynamic_buffer
*buffer
)
1659 ret
= -LTTNG_ERR_INVALID
;
1663 /* Only types currently supported. */
1664 switch (location
->type
) {
1665 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
:
1666 ret
= lttng_userspace_probe_location_function_flatten(location
, buffer
);
1668 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
:
1669 ret
= lttng_userspace_probe_location_tracepoint_flatten(location
, buffer
);
1672 ret
= -LTTNG_ERR_INVALID
;
1681 struct lttng_userspace_probe_location
*lttng_userspace_probe_location_copy(
1682 const struct lttng_userspace_probe_location
*location
)
1684 struct lttng_userspace_probe_location
*new_location
= NULL
;
1685 enum lttng_userspace_probe_location_type type
;
1691 type
= lttng_userspace_probe_location_get_type(location
);
1693 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION
:
1695 lttng_userspace_probe_location_function_copy(location
);
1696 if (!new_location
) {
1700 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT
:
1702 lttng_userspace_probe_location_tracepoint_copy(location
);
1703 if (!new_location
) {
1708 new_location
= NULL
;
1712 return new_location
;