blob: b0730d8401edb694081c8d991e3bb3d0523df4b3 [file] [log] [blame]
# Copyright 2021 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
"""Utilities for address symbolization."""
import subprocess
import threading
import json
from typing import Optional, List
from dataclasses import dataclass
from pathlib import Path
@dataclass(frozen=True)
class Symbol:
"""Symbols produced by a symbolizer."""
address: int
name: str
file: str
line: int
def to_string(self, max_filename_len: int = 30) -> str:
if not self.name:
name = f'0x{self.address:08X}'
else:
name = self.name
return f'{name} ({self.file_and_line(max_filename_len)})'
def file_and_line(self, max_filename_len: int = 30) -> str:
"""Returns a file/line number string, with question marks if unknown."""
if not self.file:
return '??:?'
if max_filename_len and len(self.file) > max_filename_len:
return f'[...]{self.file[-max_filename_len:]}:{self.line}'
return f'{self.file}:{self.line}'
def __str__(self):
return self.to_string()
class LlvmSymbolizer:
"""Symbolize addresses."""
def __init__(self, binary: Optional[Path] = None):
# Lets destructor return cleanly if the binary is not found.
self._symbolizer = None
if binary is not None:
if not binary.exists():
raise FileNotFoundError(binary)
cmd = [
'llvm-symbolizer',
'--no-inlines',
'--demangle',
'--functions',
'--output-style=JSON',
'--exe',
str(binary),
]
self._symbolizer = subprocess.Popen(cmd,
stdout=subprocess.PIPE,
stdin=subprocess.PIPE)
self._lock = threading.Lock()
def __del__(self):
if self._symbolizer:
self._symbolizer.terminate()
def symbolize(self, address: int) -> Symbol:
"""Symbolizes an address using the loaded ELF file."""
if not self._symbolizer:
return Symbol(address=address, name='', file='', line=0)
with self._lock:
stdin = self._symbolizer.stdin
stdout = self._symbolizer.stdout
assert stdin is not None
assert stdout is not None
stdin.write(f'0x{address:08X}\n'.encode())
stdin.flush()
results = json.loads(stdout.readline().decode())
# The symbol resolution should give us at least one symbol, even
# if it's largely empty.
assert len(results["Symbol"]) > 0
# Get the first symbol.
symbol = results["Symbol"][0]
return Symbol(address=address,
name=symbol['FunctionName'],
file=symbol['FileName'],
line=symbol['Line'])
def dump_stack_trace(self,
addresses,
most_recent_first: bool = True) -> str:
"""Symbolizes and dumps a list of addresses as a stack trace.
most_recent_first controls the hint provided at the top of the stack
trace. If call stack depth increases with each element in the input
list, most_recent_first should be false.
"""
order: str = 'first' if most_recent_first else 'last'
stack_trace: List[str] = []
stack_trace.append(f'Stack Trace (most recent call {order}):')
max_width = len(str(len(addresses)))
for i, address in enumerate(addresses):
depth = i + 1
symbol = self.symbolize(address)
if symbol.name:
sym_desc = f'{symbol.name} (0x{symbol.address:08X})'
else:
sym_desc = f'(0x{symbol.address:08X})'
stack_trace.append(f' {depth:>{max_width}}: at {sym_desc}')
stack_trace.append(f' in {symbol.file_and_line()}')
return '\n'.join(stack_trace)