[DTrace-devel] [PATCH v2] doc: Add rudimentary documentation for using [u]stack as a value

Kris Van Hees kris.van.hees at oracle.com
Thu Oct 23 22:50:51 UTC 2025


On Wed, Oct 22, 2025 at 12:24:51AM -0400, eugene.loh at oracle.com wrote:
> From: Eugene Loh <eugene.loh at oracle.com>
> 
> While we are at it, break up some of the super long source lines for
> future maintainability of these files.
> 
> Signed-off-by: Eugene Loh <eugene.loh at oracle.com>
> ---
>  doc/userguide/reference/function_stack.md  | 26 ++++++++++++---
>  doc/userguide/reference/function_ustack.md | 39 +++++++++++++++++-----
>  2 files changed, 52 insertions(+), 13 deletions(-)
> 
> diff --git a/doc/userguide/reference/function_stack.md b/doc/userguide/reference/function_stack.md
> index a92c61a0f..903d3f090 100644
> --- a/doc/userguide/reference/function_stack.md
> +++ b/doc/userguide/reference/function_stack.md
> @@ -1,17 +1,33 @@
>  
>  # stack
>  
> -Records a stack trace to the buffer.
> +Retrieves the kernel call stack.
>  
>  ```
> -stack stack([uint32_t *frames*])
> +dt_stack_t stack([uint32_t *frames*])
>  ```
>  
> -The `stack` function records a kernel stack trace to the directed buffer. The function includes an option to specify the number of frames deep to record from the kernel stack. If no value is specified, the number of stack frames recorded is the number that's specified by the `stackframes` runtime option. The `dtrace` command reports frames, either up to the root frame or until the specified limit has been reached, whichever comes first.
> +Returns a `dt_stack_t` value that can be stored in a variable,
> +including an associative array element,
> +or used as a key to an aggregation or associative array.  
>  
> -The `stack` function, having a non-`void` return value, can also be used as the key to an aggregation.
> +When `stack();` appears alone, as a singular action,
> +it records a stack trace to the output buffer.
>  
> -## How to use stack to obtain a kernel stack trace for a particular probe
> +One can optionally specify a number of frames.
> +If no value is specified, the number specified by the `stackframes` runtime option is used.
> +Frames are included either up to the root frame or until the specified limit has been reached, whichever comes first.
> +
> +## How to use stack
> +
> +Here `stack()` is used to assign to a variable and print later using `%k` conversion.
> +
> +```
> +        v = stack(3);
> +        printf("%k", v);
> +```
> +
> +In this example, `stack()` is an action that prints the kernel stack.
>  
>  ```
>  fbt::ksys_write:entry
> diff --git a/doc/userguide/reference/function_ustack.md b/doc/userguide/reference/function_ustack.md
> index be9436f82..a70cba54a 100644
> --- a/doc/userguide/reference/function_ustack.md
> +++ b/doc/userguide/reference/function_ustack.md
> @@ -1,17 +1,42 @@
>  
>  # ustack
>  
> -Records a user stack trace to the directed buffer.
> +Retrieves the call stack in user space.
>  
>  ```
> -stack ustack([uint32_t *nframes*, uint32_t *strsize*])
> +dt_stack_t ustack([uint32_t *nframes*, uint32_t *strsize*])
>  ```
>  
> -The `ustack` function records a user stack trace to the directed buffer. The user stack is, at most, *nframes* in depth. If *nframes* isn't specified, the number of stack frames recorded is the number specified by the `ustackframes` option. While `ustack` can determine the address of the calling frames when the probe fires, the stack frames aren't translated into symbols until the `ustack` function is processed at user level by the DTrace utility. If *strsize* is specified and is non zero, `ustack` allocates the specified amount of string space and then uses it to perform address-to-symbol translation directly from the kernel. Such direct user symbol translation is used only with stacktrace helpers that support this usage with DTrace. If such frames can't be translated, the frames appear only as hexadecimal addresses.
> +Returns a `dt_stack_t` value that can be stored in a variable,
> +including an associative array element, 
> +or used as a key to an aggregation or associative array.
>  
> -The `ustack` symbol translation occurs after the stack data is recorded. Therefore, the corresponding user process might exit before symbol translation can be performed, making stack frame translation impossible. If the user process exits before symbol translation is performed, `dtrace` outputs a warning message, followed by the hexadecimal stack frames.
> +When `ustack();` appears alone, as a singular action,
> +it records a user stack trace to the output buffer.
>  
> -## How to use ustack to trace a stack with no address-to-symbol translation
> +One can optionally specify a number of frames.
> +If no value is specified, the number specified by the `ustackframes` runtime option is used.
> +Frames are included either up to the root frame or until the specified limit has been reached, whichever comes first.
> +
> +Stack frames aren't translated into symbols until the `ustack` function is processed at user level by the DTrace utility.
> +If *strsize* is specified and is non zero,
> +`ustack` allocates the specified amount of string space and then uses it to perform address-to-symbol translation directly from the kernel.
> +Such direct user symbol translation is used only with stacktrace helpers that support this usage with DTrace.
> +If such frames can't be translated, the frames appear only as hexadecimal addresses.

The 'strsize' argument is recognized (accepted) but we do not actually use it
right now.  It requires ustack() helper support to be implemented and it also
will require additional work on the [u]stack() subroutine support to allocate
the necessary memory.  That is more complex and may require some additional
design before we can provide full support for ustack() helpers.

I would suggest either removing this, or adding a note that support for
'strsize' and ustack() helpers is not implemented yet, and that the "strsize"
argument is ignored.

> +
> +The `ustack` symbol translation occurs after the stack data is recorded.
> +Therefore, the corresponding user process might exit before symbol translation can be performed, making stack frame translation impossible.
> +If the user process exits before symbol translation is performed, `dtrace` outputs a warning message, followed by the hexadecimal stack frames.
> +
> +## How to use ustack
> +
> +This example shows a D clause that stores the user stack to a global variable,
> +then later print it with a `%k` conversion:
> +
> +```
> +        v = ustack(3);
> +        printf("%k", v);
> +```
>  
>  The example shows how to use `ustack` to trace the stack for an `openat` system call by the `date` command.
>  
> @@ -19,7 +44,7 @@ The example shows how to use `ustack` to trace the stack for an `openat` system
>  sudo dtrace -qn syscall::openat:entry'/pid == $target/{ustack();}' -c 'date'
>  ```
>  
> -Generates output similar to the following:
> +This generates output similar to the following:
>  
>  ```
>  CPU     ID                    FUNCTION:NAME
> @@ -35,7 +60,5 @@ Mon 20 Feb 17:38:15 GMT 2023
>                0x7f6d63fc2e65
>  ```
>  
> -
> -
>  **Parent topic:**[DTrace Function Reference](../reference/dtrace_functions.md)
>  
> -- 
> 2.47.3
> 



More information about the DTrace-devel mailing list