Giter Club home page Giter Club logo

blazesym's Introduction

pipeline coverage crates.io Docs rustc

blazesym

blazesym is a library that can be used to symbolize addresses. Address symbolization is a common problem in tracing contexts, for example, where users want to reason about functions by name, but low level components report only the "raw" addresses (e.g., in the form of stacktraces).

In addition to symbolization, blazesym also provides APIs for the reverse operation: looking up addresses from symbol names. That can be useful, for example, for configuring breakpoints or tracepoints.

The library aims to provide a "batteries-included" experience. That is to say, it tries to do the expected thing by default. When offering such convenience comes at the cost of performance, we aim to provide advanced APIs that allow for runtime configuration of the corresponding features.

blazesym supports a variety of formats, such as DWARF, ELF, Breakpad, and Gsym (see below for an up-to-date list).

The library is written in Rust and provides a first class C API. This crate adheres to Cargo's semantic versioning rules. At a minimum, it builds with the most recent Rust stable release minus five minor versions ("N - 5"). E.g., assuming the most recent Rust stable is 1.68, the crate is guaranteed to build with 1.63 and higher.

Status

blazesym is at the core of Meta's internal continuous profiling solution, where it handles billions of symbolization requests per day.

The library is being actively worked on, with a major goal being stabilization of the API surface. Feel free to contribute with discussions, feature suggestions, or code contributions!

As alluded to above, the library provides support for a variety of formats. For symbolization specifically, the following table lays out what features each format supports and whether blazesym can currently use this feature:

Format Feature Supported by format? Supported by blazesym?
Breakpad symbol size ✔️ ✔️
source code location information ✔️ ✔️
inlined function information ✔️ ✔️
ELF symbol size ✔️ ✔️
source code location information ✖️ ✖️
inlined function information ✖️ ✖️
DWARF symbol size ✔️ ✔️
source code location information ✔️ ✔️
inlined function information ✔️ ✔️
Gsym symbol size ✔️ ✔️
source code location information ✔️ ✔️
inlined function information ✔️ ✔️
Ksym symbol size ✖️ ✖️
source code location information ✖️ ✖️
inlined function information ✖️ ✖️

Here is rough roadmap of currently planned features (in no particular order):

  • Fully support handling of kernel addresses
    • currently normalization APIs, for example, only support user space addresses
  • Switch to using gimli for DWARF parsing
    • doing so will allow us to:
  • Support symbolization of addresses in APKs (relevant for Android) (libbpf#222 & libbpf#227)
  • Support ELF32 binaries (libbpf#53)
  • Support handling of compressed debug information (libbpf#581)
  • Support demangling of Rust & C++ symbol names (libbpf#50)
  • Support remote symbolization (libbpf#61)
  • Support advanced symbolization use cases involving debuginfod (libbpf#203)

OS Support

The library's primary target operating system is Linux (it should work on all semi-recent kernel versions and distributions). MacOS is not actively supported at this point (though it may work), but we would be happy to incorporate pull requests to fix any potential short comings.

Build & Use

blazesym requires a standard Rust toolchain and can be built using the Cargo project manager (e.g., cargo build).

Rust

Consumption from a Rust project should happen via Cargo.toml:

[dependencies]
blazesym = "=0.2.0-alpha.12"

For a quick set of examples please refer to the examples/ folder. Please refer to the documentation for a comprehensive explanation of individual types and functions.

C

The companion crate blazesym-c provides the means for interfacing with the library from C. Please refer to its README for usage details.

Command-line

The library also comes with a command line interface for quick experimentation and debugging. You can run it directly from the repository, e.g.:

cargo run -p blazecli -- symbolize elf --path /lib64/libc.so.6 00000000000caee1

Please refer to its README as well as the help text for additional information and usage instructions.

Statically linked binaries for various target triples are available on-demand here.

blazesym's People

Contributors

d-e-s-o avatar dependabot[bot] avatar mdrokz avatar anakryiko avatar benbenolson avatar dmitris avatar lgtm-migrator avatar thinkeryzu1 avatar anfernee avatar r1viollet avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.