p The .Fn backtrace_sandbox_init and .Fn backtrace_sandbox_fini functions are intended to enable sandbox usage of .Nm . The .Fn backtrace_sandbox_init function must be called before the sandbox is entered, and will acquire any resources needed to function in a sandbox. The .Fn backtrace_sandbox_fini function will release the resources it acquired.
p The .Fn backtrace_symbols_fmt function takes an array of previously filled addresses from .Fn backtrace in .Fa addrlist of .Fa len elements, and uses .Fa fmt to format them. The formatting characters available are: l -tag -width a -offset indent t Dv a The numeric address of each element as would be printed using %p. t Dv n The name of the nearest function symbol (smaller than the address element) as determined by .Xr dladdr 3 if the symbol was dynamic, or looked up in the executable if static and the /proc filesystem is available to determine the executable path. t Dv d The difference of the symbol address and the address element printed using 0x%tx. t Dv D The difference of the symbol address and the address element printed using +0x%tx if non-zero, or nothing if zero. t Dv f The filename of the symbol as determined by .Xr dladdr 3 . .El
p The array of formatted strings is returned as a contiguous memory address which can be freed by a single .Xr free 3 .
p The .Fn backtrace_symbols function is equivalent of calling .Fn backtrace_symbols_fmt with a format argument of .Dq "%a <%n%D> at %f"
p The .Fn backtrace_symbols_fd and .Fn backtrace_symbols_fd_fmt are similar to the non _fd named functions, only instead of returning an array of strings, they print a new-line separated array of strings in fd, and return .Dv 0 on success and .Dv -1 on failure. .Sh RETURN VALUES The .Fn backtrace function returns the number of elements that were filled in the backtrace. The .Fn backtrace_symbols and .Fn backtrace_symbols_fmt return a string array on success, and .Dv NULL on failure, setting .Va errno . Diagnostic output may also be produced by the ELF symbol lookup functions. .Sh SEE ALSO .Xr dladdr 3 , .Xr elf 3 .Sh HISTORY The .Fn backtrace library of functions first appeared in .Nx 7.0 . .Sh BUGS l -enum t Errors should not be printed but communicated to the caller differently. t Because these functions use .Xr elf 3 this is a separate library instead of being part of libc/libutil so that no library dependencies are introduced. t The Linux versions of the functions (there are no _fmt variants) use .Ft int instead of .Ft size_t arguments. t Since .Xr dladdr 3 only deals with dynamic symbols, we need to find the symbols from the main portion of the program. For that we need to locate the executable, and we use procfs for finding it, which is not portable. .El