samply-symbols

This crate allows obtaining symbol information from binaries and compilation artifacts.

You probably want to be using the wholesym crate instead. wholesym has a much more ergonomic API; it is a wrapper around samply-symbols.

More specifically, samply-symbols provides the low-level implementation of wholesym, while satisfying both native and WebAssembly consumers, whereas wholesym only cares about native consumers.

The main entry point of this crate is the SymbolManager struct and its async load_symbol_map method. With a SymbolMap, you can resolve raw code addresses to function name strings, and, if available, to file name + line number information and inline stacks.

Design constraints

This crate operates under the following design constraints:

The WebAssembly requirement means that this crate cannot contain any direct file access. Instead, all file access is mediated through a FileAndPathHelper trait which has to be implemented by the caller. We cannot even use the std::path::Path / PathBuf types to represent paths, because the WASM bundle can run on Windows, and the Path / PathBuf types have! Unix path semantics in Rust-compiled-to-WebAssembly.

Furthermore, the caller needs to be able to find the right symbol files based on a subset of information about a library, for example just based on its debug name and debug ID. This is used when SymbolManager::load_symbol_map is called with such a subset of information. More concretely, this ability is used by samply-api when processing a JSON symbolication API call, which only comes with the debug name and debug ID for a library.

Supported formats and data

This crate supports obtaining symbol data from PE binaries (Windows), PDB files (Windows), mach-o binaries (including fat binaries) (macOS & iOS), and ELF binaries (Linux, Android, etc.). For mach-o files it also supports finding debug information in external objects, by following OSO stabs entries. It supports gathering both basic symbol information (function name strings) as well as information based on debug data, i.e. inline callstacks where each frame has a function name, a file name, and a line number. For debug data we support both DWARF debug data (inside mach-o and ELF binaries) and PDB debug data.

Example

```rust use samplysymbols::debugid::DebugId; use samplysymbols::{ CandidatePathInfo, FileAndPathHelper, FileAndPathHelperResult, FileLocation, FramesLookupResult, LibraryInfo, OptionallySendFuture, SymbolManager, };

async fn runquery() { let thisdir = std::path::PathBuf::from(env!("CARGOMANIFESTDIR")); let helper = ExampleHelper { artifactdirectory: thisdir.join("..").join("fixtures").join("win64-ci"), };

let symbol_manager = SymbolManager::with_helper(&helper);

let library_info = LibraryInfo {
    debug_name: Some("firefox.pdb".to_string()),
    debug_id: DebugId::from_breakpad("AA152DEB2D9B76084C4C44205044422E1").ok(),
    ..Default::default()
};
let symbol_map = match symbol_manager.load_symbol_map(&library_info).await {
    Ok(symbol_map) => symbol_map,
    Err(e) => {
        println!("Error while loading the symbol map: {:?}", e);
        return;
    }
};

// Look up the symbol for an address.
let lookup_result = symbol_map.lookup(0x1f98f);

match lookup_result {
    Some(address_info) => {
        // Print the symbol name for this address:
        println!("0x1f98f: {}", address_info.symbol.name);

        // See if we have debug info (file name + line, and inlined frames):
        match address_info.frames {
            FramesLookupResult::Available(frames) => {
                println!("Debug info:");
                for frame in frames {
                    println!(
                        " - {:?} ({:?}:{:?})",
                        frame.function, frame.file_path, frame.line_number
                    );
                }
            }
            FramesLookupResult::External(ext_address) => {
                // Debug info is located in a different file.
                if let Some(frames) =
                    symbol_manager.lookup_external(&symbol_map.debug_file_location(), &ext_address).await
                {
                    println!("Debug info:");
                    for frame in frames {
                        println!(
                            " - {:?} ({:?}:{:?})",
                            frame.function, frame.file_path, frame.line_number
                        );
                    }
                }
            }
            FramesLookupResult::Unavailable => {}
        }
    }
    None => {
        println!("No symbol was found for address 0x1f98f.")
    }
}

}

struct ExampleHelper { artifact_directory: std::path::PathBuf, }

impl<'h> FileAndPathHelper<'h> for ExampleHelper { type F = Vec; type FL = ExampleFileLocation; type OpenFileFuture = std::pin::Pin< Box> + 'h>,

;

fn get_candidate_paths_for_debug_file(
    &self,
    library_info: &LibraryInfo,
) -> FileAndPathHelperResult<Vec<CandidatePathInfo<ExampleFileLocation>>> {
    if let Some(debug_name) = library_info.debug_name.as_deref() {
        Ok(vec![CandidatePathInfo::SingleFile(ExampleFileLocation(
            self.artifact_directory.join(debug_name),
        ))])
    } else {
        Ok(vec![])
    }
}

fn get_candidate_paths_for_binary(
    &self,
    library_info: &LibraryInfo,
) -> FileAndPathHelperResult<Vec<CandidatePathInfo<ExampleFileLocation>>> {
    if let Some(name) = library_info.name.as_deref() {
        Ok(vec![CandidatePathInfo::SingleFile(ExampleFileLocation(
            self.artifact_directory.join(name),
        ))])
    } else {
        Ok(vec![])
    }
}

fn getdyldsharedcachepaths( &self, _arch: Option<&str>, ) -> FileAndPathHelperResult> { Ok(vec![]) }

fn load_file(
    &'h self,
    location: ExampleFileLocation,
) -> std::pin::Pin<
    Box<dyn OptionallySendFuture<Output = FileAndPathHelperResult<Self::F>> + 'h>,
> {
    async fn load_file_impl(path: std::path::PathBuf) -> FileAndPathHelperResult<Vec<u8>> {
        Ok(std::fs::read(&path)?)
    }

    Box::pin(load_file_impl(location.0))
}

}

[derive(Clone, Debug)]

struct ExampleFileLocation(std::path::PathBuf);

impl std::fmt::Display for ExampleFileLocation { fn fmt(&self, f: &mut std::fmt::Formatter<'>) -> std::fmt::Result { self.0.tostring_lossy().fmt(f) } }

impl FileLocation for ExampleFileLocation { fn locationfordyldsubcache(&self, suffix: &str) -> Option { let mut filename = self.0.filename().unwrap().toowned(); filename.push(suffix); Some(Self(self.0.withfile_name(filename))) }

fn location_for_external_object_file(&self, object_file: &str) -> Option<Self> {
    Some(Self(object_file.into()))
}

fn location_for_pdb_from_binary(&self, pdb_path_in_binary: &str) -> Option<Self> {
    Some(Self(pdb_path_in_binary.into()))
}

fn location_for_source_file(&self, source_file_path: &str) -> Option<Self> {
    Some(Self(source_file_path.into()))
}

} ```