1 #include "git-compat-util.h"
3 #include "repository.h"
4 #include "run-command.h"
6 #include "thread-utils.h"
9 #include "trace2/tr2_cfg.h"
10 #include "trace2/tr2_cmd_name.h"
11 #include "trace2/tr2_ctr.h"
12 #include "trace2/tr2_dst.h"
13 #include "trace2/tr2_sid.h"
14 #include "trace2/tr2_sysenv.h"
15 #include "trace2/tr2_tgt.h"
16 #include "trace2/tr2_tls.h"
17 #include "trace2/tr2_tmr.h"
19 static int trace2_enabled
;
20 static int trace2_redact
= 1;
22 static int tr2_next_child_id
; /* modify under lock */
23 static int tr2_next_exec_id
; /* modify under lock */
24 static int tr2_next_repo_id
= 1; /* modify under lock. zero is reserved */
27 * A table of the builtin TRACE2 targets. Each of these may be independently
28 * enabled or disabled. Each TRACE2 API method will try to write an event to
29 * *each* of the enabled targets.
31 /* clang-format off */
32 static struct tr2_tgt
*tr2_tgt_builtins
[] =
41 /* clang-format off */
42 #define for_each_builtin(j, tgt_j) \
43 for (j = 0, tgt_j = tr2_tgt_builtins[j]; \
45 j++, tgt_j = tr2_tgt_builtins[j])
48 /* clang-format off */
49 #define for_each_wanted_builtin(j, tgt_j) \
50 for_each_builtin(j, tgt_j) \
51 if (tr2_dst_trace_want(tgt_j->pdst))
55 * Force (rather than lazily) initialize any of the requested
56 * builtin TRACE2 targets at startup (and before we've seen an
57 * actual TRACE2 event call) so we can see if we need to setup
58 * private data structures and thread-local storage.
60 * Return the number of builtin targets enabled.
62 static int tr2_tgt_want_builtins(void)
64 struct tr2_tgt
*tgt_j
;
68 for_each_builtin (j
, tgt_j
)
69 if (tgt_j
->pfn_init())
76 * Properly terminate each builtin target. Give each target
77 * a chance to write a summary event and/or flush if necessary
78 * and then close the fd.
80 static void tr2_tgt_disable_builtins(void)
82 struct tr2_tgt
*tgt_j
;
85 for_each_builtin (j
, tgt_j
)
90 * The signature of this function must match the pfn_timer
91 * method in the targets. (Think of this is an apply operation
92 * across the set of active targets.)
94 static void tr2_tgt_emit_a_timer(const struct tr2_timer_metadata
*meta
,
95 const struct tr2_timer
*timer
,
98 struct tr2_tgt
*tgt_j
;
101 for_each_wanted_builtin (j
, tgt_j
)
102 if (tgt_j
->pfn_timer
)
103 tgt_j
->pfn_timer(meta
, timer
, is_final_data
);
107 * The signature of this function must match the pfn_counter
108 * method in the targets.
110 static void tr2_tgt_emit_a_counter(const struct tr2_counter_metadata
*meta
,
111 const struct tr2_counter
*counter
,
114 struct tr2_tgt
*tgt_j
;
117 for_each_wanted_builtin (j
, tgt_j
)
118 if (tgt_j
->pfn_counter
)
119 tgt_j
->pfn_counter(meta
, counter
, is_final_data
);
122 static int tr2main_exit_code
;
125 * Our atexit routine should run after everything has finished.
127 * Note that events generated here might not actually appear if
128 * we are writing to fd 1 or 2 and our atexit routine runs after
129 * the pager's atexit routine (since it closes them to shutdown
132 static void tr2main_atexit_handler(void)
134 struct tr2_tgt
*tgt_j
;
137 uint64_t us_elapsed_absolute
;
139 us_now
= getnanotime() / 1000;
140 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
143 * Clear any unbalanced regions so that our atexit message
144 * does not appear nested. This improves the appearance of
145 * the trace output if someone calls die(), for example.
147 tr2tls_pop_unwind_self();
150 * Some timers want per-thread details. If the main thread
151 * used one of those timers, emit the details now (before
152 * we emit the aggregate timer values).
154 * Likewise for counters.
156 tr2_emit_per_thread_timers(tr2_tgt_emit_a_timer
);
157 tr2_emit_per_thread_counters(tr2_tgt_emit_a_counter
);
160 * Add stopwatch timer and counter data for the main thread to
161 * the final totals. And then emit the final values.
163 * Technically, we shouldn't need to hold the lock to update
164 * and output the final_timer_block and final_counter_block
165 * (since all other threads should be dead by now), but it
166 * doesn't hurt anything.
169 tr2_update_final_timers();
170 tr2_update_final_counters();
171 tr2_emit_final_timers(tr2_tgt_emit_a_timer
);
172 tr2_emit_final_counters(tr2_tgt_emit_a_counter
);
175 for_each_wanted_builtin (j
, tgt_j
)
176 if (tgt_j
->pfn_atexit
)
177 tgt_j
->pfn_atexit(us_elapsed_absolute
,
180 tr2_tgt_disable_builtins();
184 tr2_cmd_name_release();
185 tr2_cfg_free_patterns();
186 tr2_cfg_free_env_vars();
187 tr2_sysenv_release();
192 static void tr2main_signal_handler(int signo
)
194 struct tr2_tgt
*tgt_j
;
197 uint64_t us_elapsed_absolute
;
199 us_now
= getnanotime() / 1000;
200 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
202 for_each_wanted_builtin (j
, tgt_j
)
203 if (tgt_j
->pfn_signal
)
204 tgt_j
->pfn_signal(us_elapsed_absolute
, signo
);
210 void trace2_initialize_clock(void)
212 tr2tls_start_process_clock();
215 void trace2_initialize_fl(const char *file
, int line
)
217 struct tr2_tgt
*tgt_j
;
225 if (!tr2_tgt_want_builtins())
228 if (!git_env_bool("GIT_TRACE2_REDACT", 1))
233 atexit(tr2main_atexit_handler
);
234 sigchain_push(SIGPIPE
, tr2main_signal_handler
);
238 * Emit 'version' message on each active builtin target.
240 for_each_wanted_builtin (j
, tgt_j
)
241 if (tgt_j
->pfn_version_fl
)
242 tgt_j
->pfn_version_fl(file
, line
);
245 int trace2_is_enabled(void)
247 return trace2_enabled
;
251 * Redacts an argument, i.e. ensures that no password in
252 * https://user:password@host/-style URLs is logged.
254 * Returns the original if nothing needed to be redacted.
255 * Returns a pointer that needs to be `free()`d otherwise.
257 static const char *redact_arg(const char *arg
)
259 const char *p
, *colon
;
262 if (!trace2_redact
||
263 (!skip_prefix(arg
, "https://", &p
) &&
264 !skip_prefix(arg
, "http://", &p
)))
267 at
= strcspn(p
, "@/");
271 colon
= memchr(p
, ':', at
);
275 return xstrfmt("%.*s:<REDACTED>%s", (int)(colon
- arg
), arg
, p
+ at
);
279 * Redacts arguments in an argument list.
281 * Returns the original if nothing needed to be redacted.
282 * Otherwise, returns a new array that needs to be released
283 * via `free_redacted_argv()`.
285 static const char **redact_argv(const char **argv
)
288 const char *redacted
= NULL
;
294 for (i
= 0; argv
[i
]; i
++)
295 if ((redacted
= redact_arg(argv
[i
])) != argv
[i
])
301 for (j
= 0; argv
[j
]; j
++)
302 ; /* keep counting */
304 ALLOC_ARRAY(ret
, j
+ 1);
307 for (j
= 0; j
< i
; j
++)
310 for (++i
; argv
[i
]; i
++) {
311 redacted
= redact_arg(argv
[i
]);
312 ret
[i
] = redacted
? redacted
: argv
[i
];
318 static void free_redacted_argv(const char **redacted
, const char **argv
)
322 if (redacted
!= argv
) {
323 for (i
= 0; argv
[i
]; i
++)
324 if (redacted
[i
] != argv
[i
])
325 free((void *)redacted
[i
]);
326 free((void *)redacted
);
330 void trace2_cmd_start_fl(const char *file
, int line
, const char **argv
)
332 struct tr2_tgt
*tgt_j
;
335 uint64_t us_elapsed_absolute
;
336 const char **redacted
;
341 us_now
= getnanotime() / 1000;
342 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
344 redacted
= redact_argv(argv
);
346 for_each_wanted_builtin (j
, tgt_j
)
347 if (tgt_j
->pfn_start_fl
)
348 tgt_j
->pfn_start_fl(file
, line
, us_elapsed_absolute
,
351 free_redacted_argv(redacted
, argv
);
354 void trace2_cmd_exit_fl(const char *file
, int line
, int code
)
356 struct tr2_tgt
*tgt_j
;
359 uint64_t us_elapsed_absolute
;
364 trace2_collect_process_info(TRACE2_PROCESS_INFO_EXIT
);
366 tr2main_exit_code
= code
;
368 us_now
= getnanotime() / 1000;
369 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
371 for_each_wanted_builtin (j
, tgt_j
)
372 if (tgt_j
->pfn_exit_fl
)
373 tgt_j
->pfn_exit_fl(file
, line
, us_elapsed_absolute
,
377 void trace2_cmd_error_va_fl(const char *file
, int line
, const char *fmt
,
380 struct tr2_tgt
*tgt_j
;
387 * We expect each target function to treat 'ap' as constant
388 * and use va_copy (because an 'ap' can only be walked once).
390 for_each_wanted_builtin (j
, tgt_j
)
391 if (tgt_j
->pfn_error_va_fl
)
392 tgt_j
->pfn_error_va_fl(file
, line
, fmt
, ap
);
395 void trace2_cmd_path_fl(const char *file
, int line
, const char *pathname
)
397 struct tr2_tgt
*tgt_j
;
403 for_each_wanted_builtin (j
, tgt_j
)
404 if (tgt_j
->pfn_command_path_fl
)
405 tgt_j
->pfn_command_path_fl(file
, line
, pathname
);
408 void trace2_cmd_ancestry_fl(const char *file
, int line
, const char **parent_names
)
410 struct tr2_tgt
*tgt_j
;
416 for_each_wanted_builtin (j
, tgt_j
)
417 if (tgt_j
->pfn_command_ancestry_fl
)
418 tgt_j
->pfn_command_ancestry_fl(file
, line
, parent_names
);
421 void trace2_cmd_name_fl(const char *file
, int line
, const char *name
)
423 struct tr2_tgt
*tgt_j
;
424 const char *hierarchy
;
430 tr2_cmd_name_append_hierarchy(name
);
431 hierarchy
= tr2_cmd_name_get_hierarchy();
433 for_each_wanted_builtin (j
, tgt_j
)
434 if (tgt_j
->pfn_command_name_fl
)
435 tgt_j
->pfn_command_name_fl(file
, line
, name
, hierarchy
);
437 trace2_cmd_list_config();
438 trace2_cmd_list_env_vars();
441 void trace2_cmd_mode_fl(const char *file
, int line
, const char *mode
)
443 struct tr2_tgt
*tgt_j
;
449 for_each_wanted_builtin (j
, tgt_j
)
450 if (tgt_j
->pfn_command_mode_fl
)
451 tgt_j
->pfn_command_mode_fl(file
, line
, mode
);
454 void trace2_cmd_alias_fl(const char *file
, int line
, const char *alias
,
457 struct tr2_tgt
*tgt_j
;
463 for_each_wanted_builtin (j
, tgt_j
)
464 if (tgt_j
->pfn_alias_fl
)
465 tgt_j
->pfn_alias_fl(file
, line
, alias
, argv
);
468 void trace2_cmd_list_config_fl(const char *file
, int line
)
470 static int emitted
= 0;
479 tr2_cfg_list_config_fl(file
, line
);
482 void trace2_cmd_list_env_vars_fl(const char *file
, int line
)
484 static int emitted
= 0;
493 tr2_list_env_vars_fl(file
, line
);
496 void trace2_cmd_set_config_fl(const char *file
, int line
, const char *key
,
502 tr2_cfg_set_fl(file
, line
, key
, value
);
505 void trace2_child_start_fl(const char *file
, int line
,
506 struct child_process
*cmd
)
508 struct tr2_tgt
*tgt_j
;
511 uint64_t us_elapsed_absolute
;
512 const char **orig_argv
= cmd
->args
.v
;
517 us_now
= getnanotime() / 1000;
518 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
520 cmd
->trace2_child_id
= tr2tls_locked_increment(&tr2_next_child_id
);
521 cmd
->trace2_child_us_start
= us_now
;
524 * The `pfn_child_start_fl` API takes a `struct child_process`
525 * rather than a simple `argv` for the child because some
526 * targets make use of the additional context bits/values. So
527 * temporarily replace the original argv (inside the `strvec`)
528 * with a possibly redacted version.
530 cmd
->args
.v
= redact_argv(orig_argv
);
532 for_each_wanted_builtin (j
, tgt_j
)
533 if (tgt_j
->pfn_child_start_fl
)
534 tgt_j
->pfn_child_start_fl(file
, line
,
535 us_elapsed_absolute
, cmd
);
537 if (cmd
->args
.v
!= orig_argv
) {
538 free_redacted_argv(cmd
->args
.v
, orig_argv
);
539 cmd
->args
.v
= orig_argv
;
543 void trace2_child_exit_fl(const char *file
, int line
, struct child_process
*cmd
,
546 struct tr2_tgt
*tgt_j
;
549 uint64_t us_elapsed_absolute
;
550 uint64_t us_elapsed_child
;
555 us_now
= getnanotime() / 1000;
556 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
558 if (cmd
->trace2_child_us_start
)
559 us_elapsed_child
= us_now
- cmd
->trace2_child_us_start
;
561 us_elapsed_child
= 0;
563 for_each_wanted_builtin (j
, tgt_j
)
564 if (tgt_j
->pfn_child_exit_fl
)
565 tgt_j
->pfn_child_exit_fl(file
, line
,
567 cmd
->trace2_child_id
, cmd
->pid
,
572 void trace2_child_ready_fl(const char *file
, int line
,
573 struct child_process
*cmd
,
576 struct tr2_tgt
*tgt_j
;
579 uint64_t us_elapsed_absolute
;
580 uint64_t us_elapsed_child
;
585 us_now
= getnanotime() / 1000;
586 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
588 if (cmd
->trace2_child_us_start
)
589 us_elapsed_child
= us_now
- cmd
->trace2_child_us_start
;
591 us_elapsed_child
= 0;
593 for_each_wanted_builtin (j
, tgt_j
)
594 if (tgt_j
->pfn_child_ready_fl
)
595 tgt_j
->pfn_child_ready_fl(file
, line
,
597 cmd
->trace2_child_id
,
603 int trace2_exec_fl(const char *file
, int line
, const char *exe
,
606 struct tr2_tgt
*tgt_j
;
610 uint64_t us_elapsed_absolute
;
611 const char **redacted
;
616 us_now
= getnanotime() / 1000;
617 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
619 exec_id
= tr2tls_locked_increment(&tr2_next_exec_id
);
621 redacted
= redact_argv(argv
);
623 for_each_wanted_builtin (j
, tgt_j
)
624 if (tgt_j
->pfn_exec_fl
)
625 tgt_j
->pfn_exec_fl(file
, line
, us_elapsed_absolute
,
626 exec_id
, exe
, redacted
);
628 free_redacted_argv(redacted
, argv
);
633 void trace2_exec_result_fl(const char *file
, int line
, int exec_id
, int code
)
635 struct tr2_tgt
*tgt_j
;
638 uint64_t us_elapsed_absolute
;
643 us_now
= getnanotime() / 1000;
644 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
646 for_each_wanted_builtin (j
, tgt_j
)
647 if (tgt_j
->pfn_exec_result_fl
)
648 tgt_j
->pfn_exec_result_fl(
649 file
, line
, us_elapsed_absolute
, exec_id
, code
);
652 void trace2_thread_start_fl(const char *file
, int line
, const char *thread_base_name
)
654 struct tr2_tgt
*tgt_j
;
657 uint64_t us_elapsed_absolute
;
662 if (tr2tls_is_main_thread()) {
664 * We should only be called from the new thread's thread-proc,
665 * so this is technically a bug. But in those cases where the
666 * main thread also runs the thread-proc function (or when we
667 * are built with threading disabled), we need to allow it.
669 * Convert this call to a region-enter so the nesting looks
672 trace2_region_enter_printf_fl(file
, line
, NULL
, NULL
, NULL
,
673 "thread-proc on main: %s",
678 us_now
= getnanotime() / 1000;
679 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
681 tr2tls_create_self(thread_base_name
, us_now
);
683 for_each_wanted_builtin (j
, tgt_j
)
684 if (tgt_j
->pfn_thread_start_fl
)
685 tgt_j
->pfn_thread_start_fl(file
, line
,
686 us_elapsed_absolute
);
689 void trace2_thread_exit_fl(const char *file
, int line
)
691 struct tr2_tgt
*tgt_j
;
694 uint64_t us_elapsed_absolute
;
695 uint64_t us_elapsed_thread
;
700 if (tr2tls_is_main_thread()) {
702 * We should only be called from the exiting thread's
703 * thread-proc, so this is technically a bug. But in
704 * those cases where the main thread also runs the
705 * thread-proc function (or when we are built with
706 * threading disabled), we need to allow it.
708 * Convert this call to a region-leave so the nesting
711 trace2_region_leave_printf_fl(file
, line
, NULL
, NULL
, NULL
,
712 "thread-proc on main");
716 us_now
= getnanotime() / 1000;
717 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
720 * Clear any unbalanced regions and then get the relative time
721 * for the outer-most region (which we pushed when the thread
722 * started). This gives us the run time of the thread.
724 tr2tls_pop_unwind_self();
725 us_elapsed_thread
= tr2tls_region_elasped_self(us_now
);
728 * Some timers want per-thread details. If this thread used
729 * one of those timers, emit the details now.
731 * Likewise for counters.
733 tr2_emit_per_thread_timers(tr2_tgt_emit_a_timer
);
734 tr2_emit_per_thread_counters(tr2_tgt_emit_a_counter
);
737 * Add stopwatch timer and counter data from the current
738 * (non-main) thread to the final totals. (We'll accumulate
739 * data for the main thread later during "atexit".)
742 tr2_update_final_timers();
743 tr2_update_final_counters();
746 for_each_wanted_builtin (j
, tgt_j
)
747 if (tgt_j
->pfn_thread_exit_fl
)
748 tgt_j
->pfn_thread_exit_fl(file
, line
,
755 void trace2_def_param_fl(const char *file
, int line
, const char *param
,
756 const char *value
, const struct key_value_info
*kvi
)
758 struct tr2_tgt
*tgt_j
;
760 const char *redacted
;
765 redacted
= redact_arg(value
);
767 for_each_wanted_builtin (j
, tgt_j
)
768 if (tgt_j
->pfn_param_fl
)
769 tgt_j
->pfn_param_fl(file
, line
, param
, redacted
, kvi
);
771 if (redacted
!= value
)
772 free((void *)redacted
);
775 void trace2_def_repo_fl(const char *file
, int line
, struct repository
*repo
)
777 struct tr2_tgt
*tgt_j
;
783 if (repo
->trace2_repo_id
)
786 repo
->trace2_repo_id
= tr2tls_locked_increment(&tr2_next_repo_id
);
788 for_each_wanted_builtin (j
, tgt_j
)
789 if (tgt_j
->pfn_repo_fl
)
790 tgt_j
->pfn_repo_fl(file
, line
, repo
);
793 void trace2_region_enter_printf_va_fl(const char *file
, int line
,
794 const char *category
, const char *label
,
795 const struct repository
*repo
,
796 const char *fmt
, va_list ap
)
798 struct tr2_tgt
*tgt_j
;
801 uint64_t us_elapsed_absolute
;
806 us_now
= getnanotime() / 1000;
807 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
810 * Print the region-enter message at the current nesting
811 * (indentation) level and then push a new level.
813 * We expect each target function to treat 'ap' as constant
816 for_each_wanted_builtin (j
, tgt_j
)
817 if (tgt_j
->pfn_region_enter_printf_va_fl
)
818 tgt_j
->pfn_region_enter_printf_va_fl(
819 file
, line
, us_elapsed_absolute
, category
,
820 label
, repo
, fmt
, ap
);
822 tr2tls_push_self(us_now
);
825 void trace2_region_enter_fl(const char *file
, int line
, const char *category
,
826 const char *label
, const struct repository
*repo
, ...)
830 trace2_region_enter_printf_va_fl(file
, line
, category
, label
, repo
,
836 void trace2_region_enter_printf_fl(const char *file
, int line
,
837 const char *category
, const char *label
,
838 const struct repository
*repo
,
839 const char *fmt
, ...)
844 trace2_region_enter_printf_va_fl(file
, line
, category
, label
, repo
, fmt
,
849 void trace2_region_leave_printf_va_fl(const char *file
, int line
,
850 const char *category
, const char *label
,
851 const struct repository
*repo
,
852 const char *fmt
, va_list ap
)
854 struct tr2_tgt
*tgt_j
;
857 uint64_t us_elapsed_absolute
;
858 uint64_t us_elapsed_region
;
863 us_now
= getnanotime() / 1000;
864 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
867 * Get the elapsed time in the current region before we
868 * pop it off the stack. Pop the stack. And then print
869 * the perf message at the new (shallower) level so that
870 * it lines up with the corresponding push/enter.
872 us_elapsed_region
= tr2tls_region_elasped_self(us_now
);
877 * We expect each target function to treat 'ap' as constant
880 for_each_wanted_builtin (j
, tgt_j
)
881 if (tgt_j
->pfn_region_leave_printf_va_fl
)
882 tgt_j
->pfn_region_leave_printf_va_fl(
883 file
, line
, us_elapsed_absolute
,
884 us_elapsed_region
, category
, label
, repo
, fmt
,
888 void trace2_region_leave_fl(const char *file
, int line
, const char *category
,
889 const char *label
, const struct repository
*repo
, ...)
893 trace2_region_leave_printf_va_fl(file
, line
, category
, label
, repo
,
898 void trace2_region_leave_printf_fl(const char *file
, int line
,
899 const char *category
, const char *label
,
900 const struct repository
*repo
,
901 const char *fmt
, ...)
906 trace2_region_leave_printf_va_fl(file
, line
, category
, label
, repo
, fmt
,
911 void trace2_data_string_fl(const char *file
, int line
, const char *category
,
912 const struct repository
*repo
, const char *key
,
915 struct tr2_tgt
*tgt_j
;
918 uint64_t us_elapsed_absolute
;
919 uint64_t us_elapsed_region
;
924 us_now
= getnanotime() / 1000;
925 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
926 us_elapsed_region
= tr2tls_region_elasped_self(us_now
);
928 for_each_wanted_builtin (j
, tgt_j
)
929 if (tgt_j
->pfn_data_fl
)
930 tgt_j
->pfn_data_fl(file
, line
, us_elapsed_absolute
,
931 us_elapsed_region
, category
, repo
,
935 void trace2_data_intmax_fl(const char *file
, int line
, const char *category
,
936 const struct repository
*repo
, const char *key
,
939 struct strbuf buf_string
= STRBUF_INIT
;
944 strbuf_addf(&buf_string
, "%" PRIdMAX
, value
);
945 trace2_data_string_fl(file
, line
, category
, repo
, key
, buf_string
.buf
);
946 strbuf_release(&buf_string
);
949 void trace2_data_json_fl(const char *file
, int line
, const char *category
,
950 const struct repository
*repo
, const char *key
,
951 const struct json_writer
*value
)
953 struct tr2_tgt
*tgt_j
;
956 uint64_t us_elapsed_absolute
;
957 uint64_t us_elapsed_region
;
962 us_now
= getnanotime() / 1000;
963 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
964 us_elapsed_region
= tr2tls_region_elasped_self(us_now
);
966 for_each_wanted_builtin (j
, tgt_j
)
967 if (tgt_j
->pfn_data_json_fl
)
968 tgt_j
->pfn_data_json_fl(file
, line
, us_elapsed_absolute
,
969 us_elapsed_region
, category
,
973 void trace2_printf_va_fl(const char *file
, int line
, const char *fmt
,
976 struct tr2_tgt
*tgt_j
;
979 uint64_t us_elapsed_absolute
;
984 us_now
= getnanotime() / 1000;
985 us_elapsed_absolute
= tr2tls_absolute_elapsed(us_now
);
988 * We expect each target function to treat 'ap' as constant
991 for_each_wanted_builtin (j
, tgt_j
)
992 if (tgt_j
->pfn_printf_va_fl
)
993 tgt_j
->pfn_printf_va_fl(file
, line
, us_elapsed_absolute
,
997 void trace2_printf_fl(const char *file
, int line
, const char *fmt
, ...)
1002 trace2_printf_va_fl(file
, line
, fmt
, ap
);
1006 void trace2_timer_start(enum trace2_timer_id tid
)
1008 if (!trace2_enabled
)
1011 if (tid
< 0 || tid
>= TRACE2_NUMBER_OF_TIMERS
)
1012 BUG("trace2_timer_start: invalid timer id: %d", tid
);
1014 tr2_start_timer(tid
);
1017 void trace2_timer_stop(enum trace2_timer_id tid
)
1019 if (!trace2_enabled
)
1022 if (tid
< 0 || tid
>= TRACE2_NUMBER_OF_TIMERS
)
1023 BUG("trace2_timer_stop: invalid timer id: %d", tid
);
1025 tr2_stop_timer(tid
);
1028 void trace2_counter_add(enum trace2_counter_id cid
, uint64_t value
)
1030 if (!trace2_enabled
)
1033 if (cid
< 0 || cid
>= TRACE2_NUMBER_OF_COUNTERS
)
1034 BUG("trace2_counter_add: invalid counter id: %d", cid
);
1036 tr2_counter_increment(cid
, value
);
1039 const char *trace2_session_id(void)
1041 return tr2_sid_get();