Split CTF IR and CTF writer APIs and implementations
[babeltrace.git] / lib / ctf-ir / resolve.c
1 /*
2 * resolve.c
3 *
4 * Babeltrace - CTF IR: Type resolving internal
5 *
6 * Copyright 2015 Jérémie Galarneau <jeremie.galarneau@efficios.com>
7 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
8 *
9 * Authors: Jérémie Galarneau <jeremie.galarneau@efficios.com>
10 * Philippe Proulx <pproulx@efficios.com>
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to deal
14 * in the Software without restriction, including without limitation the rights
15 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 * copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28 * SOFTWARE.
29 */
30
31 #define BT_LOG_TAG "RESOLVE"
32 #include <babeltrace/lib-logging-internal.h>
33
34 #include <babeltrace/ctf-ir/stream-class.h>
35 #include <babeltrace/ctf-ir/resolve-internal.h>
36 #include <babeltrace/ctf-ir/field-types.h>
37 #include <babeltrace/ctf-ir/field-path.h>
38 #include <babeltrace/ctf-ir/field-path-internal.h>
39 #include <babeltrace/ref.h>
40 #include <babeltrace/babeltrace-internal.h>
41 #include <babeltrace/values.h>
42 #include <babeltrace/types.h>
43 #include <babeltrace/assert-internal.h>
44 #include <limits.h>
45 #include <inttypes.h>
46 #include <stdlib.h>
47 #include <glib.h>
48
49 typedef GPtrArray type_stack;
50
51 /*
52 * A stack frame.
53 *
54 * `type` contains a compound field type (structure, variant, array,
55 * or sequence) and `index` indicates the index of the field type in
56 * the upper frame (-1 for array and sequence field types).
57 *
58 * `type` is owned by the stack frame.
59 */
60 struct type_stack_frame {
61 struct bt_field_type_common *type;
62 int index;
63 };
64
65 /*
66 * The current context of the resolving engine.
67 *
68 * `scopes` contain the 6 CTF scope field types (see CTF, sect. 7.3.2)
69 * in the following order:
70 *
71 * * Packet header
72 * * Packet context
73 * * Event header
74 * * Stream event context
75 * * Event context
76 * * Event payload
77 */
78 struct resolve_context {
79 struct bt_value *environment;
80 struct bt_field_type_common *scopes[6];
81
82 /* Root scope being visited */
83 enum bt_scope root_scope;
84 type_stack *type_stack;
85 struct bt_field_type_common *cur_field_type;
86 };
87
88 /* TSDL dynamic scope prefixes as defined in CTF Section 7.3.2 */
89 static const char * const absolute_path_prefixes[] = {
90 [BT_SCOPE_ENV] = "env.",
91 [BT_SCOPE_TRACE_PACKET_HEADER] = "trace.packet.header.",
92 [BT_SCOPE_STREAM_PACKET_CONTEXT] = "stream.packet.context.",
93 [BT_SCOPE_STREAM_EVENT_HEADER] = "stream.event.header.",
94 [BT_SCOPE_STREAM_EVENT_CONTEXT] = "stream.event.context.",
95 [BT_SCOPE_EVENT_CONTEXT] = "event.context.",
96 [BT_SCOPE_EVENT_FIELDS] = "event.fields.",
97 };
98
99 /* Number of path tokens used for the absolute prefixes */
100 static const int absolute_path_prefix_ptoken_counts[] = {
101 [BT_SCOPE_ENV] = 1,
102 [BT_SCOPE_TRACE_PACKET_HEADER] = 3,
103 [BT_SCOPE_STREAM_PACKET_CONTEXT] = 3,
104 [BT_SCOPE_STREAM_EVENT_HEADER] = 3,
105 [BT_SCOPE_STREAM_EVENT_CONTEXT] = 3,
106 [BT_SCOPE_EVENT_CONTEXT] = 2,
107 [BT_SCOPE_EVENT_FIELDS] = 2,
108 };
109
110 /*
111 * Destroys a type stack frame.
112 */
113 static
114 void type_stack_destroy_notify(gpointer data)
115 {
116 struct type_stack_frame *frame = data;
117
118 BT_PUT(frame->type);
119 g_free(frame);
120 }
121
122 /*
123 * Creates a type stack.
124 *
125 * Return value is owned by the caller.
126 */
127 static
128 type_stack *type_stack_create(void)
129 {
130 return g_ptr_array_new_with_free_func(type_stack_destroy_notify);
131 }
132
133 /*
134 * Destroys a type stack.
135 */
136 static
137 void type_stack_destroy(type_stack *stack)
138 {
139 g_ptr_array_free(stack, TRUE);
140 }
141
142 /*
143 * Pushes a field type onto a type stack.
144 *
145 * `type` is owned by the caller (stack frame gets a new reference).
146 */
147 static
148 int type_stack_push(type_stack *stack, struct bt_field_type_common *type)
149 {
150 int ret = 0;
151 struct type_stack_frame *frame = NULL;
152
153 if (!stack || !type) {
154 BT_LOGW("Invalid parameter: stack or type is NULL.");
155 ret = -1;
156 goto end;
157 }
158
159 frame = g_new0(struct type_stack_frame, 1);
160 if (!frame) {
161 BT_LOGE_STR("Failed to allocate one field type stack frame.");
162 ret = -1;
163 goto end;
164 }
165
166 BT_LOGV("Pushing field type on context's stack: "
167 "ft-addr=%p, stack-size-before=%u", type, stack->len);
168 frame->type = bt_get(type);
169 g_ptr_array_add(stack, frame);
170
171 end:
172 return ret;
173 }
174
175 /*
176 * Checks whether or not `stack` is empty.
177 */
178 static
179 bt_bool type_stack_empty(type_stack *stack)
180 {
181 return stack->len == 0;
182 }
183
184 /*
185 * Returns the number of frames in `stack`.
186 */
187 static
188 size_t type_stack_size(type_stack *stack)
189 {
190 return stack->len;
191 }
192
193 /*
194 * Returns the top frame of `stack`.
195 *
196 * Return value is owned by `stack`.
197 */
198 static
199 struct type_stack_frame *type_stack_peek(type_stack *stack)
200 {
201 struct type_stack_frame *entry = NULL;
202
203 if (!stack || type_stack_empty(stack)) {
204 goto end;
205 }
206
207 entry = g_ptr_array_index(stack, stack->len - 1);
208 end:
209 return entry;
210 }
211
212 /*
213 * Returns the frame at index `index` in `stack`.
214 *
215 * Return value is owned by `stack`.
216 */
217 static
218 struct type_stack_frame *type_stack_at(type_stack *stack,
219 size_t index)
220 {
221 struct type_stack_frame *entry = NULL;
222
223 if (!stack || index >= stack->len) {
224 goto end;
225 }
226
227 entry = g_ptr_array_index(stack, index);
228
229 end:
230 return entry;
231 }
232
233 /*
234 * Removes the top frame of `stack`.
235 */
236 static
237 void type_stack_pop(type_stack *stack)
238 {
239 if (!type_stack_empty(stack)) {
240 /*
241 * This will call the frame's destructor and free it, as
242 * well as put its contained field type.
243 */
244 BT_LOGV("Popping context's stack: stack-size-before=%u",
245 stack->len);
246 g_ptr_array_set_size(stack, stack->len - 1);
247 }
248 }
249
250 /*
251 * Returns the scope field type of `scope` in the context `ctx`.
252 *
253 * Return value is owned by `ctx` on success.
254 */
255 static
256 struct bt_field_type_common *get_type_from_ctx(struct resolve_context *ctx,
257 enum bt_scope scope)
258 {
259 BT_ASSERT(scope >= BT_SCOPE_TRACE_PACKET_HEADER &&
260 scope <= BT_SCOPE_EVENT_FIELDS);
261
262 return ctx->scopes[scope - BT_SCOPE_TRACE_PACKET_HEADER];
263 }
264
265 /*
266 * Returns the CTF scope from a path string. May return
267 * CTF_NODE_UNKNOWN if the path is found to be relative.
268 */
269 static
270 enum bt_scope get_root_scope_from_absolute_pathstr(const char *pathstr)
271 {
272 enum bt_scope scope;
273 enum bt_scope ret = BT_SCOPE_UNKNOWN;
274 const size_t prefixes_count = sizeof(absolute_path_prefixes) /
275 sizeof(*absolute_path_prefixes);
276
277 for (scope = BT_SCOPE_ENV; scope < BT_SCOPE_ENV +
278 prefixes_count; scope++) {
279 /*
280 * Chech if path string starts with a known absolute
281 * path prefix.
282 *
283 * Refer to CTF 7.3.2 STATIC AND DYNAMIC SCOPES.
284 */
285 if (strncmp(pathstr, absolute_path_prefixes[scope],
286 strlen(absolute_path_prefixes[scope]))) {
287 /* Prefix does not match: try the next one */
288 BT_LOGV("Prefix does not match: trying the next one: "
289 "path=\"%s\", path-prefix=\"%s\", scope=%s",
290 pathstr, absolute_path_prefixes[scope],
291 bt_common_scope_string(scope));
292 continue;
293 }
294
295 /* Found it! */
296 ret = scope;
297 BT_LOGV("Found root scope from absolute path: "
298 "path=\"%s\", scope=%s", pathstr,
299 bt_common_scope_string(scope));
300 goto end;
301 }
302
303 end:
304 return ret;
305 }
306
307 /*
308 * Destroys a path token.
309 */
310 static
311 void ptokens_destroy_func(gpointer ptoken, gpointer data)
312 {
313 g_string_free(ptoken, TRUE);
314 }
315
316 /*
317 * Destroys a path token list.
318 */
319 static
320 void ptokens_destroy(GList *ptokens)
321 {
322 if (!ptokens) {
323 return;
324 }
325
326 g_list_foreach(ptokens, ptokens_destroy_func, NULL);
327 g_list_free(ptokens);
328 }
329
330 /*
331 * Returns the string contained in a path token.
332 */
333 static
334 const char *ptoken_get_string(GList *ptoken)
335 {
336 GString *tokenstr = (GString *) ptoken->data;
337
338 return tokenstr->str;
339 }
340
341 /*
342 * Converts a path string to a path token list, that is, splits the
343 * individual words of a path string into a list of individual
344 * strings.
345 *
346 * Return value is owned by the caller on success.
347 */
348 static
349 GList *pathstr_to_ptokens(const char *pathstr)
350 {
351 const char *at = pathstr;
352 const char *last = at;
353 GList *ptokens = NULL;
354
355 for (;;) {
356 if (*at == '.' || *at == '\0') {
357 GString *tokenstr;
358
359 if (at == last) {
360 /* Error: empty token */
361 BT_LOGW("Empty path token: path=\"%s\", pos=%u",
362 pathstr, (int) (at - pathstr));
363 goto error;
364 }
365
366 tokenstr = g_string_new(NULL);
367 g_string_append_len(tokenstr, last, at - last);
368 ptokens = g_list_append(ptokens, tokenstr);
369 last = at + 1;
370 }
371
372 if (*at == '\0') {
373 break;
374 }
375
376 at++;
377 }
378
379 return ptokens;
380
381 error:
382 ptokens_destroy(ptokens);
383 return NULL;
384 }
385
386 /*
387 * Converts a path token list to a field path object. The path token
388 * list is relative from `type`. The index of the source looking for
389 * its target within `type` is indicated by `src_index`. This can be
390 * `INT_MAX` if the source is contained in `type`.
391 *
392 * `ptokens` is owned by the caller. `field_path` is an output parameter
393 * owned by the caller that must be filled here. `type` is owned by the
394 * caller.
395 */
396 static
397 int ptokens_to_field_path(GList *ptokens, struct bt_field_path *field_path,
398 struct bt_field_type_common *type, int src_index)
399 {
400 int ret = 0;
401 GList *cur_ptoken = ptokens;
402 bt_bool first_level_done = BT_FALSE;
403
404 /* Get our own reference */
405 bt_get(type);
406
407 /* Locate target */
408 while (cur_ptoken) {
409 int child_index;
410 struct bt_field_type_common *child_type;
411 const char *field_name = ptoken_get_string(cur_ptoken);
412 enum bt_field_type_id type_id =
413 bt_field_type_common_get_type_id(type);
414
415 BT_LOGV("Current path token: token=\"%s\"", field_name);
416
417 /* Find to which index corresponds the current path token */
418 if (type_id == BT_FIELD_TYPE_ID_ARRAY ||
419 type_id == BT_FIELD_TYPE_ID_SEQUENCE) {
420 child_index = -1;
421 } else {
422 child_index = bt_field_type_common_get_field_index(type,
423 field_name);
424 if (child_index < 0) {
425 /*
426 * Error: field name does not exist or
427 * wrong current type.
428 */
429 BT_LOGW("Cannot get index of field type: "
430 "field-name=\"%s\", src-index=%d, child-index=%d, first-level-done=%d",
431 field_name, src_index, child_index, first_level_done);
432 ret = -1;
433 goto end;
434 } else if (child_index > src_index &&
435 !first_level_done) {
436 BT_LOGW("Child field type is located after source field type: "
437 "field-name=\"%s\", src-index=%d, child-index=%d, first-level-done=%d",
438 field_name, src_index, child_index, first_level_done);
439 ret = -1;
440 goto end;
441 }
442
443 /* Next path token */
444 cur_ptoken = g_list_next(cur_ptoken);
445 first_level_done = BT_TRUE;
446 }
447
448 /* Create new field path entry */
449 g_array_append_val(field_path->indexes, child_index);
450
451 /* Get child field type */
452 child_type = bt_field_type_common_get_field_at_index(type,
453 child_index);
454 if (!child_type) {
455 BT_LOGW("Cannot get child field type: "
456 "field-name=\"%s\", src-index=%d, child-index=%d, first-level-done=%d",
457 field_name, src_index, child_index, first_level_done);
458 ret = -1;
459 goto end;
460 }
461
462 /* Move child type to current type */
463 BT_MOVE(type, child_type);
464 }
465
466 end:
467 bt_put(type);
468 return ret;
469 }
470
471 /*
472 * Converts a known absolute path token list to a field path object
473 * within the resolving context `ctx`.
474 *
475 * `ptokens` is owned by the caller. `field_path` is an output parameter
476 * owned by the caller that must be filled here.
477 */
478 static
479 int absolute_ptokens_to_field_path(GList *ptokens,
480 struct bt_field_path *field_path,
481 struct resolve_context *ctx)
482 {
483 int ret = 0;
484 GList *cur_ptoken;
485 struct bt_field_type_common *type;
486
487 /* Skip absolute path tokens */
488 cur_ptoken = g_list_nth(ptokens,
489 absolute_path_prefix_ptoken_counts[field_path->root]);
490
491 /* Start with root type */
492 type = get_type_from_ctx(ctx, field_path->root);
493 if (!type) {
494 /* Error: root type is not available */
495 BT_LOGW("Root field type is not available: "
496 "root-scope=%s",
497 bt_common_scope_string(field_path->root));
498 ret = -1;
499 goto end;
500 }
501
502 /* Locate target */
503 ret = ptokens_to_field_path(cur_ptoken, field_path, type, INT_MAX);
504
505 end:
506 return ret;
507 }
508
509 /*
510 * Converts a known relative path token list to a field path object
511 * within the resolving context `ctx`.
512 *
513 * `ptokens` is owned by the caller. `field_path` is an output parameter
514 * owned by the caller that must be filled here.
515 */
516 static
517 int relative_ptokens_to_field_path(GList *ptokens,
518 struct bt_field_path *field_path,
519 struct resolve_context *ctx)
520 {
521 int ret = 0;
522 int parent_pos_in_stack;
523 struct bt_field_path *tail_field_path = bt_field_path_create();
524
525 if (!tail_field_path) {
526 BT_LOGE_STR("Cannot create empty field path.");
527 ret = -1;
528 goto end;
529 }
530
531 parent_pos_in_stack = type_stack_size(ctx->type_stack) - 1;
532
533 while (parent_pos_in_stack >= 0) {
534 struct bt_field_type_common *parent_type =
535 type_stack_at(ctx->type_stack,
536 parent_pos_in_stack)->type;
537 int cur_index = type_stack_at(ctx->type_stack,
538 parent_pos_in_stack)->index;
539
540 BT_LOGV("Locating target field type from current parent field type: "
541 "parent-pos=%d, parent-ft-addr=%p, cur-index=%d",
542 parent_pos_in_stack, parent_type, cur_index);
543
544 /* Locate target from current parent type */
545 ret = ptokens_to_field_path(ptokens, tail_field_path,
546 parent_type, cur_index);
547 if (ret) {
548 /* Not found... yet */
549 BT_LOGV_STR("Not found at this point.");
550 bt_field_path_clear(tail_field_path);
551 } else {
552 /* Found: stitch tail field path to head field path */
553 int i = 0;
554 int tail_field_path_len =
555 tail_field_path->indexes->len;
556
557 while (BT_TRUE) {
558 struct bt_field_type_common *cur_type =
559 type_stack_at(ctx->type_stack, i)->type;
560 int index = type_stack_at(
561 ctx->type_stack, i)->index;
562
563 if (cur_type == parent_type) {
564 break;
565 }
566
567 g_array_append_val(field_path->indexes,
568 index);
569 i++;
570 }
571
572 for (i = 0; i < tail_field_path_len; i++) {
573 int index = g_array_index(
574 tail_field_path->indexes,
575 int, i);
576
577 g_array_append_val(field_path->indexes,
578 index);
579 }
580 break;
581 }
582
583 parent_pos_in_stack--;
584 }
585
586 if (parent_pos_in_stack < 0) {
587 /* Not found: look in previous scopes */
588 field_path->root--;
589
590 while (field_path->root >= BT_SCOPE_TRACE_PACKET_HEADER) {
591 struct bt_field_type_common *root_type;
592 bt_field_path_clear(field_path);
593
594 BT_LOGV("Looking into potential root scope: scope=%s",
595 bt_common_scope_string(field_path->root));
596 root_type = get_type_from_ctx(ctx, field_path->root);
597 if (!root_type) {
598 field_path->root--;
599 continue;
600 }
601
602 /* Locate target in previous scope */
603 ret = ptokens_to_field_path(ptokens, field_path,
604 root_type, INT_MAX);
605 if (ret) {
606 /* Not found yet */
607 BT_LOGV_STR("Not found in this scope.");
608 field_path->root--;
609 continue;
610 }
611
612 /* Found */
613 BT_LOGV_STR("Found in this scope.");
614 break;
615 }
616 }
617
618 end:
619 BT_PUT(tail_field_path);
620 return ret;
621 }
622
623 /*
624 * Converts a path string to a field path object within the resolving
625 * context `ctx`.
626 *
627 * Return value is owned by the caller on success.
628 */
629 static
630 struct bt_field_path *pathstr_to_field_path(const char *pathstr,
631 struct resolve_context *ctx)
632 {
633 int ret;
634 enum bt_scope root_scope;
635 GList *ptokens = NULL;
636 struct bt_field_path *field_path = NULL;
637
638 /* Create field path */
639 field_path = bt_field_path_create();
640 if (!field_path) {
641 BT_LOGE_STR("Cannot create empty field path.");
642 ret = -1;
643 goto end;
644 }
645
646 /* Convert path string to path tokens */
647 ptokens = pathstr_to_ptokens(pathstr);
648 if (!ptokens) {
649 BT_LOGW("Cannot convert path string to path tokens: "
650 "path=\"%s\"", pathstr);
651 ret = -1;
652 goto end;
653 }
654
655 /* Absolute or relative path? */
656 root_scope = get_root_scope_from_absolute_pathstr(pathstr);
657
658 if (root_scope == BT_SCOPE_UNKNOWN) {
659 /* Relative path: start with current root scope */
660 field_path->root = ctx->root_scope;
661 BT_LOGV("Detected relative path: starting with current root scope: "
662 "scope=%s", bt_common_scope_string(field_path->root));
663 ret = relative_ptokens_to_field_path(ptokens, field_path, ctx);
664 if (ret) {
665 BT_LOGW("Cannot get relative field path of path string: "
666 "path=\"%s\", start-scope=%s, end-scope=%s",
667 pathstr, bt_common_scope_string(ctx->root_scope),
668 bt_common_scope_string(field_path->root));
669 goto end;
670 }
671 } else if (root_scope == BT_SCOPE_ENV) {
672 BT_LOGW("Sequence field types referring the trace environment are not supported as of this version: "
673 "path=\"%s\"", pathstr);
674 ret = -1;
675 goto end;
676 } else {
677 /* Absolute path: use found root scope */
678 field_path->root = root_scope;
679 BT_LOGV("Detected absolute path: using root scope: "
680 "scope=%s", bt_common_scope_string(field_path->root));
681 ret = absolute_ptokens_to_field_path(ptokens, field_path, ctx);
682 if (ret) {
683 BT_LOGW("Cannot get absolute field path of path string: "
684 "path=\"%s\", root-scope=%s",
685 pathstr, bt_common_scope_string(root_scope));
686 goto end;
687 }
688 }
689
690 if (ret == 0) {
691 GString *field_path_pretty =
692 bt_field_path_string(field_path);
693 const char *field_path_pretty_str =
694 field_path_pretty ? field_path_pretty->str : NULL;
695
696 BT_LOGV("Found field path: path=\"%s\", field-path=\"%s\"",
697 pathstr, field_path_pretty_str);
698
699 if (field_path_pretty) {
700 g_string_free(field_path_pretty, TRUE);
701 }
702 }
703
704 end:
705 if (ret) {
706 BT_PUT(field_path);
707 }
708
709 ptokens_destroy(ptokens);
710 return field_path;
711 }
712
713 /*
714 * Retrieves a field type by following the field path `field_path` in
715 * the resolving context `ctx`.
716 *
717 * Return value is owned by the caller on success.
718 */
719 static
720 struct bt_field_type_common *field_path_to_field_type(
721 struct bt_field_path *field_path,
722 struct resolve_context *ctx)
723 {
724 int i;
725 struct bt_field_type_common *type;
726
727 /* Start with root type */
728 type = get_type_from_ctx(ctx, field_path->root);
729 bt_get(type);
730 if (!type) {
731 /* Error: root type is not available */
732 BT_LOGW("Root field type is not available: root-scope=%s",
733 bt_common_scope_string(field_path->root));
734 goto error;
735 }
736
737 /* Locate target */
738 for (i = 0; i < field_path->indexes->len; i++) {
739 struct bt_field_type_common *child_type;
740 int child_index =
741 g_array_index(field_path->indexes, int, i);
742
743 /* Get child field type */
744 child_type = bt_field_type_common_get_field_at_index(type,
745 child_index);
746 if (!child_type) {
747 BT_LOGW("Cannot get field type: "
748 "parent-ft-addr=%p, index=%d", type, i);
749 goto error;
750 }
751
752 /* Move child type to current type */
753 BT_MOVE(type, child_type);
754 }
755
756 return type;
757
758 error:
759 BT_PUT(type);
760 return type;
761 }
762
763 /*
764 * Returns the equivalent field path object of the context type stack.
765 *
766 * Return value is owned by the caller on success.
767 */
768 static
769 struct bt_field_path *get_ctx_stack_field_path(struct resolve_context *ctx)
770 {
771 int i;
772 struct bt_field_path *field_path;
773
774 /* Create field path */
775 field_path = bt_field_path_create();
776 if (!field_path) {
777 BT_LOGE_STR("Cannot create empty field path.");
778 goto error;
779 }
780
781 field_path->root = ctx->root_scope;
782
783 for (i = 0; i < type_stack_size(ctx->type_stack); i++) {
784 struct type_stack_frame *frame;
785
786 frame = type_stack_at(ctx->type_stack, i);
787 g_array_append_val(field_path->indexes, frame->index);
788 }
789
790 return field_path;
791
792 error:
793 BT_PUT(field_path);
794 return field_path;
795 }
796
797 /*
798 * Returns the lowest common ancestor of two field path objects
799 * having the same root scope.
800 *
801 * `field_path1` and `field_path2` are owned by the caller.
802 */
803 int get_field_paths_lca_index(struct bt_field_path *field_path1,
804 struct bt_field_path *field_path2)
805 {
806 int lca_index = 0;
807 int field_path1_len, field_path2_len;
808
809 if (BT_LOG_ON_VERBOSE) {
810 GString *field_path1_pretty =
811 bt_field_path_string(field_path1);
812 GString *field_path2_pretty =
813 bt_field_path_string(field_path2);
814 const char *field_path1_pretty_str =
815 field_path1_pretty ? field_path1_pretty->str : NULL;
816 const char *field_path2_pretty_str =
817 field_path2_pretty ? field_path2_pretty->str : NULL;
818
819 BT_LOGV("Finding lowest common ancestor (LCA) between two field paths: "
820 "field-path-1=\"%s\", field-path-2=\"%s\"",
821 field_path1_pretty_str, field_path2_pretty_str);
822
823 if (field_path1_pretty) {
824 g_string_free(field_path1_pretty, TRUE);
825 }
826
827 if (field_path2_pretty) {
828 g_string_free(field_path2_pretty, TRUE);
829 }
830 }
831
832 /*
833 * Start from both roots and find the first mismatch.
834 */
835 BT_ASSERT(field_path1->root == field_path2->root);
836 field_path1_len = field_path1->indexes->len;
837 field_path2_len = field_path2->indexes->len;
838
839 while (BT_TRUE) {
840 int target_index, ctx_index;
841
842 if (lca_index == field_path2_len ||
843 lca_index == field_path1_len) {
844 /*
845 * This means that both field paths never split.
846 * This is invalid because the target cannot be
847 * an ancestor of the source.
848 */
849 BT_LOGW("Source field type is an ancestor of target field type or vice versa: "
850 "lca-index=%d, field-path-1-len=%d, "
851 "field-path-2-len=%d",
852 lca_index, field_path1_len, field_path2_len);
853 lca_index = -1;
854 break;
855 }
856
857 target_index = g_array_index(field_path1->indexes, int,
858 lca_index);
859 ctx_index = g_array_index(field_path2->indexes, int,
860 lca_index);
861
862 if (target_index != ctx_index) {
863 /* LCA index is the previous */
864 break;
865 }
866
867 lca_index++;
868 }
869
870 BT_LOGV("Found LCA: lca-index=%d", lca_index);
871 return lca_index;
872 }
873
874 /*
875 * Validates a target field path.
876 *
877 * `target_field_path` and `target_type` are owned by the caller.
878 */
879 static
880 int validate_target_field_path(struct bt_field_path *target_field_path,
881 struct bt_field_type_common *target_type,
882 struct resolve_context *ctx)
883 {
884 int ret = 0;
885 struct bt_field_path *ctx_field_path;
886 int target_field_path_len = target_field_path->indexes->len;
887 int lca_index;
888 enum bt_field_type_id ctx_cur_field_type_id;
889 enum bt_field_type_id target_type_id;
890
891 /* Get context field path */
892 ctx_field_path = get_ctx_stack_field_path(ctx);
893 if (!ctx_field_path) {
894 BT_LOGW_STR("Cannot get field path from context's stack.");
895 ret = -1;
896 goto end;
897 }
898
899 /*
900 * Make sure the target is not a root.
901 */
902 if (target_field_path_len == 0) {
903 BT_LOGW_STR("Target field path's length is 0 (targeting the root).");
904 ret = -1;
905 goto end;
906 }
907
908 /*
909 * Make sure the root of the target field path is not located
910 * after the context field path's root.
911 */
912 if (target_field_path->root > ctx_field_path->root) {
913 BT_LOGW("Target field type is located after source field type: "
914 "target-root=%s, source-root=%s",
915 bt_common_scope_string(target_field_path->root),
916 bt_common_scope_string(ctx_field_path->root));
917 ret = -1;
918 goto end;
919 }
920
921 if (target_field_path->root == ctx_field_path->root) {
922 int target_index, ctx_index;
923
924 /*
925 * Find the index of the lowest common ancestor of both field
926 * paths.
927 */
928 lca_index = get_field_paths_lca_index(target_field_path,
929 ctx_field_path);
930 if (lca_index < 0) {
931 BT_LOGW_STR("Cannot get least common ancestor.");
932 ret = -1;
933 goto end;
934 }
935
936 /*
937 * Make sure the target field path is located before the
938 * context field path.
939 */
940 target_index = g_array_index(target_field_path->indexes,
941 int, lca_index);
942 ctx_index = g_array_index(ctx_field_path->indexes,
943 int, lca_index);
944
945 if (target_index >= ctx_index) {
946 BT_LOGW("Target field type's index is greater than or equal to source field type's index in LCA: "
947 "lca-index=%d, target-index=%d, source-index=%d",
948 lca_index, target_index, ctx_index);
949 ret = -1;
950 goto end;
951 }
952 }
953
954 /*
955 * Make sure the target type has the right type and properties.
956 */
957 ctx_cur_field_type_id = bt_field_type_common_get_type_id(
958 ctx->cur_field_type);
959 target_type_id = bt_field_type_common_get_type_id(target_type);
960
961 switch (ctx_cur_field_type_id) {
962 case BT_FIELD_TYPE_ID_VARIANT:
963 if (target_type_id != BT_FIELD_TYPE_ID_ENUM) {
964 BT_LOGW("Variant field type's tag field type is not an enumeration field type: "
965 "tag-ft-addr=%p, tag-ft-id=%s",
966 target_type,
967 bt_common_field_type_id_string(target_type_id));
968 ret = -1;
969 goto end;
970 }
971 break;
972 case BT_FIELD_TYPE_ID_SEQUENCE:
973 if (target_type_id != BT_FIELD_TYPE_ID_INTEGER ||
974 bt_field_type_common_integer_is_signed(target_type)) {
975 BT_LOGW("Sequence field type's length field type is not an unsigned integer field type: "
976 "length-ft-addr=%p, length-ft-id=%s",
977 target_type,
978 bt_common_field_type_id_string(target_type_id));
979 ret = -1;
980 goto end;
981 }
982 break;
983 default:
984 abort();
985 }
986
987 end:
988 BT_PUT(ctx_field_path);
989 return ret;
990 }
991
992 /*
993 * Resolves a variant or sequence field type `type`.
994 *
995 * `type` is owned by the caller.
996 */
997 static
998 int resolve_sequence_or_variant_type(struct bt_field_type_common *type,
999 struct resolve_context *ctx)
1000 {
1001 int ret = 0;
1002 const char *pathstr;
1003 enum bt_field_type_id type_id = bt_field_type_common_get_type_id(type);
1004 struct bt_field_path *target_field_path = NULL;
1005 struct bt_field_type_common *target_type = NULL;
1006 GString *target_field_path_pretty = NULL;
1007 const char *target_field_path_pretty_str;
1008
1009
1010 /* Get path string */
1011 switch (type_id) {
1012 case BT_FIELD_TYPE_ID_SEQUENCE:
1013 pathstr =
1014 bt_field_type_common_sequence_get_length_field_name(type);
1015 break;
1016 case BT_FIELD_TYPE_ID_VARIANT:
1017 pathstr =
1018 bt_field_type_common_variant_get_tag_name(type);
1019 break;
1020 default:
1021 abort();
1022 }
1023
1024 if (!pathstr) {
1025 BT_LOGW_STR("Cannot get path string.");
1026 ret = -1;
1027 goto end;
1028 }
1029
1030 /* Get target field path out of path string */
1031 target_field_path = pathstr_to_field_path(pathstr, ctx);
1032 if (!target_field_path) {
1033 BT_LOGW("Cannot get target field path for path string: "
1034 "path=\"%s\"", pathstr);
1035 ret = -1;
1036 goto end;
1037 }
1038
1039 target_field_path_pretty = bt_field_path_string(target_field_path);
1040 target_field_path_pretty_str =
1041 target_field_path_pretty ? target_field_path_pretty->str : NULL;
1042
1043 /* Get target field type */
1044 target_type = field_path_to_field_type(target_field_path, ctx);
1045 if (!target_type) {
1046 BT_LOGW("Cannot get target field type for path string: "
1047 "path=\"%s\", target-field-path=\"%s\"",
1048 pathstr, target_field_path_pretty_str);
1049 ret = -1;
1050 goto end;
1051 }
1052
1053 ret = validate_target_field_path(target_field_path, target_type, ctx);
1054 if (ret) {
1055 BT_LOGW("Invalid target field path for path string: "
1056 "path=\"%s\", target-field-path=\"%s\"",
1057 pathstr, target_field_path_pretty_str);
1058 goto end;
1059 }
1060
1061 /* Set target field path and target field type */
1062 switch (type_id) {
1063 case BT_FIELD_TYPE_ID_SEQUENCE:
1064 ret = bt_field_type_common_sequence_set_length_field_path(
1065 type, target_field_path);
1066 if (ret) {
1067 BT_LOGW("Cannot set sequence field type's length field path: "
1068 "ret=%d, ft-addr=%p, path=\"%s\", target-field-path=\"%s\"",
1069 ret, type, pathstr,
1070 target_field_path_pretty_str);
1071 goto end;
1072 }
1073 break;
1074 case BT_FIELD_TYPE_ID_VARIANT:
1075 ret = bt_field_type_common_variant_set_tag_field_path(
1076 type, target_field_path);
1077 if (ret) {
1078 BT_LOGW("Cannot set varaint field type's tag field path: "
1079 "ret=%d, ft-addr=%p, path=\"%s\", target-field-path=\"%s\"",
1080 ret, type, pathstr,
1081 target_field_path_pretty_str);
1082 goto end;
1083 }
1084
1085 ret = bt_field_type_common_variant_set_tag_field_type(
1086 type, target_type);
1087 if (ret) {
1088 BT_LOGW("Cannot set varaint field type's tag field type: "
1089 "ret=%d, ft-addr=%p, path=\"%s\", target-field-path=\"%s\"",
1090 ret, type, pathstr,
1091 target_field_path_pretty_str);
1092 goto end;
1093 }
1094 break;
1095 default:
1096 abort();
1097 }
1098
1099 end:
1100 if (target_field_path_pretty) {
1101 g_string_free(target_field_path_pretty, TRUE);
1102 }
1103
1104 BT_PUT(target_field_path);
1105 BT_PUT(target_type);
1106 return ret;
1107 }
1108
1109 /*
1110 * Resolves a field type `type`.
1111 *
1112 * `type` is owned by the caller.
1113 */
1114 static
1115 int resolve_type(struct bt_field_type_common *type, struct resolve_context *ctx)
1116 {
1117 int ret = 0;
1118 enum bt_field_type_id type_id;
1119
1120 if (!type) {
1121 /* Type is not available; still valid */
1122 goto end;
1123 }
1124
1125 type_id = bt_field_type_common_get_type_id(type);
1126 ctx->cur_field_type = type;
1127
1128 /* Resolve sequence/variant field type */
1129 switch (type_id) {
1130 case BT_FIELD_TYPE_ID_SEQUENCE:
1131 case BT_FIELD_TYPE_ID_VARIANT:
1132 ret = resolve_sequence_or_variant_type(type, ctx);
1133 if (ret) {
1134 BT_LOGW("Cannot resolve sequence field type's length or variant field type's tag: "
1135 "ret=%d, ft-addr=%p", ret, type);
1136 goto end;
1137 }
1138 break;
1139 default:
1140 break;
1141 }
1142
1143 /* Recurse into compound types */
1144 switch (type_id) {
1145 case BT_FIELD_TYPE_ID_STRUCT:
1146 case BT_FIELD_TYPE_ID_VARIANT:
1147 case BT_FIELD_TYPE_ID_SEQUENCE:
1148 case BT_FIELD_TYPE_ID_ARRAY:
1149 {
1150 int64_t field_count, f_index;
1151
1152 ret = type_stack_push(ctx->type_stack, type);
1153 if (ret) {
1154 BT_LOGW("Cannot push field type on context's stack: "
1155 "ft-addr=%p", type);
1156 goto end;
1157 }
1158
1159 field_count = bt_field_type_common_get_field_count(type);
1160 if (field_count < 0) {
1161 BT_LOGW("Cannot get field type's field count: "
1162 "ret=%" PRId64 ", ft-addr=%p",
1163 field_count, type);
1164 ret = field_count;
1165 goto end;
1166 }
1167
1168 for (f_index = 0; f_index < field_count; f_index++) {
1169 struct bt_field_type_common *child_type =
1170 bt_field_type_common_get_field_at_index(type,
1171 f_index);
1172
1173 if (!child_type) {
1174 BT_LOGW("Cannot get field type's child field: "
1175 "ft-addr=%p, index=%" PRId64 ", "
1176 "count=%" PRId64, type, f_index,
1177 field_count);
1178 ret = -1;
1179 goto end;
1180 }
1181
1182 if (type_id == BT_FIELD_TYPE_ID_ARRAY||
1183 type_id == BT_FIELD_TYPE_ID_SEQUENCE) {
1184 type_stack_peek(ctx->type_stack)->index = -1;
1185 } else {
1186 type_stack_peek(ctx->type_stack)->index =
1187 f_index;
1188 }
1189
1190 BT_LOGV("Resolving field type's child field type: "
1191 "parent-ft-addr=%p, child-ft-addr=%p, "
1192 "index=%" PRId64 ", count=%" PRId64,
1193 type, child_type, f_index, field_count);
1194 ret = resolve_type(child_type, ctx);
1195 BT_PUT(child_type);
1196 if (ret) {
1197 goto end;
1198 }
1199 }
1200
1201 type_stack_pop(ctx->type_stack);
1202 break;
1203 }
1204 default:
1205 break;
1206 }
1207
1208 end:
1209 return ret;
1210 }
1211
1212 /*
1213 * Resolves the root field type corresponding to the scope `root_scope`.
1214 */
1215 static
1216 int resolve_root_type(enum bt_scope root_scope, struct resolve_context *ctx)
1217 {
1218 int ret;
1219
1220 BT_ASSERT(type_stack_size(ctx->type_stack) == 0);
1221 ctx->root_scope = root_scope;
1222 ret = resolve_type(get_type_from_ctx(ctx, root_scope), ctx);
1223 ctx->root_scope = BT_SCOPE_UNKNOWN;
1224
1225 return ret;
1226 }
1227
1228 BT_HIDDEN
1229 int bt_resolve_types(
1230 struct bt_value *environment,
1231 struct bt_field_type_common *packet_header_type,
1232 struct bt_field_type_common *packet_context_type,
1233 struct bt_field_type_common *event_header_type,
1234 struct bt_field_type_common *stream_event_ctx_type,
1235 struct bt_field_type_common *event_context_type,
1236 struct bt_field_type_common *event_payload_type,
1237 enum bt_resolve_flag flags)
1238 {
1239 int ret = 0;
1240 struct resolve_context ctx = {
1241 .environment = environment,
1242 .scopes = {
1243 packet_header_type,
1244 packet_context_type,
1245 event_header_type,
1246 stream_event_ctx_type,
1247 event_context_type,
1248 event_payload_type,
1249 },
1250 .root_scope = BT_SCOPE_UNKNOWN,
1251 };
1252
1253 BT_LOGV("Resolving field types: "
1254 "packet-header-ft-addr=%p, "
1255 "packet-context-ft-addr=%p, "
1256 "event-header-ft-addr=%p, "
1257 "stream-event-context-ft-addr=%p, "
1258 "event-context-ft-addr=%p, "
1259 "event-payload-ft-addr=%p",
1260 packet_header_type, packet_context_type, event_header_type,
1261 stream_event_ctx_type, event_context_type, event_payload_type);
1262
1263 /* Initialize type stack */
1264 ctx.type_stack = type_stack_create();
1265 if (!ctx.type_stack) {
1266 BT_LOGE_STR("Cannot create field type stack.");
1267 ret = -1;
1268 goto end;
1269 }
1270
1271 /* Resolve packet header type */
1272 if (flags & BT_RESOLVE_FLAG_PACKET_HEADER) {
1273 ret = resolve_root_type(BT_SCOPE_TRACE_PACKET_HEADER, &ctx);
1274 if (ret) {
1275 BT_LOGW("Cannot resolve trace packet header field type: "
1276 "ret=%d", ret);
1277 goto end;
1278 }
1279 }
1280
1281 /* Resolve packet context type */
1282 if (flags & BT_RESOLVE_FLAG_PACKET_CONTEXT) {
1283 ret = resolve_root_type(BT_SCOPE_STREAM_PACKET_CONTEXT, &ctx);
1284 if (ret) {
1285 BT_LOGW("Cannot resolve stream packet context field type: "
1286 "ret=%d", ret);
1287 goto end;
1288 }
1289 }
1290
1291 /* Resolve event header type */
1292 if (flags & BT_RESOLVE_FLAG_EVENT_HEADER) {
1293 ret = resolve_root_type(BT_SCOPE_STREAM_EVENT_HEADER, &ctx);
1294 if (ret) {
1295 BT_LOGW("Cannot resolve stream event header field type: "
1296 "ret=%d", ret);
1297 goto end;
1298 }
1299 }
1300
1301 /* Resolve stream event context type */
1302 if (flags & BT_RESOLVE_FLAG_STREAM_EVENT_CTX) {
1303 ret = resolve_root_type(BT_SCOPE_STREAM_EVENT_CONTEXT, &ctx);
1304 if (ret) {
1305 BT_LOGW("Cannot resolve stream event context field type: "
1306 "ret=%d", ret);
1307 goto end;
1308 }
1309 }
1310
1311 /* Resolve event context type */
1312 if (flags & BT_RESOLVE_FLAG_EVENT_CONTEXT) {
1313 ret = resolve_root_type(BT_SCOPE_EVENT_CONTEXT, &ctx);
1314 if (ret) {
1315 BT_LOGW("Cannot resolve event context field type: "
1316 "ret=%d", ret);
1317 goto end;
1318 }
1319 }
1320
1321 /* Resolve event payload type */
1322 if (flags & BT_RESOLVE_FLAG_EVENT_PAYLOAD) {
1323 ret = resolve_root_type(BT_SCOPE_EVENT_FIELDS, &ctx);
1324 if (ret) {
1325 BT_LOGW("Cannot resolve event payload field type: "
1326 "ret=%d", ret);
1327 goto end;
1328 }
1329 }
1330
1331 BT_LOGV_STR("Resolved field types.");
1332
1333 end:
1334 type_stack_destroy(ctx.type_stack);
1335
1336 return ret;
1337 }
This page took 0.061232 seconds and 4 git commands to generate.