Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Latest commit

 

History

History
23 lines (12 loc) · 1.11 KB

functions_file.md

File metadata and controls

23 lines (12 loc) · 1.11 KB

Overview

Weaver is a useful debugging tool. The goal of weaver is to have strace-like functionality except for tracing functions in go programs.

Input:

  • A functions file (using -f / --functions-file) - A line delimited file containing specifications for function names and their argument types.

  • A compiled go program - The actual binary which contains the functions specified in the functions file.

Behavior:

  • Weaver reads the specified functions file. Each line is parsed into an internal data structure (trace context) which represents the arguments.

  • The stack offsets are then calculated based on this logic and recorded in the same trace context structure.

  • The trace context for each function is compiled into eBPF programs using a text template.

  • Each eBPF program is loaded into the kernel attached to their corresponding uprobes.

  • Weaver listens on a single perf buffer for argument values from the eBPF programs once their triggered by running the corresponding program.

  • Arguments are outputted in the configured manner.