Fix: use <unistd.h> instead of <sys/unistd.h>
[lttng-tools.git] / src / common / userspace-probe.c
1 /*
2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8 #include "lttng/lttng-error.h"
9 #include <assert.h>
10 #include <common/compat/string.h>
11 #include <common/error.h>
12 #include <common/hashtable/hashtable.h>
13 #include <common/hashtable/utils.h>
14 #include <common/macros.h>
15 #include <common/mi-lttng.h>
16 #include <common/payload-view.h>
17 #include <common/payload.h>
18 #include <fcntl.h>
19 #include <lttng/constant.h>
20 #include <lttng/userspace-probe-internal.h>
21 #include <sys/stat.h>
22 #include <sys/types.h>
23 #include <unistd.h>
24
25 static
26 int lttng_userspace_probe_location_function_set_binary_fd_handle(
27 struct lttng_userspace_probe_location *location,
28 struct fd_handle *binary_fd_handle);
29
30 static
31 int lttng_userspace_probe_location_tracepoint_set_binary_fd_handle(
32 struct lttng_userspace_probe_location *location,
33 struct fd_handle *binary_fd_handle);
34
35 static
36 enum lttng_error_code lttng_userspace_probe_location_lookup_method_mi_serialize(
37 const struct lttng_userspace_probe_location_lookup_method
38 *method,
39 struct mi_writer *writer);
40
41 static
42 enum lttng_error_code lttng_userspace_probe_location_tracepoint_mi_serialize(
43 const struct lttng_userspace_probe_location *location,
44 struct mi_writer *writer);
45
46 static
47 enum lttng_error_code lttng_userspace_probe_location_function_mi_serialize(
48 const struct lttng_userspace_probe_location *location,
49 struct mi_writer *writer);
50
51 enum lttng_userspace_probe_location_lookup_method_type
52 lttng_userspace_probe_location_lookup_method_get_type(
53 const struct lttng_userspace_probe_location_lookup_method *lookup_method)
54 {
55 return lookup_method ? lookup_method->type :
56 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_UNKNOWN;
57 }
58
59 void lttng_userspace_probe_location_lookup_method_destroy(
60 struct lttng_userspace_probe_location_lookup_method *lookup_method)
61 {
62 if (!lookup_method){
63 return;
64 }
65
66 free(lookup_method);
67 }
68
69 struct lttng_userspace_probe_location_lookup_method *
70 lttng_userspace_probe_location_lookup_method_function_elf_create(void)
71 {
72 struct lttng_userspace_probe_location_lookup_method *ret = NULL;
73 struct lttng_userspace_probe_location_lookup_method_elf *elf_method;
74
75 elf_method = zmalloc(sizeof(*elf_method));
76 if (!elf_method) {
77 PERROR("zmalloc");
78 goto end;
79 }
80
81 ret = &elf_method->parent;
82 ret->type = LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF;
83 end:
84 return ret;
85 }
86
87 struct lttng_userspace_probe_location_lookup_method *
88 lttng_userspace_probe_location_lookup_method_tracepoint_sdt_create(void)
89 {
90 struct lttng_userspace_probe_location_lookup_method *ret = NULL;
91 struct lttng_userspace_probe_location_lookup_method_sdt *sdt_method;
92
93 sdt_method = zmalloc(sizeof(*sdt_method));
94 if (!sdt_method) {
95 PERROR("zmalloc");
96 goto end;
97 }
98
99 ret = &sdt_method->parent;
100 ret->type = LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT;
101 end:
102 return ret;
103 }
104
105 enum lttng_userspace_probe_location_type lttng_userspace_probe_location_get_type(
106 const struct lttng_userspace_probe_location *location)
107 {
108 return location ? location->type :
109 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_UNKNOWN;
110 }
111
112 static
113 void lttng_userspace_probe_location_function_destroy(
114 struct lttng_userspace_probe_location *location)
115 {
116 struct lttng_userspace_probe_location_function *location_function = NULL;
117
118 assert(location);
119
120 location_function = container_of(location,
121 struct lttng_userspace_probe_location_function, parent);
122
123 assert(location_function);
124
125 free(location_function->function_name);
126 free(location_function->binary_path);
127 fd_handle_put(location_function->binary_fd_handle);
128 free(location);
129 }
130
131 static
132 void lttng_userspace_probe_location_tracepoint_destroy(
133 struct lttng_userspace_probe_location *location)
134 {
135 struct lttng_userspace_probe_location_tracepoint *location_tracepoint = NULL;
136
137 assert(location);
138
139 location_tracepoint = container_of(location,
140 struct lttng_userspace_probe_location_tracepoint,
141 parent);
142
143 assert(location_tracepoint);
144
145 free(location_tracepoint->probe_name);
146 free(location_tracepoint->provider_name);
147 free(location_tracepoint->binary_path);
148 fd_handle_put(location_tracepoint->binary_fd_handle);
149 free(location);
150 }
151
152 void lttng_userspace_probe_location_destroy(
153 struct lttng_userspace_probe_location *location)
154 {
155 if (!location) {
156 return;
157 }
158
159 lttng_userspace_probe_location_lookup_method_destroy(
160 location->lookup_method);
161
162 switch (location->type) {
163 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION:
164 lttng_userspace_probe_location_function_destroy(location);
165 break;
166 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT:
167 lttng_userspace_probe_location_tracepoint_destroy(location);
168 break;
169 default:
170 abort();
171 }
172 }
173
174 /* Compare two file descriptors based on their inode and device numbers. */
175 static bool fd_is_equal(int a, int b)
176 {
177 int ret;
178 bool is_equal = false;
179 struct stat a_stat, b_stat;
180
181 if (a < 0 && b >= 0) {
182 goto end;
183 }
184
185 if (b < 0 && a >= 0) {
186 goto end;
187 }
188
189 if (a < 0 && b < 0) {
190 if (a == -1 && b == -1) {
191 is_equal = true;
192 goto end;
193 }
194
195 /* Invalid state, abort. */
196 abort();
197 }
198
199 /* Both are valid file descriptors. */
200 ret = fstat(a, &a_stat);
201 if (ret) {
202 PERROR("Failed to fstat userspace probe location binary fd %d",
203 a);
204 goto end;
205 }
206
207 ret = fstat(b, &b_stat);
208 if (ret) {
209 PERROR("Failed to fstat userspace probe location binary fd %d",
210 b);
211 goto end;
212 }
213
214 is_equal = (a_stat.st_ino == b_stat.st_ino) &&
215 (a_stat.st_dev == b_stat.st_dev);
216
217 end:
218 return is_equal;
219 }
220
221 static unsigned long lttng_userspace_probe_location_function_hash(
222 const struct lttng_userspace_probe_location *location)
223 {
224 unsigned long hash = hash_key_ulong(
225 (void *) LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION,
226 lttng_ht_seed);
227 struct lttng_userspace_probe_location_function *function_location =
228 container_of(location, typeof(*function_location),
229 parent);
230
231 hash ^= hash_key_str(function_location->function_name, lttng_ht_seed);
232 hash ^= hash_key_str(function_location->binary_path, lttng_ht_seed);
233 /*
234 * No need to hash on the fd. Worst comes to worse,
235 * the equal function will discriminate.
236 */
237 return hash;
238 }
239
240 static bool lttng_userspace_probe_location_function_is_equal(
241 const struct lttng_userspace_probe_location *_a,
242 const struct lttng_userspace_probe_location *_b)
243 {
244 bool is_equal = false;
245 struct lttng_userspace_probe_location_function *a, *b;
246
247 a = container_of(_a, struct lttng_userspace_probe_location_function,
248 parent);
249 b = container_of(_b, struct lttng_userspace_probe_location_function,
250 parent);
251
252 if (a->instrumentation_type != b->instrumentation_type) {
253 goto end;
254 }
255
256 assert(a->function_name);
257 assert(b->function_name);
258 if (strcmp(a->function_name, b->function_name)) {
259 goto end;
260 }
261
262 assert(a->binary_path);
263 assert(b->binary_path);
264 if (strcmp(a->binary_path, b->binary_path)) {
265 goto end;
266 }
267
268 is_equal = fd_is_equal(a->binary_fd_handle ? fd_handle_get_fd(a->binary_fd_handle) : -1,
269 b->binary_fd_handle ? fd_handle_get_fd(b->binary_fd_handle) : -1);
270 end:
271 return is_equal;
272 }
273
274 static struct lttng_userspace_probe_location *
275 lttng_userspace_probe_location_function_create_no_check(const char *binary_path,
276 const char *function_name,
277 struct lttng_userspace_probe_location_lookup_method *lookup_method,
278 bool open_binary)
279 {
280 int binary_fd = -1;
281 struct fd_handle *binary_fd_handle = NULL;
282 char *function_name_copy = NULL, *binary_path_copy = NULL;
283 struct lttng_userspace_probe_location *ret = NULL;
284 struct lttng_userspace_probe_location_function *location;
285
286 if (open_binary) {
287 binary_fd = open(binary_path, O_RDONLY);
288 if (binary_fd < 0) {
289 PERROR("Error opening the binary");
290 goto error;
291 }
292
293 binary_fd_handle = fd_handle_create(binary_fd);
294 if (!binary_fd) {
295 goto error;
296 }
297
298 /* Ownership transferred to fd_handle. */
299 binary_fd = -1;
300 }
301
302 function_name_copy = lttng_strndup(function_name, LTTNG_SYMBOL_NAME_LEN);
303 if (!function_name_copy) {
304 PERROR("Error duplicating the function name");
305 goto error;
306 }
307
308 binary_path_copy = lttng_strndup(binary_path, LTTNG_PATH_MAX);
309 if (!binary_path_copy) {
310 PERROR("Error duplicating the function name");
311 goto error;
312 }
313
314 location = zmalloc(sizeof(*location));
315 if (!location) {
316 PERROR("Error allocating userspace probe location");
317 goto error;
318 }
319
320 location->function_name = function_name_copy;
321 location->binary_path = binary_path_copy;
322 location->binary_fd_handle = binary_fd_handle;
323 binary_fd_handle = NULL;
324 location->instrumentation_type =
325 LTTNG_USERSPACE_PROBE_LOCATION_FUNCTION_INSTRUMENTATION_TYPE_ENTRY;
326
327 ret = &location->parent;
328 ret->lookup_method = lookup_method;
329 ret->type = LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION;
330 ret->equal = lttng_userspace_probe_location_function_is_equal;
331 ret->hash = lttng_userspace_probe_location_function_hash;
332 goto end;
333
334 error:
335 free(function_name_copy);
336 free(binary_path_copy);
337 if (binary_fd >= 0) {
338 if (close(binary_fd)) {
339 PERROR("Error closing binary fd in error path");
340 }
341 }
342 fd_handle_put(binary_fd_handle);
343 end:
344 return ret;
345 }
346
347 static unsigned long lttng_userspace_probe_location_tracepoint_hash(
348 const struct lttng_userspace_probe_location *location)
349 {
350 unsigned long hash = hash_key_ulong(
351 (void *) LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT,
352 lttng_ht_seed);
353 struct lttng_userspace_probe_location_tracepoint *tp_location =
354 container_of(location, typeof(*tp_location), parent);
355
356 hash ^= hash_key_str(tp_location->probe_name, lttng_ht_seed);
357 hash ^= hash_key_str(tp_location->provider_name, lttng_ht_seed);
358 hash ^= hash_key_str(tp_location->binary_path, lttng_ht_seed);
359 /*
360 * No need to hash on the fd. Worst comes to worse,
361 * the equal function will discriminate.
362 */
363 return hash;
364 }
365
366 static bool lttng_userspace_probe_location_tracepoint_is_equal(
367 const struct lttng_userspace_probe_location *_a,
368 const struct lttng_userspace_probe_location *_b)
369 {
370 bool is_equal = false;
371 struct lttng_userspace_probe_location_tracepoint *a, *b;
372
373 a = container_of(_a, struct lttng_userspace_probe_location_tracepoint,
374 parent);
375 b = container_of(_b, struct lttng_userspace_probe_location_tracepoint,
376 parent);
377
378 assert(a->probe_name);
379 assert(b->probe_name);
380 if (strcmp(a->probe_name, b->probe_name)) {
381 goto end;
382 }
383
384 assert(a->provider_name);
385 assert(b->provider_name);
386 if (strcmp(a->provider_name, b->provider_name)) {
387 goto end;
388 }
389
390 assert(a->binary_path);
391 assert(b->binary_path);
392 if (strcmp(a->binary_path, b->binary_path)) {
393 goto end;
394 }
395
396 is_equal = fd_is_equal(a->binary_fd_handle ? fd_handle_get_fd(a->binary_fd_handle) : -1,
397 b->binary_fd_handle ? fd_handle_get_fd(b->binary_fd_handle) : -1);
398
399 end:
400 return is_equal;
401 }
402
403 static struct lttng_userspace_probe_location *
404 lttng_userspace_probe_location_tracepoint_create_no_check(const char *binary_path,
405 const char *provider_name, const char *probe_name,
406 struct lttng_userspace_probe_location_lookup_method *lookup_method,
407 bool open_binary)
408 {
409 int binary_fd = -1;
410 struct fd_handle *binary_fd_handle = NULL;
411 char *probe_name_copy = NULL;
412 char *provider_name_copy = NULL;
413 char *binary_path_copy = NULL;
414 struct lttng_userspace_probe_location *ret = NULL;
415 struct lttng_userspace_probe_location_tracepoint *location;
416
417 if (open_binary) {
418 binary_fd = open(binary_path, O_RDONLY);
419 if (binary_fd < 0) {
420 PERROR("open");
421 goto error;
422 }
423
424 binary_fd_handle = fd_handle_create(binary_fd);
425 if (!binary_fd) {
426 goto error;
427 }
428
429 /* Ownership transferred to fd_handle. */
430 binary_fd = -1;
431 }
432
433 probe_name_copy = lttng_strndup(probe_name, LTTNG_SYMBOL_NAME_LEN);
434 if (!probe_name_copy) {
435 PERROR("lttng_strndup");
436 goto error;
437 }
438
439 provider_name_copy = lttng_strndup(provider_name, LTTNG_SYMBOL_NAME_LEN);
440 if (!provider_name_copy) {
441 PERROR("lttng_strndup");
442 goto error;
443 }
444
445 binary_path_copy = lttng_strndup(binary_path, LTTNG_PATH_MAX);
446 if (!binary_path_copy) {
447 PERROR("lttng_strndup");
448 goto error;
449 }
450
451 location = zmalloc(sizeof(*location));
452 if (!location) {
453 PERROR("zmalloc");
454 goto error;
455 }
456
457 location->probe_name = probe_name_copy;
458 location->provider_name = provider_name_copy;
459 location->binary_path = binary_path_copy;
460 location->binary_fd_handle = binary_fd_handle;
461 binary_fd_handle = NULL;
462
463 ret = &location->parent;
464 ret->lookup_method = lookup_method;
465 ret->type = LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT;
466 ret->equal = lttng_userspace_probe_location_tracepoint_is_equal;
467 ret->hash = lttng_userspace_probe_location_tracepoint_hash;
468 goto end;
469
470 error:
471 free(probe_name_copy);
472 free(provider_name_copy);
473 free(binary_path_copy);
474 if (binary_fd >= 0) {
475 if (close(binary_fd)) {
476 PERROR("Error closing binary fd in error path");
477 }
478 }
479 fd_handle_put(binary_fd_handle);
480 end:
481 return ret;
482 }
483
484 struct lttng_userspace_probe_location *
485 lttng_userspace_probe_location_function_create(const char *binary_path,
486 const char *function_name,
487 struct lttng_userspace_probe_location_lookup_method *lookup_method)
488 {
489 struct lttng_userspace_probe_location *ret = NULL;
490
491 if (!binary_path || !function_name) {
492 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
493 goto end;
494 }
495
496 switch (lttng_userspace_probe_location_lookup_method_get_type(
497 lookup_method)) {
498 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_DEFAULT:
499 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF:
500 break;
501 default:
502 /* Invalid probe location lookup method. */
503 goto end;
504 }
505
506 ret = lttng_userspace_probe_location_function_create_no_check(
507 binary_path, function_name, lookup_method, true);
508 end:
509 return ret;
510 }
511
512 struct lttng_userspace_probe_location *
513 lttng_userspace_probe_location_tracepoint_create(const char *binary_path,
514 const char *provider_name, const char *probe_name,
515 struct lttng_userspace_probe_location_lookup_method *lookup_method)
516 {
517 struct lttng_userspace_probe_location *ret = NULL;
518
519 if (!binary_path || !probe_name || !provider_name) {
520 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
521 goto end;
522 }
523
524 switch (lttng_userspace_probe_location_lookup_method_get_type(
525 lookup_method)) {
526 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT:
527 break;
528 default:
529 /* Invalid probe location lookup method. */
530 goto end;
531 }
532
533 ret = lttng_userspace_probe_location_tracepoint_create_no_check(
534 binary_path, provider_name, probe_name, lookup_method, true);
535 end:
536 return ret;
537 }
538
539 static struct lttng_userspace_probe_location_lookup_method *
540 lttng_userspace_probe_location_lookup_method_function_elf_copy(
541 const struct lttng_userspace_probe_location_lookup_method *lookup_method)
542 {
543 struct lttng_userspace_probe_location_lookup_method *parent = NULL;
544 struct lttng_userspace_probe_location_lookup_method_elf *elf_method;
545
546 assert(lookup_method);
547 assert(lookup_method->type ==
548 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF);
549
550 elf_method = zmalloc(sizeof(*elf_method));
551 if (!elf_method) {
552 PERROR("Error allocating ELF userspace probe lookup method");
553 goto error;
554 }
555
556 elf_method->parent.type = lookup_method->type;
557 parent = &elf_method->parent;
558
559 goto end;
560 error:
561 parent = NULL;
562 end:
563 return parent;
564 }
565
566 static struct lttng_userspace_probe_location_lookup_method *
567 lttng_userspace_probe_location_lookup_method_tracepoint_sdt_copy(
568 struct lttng_userspace_probe_location_lookup_method *lookup_method)
569 {
570 struct lttng_userspace_probe_location_lookup_method *parent = NULL;
571 struct lttng_userspace_probe_location_lookup_method_sdt *sdt_method;
572
573 assert(lookup_method);
574 assert(lookup_method->type ==
575 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT);
576
577 sdt_method = zmalloc(sizeof(*sdt_method));
578 if (!sdt_method) {
579 PERROR("zmalloc");
580 goto error;
581 }
582
583 sdt_method->parent.type = lookup_method->type;
584 parent = &sdt_method->parent;
585
586 goto end;
587
588 error:
589 parent = NULL;
590 end:
591 return parent;
592 }
593
594 static struct lttng_userspace_probe_location *
595 lttng_userspace_probe_location_function_copy(
596 const struct lttng_userspace_probe_location *location)
597 {
598 enum lttng_userspace_probe_location_lookup_method_type lookup_type;
599 struct lttng_userspace_probe_location *new_location = NULL;
600 struct lttng_userspace_probe_location_lookup_method *lookup_method = NULL;
601 const char *binary_path = NULL;
602 const char *function_name = NULL;
603 struct lttng_userspace_probe_location_function *function_location;
604
605 assert(location);
606 assert(location->type == LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION);
607 function_location = container_of(
608 location, typeof(*function_location), parent);
609
610 /* Get probe location fields */
611 binary_path = lttng_userspace_probe_location_function_get_binary_path(location);
612 if (!binary_path) {
613 ERR("Userspace probe binary path is NULL");
614 goto error;
615 }
616
617 function_name = lttng_userspace_probe_location_function_get_function_name(location);
618 if (!function_name) {
619 ERR("Userspace probe function name is NULL");
620 goto error;
621 }
622
623 /*
624 * Duplicate probe location method fields
625 */
626 lookup_type = lttng_userspace_probe_location_lookup_method_get_type(
627 location->lookup_method);
628 switch (lookup_type) {
629 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF:
630 lookup_method =
631 lttng_userspace_probe_location_lookup_method_function_elf_copy(
632 location->lookup_method);
633 if (!lookup_method) {
634 goto error;
635 }
636 break;
637 default:
638 /* Invalid probe location lookup method. */
639 goto error;
640 }
641
642 /* Create the probe_location */
643 new_location = lttng_userspace_probe_location_function_create_no_check(
644 binary_path, function_name, lookup_method, false);
645 if (!new_location) {
646 goto destroy_lookup_method;
647 }
648
649 /* Set the duplicated fd to the new probe_location */
650 if (lttng_userspace_probe_location_function_set_binary_fd_handle(new_location,
651 function_location->binary_fd_handle) < 0) {
652 goto destroy_probe_location;
653 }
654
655 goto end;
656
657 destroy_probe_location:
658 lttng_userspace_probe_location_destroy(new_location);
659 destroy_lookup_method:
660 lttng_userspace_probe_location_lookup_method_destroy(lookup_method);
661 error:
662 new_location = NULL;
663 end:
664 return new_location;
665 }
666
667 static struct lttng_userspace_probe_location *
668 lttng_userspace_probe_location_tracepoint_copy(
669 const struct lttng_userspace_probe_location *location)
670 {
671 enum lttng_userspace_probe_location_lookup_method_type lookup_type;
672 struct lttng_userspace_probe_location *new_location = NULL;
673 struct lttng_userspace_probe_location_lookup_method *lookup_method = NULL;
674 const char *binary_path = NULL;
675 const char *probe_name = NULL;
676 const char *provider_name = NULL;
677 struct lttng_userspace_probe_location_tracepoint *tracepoint_location;
678
679 assert(location);
680 assert(location->type == LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT);
681 tracepoint_location = container_of(
682 location, typeof(*tracepoint_location), parent);
683
684 /* Get probe location fields */
685 binary_path = lttng_userspace_probe_location_tracepoint_get_binary_path(location);
686 if (!binary_path) {
687 ERR("Userspace probe binary path is NULL");
688 goto error;
689 }
690
691 probe_name = lttng_userspace_probe_location_tracepoint_get_probe_name(location);
692 if (!probe_name) {
693 ERR("Userspace probe probe name is NULL");
694 goto error;
695 }
696
697 provider_name = lttng_userspace_probe_location_tracepoint_get_provider_name(location);
698 if (!provider_name) {
699 ERR("Userspace probe provider name is NULL");
700 goto error;
701 }
702
703 /*
704 * Duplicate probe location method fields
705 */
706 lookup_type = lttng_userspace_probe_location_lookup_method_get_type(
707 location->lookup_method);
708 switch (lookup_type) {
709 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT:
710 lookup_method =
711 lttng_userspace_probe_location_lookup_method_tracepoint_sdt_copy(
712 location->lookup_method);
713 if (!lookup_method) {
714 goto error;
715 }
716 break;
717 default:
718 /* Invalid probe location lookup method. */
719 goto error;
720 }
721
722 /* Create the probe_location */
723 new_location = lttng_userspace_probe_location_tracepoint_create_no_check(
724 binary_path, provider_name, probe_name, lookup_method, false);
725 if (!new_location) {
726 goto destroy_lookup_method;
727 }
728
729 /* Set the duplicated fd to the new probe_location */
730 if (lttng_userspace_probe_location_tracepoint_set_binary_fd_handle(new_location,
731 tracepoint_location->binary_fd_handle) < 0) {
732 goto destroy_probe_location;
733 }
734
735 goto end;
736
737 destroy_probe_location:
738 lttng_userspace_probe_location_destroy(new_location);
739 destroy_lookup_method:
740 lttng_userspace_probe_location_lookup_method_destroy(lookup_method);
741 error:
742 new_location = NULL;
743 end:
744 return new_location;
745 }
746
747 const char *lttng_userspace_probe_location_function_get_binary_path(
748 const struct lttng_userspace_probe_location *location)
749 {
750 const char *ret = NULL;
751 struct lttng_userspace_probe_location_function *function_location;
752
753 if (!location || lttng_userspace_probe_location_get_type(location) !=
754 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION) {
755 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
756 goto end;
757 }
758
759 function_location = container_of(location,
760 struct lttng_userspace_probe_location_function,
761 parent);
762 ret = function_location->binary_path;
763 end:
764 return ret;
765 }
766
767 const char *lttng_userspace_probe_location_tracepoint_get_binary_path(
768 const struct lttng_userspace_probe_location *location)
769 {
770 const char *ret = NULL;
771 struct lttng_userspace_probe_location_tracepoint *tracepoint_location;
772
773 if (!location || lttng_userspace_probe_location_get_type(location) !=
774 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT) {
775 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
776 goto end;
777 }
778
779 tracepoint_location = container_of(location,
780 struct lttng_userspace_probe_location_tracepoint,
781 parent);
782 ret = tracepoint_location->binary_path;
783 end:
784 return ret;
785 }
786
787 const char *lttng_userspace_probe_location_function_get_function_name(
788 const struct lttng_userspace_probe_location *location)
789 {
790 const char *ret = NULL;
791 struct lttng_userspace_probe_location_function *function_location;
792
793 if (!location || lttng_userspace_probe_location_get_type(location) !=
794 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION) {
795 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
796 goto end;
797 }
798
799 function_location = container_of(location,
800 struct lttng_userspace_probe_location_function, parent);
801 ret = function_location->function_name;
802 end:
803 return ret;
804 }
805
806 const char *lttng_userspace_probe_location_tracepoint_get_probe_name(
807 const struct lttng_userspace_probe_location *location)
808 {
809 const char *ret = NULL;
810 struct lttng_userspace_probe_location_tracepoint *tracepoint_location;
811
812 if (!location || lttng_userspace_probe_location_get_type(location) !=
813 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT) {
814 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
815 goto end;
816 }
817
818 tracepoint_location = container_of(location,
819 struct lttng_userspace_probe_location_tracepoint, parent);
820 ret = tracepoint_location->probe_name;
821 end:
822 return ret;
823 }
824
825 const char *lttng_userspace_probe_location_tracepoint_get_provider_name(
826 const struct lttng_userspace_probe_location *location)
827 {
828 const char *ret = NULL;
829 struct lttng_userspace_probe_location_tracepoint *tracepoint_location;
830
831 if (!location || lttng_userspace_probe_location_get_type(location) !=
832 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT) {
833 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
834 goto end;
835 }
836
837 tracepoint_location = container_of(location,
838 struct lttng_userspace_probe_location_tracepoint, parent);
839 ret = tracepoint_location->provider_name;
840 end:
841 return ret;
842 }
843
844 int lttng_userspace_probe_location_function_get_binary_fd(
845 const struct lttng_userspace_probe_location *location)
846 {
847 int ret = -1;
848 struct lttng_userspace_probe_location_function *function_location;
849
850 if (!location || lttng_userspace_probe_location_get_type(location) !=
851 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION) {
852 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
853 goto end;
854 }
855
856 function_location = container_of(location,
857 struct lttng_userspace_probe_location_function, parent);
858 ret = function_location->binary_fd_handle ?
859 fd_handle_get_fd(function_location->binary_fd_handle) : -1;
860 end:
861 return ret;
862 }
863
864 enum lttng_userspace_probe_location_function_instrumentation_type
865 lttng_userspace_probe_location_function_get_instrumentation_type(
866 const struct lttng_userspace_probe_location *location)
867 {
868 enum lttng_userspace_probe_location_function_instrumentation_type type;
869 struct lttng_userspace_probe_location_function *function_location;
870
871 if (!location || lttng_userspace_probe_location_get_type(location) !=
872 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION) {
873 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
874 type = LTTNG_USERSPACE_PROBE_LOCATION_FUNCTION_INSTRUMENTATION_TYPE_UNKNOWN;
875 goto end;
876 }
877
878 function_location = container_of(location,
879 struct lttng_userspace_probe_location_function, parent);
880 type = function_location->instrumentation_type;
881 end:
882 return type;
883 }
884
885 enum lttng_userspace_probe_location_status
886 lttng_userspace_probe_location_function_set_instrumentation_type(
887 const struct lttng_userspace_probe_location *location,
888 enum lttng_userspace_probe_location_function_instrumentation_type instrumentation_type)
889 {
890 enum lttng_userspace_probe_location_status status =
891 LTTNG_USERSPACE_PROBE_LOCATION_STATUS_OK;
892 struct lttng_userspace_probe_location_function *function_location;
893
894 if (!location || lttng_userspace_probe_location_get_type(location) !=
895 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION ||
896 instrumentation_type !=
897 LTTNG_USERSPACE_PROBE_LOCATION_FUNCTION_INSTRUMENTATION_TYPE_ENTRY) {
898 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
899 status = LTTNG_USERSPACE_PROBE_LOCATION_STATUS_INVALID;
900 goto end;
901 }
902
903 function_location = container_of(location,
904 struct lttng_userspace_probe_location_function, parent);
905 function_location->instrumentation_type = instrumentation_type;
906 end:
907 return status;
908 }
909
910 int lttng_userspace_probe_location_tracepoint_get_binary_fd(
911 const struct lttng_userspace_probe_location *location)
912 {
913 int ret = -1;
914 struct lttng_userspace_probe_location_tracepoint *tracepoint_location;
915
916 if (!location || lttng_userspace_probe_location_get_type(location) !=
917 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT) {
918 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
919 goto end;
920 }
921
922 tracepoint_location = container_of(location,
923 struct lttng_userspace_probe_location_tracepoint, parent);
924 ret = tracepoint_location->binary_fd_handle ?
925 fd_handle_get_fd(tracepoint_location->binary_fd_handle) : -1;
926 end:
927 return ret;
928 }
929
930 static struct lttng_userspace_probe_location_lookup_method *
931 lttng_userspace_probe_location_function_get_lookup_method(
932 const struct lttng_userspace_probe_location *location)
933 {
934 struct lttng_userspace_probe_location_lookup_method *ret = NULL;
935
936 if (!location || lttng_userspace_probe_location_get_type(location) !=
937 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION) {
938 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
939 goto end;
940 }
941
942 ret = location->lookup_method;
943 end:
944 return ret;
945 }
946
947 static struct lttng_userspace_probe_location_lookup_method *
948 lttng_userspace_probe_location_tracepoint_get_lookup_method(
949 const struct lttng_userspace_probe_location *location)
950 {
951 struct lttng_userspace_probe_location_lookup_method *ret = NULL;
952
953 if (!location || lttng_userspace_probe_location_get_type(location) !=
954 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT) {
955 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
956 goto end;
957 }
958
959 ret = location->lookup_method;
960 end:
961 return ret;
962 }
963
964 const struct lttng_userspace_probe_location_lookup_method *
965 lttng_userspace_probe_location_get_lookup_method(
966 const struct lttng_userspace_probe_location *location)
967 {
968 struct lttng_userspace_probe_location_lookup_method *ret = NULL;
969
970 assert(location);
971 switch (location->type) {
972 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION:
973 ret = lttng_userspace_probe_location_function_get_lookup_method(
974 location);
975 break;
976 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT:
977 ret = lttng_userspace_probe_location_tracepoint_get_lookup_method(
978 location);
979 break;
980 default:
981 ERR("Unknowned lookup method.");
982 break;
983 }
984 return ret;
985 }
986
987 static
988 int lttng_userspace_probe_location_lookup_method_serialize(
989 struct lttng_userspace_probe_location_lookup_method *method,
990 struct lttng_payload *payload)
991 {
992 int ret;
993 struct lttng_userspace_probe_location_lookup_method_comm
994 lookup_method_comm;
995
996 lookup_method_comm.type = (int8_t) (method ? method->type :
997 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_DEFAULT);
998 if (payload) {
999 ret = lttng_dynamic_buffer_append(&payload->buffer, &lookup_method_comm,
1000 sizeof(lookup_method_comm));
1001 if (ret) {
1002 goto end;
1003 }
1004 }
1005 ret = sizeof(lookup_method_comm);
1006 end:
1007 return ret;
1008 }
1009
1010 static
1011 int lttng_userspace_probe_location_function_serialize(
1012 const struct lttng_userspace_probe_location *location,
1013 struct lttng_payload *payload)
1014 {
1015 int ret;
1016 size_t function_name_len, binary_path_len;
1017 struct lttng_userspace_probe_location_function *location_function;
1018 struct lttng_userspace_probe_location_function_comm location_function_comm;
1019
1020 assert(location);
1021 assert(lttng_userspace_probe_location_get_type(location) ==
1022 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION);
1023
1024 location_function = container_of(location,
1025 struct lttng_userspace_probe_location_function,
1026 parent);
1027 if (!location_function->function_name || !location_function->binary_path) {
1028 ret = -LTTNG_ERR_INVALID;
1029 goto end;
1030 }
1031
1032 if (payload && !location_function->binary_fd_handle) {
1033 ret = -LTTNG_ERR_INVALID;
1034 goto end;
1035 }
1036
1037 function_name_len = strlen(location_function->function_name);
1038 if (function_name_len == 0) {
1039 ret = -LTTNG_ERR_INVALID;
1040 goto end;
1041 }
1042 binary_path_len = strlen(location_function->binary_path);
1043 if (binary_path_len == 0) {
1044 ret = -LTTNG_ERR_INVALID;
1045 goto end;
1046 }
1047
1048 location_function_comm.function_name_len = function_name_len + 1;
1049 location_function_comm.binary_path_len = binary_path_len + 1;
1050
1051 if (payload) {
1052 ret = lttng_dynamic_buffer_append(&payload->buffer,
1053 &location_function_comm,
1054 sizeof(location_function_comm));
1055 if (ret) {
1056 ret = -LTTNG_ERR_INVALID;
1057 goto end;
1058 }
1059 ret = lttng_dynamic_buffer_append(&payload->buffer,
1060 location_function->function_name,
1061 location_function_comm.function_name_len);
1062 if (ret) {
1063 ret = -LTTNG_ERR_INVALID;
1064 goto end;
1065 }
1066 ret = lttng_dynamic_buffer_append(&payload->buffer,
1067 location_function->binary_path,
1068 location_function_comm.binary_path_len);
1069 if (ret) {
1070 ret = -LTTNG_ERR_INVALID;
1071 goto end;
1072 }
1073 ret = lttng_payload_push_fd_handle(
1074 payload, location_function->binary_fd_handle);
1075 if (ret) {
1076 ret = -LTTNG_ERR_INVALID;
1077 goto end;
1078 }
1079 }
1080 ret = sizeof(location_function_comm) +
1081 location_function_comm.function_name_len +
1082 location_function_comm.binary_path_len;
1083 end:
1084 return ret;
1085 }
1086
1087 static
1088 int lttng_userspace_probe_location_tracepoint_serialize(
1089 const struct lttng_userspace_probe_location *location,
1090 struct lttng_payload *payload)
1091 {
1092 int ret;
1093 size_t probe_name_len, provider_name_len, binary_path_len;
1094 struct lttng_userspace_probe_location_tracepoint *location_tracepoint;
1095 struct lttng_userspace_probe_location_tracepoint_comm location_tracepoint_comm;
1096
1097 assert(location);
1098 assert(lttng_userspace_probe_location_get_type(location) ==
1099 LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT);
1100
1101 location_tracepoint = container_of(location,
1102 struct lttng_userspace_probe_location_tracepoint,
1103 parent);
1104 if (!location_tracepoint->probe_name ||
1105 !location_tracepoint->provider_name ||
1106 !location_tracepoint->binary_path) {
1107 ret = -LTTNG_ERR_INVALID;
1108 goto end;
1109 }
1110
1111 if (payload && !location_tracepoint->binary_fd_handle) {
1112 ret = -LTTNG_ERR_INVALID;
1113 goto end;
1114 }
1115
1116 probe_name_len = strlen(location_tracepoint->probe_name);
1117 if (probe_name_len == 0) {
1118 ret = -LTTNG_ERR_INVALID;
1119 goto end;
1120 }
1121
1122 provider_name_len = strlen(location_tracepoint->provider_name);
1123 if (provider_name_len == 0) {
1124 ret = -LTTNG_ERR_INVALID;
1125 goto end;
1126 }
1127
1128 binary_path_len = strlen(location_tracepoint->binary_path);
1129 if (binary_path_len == 0) {
1130 ret = -LTTNG_ERR_INVALID;
1131 goto end;
1132 }
1133
1134 location_tracepoint_comm.probe_name_len = probe_name_len + 1;
1135 location_tracepoint_comm.provider_name_len = provider_name_len + 1;
1136 location_tracepoint_comm.binary_path_len = binary_path_len + 1;
1137
1138 if (payload) {
1139 ret = lttng_dynamic_buffer_append(&payload->buffer,
1140 &location_tracepoint_comm,
1141 sizeof(location_tracepoint_comm));
1142 if (ret) {
1143 ret = -LTTNG_ERR_INVALID;
1144 goto end;
1145 }
1146 ret = lttng_dynamic_buffer_append(&payload->buffer,
1147 location_tracepoint->probe_name,
1148 location_tracepoint_comm.probe_name_len);
1149 if (ret) {
1150 ret = -LTTNG_ERR_INVALID;
1151 goto end;
1152 }
1153 ret = lttng_dynamic_buffer_append(&payload->buffer,
1154 location_tracepoint->provider_name,
1155 location_tracepoint_comm.provider_name_len);
1156 if (ret) {
1157 ret = -LTTNG_ERR_INVALID;
1158 goto end;
1159 }
1160 ret = lttng_dynamic_buffer_append(&payload->buffer,
1161 location_tracepoint->binary_path,
1162 location_tracepoint_comm.binary_path_len);
1163 if (ret) {
1164 ret = -LTTNG_ERR_INVALID;
1165 goto end;
1166 }
1167 ret = lttng_payload_push_fd_handle(
1168 payload, location_tracepoint->binary_fd_handle);
1169 if (ret) {
1170 ret = -LTTNG_ERR_INVALID;
1171 goto end;
1172 }
1173 }
1174
1175 ret = sizeof(location_tracepoint_comm) +
1176 location_tracepoint_comm.probe_name_len +
1177 location_tracepoint_comm.provider_name_len +
1178 location_tracepoint_comm.binary_path_len;
1179 end:
1180 return ret;
1181 }
1182
1183 LTTNG_HIDDEN
1184 int lttng_userspace_probe_location_serialize(
1185 const struct lttng_userspace_probe_location *location,
1186 struct lttng_payload *payload)
1187 {
1188 int ret, buffer_use = 0;
1189 struct lttng_userspace_probe_location_comm location_generic_comm;
1190
1191 if (!location) {
1192 ERR("Invalid argument(s) passed to '%s'", __FUNCTION__);
1193 ret = -LTTNG_ERR_INVALID;
1194 goto end;
1195 }
1196
1197 memset(&location_generic_comm, 0, sizeof(location_generic_comm));
1198
1199 location_generic_comm.type = (int8_t) location->type;
1200 if (payload) {
1201 ret = lttng_dynamic_buffer_append(&payload->buffer,
1202 &location_generic_comm,
1203 sizeof(location_generic_comm));
1204 if (ret) {
1205 goto end;
1206 }
1207 }
1208 buffer_use += sizeof(location_generic_comm);
1209
1210 switch (lttng_userspace_probe_location_get_type(location)) {
1211 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION:
1212 ret = lttng_userspace_probe_location_function_serialize(
1213 location, payload);
1214 break;
1215 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT:
1216 ret = lttng_userspace_probe_location_tracepoint_serialize(
1217 location, payload);
1218 break;
1219 default:
1220 ERR("Unsupported probe location type");
1221 ret = -LTTNG_ERR_INVALID;
1222 goto end;
1223 }
1224 if (ret < 0) {
1225 goto end;
1226 }
1227 buffer_use += ret;
1228
1229 ret = lttng_userspace_probe_location_lookup_method_serialize(
1230 location->lookup_method, payload);
1231 if (ret < 0) {
1232 goto end;
1233 }
1234 ret += buffer_use;
1235 end:
1236 return ret;
1237 }
1238
1239 static
1240 int lttng_userspace_probe_location_function_create_from_payload(
1241 struct lttng_payload_view *view,
1242 struct lttng_userspace_probe_location **location)
1243 {
1244 struct lttng_userspace_probe_location_function_comm *location_function_comm;
1245 const char *function_name_src, *binary_path_src;
1246 char *function_name = NULL, *binary_path = NULL;
1247 int ret = 0;
1248 size_t expected_size;
1249 struct fd_handle *binary_fd_handle = lttng_payload_view_pop_fd_handle(view);
1250
1251 assert(location);
1252
1253 if (view->buffer.size < sizeof(*location_function_comm)) {
1254 ret = -LTTNG_ERR_INVALID;
1255 goto end;
1256 }
1257
1258 location_function_comm =
1259 (typeof(location_function_comm)) view->buffer.data;
1260
1261 expected_size = sizeof(*location_function_comm) +
1262 location_function_comm->function_name_len +
1263 location_function_comm->binary_path_len;
1264
1265 if (view->buffer.size < expected_size) {
1266 ret = -LTTNG_ERR_INVALID;
1267 goto end;
1268 }
1269
1270 function_name_src = view->buffer.data + sizeof(*location_function_comm);
1271 binary_path_src = function_name_src +
1272 location_function_comm->function_name_len;
1273
1274 if (!lttng_buffer_view_contains_string(&view->buffer, function_name_src,
1275 location_function_comm->function_name_len)) {
1276 ret = -LTTNG_ERR_INVALID;
1277 goto end;
1278 }
1279
1280 if (!lttng_buffer_view_contains_string(&view->buffer, binary_path_src,
1281 location_function_comm->binary_path_len)) {
1282 ret = -LTTNG_ERR_INVALID;
1283 goto end;
1284 }
1285
1286 function_name = lttng_strndup(function_name_src, LTTNG_SYMBOL_NAME_LEN);
1287 if (!function_name) {
1288 PERROR("lttng_strndup");
1289 ret = -LTTNG_ERR_NOMEM;
1290 goto end;
1291 }
1292
1293 binary_path = lttng_strndup(binary_path_src, LTTNG_PATH_MAX);
1294 if (!binary_path) {
1295 PERROR("lttng_strndup");
1296 ret = -LTTNG_ERR_NOMEM;
1297 goto end;
1298 }
1299
1300 *location = lttng_userspace_probe_location_function_create_no_check(
1301 binary_path, function_name, NULL, false);
1302 if (!(*location)) {
1303 ret = -LTTNG_ERR_INVALID;
1304 goto end;
1305 }
1306
1307 ret = lttng_userspace_probe_location_function_set_binary_fd_handle(
1308 *location, binary_fd_handle);
1309 if (ret) {
1310 ret = -LTTNG_ERR_INVALID;
1311 goto end;
1312 }
1313
1314 ret = (int) expected_size;
1315 end:
1316 fd_handle_put(binary_fd_handle);
1317 free(function_name);
1318 free(binary_path);
1319 return ret;
1320 }
1321
1322 static
1323 int lttng_userspace_probe_location_tracepoint_create_from_payload(
1324 struct lttng_payload_view *view,
1325 struct lttng_userspace_probe_location **location)
1326 {
1327 struct lttng_userspace_probe_location_tracepoint_comm *location_tracepoint_comm;
1328 const char *probe_name_src, *provider_name_src, *binary_path_src;
1329 char *probe_name = NULL, *provider_name = NULL, *binary_path = NULL;
1330 int ret = 0;
1331 size_t expected_size;
1332 struct fd_handle *binary_fd_handle = lttng_payload_view_pop_fd_handle(view);
1333
1334 assert(location);
1335
1336 if (!binary_fd_handle) {
1337 ret = -LTTNG_ERR_INVALID;
1338 goto end;
1339 }
1340
1341 if (view->buffer.size < sizeof(*location_tracepoint_comm)) {
1342 ret = -LTTNG_ERR_INVALID;
1343 goto end;
1344 }
1345
1346 location_tracepoint_comm =
1347 (typeof(location_tracepoint_comm)) view->buffer.data;
1348
1349 expected_size = sizeof(*location_tracepoint_comm) +
1350 location_tracepoint_comm->probe_name_len +
1351 location_tracepoint_comm->provider_name_len +
1352 location_tracepoint_comm->binary_path_len;
1353
1354 if (view->buffer.size < expected_size) {
1355 ret = -LTTNG_ERR_INVALID;
1356 goto end;
1357 }
1358
1359 probe_name_src = view->buffer.data + sizeof(*location_tracepoint_comm);
1360 provider_name_src = probe_name_src +
1361 location_tracepoint_comm->probe_name_len;
1362 binary_path_src = provider_name_src +
1363 location_tracepoint_comm->provider_name_len;
1364
1365 if (!lttng_buffer_view_contains_string(&view->buffer, probe_name_src,
1366 location_tracepoint_comm->probe_name_len)) {
1367 ret = -LTTNG_ERR_INVALID;
1368 goto end;
1369 }
1370
1371 if (!lttng_buffer_view_contains_string(&view->buffer, provider_name_src,
1372 location_tracepoint_comm->provider_name_len)) {
1373 ret = -LTTNG_ERR_INVALID;
1374 goto end;
1375 }
1376
1377 if (!lttng_buffer_view_contains_string(&view->buffer, binary_path_src,
1378 location_tracepoint_comm->binary_path_len)) {
1379 ret = -LTTNG_ERR_INVALID;
1380 goto end;
1381 }
1382
1383 probe_name = lttng_strndup(probe_name_src, LTTNG_SYMBOL_NAME_LEN);
1384 if (!probe_name) {
1385 PERROR("Failed to allocate probe name");
1386 ret = -LTTNG_ERR_INVALID;
1387 goto end;
1388 }
1389 provider_name = lttng_strndup(provider_name_src, LTTNG_SYMBOL_NAME_LEN);
1390 if (!provider_name) {
1391 PERROR("Failed to allocate provider name");
1392 ret = -LTTNG_ERR_INVALID;
1393 goto end;
1394 }
1395
1396 binary_path = lttng_strndup(binary_path_src, LTTNG_PATH_MAX);
1397 if (!binary_path) {
1398 PERROR("Failed to allocate binary path");
1399 ret = -LTTNG_ERR_INVALID;
1400 goto end;
1401 }
1402
1403 *location = lttng_userspace_probe_location_tracepoint_create_no_check(
1404 binary_path, provider_name, probe_name, NULL, false);
1405 if (!(*location)) {
1406 ret = -LTTNG_ERR_INVALID;
1407 goto end;
1408 }
1409
1410 ret = lttng_userspace_probe_location_tracepoint_set_binary_fd_handle(
1411 *location, binary_fd_handle);
1412 if (ret) {
1413 ret = -LTTNG_ERR_INVALID;
1414 goto end;
1415 }
1416
1417 ret = (int) expected_size;
1418 end:
1419 fd_handle_put(binary_fd_handle);
1420 free(probe_name);
1421 free(provider_name);
1422 free(binary_path);
1423 return ret;
1424 }
1425
1426 static
1427 int lttng_userspace_probe_location_lookup_method_create_from_payload(
1428 struct lttng_payload_view *view,
1429 struct lttng_userspace_probe_location_lookup_method **lookup_method)
1430 {
1431 int ret;
1432 struct lttng_userspace_probe_location_lookup_method_comm *lookup_comm;
1433 enum lttng_userspace_probe_location_lookup_method_type type;
1434
1435 assert(view);
1436 assert(lookup_method);
1437
1438 if (view->buffer.size < sizeof(*lookup_comm)) {
1439 ret = -LTTNG_ERR_INVALID;
1440 goto end;
1441 }
1442
1443 lookup_comm = (typeof(lookup_comm)) view->buffer.data;
1444 type = (enum lttng_userspace_probe_location_lookup_method_type)
1445 lookup_comm->type;
1446 switch (type) {
1447 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_DEFAULT:
1448 *lookup_method = NULL;
1449 break;
1450 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF:
1451 *lookup_method =
1452 lttng_userspace_probe_location_lookup_method_function_elf_create();
1453 if (!(*lookup_method)) {
1454 ret = -LTTNG_ERR_INVALID;
1455 goto end;
1456 }
1457 break;
1458 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT:
1459 *lookup_method =
1460 lttng_userspace_probe_location_lookup_method_tracepoint_sdt_create();
1461 if (!(*lookup_method)) {
1462 ret = -LTTNG_ERR_INVALID;
1463 goto end;
1464 }
1465 break;
1466 default:
1467 ret = -LTTNG_ERR_INVALID;
1468 goto end;
1469 }
1470
1471 ret = sizeof(*lookup_comm);
1472 end:
1473 return ret;
1474 }
1475
1476 LTTNG_HIDDEN
1477 int lttng_userspace_probe_location_create_from_payload(
1478 struct lttng_payload_view *view,
1479 struct lttng_userspace_probe_location **location)
1480 {
1481 struct lttng_userspace_probe_location_lookup_method *lookup_method;
1482 enum lttng_userspace_probe_location_type type;
1483 int consumed = 0;
1484 int ret;
1485 struct lttng_userspace_probe_location_comm *probe_location_comm;
1486 struct lttng_payload_view probe_location_comm_view =
1487 lttng_payload_view_from_view(
1488 view, 0, sizeof(*probe_location_comm));
1489
1490 assert(view);
1491 assert(location);
1492
1493 lookup_method = NULL;
1494
1495 if (!lttng_payload_view_is_valid(&probe_location_comm_view)) {
1496 ret = -LTTNG_ERR_INVALID;
1497 goto end;
1498 }
1499
1500 probe_location_comm = (typeof(probe_location_comm)) probe_location_comm_view.buffer.data;
1501 type = (enum lttng_userspace_probe_location_type) probe_location_comm->type;
1502 consumed += sizeof(*probe_location_comm);
1503
1504 switch (type) {
1505 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION:
1506 {
1507 struct lttng_payload_view location_view =
1508 lttng_payload_view_from_view(
1509 view, consumed, -1);
1510
1511 ret = lttng_userspace_probe_location_function_create_from_payload(
1512 &location_view, location);
1513 if (ret < 0) {
1514 goto end;
1515 }
1516 break;
1517 }
1518 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT:
1519 {
1520 struct lttng_payload_view location_view =
1521 lttng_payload_view_from_view(view, consumed, -1);
1522
1523 ret = lttng_userspace_probe_location_tracepoint_create_from_payload(
1524 &location_view, location);
1525 if (ret < 0) {
1526 goto end;
1527 }
1528 break;
1529 }
1530 default:
1531 ret = -LTTNG_ERR_INVALID;
1532 goto end;
1533 }
1534
1535 consumed += ret;
1536 if (view->buffer.size <= consumed) {
1537 ret = -LTTNG_ERR_INVALID;
1538 goto end;
1539 }
1540
1541 {
1542 struct lttng_payload_view lookup_method_view =
1543 lttng_payload_view_from_view(
1544 view, consumed, -1);
1545
1546 ret = lttng_userspace_probe_location_lookup_method_create_from_payload(
1547 &lookup_method_view, &lookup_method);
1548 }
1549 if (ret < 0) {
1550 ret = -LTTNG_ERR_INVALID;
1551 goto end;
1552 }
1553
1554 assert(lookup_method);
1555 (*location)->lookup_method = lookup_method;
1556 lookup_method = NULL;
1557 ret += consumed;
1558 end:
1559 return ret;
1560 }
1561
1562 static
1563 int lttng_userspace_probe_location_function_set_binary_fd_handle(
1564 struct lttng_userspace_probe_location *location,
1565 struct fd_handle *binary_fd)
1566 {
1567 int ret = 0;
1568 struct lttng_userspace_probe_location_function *function_location;
1569
1570 assert(location);
1571 assert(location->type == LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION);
1572
1573 function_location = container_of(location,
1574 struct lttng_userspace_probe_location_function, parent);
1575 fd_handle_put(function_location->binary_fd_handle);
1576 fd_handle_get(binary_fd);
1577 function_location->binary_fd_handle = binary_fd;
1578 return ret;
1579 }
1580
1581 static
1582 int lttng_userspace_probe_location_tracepoint_set_binary_fd_handle(
1583 struct lttng_userspace_probe_location *location,
1584 struct fd_handle *binary_fd)
1585 {
1586 int ret = 0;
1587 struct lttng_userspace_probe_location_tracepoint *tracepoint_location;
1588
1589 assert(location);
1590 assert(location->type == LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT);
1591
1592 tracepoint_location = container_of(location,
1593 struct lttng_userspace_probe_location_tracepoint, parent);
1594 fd_handle_put(tracepoint_location->binary_fd_handle);
1595 fd_handle_get(binary_fd);
1596 tracepoint_location->binary_fd_handle = binary_fd;
1597 return ret;
1598 }
1599
1600 static
1601 int lttng_userspace_probe_location_function_flatten(
1602 const struct lttng_userspace_probe_location *location,
1603 struct lttng_dynamic_buffer *buffer)
1604 {
1605 struct lttng_userspace_probe_location_lookup_method_elf flat_lookup_method;
1606 struct lttng_userspace_probe_location_function *probe_function;
1607 struct lttng_userspace_probe_location_function flat_probe;
1608 size_t function_name_len, binary_path_len;
1609 size_t padding_needed = 0;
1610 char *flat_probe_start;
1611 int storage_needed = 0;
1612 int ret;
1613
1614 assert(location);
1615
1616 if (location->lookup_method && location->lookup_method->type !=
1617 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF) {
1618 ret = -LTTNG_ERR_INVALID;
1619 goto end;
1620 }
1621
1622 probe_function = container_of(location,
1623 struct lttng_userspace_probe_location_function,
1624 parent);
1625 assert(probe_function->function_name);
1626 assert(probe_function->binary_path);
1627
1628 storage_needed +=
1629 sizeof(struct lttng_userspace_probe_location_function);
1630 function_name_len = strlen(probe_function->function_name) + 1;
1631 binary_path_len = strlen(probe_function->binary_path) + 1;
1632 storage_needed += function_name_len + binary_path_len;
1633
1634 /*
1635 * The lookup method is aligned to 64-bit within the buffer.
1636 * This is needed even if there is no lookup method since
1637 * the next structure in the buffer probably needs to be
1638 * aligned too (depending on the arch).
1639 */
1640 padding_needed = ALIGN_TO(storage_needed, sizeof(uint64_t)) - storage_needed;
1641 storage_needed += padding_needed;
1642
1643 if (location->lookup_method) {
1644 /* NOTE: elf look-up method is assumed here. */
1645 storage_needed += sizeof(struct lttng_userspace_probe_location_lookup_method_elf);
1646 }
1647
1648 if (!buffer) {
1649 ret = storage_needed;
1650 goto end;
1651 }
1652
1653 if (lttng_dynamic_buffer_get_capacity_left(buffer) < storage_needed) {
1654 ret = lttng_dynamic_buffer_set_capacity(buffer,
1655 buffer->size + storage_needed);
1656 if (ret) {
1657 goto end;
1658 }
1659 }
1660
1661 memset(&flat_probe, 0, sizeof(flat_probe));
1662
1663 flat_probe_start = buffer->data + buffer->size;
1664 flat_probe.parent.type = location->type;
1665 /*
1666 * The lookup method, if present, is the last element in the flat
1667 * representation of the probe.
1668 */
1669 if (location->lookup_method) {
1670 flat_probe.parent.lookup_method =
1671 (struct lttng_userspace_probe_location_lookup_method *)
1672 (flat_probe_start + sizeof(flat_probe) +
1673 function_name_len + binary_path_len + padding_needed);
1674 } else {
1675 flat_probe.parent.lookup_method = NULL;
1676 }
1677
1678 flat_probe.function_name = flat_probe_start + sizeof(flat_probe);
1679 flat_probe.binary_path = flat_probe.function_name + function_name_len;
1680 flat_probe.binary_fd_handle = NULL;
1681 ret = lttng_dynamic_buffer_append(buffer, &flat_probe,
1682 sizeof(flat_probe));
1683 if (ret) {
1684 goto end;
1685 }
1686
1687 ret = lttng_dynamic_buffer_append(buffer,
1688 probe_function->function_name, function_name_len);
1689 if (ret) {
1690 goto end;
1691 }
1692 ret = lttng_dynamic_buffer_append(buffer,
1693 probe_function->binary_path, binary_path_len);
1694 if (ret) {
1695 goto end;
1696 }
1697
1698 /* Insert padding before the lookup method. */
1699 ret = lttng_dynamic_buffer_set_size(buffer,
1700 buffer->size + padding_needed);
1701 if (ret) {
1702 goto end;
1703 }
1704
1705 if (!location->lookup_method) {
1706 /* Not an error, the default method is used. */
1707 ret = storage_needed;
1708 goto end;
1709 }
1710
1711 memset(&flat_lookup_method, 0, sizeof(flat_lookup_method));
1712 flat_lookup_method.parent.type =
1713 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF;
1714 ret = lttng_dynamic_buffer_append(buffer,
1715 &flat_lookup_method, sizeof(flat_lookup_method));
1716 if (ret) {
1717 goto end;
1718 }
1719 ret = storage_needed;
1720 end:
1721 return ret;
1722 }
1723
1724 static
1725 int lttng_userspace_probe_location_tracepoint_flatten(
1726 const struct lttng_userspace_probe_location *location,
1727 struct lttng_dynamic_buffer *buffer)
1728 {
1729 struct lttng_userspace_probe_location_lookup_method_sdt flat_lookup_method;
1730 struct lttng_userspace_probe_location_tracepoint *probe_tracepoint;
1731 struct lttng_userspace_probe_location_tracepoint flat_probe;
1732 size_t probe_name_len, provider_name_len, binary_path_len;
1733 size_t padding_needed = 0;
1734 int storage_needed = 0;
1735 char *flat_probe_start;
1736 int ret = 0;
1737
1738 assert(location);
1739
1740 /* Only SDT tracepoints are supported at the moment */
1741 if (location->lookup_method && location->lookup_method->type !=
1742 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT) {
1743 ret = -LTTNG_ERR_INVALID;
1744 goto end;
1745 }
1746 probe_tracepoint = container_of(location,
1747 struct lttng_userspace_probe_location_tracepoint,
1748 parent);
1749 assert(probe_tracepoint->probe_name);
1750 assert(probe_tracepoint->provider_name);
1751 assert(probe_tracepoint->binary_path);
1752
1753 /* Compute the storage space needed to flatten the probe location */
1754 storage_needed += sizeof(struct lttng_userspace_probe_location_tracepoint);
1755
1756 probe_name_len = strlen(probe_tracepoint->probe_name) + 1;
1757 provider_name_len = strlen(probe_tracepoint->provider_name) + 1;
1758 binary_path_len = strlen(probe_tracepoint->binary_path) + 1;
1759
1760 storage_needed += probe_name_len + provider_name_len + binary_path_len;
1761
1762 /*
1763 * The lookup method is aligned to 64-bit within the buffer.
1764 * This is needed even if there is no lookup method since
1765 * the next structure in the buffer probably needs to be
1766 * aligned too (depending on the arch).
1767 */
1768 padding_needed = ALIGN_TO(storage_needed, sizeof(uint64_t)) - storage_needed;
1769 storage_needed += padding_needed;
1770
1771 if (location->lookup_method) {
1772 /* NOTE: elf look-up method is assumed here. */
1773 storage_needed +=
1774 sizeof(struct lttng_userspace_probe_location_lookup_method_elf);
1775 }
1776
1777 /*
1778 * If the caller set buffer to NULL, return the size of the needed buffer.
1779 */
1780 if (!buffer) {
1781 ret = storage_needed;
1782 goto end;
1783 }
1784
1785 if (lttng_dynamic_buffer_get_capacity_left(buffer) < storage_needed) {
1786 ret = lttng_dynamic_buffer_set_capacity(buffer,
1787 buffer->size + storage_needed);
1788 if (ret) {
1789 goto end;
1790 }
1791 }
1792
1793 memset(&flat_probe, 0, sizeof(flat_probe));
1794
1795 flat_probe_start = buffer->data + buffer->size;
1796 flat_probe.parent.type = location->type;
1797
1798 /*
1799 * The lookup method, if present, is the last element in the flat
1800 * representation of the probe.
1801 */
1802 if (location->lookup_method) {
1803 flat_probe.parent.lookup_method =
1804 (struct lttng_userspace_probe_location_lookup_method *)
1805 (flat_probe_start + sizeof(flat_probe) +
1806 probe_name_len + provider_name_len +
1807 binary_path_len + padding_needed);
1808 } else {
1809 flat_probe.parent.lookup_method = NULL;
1810 }
1811
1812 flat_probe.probe_name = flat_probe_start + sizeof(flat_probe);
1813 flat_probe.provider_name = flat_probe.probe_name + probe_name_len;
1814 flat_probe.binary_path = flat_probe.provider_name + provider_name_len;
1815 flat_probe.binary_fd_handle = NULL;
1816 ret = lttng_dynamic_buffer_append(buffer, &flat_probe, sizeof(flat_probe));
1817 if (ret) {
1818 goto end;
1819 }
1820
1821 /* Append all the fields to the buffer */
1822 ret = lttng_dynamic_buffer_append(buffer,
1823 probe_tracepoint->probe_name, probe_name_len);
1824 if (ret) {
1825 goto end;
1826 }
1827 ret = lttng_dynamic_buffer_append(buffer,
1828 probe_tracepoint->provider_name, provider_name_len);
1829 if (ret) {
1830 goto end;
1831 }
1832 ret = lttng_dynamic_buffer_append(buffer,
1833 probe_tracepoint->binary_path, binary_path_len);
1834 if (ret) {
1835 goto end;
1836 }
1837
1838 /* Insert padding before the lookup method. */
1839 ret = lttng_dynamic_buffer_set_size(buffer, buffer->size + padding_needed);
1840 if (ret) {
1841 goto end;
1842 }
1843
1844 if (!location->lookup_method) {
1845 /* Not an error, the default method is used. */
1846 ret = storage_needed;
1847 goto end;
1848 }
1849
1850 memset(&flat_lookup_method, 0, sizeof(flat_lookup_method));
1851
1852 flat_lookup_method.parent.type =
1853 LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT;
1854 ret = lttng_dynamic_buffer_append(buffer,
1855 &flat_lookup_method, sizeof(flat_lookup_method));
1856 if (ret) {
1857 goto end;
1858 }
1859 ret = storage_needed;
1860 end:
1861 return ret;
1862 }
1863
1864 LTTNG_HIDDEN
1865 int lttng_userspace_probe_location_flatten(
1866 const struct lttng_userspace_probe_location *location,
1867 struct lttng_dynamic_buffer *buffer)
1868 {
1869 int ret;
1870 if (!location) {
1871 ret = -LTTNG_ERR_INVALID;
1872 goto end;
1873 }
1874
1875 /* Only types currently supported. */
1876 switch (location->type) {
1877 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION:
1878 ret = lttng_userspace_probe_location_function_flatten(location, buffer);
1879 break;
1880 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT:
1881 ret = lttng_userspace_probe_location_tracepoint_flatten(location, buffer);
1882 break;
1883 default:
1884 ret = -LTTNG_ERR_INVALID;
1885 goto end;
1886 }
1887
1888 end:
1889 return ret;
1890 }
1891
1892 LTTNG_HIDDEN
1893 struct lttng_userspace_probe_location *lttng_userspace_probe_location_copy(
1894 const struct lttng_userspace_probe_location *location)
1895 {
1896 struct lttng_userspace_probe_location *new_location = NULL;
1897 enum lttng_userspace_probe_location_type type;
1898
1899 if (!location) {
1900 goto err;
1901 }
1902
1903 type = lttng_userspace_probe_location_get_type(location);
1904 switch (type) {
1905 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION:
1906 new_location =
1907 lttng_userspace_probe_location_function_copy(location);
1908 if (!new_location) {
1909 goto err;
1910 }
1911 break;
1912 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT:
1913 new_location =
1914 lttng_userspace_probe_location_tracepoint_copy(location);
1915 if (!new_location) {
1916 goto err;
1917 }
1918 break;
1919 default:
1920 new_location = NULL;
1921 goto err;
1922 }
1923 err:
1924 return new_location;
1925 }
1926
1927 LTTNG_HIDDEN
1928 bool lttng_userspace_probe_location_lookup_method_is_equal(
1929 const struct lttng_userspace_probe_location_lookup_method *a,
1930 const struct lttng_userspace_probe_location_lookup_method *b)
1931 {
1932 bool is_equal = false;
1933
1934 if (!a || !b) {
1935 goto end;
1936 }
1937
1938 if (a == b) {
1939 is_equal = true;
1940 goto end;
1941 }
1942
1943 if (a->type != b->type) {
1944 goto end;
1945 }
1946
1947 is_equal = true;
1948 end:
1949 return is_equal;
1950 }
1951
1952 LTTNG_HIDDEN
1953 bool lttng_userspace_probe_location_is_equal(
1954 const struct lttng_userspace_probe_location *a,
1955 const struct lttng_userspace_probe_location *b)
1956 {
1957 bool is_equal = false;
1958
1959 if (!a || !b) {
1960 goto end;
1961 }
1962
1963 if (a == b) {
1964 is_equal = true;
1965 goto end;
1966 }
1967
1968 if (!lttng_userspace_probe_location_lookup_method_is_equal(
1969 a->lookup_method, b->lookup_method)) {
1970 goto end;
1971 }
1972
1973 if (a->type != b->type) {
1974 goto end;
1975 }
1976
1977 is_equal = a->equal ? a->equal(a, b) : true;
1978 end:
1979 return is_equal;
1980 }
1981
1982 LTTNG_HIDDEN
1983 unsigned long lttng_userspace_probe_location_hash(
1984 const struct lttng_userspace_probe_location *location)
1985 {
1986 return location->hash(location);
1987 }
1988
1989 LTTNG_HIDDEN
1990 enum lttng_error_code lttng_userspace_probe_location_mi_serialize(
1991 const struct lttng_userspace_probe_location *location,
1992 struct mi_writer *writer)
1993 {
1994 typedef enum lttng_error_code (*mi_fp)(
1995 const struct lttng_userspace_probe_location *,
1996 struct mi_writer *);
1997
1998 int ret;
1999 enum lttng_error_code ret_code;
2000 mi_fp mi_function = NULL;
2001
2002 assert(location);
2003 assert(writer);
2004
2005 switch (lttng_userspace_probe_location_get_type(location)) {
2006 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_FUNCTION:
2007 mi_function = lttng_userspace_probe_location_function_mi_serialize;
2008 break;
2009 case LTTNG_USERSPACE_PROBE_LOCATION_TYPE_TRACEPOINT:
2010 mi_function = lttng_userspace_probe_location_tracepoint_mi_serialize;
2011 break;
2012 default:
2013 abort();
2014 break;
2015 }
2016
2017 /* Open userspace probe location element. */
2018 ret = mi_lttng_writer_open_element(
2019 writer, mi_lttng_element_userspace_probe_location);
2020 if (ret) {
2021 goto mi_error;
2022 }
2023
2024 /* Underlying user space probe location. */
2025 ret_code = mi_function(location, writer);
2026 if (ret_code != LTTNG_OK) {
2027 goto end;
2028 }
2029
2030 /* Close userspace probe location element. */
2031 ret = mi_lttng_writer_close_element(writer);
2032 if (ret) {
2033 goto mi_error;
2034 }
2035
2036 ret_code = LTTNG_OK;
2037 goto end;
2038
2039 mi_error:
2040 ret_code = LTTNG_ERR_MI_IO_FAIL;
2041 end:
2042 return ret_code;
2043 }
2044
2045 enum lttng_error_code lttng_userspace_probe_location_lookup_method_mi_serialize(
2046 const struct lttng_userspace_probe_location_lookup_method
2047 *method,
2048 struct mi_writer *writer)
2049 {
2050 int ret;
2051 enum lttng_error_code ret_code;
2052 const char *type_element_str;
2053
2054 assert(method);
2055 assert(writer);
2056
2057 switch (lttng_userspace_probe_location_lookup_method_get_type(method)) {
2058 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_DEFAULT:
2059 type_element_str =
2060 mi_lttng_element_userspace_probe_location_lookup_method_function_default;
2061 break;
2062 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_FUNCTION_ELF:
2063 type_element_str =
2064 mi_lttng_element_userspace_probe_location_lookup_method_function_elf;
2065 break;
2066 case LTTNG_USERSPACE_PROBE_LOCATION_LOOKUP_METHOD_TYPE_TRACEPOINT_SDT:
2067 type_element_str =
2068 mi_lttng_element_userspace_probe_location_lookup_method_tracepoint_sdt;
2069 break;
2070 default:
2071 abort();
2072 break;
2073 }
2074
2075 /* Open userspace probe location lookup method element. */
2076 ret = mi_lttng_writer_open_element(writer,
2077 mi_lttng_element_userspace_probe_location_lookup_method);
2078 if (ret) {
2079 goto mi_error;
2080 }
2081
2082 /* User space probe location lookup method empty element. */
2083 ret = mi_lttng_writer_open_element(writer, type_element_str);
2084 if (ret) {
2085 goto mi_error;
2086 }
2087
2088 /* Close userspace probe location lookup method element. */
2089 ret = mi_lttng_close_multi_element(writer, 2);
2090 if (ret) {
2091 goto mi_error;
2092 }
2093
2094 ret_code = LTTNG_OK;
2095 goto end;
2096
2097 mi_error:
2098 ret_code = LTTNG_ERR_MI_IO_FAIL;
2099 end:
2100 return ret_code;
2101 }
2102
2103 static enum lttng_error_code lttng_userspace_probe_location_tracepoint_mi_serialize(
2104 const struct lttng_userspace_probe_location *location,
2105 struct mi_writer *writer)
2106 {
2107 int ret;
2108 enum lttng_error_code ret_code;
2109 const char *probe_name = NULL;
2110 const char *provider_name = NULL;
2111 const char *binary_path = NULL;
2112 const struct lttng_userspace_probe_location_lookup_method
2113 *lookup_method = NULL;
2114
2115 assert(location);
2116 assert(writer);
2117
2118 probe_name = lttng_userspace_probe_location_tracepoint_get_probe_name(
2119 location);
2120 provider_name = lttng_userspace_probe_location_tracepoint_get_provider_name(
2121 location);
2122 binary_path = lttng_userspace_probe_location_tracepoint_get_binary_path(
2123 location);
2124 lookup_method = lttng_userspace_probe_location_tracepoint_get_lookup_method(
2125 location);
2126
2127 /* Open userspace probe location tracepoint element. */
2128 ret = mi_lttng_writer_open_element(writer,
2129 mi_lttng_element_userspace_probe_location_tracepoint);
2130 if (ret) {
2131 goto mi_error;
2132 }
2133
2134 /* Probe name. */
2135 ret = mi_lttng_writer_write_element_string(writer,
2136 mi_lttng_element_userspace_probe_location_tracepoint_probe_name,
2137 probe_name);
2138 if (ret) {
2139 goto mi_error;
2140 }
2141
2142 /* Provider name. */
2143 ret = mi_lttng_writer_write_element_string(writer,
2144 mi_lttng_element_userspace_probe_location_tracepoint_provider_name,
2145 provider_name);
2146 if (ret) {
2147 goto mi_error;
2148 }
2149
2150 /* Binary path. */
2151 ret = mi_lttng_writer_write_element_string(writer,
2152 mi_lttng_element_userspace_probe_location_binary_path,
2153 binary_path);
2154 if (ret) {
2155 goto mi_error;
2156 }
2157
2158 /* The lookup method. */
2159 ret_code = lttng_userspace_probe_location_lookup_method_mi_serialize(
2160 lookup_method, writer);
2161 if (ret_code != LTTNG_OK) {
2162 goto end;
2163 }
2164
2165 /* Close userspace probe location tracepoint. */
2166 ret = mi_lttng_writer_close_element(writer);
2167 if (ret) {
2168 goto mi_error;
2169 }
2170
2171 ret_code = LTTNG_OK;
2172 goto end;
2173
2174 mi_error:
2175 ret_code = LTTNG_ERR_MI_IO_FAIL;
2176 end:
2177 return ret_code;
2178 }
2179
2180 static enum lttng_error_code lttng_userspace_probe_location_function_mi_serialize(
2181 const struct lttng_userspace_probe_location *location,
2182 struct mi_writer *writer)
2183 {
2184 int ret;
2185 enum lttng_error_code ret_code;
2186 const char *function_name = NULL;
2187 const char *binary_path = NULL;
2188 const char *instrumentation_type_str = NULL;
2189 enum lttng_userspace_probe_location_function_instrumentation_type
2190 instrumentation_type;
2191 const struct lttng_userspace_probe_location_lookup_method
2192 *lookup_method = NULL;
2193
2194 assert(location);
2195 assert(writer);
2196
2197 function_name = lttng_userspace_probe_location_function_get_function_name(
2198 location);
2199 binary_path = lttng_userspace_probe_location_function_get_binary_path(
2200 location);
2201 instrumentation_type =
2202 lttng_userspace_probe_location_function_get_instrumentation_type(
2203 location);
2204 lookup_method = lttng_userspace_probe_location_function_get_lookup_method(
2205 location);
2206
2207 switch (instrumentation_type) {
2208 case LTTNG_USERSPACE_PROBE_LOCATION_FUNCTION_INSTRUMENTATION_TYPE_ENTRY:
2209 instrumentation_type_str =
2210 mi_lttng_userspace_probe_location_function_instrumentation_type_entry;
2211 break;
2212 default:
2213 abort();
2214 break;
2215 }
2216
2217 /* Open userspace probe location function element. */
2218 ret = mi_lttng_writer_open_element(writer,
2219 mi_lttng_element_userspace_probe_location_function);
2220 if (ret) {
2221 goto mi_error;
2222 }
2223
2224 /* Function name. */
2225 ret = mi_lttng_writer_write_element_string(writer,
2226 mi_lttng_element_userspace_probe_location_function_name,
2227 function_name);
2228 if (ret) {
2229 goto mi_error;
2230 }
2231
2232 /* Binary path. */
2233 ret = mi_lttng_writer_write_element_string(writer,
2234 mi_lttng_element_userspace_probe_location_binary_path,
2235 binary_path);
2236 if (ret) {
2237 goto mi_error;
2238 }
2239
2240 /* Instrumentation type. */
2241 ret = mi_lttng_writer_write_element_string(writer,
2242 mi_lttng_element_userspace_probe_location_function_instrumentation_type,
2243 instrumentation_type_str);
2244 if (ret) {
2245 goto mi_error;
2246 }
2247
2248 /* The lookup method. */
2249 ret_code = lttng_userspace_probe_location_lookup_method_mi_serialize(
2250 lookup_method, writer);
2251 if (ret_code != LTTNG_OK) {
2252 goto end;
2253 }
2254
2255 /* Close userspace probe location function element. */
2256 ret = mi_lttng_writer_close_element(writer);
2257 if (ret) {
2258 goto mi_error;
2259 }
2260
2261 ret_code = LTTNG_OK;
2262 goto end;
2263
2264 mi_error:
2265 ret_code = LTTNG_ERR_MI_IO_FAIL;
2266 end:
2267 return ret_code;
2268 }
This page took 0.116683 seconds and 4 git commands to generate.