1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
use std::alloc::alloc;
use std::alloc::dealloc;
use std::alloc::Layout;
use std::ffi::CStr;
use std::ffi::OsStr;
use std::fmt::Debug;
use std::mem;
use std::os::raw::c_char;
use std::os::unix::ffi::OsStrExt as _;
use std::path::Path;
use std::path::PathBuf;
use std::ptr;
use crate::log::error;
use crate::log::warn;
use crate::symbolize::Elf;
use crate::symbolize::GsymData;
use crate::symbolize::GsymFile;
use crate::symbolize::Kernel;
use crate::symbolize::Process;
use crate::symbolize::Source;
use crate::symbolize::SymbolizedResult;
use crate::symbolize::Symbolizer;
use crate::util::slice_from_user_array;
use crate::Addr;
/// The parameters to load symbols and debug information from an ELF.
///
/// Describes the path and address of an ELF file loaded in a
/// process.
#[repr(C)]
#[derive(Debug)]
pub struct blaze_symbolize_src_elf {
/// The path to the ELF file.
///
/// The referenced file may be an executable or shared object. For example,
/// passing "/bin/sh" will load symbols and debug information from `sh` and
/// passing "/lib/libc.so.xxx" will load symbols and debug information from
/// libc.
pub path: *const c_char,
}
impl From<&blaze_symbolize_src_elf> for Elf {
fn from(elf: &blaze_symbolize_src_elf) -> Self {
let blaze_symbolize_src_elf { path } = elf;
Self {
path: unsafe { from_cstr(*path) },
_non_exhaustive: (),
}
}
}
/// The parameters to load symbols and debug information from a kernel.
///
/// Use a kernel image and a snapshot of its kallsyms as a source of symbols and
/// debug information.
#[repr(C)]
#[derive(Debug, PartialEq)]
pub struct blaze_symbolize_src_kernel {
/// The path of a copy of kallsyms.
///
/// It can be `"/proc/kallsyms"` for the running kernel on the
/// device. However, you can make copies for later. In that situation,
/// you should give the path of a copy.
/// Passing a `NULL`, by default, will result in `"/proc/kallsyms"`.
pub kallsyms: *const c_char,
/// The path of a kernel image.
///
/// The path of a kernel image should be, for instance,
/// `"/boot/vmlinux-xxxx"`. For a `NULL` value, it will locate the
/// kernel image of the running kernel in `"/boot/"` or
/// `"/usr/lib/debug/boot/"`.
pub kernel_image: *const c_char,
}
impl From<&blaze_symbolize_src_kernel> for Kernel {
fn from(kernel: &blaze_symbolize_src_kernel) -> Self {
let blaze_symbolize_src_kernel {
kallsyms,
kernel_image,
} = kernel;
Self {
kallsyms: (!kallsyms.is_null()).then(|| unsafe { from_cstr(*kallsyms) }),
kernel_image: (!kernel_image.is_null()).then(|| unsafe { from_cstr(*kernel_image) }),
_non_exhaustive: (),
}
}
}
/// The parameters to load symbols and debug information from a process.
///
/// Load all ELF files in a process as the sources of symbols and debug
/// information.
#[repr(C)]
#[derive(Debug)]
pub struct blaze_symbolize_src_process {
/// It is the PID of a process to symbolize.
///
/// blazesym will parse `/proc/<pid>/maps` and load all the object
/// files.
pub pid: u32,
}
impl From<&blaze_symbolize_src_process> for Process {
fn from(process: &blaze_symbolize_src_process) -> Self {
let blaze_symbolize_src_process { pid } = process;
Self {
pid: (*pid).into(),
_non_exhaustive: (),
}
}
}
/// The parameters to load symbols and debug information from "raw" Gsym data.
#[repr(C)]
#[derive(Debug)]
pub struct blaze_symbolize_src_gsym_data {
/// The Gsym data.
pub data: *const u8,
/// The size of the Gsym data.
pub data_len: usize,
}
impl From<&blaze_symbolize_src_gsym_data> for GsymData<'_> {
fn from(gsym: &blaze_symbolize_src_gsym_data) -> Self {
let blaze_symbolize_src_gsym_data { data, data_len } = gsym;
Self {
data: unsafe { slice_from_user_array(*data, *data_len) },
_non_exhaustive: (),
}
}
}
/// The parameters to load symbols and debug information from a Gsym file.
#[repr(C)]
#[derive(Debug)]
pub struct blaze_symbolize_src_gsym_file {
/// The path to a gsym file.
pub path: *const c_char,
}
impl From<&blaze_symbolize_src_gsym_file> for GsymFile {
fn from(gsym: &blaze_symbolize_src_gsym_file) -> Self {
let blaze_symbolize_src_gsym_file { path } = gsym;
Self {
path: unsafe { from_cstr(*path) },
_non_exhaustive: (),
}
}
}
/// A placeholder symbolizer for C API.
///
/// It is returned by [`blaze_symbolizer_new`] and should be free by
/// [`blaze_symbolizer_free`].
pub type blaze_symbolizer = Symbolizer;
/// The result of symbolization of an address.
///
/// A `blaze_sym` is the information of a symbol found for an
/// address. One address may result in several symbols.
#[repr(C)]
#[derive(Debug)]
pub struct blaze_sym {
/// The symbol name is where the given address should belong to.
pub symbol: *const c_char,
/// The address (i.e.,the first byte) is where the symbol is located.
///
/// The address is already relocated to the address space of
/// the process.
pub addr: Addr,
/// The path of the source file defining the symbol.
pub path: *const c_char,
/// The line number on which the symbol was to be found in the source code.
pub line: usize,
pub column: usize,
}
/// `blaze_entry` is the output of symbolization for an address for C API.
///
/// Every address has an `blaze_entry` in
/// [`blaze_result::entries`] to collect symbols found.
#[repr(C)]
#[derive(Debug)]
pub struct blaze_entry {
/// The number of symbols found for an address.
pub size: usize,
/// All symbols found.
///
/// `syms` is an array of [`blaze_sym`] in the size `size`.
pub syms: *const blaze_sym,
}
/// `blaze_result` is the result of symbolization for C API.
///
/// Instances of [`blaze_result`] are returned by any of the `blaze_symbolize_*`
/// variants. They should be freed by calling [`blaze_result_free`].
#[repr(C)]
#[derive(Debug)]
pub struct blaze_result {
/// The number of addresses being symbolized.
pub size: usize,
/// The entries for addresses.
///
/// Symbolization occurs based on the order of addresses.
/// Therefore, every address must have an entry here on the same
/// order.
pub entries: [blaze_entry; 0],
}
/// Create a `PathBuf` from a pointer of C string
///
/// # Safety
/// The provided `cstr` should be terminated with a NUL byte.
unsafe fn from_cstr(cstr: *const c_char) -> PathBuf {
Path::new(OsStr::from_bytes(
unsafe { CStr::from_ptr(cstr) }.to_bytes(),
))
.to_path_buf()
}
/// Options for configuring `blaze_symbolizer` objects.
#[repr(C)]
#[derive(Debug)]
pub struct blaze_symbolizer_opts {
/// Whether to enable usage of debug symbols.
pub debug_syms: bool,
/// Whether to attempt to gather source code location information.
///
/// This setting implies `debug_syms` (and forces it to `true`).
pub src_location: bool,
}
/// Create an instance of a symbolizer.
#[no_mangle]
pub extern "C" fn blaze_symbolizer_new() -> *mut blaze_symbolizer {
let symbolizer = Symbolizer::new();
let symbolizer_box = Box::new(symbolizer);
Box::into_raw(symbolizer_box)
}
/// Create an instance of a symbolizer with configurable options.
///
/// # Safety
/// `opts` needs to be a valid pointer.
#[no_mangle]
pub unsafe extern "C" fn blaze_symbolizer_new_opts(
opts: *const blaze_symbolizer_opts,
) -> *mut blaze_symbolizer {
// SAFETY: The caller ensures that the pointer is valid.
let opts = unsafe { &*opts };
let blaze_symbolizer_opts {
debug_syms,
src_location,
} = opts;
let symbolizer = Symbolizer::builder()
.enable_debug_syms(*debug_syms)
.enable_src_location(*src_location)
.build();
let symbolizer_box = Box::new(symbolizer);
Box::into_raw(symbolizer_box)
}
/// Free an instance of blazesym a symbolizer for C API.
///
/// # Safety
///
/// The pointer must have been returned by [`blaze_symbolizer_new`] or
/// [`blaze_symbolizer_new_opts`].
#[no_mangle]
pub unsafe extern "C" fn blaze_symbolizer_free(symbolizer: *mut blaze_symbolizer) {
if !symbolizer.is_null() {
drop(unsafe { Box::from_raw(symbolizer) });
}
}
/// Convert [`SymbolizedResult`] objects to [`blaze_result`] ones.
///
/// # Safety
///
/// The returned pointer should be freed by [`blaze_result_free`].
unsafe fn convert_symbolizedresults_to_c(
results: Vec<Vec<SymbolizedResult>>,
) -> *const blaze_result {
// Allocate a buffer to contain a blaze_result, all
// blaze_sym, and C strings of symbol and path.
let strtab_size = results.iter().flatten().fold(0, |acc, result| {
acc + result.symbol.len() + result.path.as_os_str().len() + 2
});
let all_csym_size = results.iter().flatten().count();
let buf_size = strtab_size
+ mem::size_of::<blaze_result>()
+ mem::size_of::<blaze_entry>() * results.len()
+ mem::size_of::<blaze_sym>() * all_csym_size;
let raw_buf_with_sz =
unsafe { alloc(Layout::from_size_align(buf_size + mem::size_of::<u64>(), 8).unwrap()) };
if raw_buf_with_sz.is_null() {
return ptr::null()
}
// prepend an u64 to keep the size of the buffer.
unsafe { *(raw_buf_with_sz as *mut u64) = buf_size as u64 };
let raw_buf = unsafe { raw_buf_with_sz.add(mem::size_of::<u64>()) };
let result_ptr = raw_buf as *mut blaze_result;
let mut entry_last = unsafe { &mut (*result_ptr).entries as *mut blaze_entry };
let mut csym_last = unsafe {
raw_buf.add(mem::size_of::<blaze_result>() + mem::size_of::<blaze_entry>() * results.len())
} as *mut blaze_sym;
let mut cstr_last = unsafe {
raw_buf.add(
mem::size_of::<blaze_result>()
+ mem::size_of::<blaze_entry>() * results.len()
+ mem::size_of::<blaze_sym>() * all_csym_size,
)
} as *mut c_char;
let mut make_cstr = |src: &OsStr| {
let cstr = cstr_last;
unsafe { ptr::copy(src.as_bytes().as_ptr(), cstr as *mut u8, src.len()) };
unsafe { *cstr.add(src.len()) = 0 };
cstr_last = unsafe { cstr_last.add(src.len() + 1) };
cstr
};
unsafe { (*result_ptr).size = results.len() };
// Convert all `SymbolizedResult`s to `blaze_entry`s and `blazesym_sym`s.
for entry in results {
unsafe { (*entry_last).size = entry.len() };
unsafe { (*entry_last).syms = csym_last };
entry_last = unsafe { entry_last.add(1) };
for r in entry {
let symbol_ptr = make_cstr(OsStr::new(&r.symbol));
let path_ptr = make_cstr(r.path.as_os_str());
let csym_ref = unsafe { &mut *csym_last };
csym_ref.symbol = symbol_ptr;
csym_ref.addr = r.addr;
csym_ref.path = path_ptr;
csym_ref.line = r.line;
csym_ref.column = r.column;
csym_last = unsafe { csym_last.add(1) };
}
}
result_ptr
}
unsafe fn blaze_symbolize_impl(
symbolizer: *mut blaze_symbolizer,
src: Source<'_>,
addrs: *const Addr,
addr_cnt: usize,
) -> *const blaze_result {
// SAFETY: The caller ensures that the pointer is valid.
let symbolizer = unsafe { &*symbolizer };
// SAFETY: The caller ensures that the pointer is valid and the count
// matches.
let addrs = unsafe { slice_from_user_array(addrs, addr_cnt) };
let result = symbolizer.symbolize(&src, addrs);
match result {
Ok(results) if results.is_empty() => {
warn!("empty result while request for {addr_cnt}");
ptr::null()
}
Ok(results) => unsafe { convert_symbolizedresults_to_c(results) },
Err(_err) => {
error!("failed to symbolize {addr_cnt} addresses: {_err}");
ptr::null()
}
}
}
/// Symbolize addresses of a process.
///
/// Return an array of [`blaze_result`] with the same size as the
/// number of input addresses. The caller should free the returned array by
/// calling [`blaze_result_free`].
///
/// # Safety
/// `symbolizer` must have been allocated using [`blaze_symbolizer_new`] or
/// [`blaze_symbolizer_new_opts`]. `src` must point to a valid
/// [`blaze_symbolize_src_process`] object. `addrs` must represent an array of
/// `addr_cnt` objects.
#[no_mangle]
pub unsafe extern "C" fn blaze_symbolize_process(
symbolizer: *mut blaze_symbolizer,
src: *const blaze_symbolize_src_process,
addrs: *const Addr,
addr_cnt: usize,
) -> *const blaze_result {
// SAFETY: The caller ensures that the pointer is valid.
let src = Source::from(Process::from(unsafe { &*src }));
unsafe { blaze_symbolize_impl(symbolizer, src, addrs, addr_cnt) }
}
/// Symbolize kernel addresses.
///
/// Return an array of [`blaze_result`] with the same size as the
/// number of input addresses. The caller should free the returned array by
/// calling [`blaze_result_free`].
///
/// # Safety
/// `symbolizer` must have been allocated using [`blaze_symbolizer_new`] or
/// [`blaze_symbolizer_new_opts`]. `src` must point to a valid
/// [`blaze_symbolize_src_kernel`] object. `addrs` must represent an array of
/// `addr_cnt` objects.
#[no_mangle]
pub unsafe extern "C" fn blaze_symbolize_kernel(
symbolizer: *mut blaze_symbolizer,
src: *const blaze_symbolize_src_kernel,
addrs: *const Addr,
addr_cnt: usize,
) -> *const blaze_result {
// SAFETY: The caller ensures that the pointer is valid.
let src = Source::from(Kernel::from(unsafe { &*src }));
unsafe { blaze_symbolize_impl(symbolizer, src, addrs, addr_cnt) }
}
/// Symbolize addresses in an ELF file.
///
/// Return an array of [`blaze_result`] with the same size as the
/// number of input addresses. The caller should free the returned array by
/// calling [`blaze_result_free`].
///
/// # Safety
/// `symbolizer` must have been allocated using [`blaze_symbolizer_new`] or
/// [`blaze_symbolizer_new_opts`]. `src` must point to a valid
/// [`blaze_symbolize_src_elf`] object. `addrs` must represent an array of
/// `addr_cnt` objects.
#[no_mangle]
pub unsafe extern "C" fn blaze_symbolize_elf(
symbolizer: *mut blaze_symbolizer,
src: *const blaze_symbolize_src_elf,
addrs: *const Addr,
addr_cnt: usize,
) -> *const blaze_result {
// SAFETY: The caller ensures that the pointer is valid.
let src = Source::from(Elf::from(unsafe { &*src }));
unsafe { blaze_symbolize_impl(symbolizer, src, addrs, addr_cnt) }
}
/// Symbolize addresses using "raw" Gsym data.
///
/// Return an array of [`blaze_result`] with the same size as the
/// number of input addresses. The caller should free the returned array by
/// calling [`blaze_result_free`].
///
/// # Safety
/// `symbolizer` must have been allocated using [`blaze_symbolizer_new`] or
/// [`blaze_symbolizer_new_opts`]. `src` must point to a valid
/// [`blaze_symbolize_src_gsym_data`] object. `addrs` must represent an array of
/// `addr_cnt` objects.
#[no_mangle]
pub unsafe extern "C" fn blaze_symbolize_gsym_data(
symbolizer: *mut blaze_symbolizer,
src: *const blaze_symbolize_src_gsym_data,
addrs: *const Addr,
addr_cnt: usize,
) -> *const blaze_result {
// SAFETY: The caller ensures that the pointer is valid. The `GsymData`
// lifetime is entirely conjured up, but the object only needs to be
// valid for the call.
let src = Source::from(GsymData::from(unsafe { &*src }));
unsafe { blaze_symbolize_impl(symbolizer, src, addrs, addr_cnt) }
}
/// Symbolize addresses in a Gsym file.
///
/// Return an array of [`blaze_result`] with the same size as the
/// number of input addresses. The caller should free the returned array by
/// calling [`blaze_result_free`].
///
/// # Safety
/// `symbolizer` must have been allocated using [`blaze_symbolizer_new`] or
/// [`blaze_symbolizer_new_opts`]. `src` must point to a valid
/// [`blaze_symbolize_src_gsym_file`] object. `addrs` must represent an array of
/// `addr_cnt` objects.
#[no_mangle]
pub unsafe extern "C" fn blaze_symbolize_gsym_file(
symbolizer: *mut blaze_symbolizer,
src: *const blaze_symbolize_src_gsym_file,
addrs: *const Addr,
addr_cnt: usize,
) -> *const blaze_result {
// SAFETY: The caller ensures that the pointer is valid.
let src = Source::from(GsymFile::from(unsafe { &*src }));
unsafe { blaze_symbolize_impl(symbolizer, src, addrs, addr_cnt) }
}
/// Free an array returned by any of the `blaze_symbolize_*` variants.
///
/// # Safety
/// The pointer must have been returned by any of the `blaze_symbolize_*`
/// variants.
#[no_mangle]
pub unsafe extern "C" fn blaze_result_free(results: *const blaze_result) {
if results.is_null() {
return
}
let raw_buf_with_sz = unsafe { (results as *mut u8).offset(-(mem::size_of::<u64>() as isize)) };
let sz = unsafe { *(raw_buf_with_sz as *mut u64) } as usize + mem::size_of::<u64>();
unsafe { dealloc(raw_buf_with_sz, Layout::from_size_align(sz, 8).unwrap()) };
}
#[cfg(test)]
mod tests {
use super::*;
/// Exercise the `Debug` representation of various types.
#[test]
fn debug_repr() {
let elf = blaze_symbolize_src_elf { path: ptr::null() };
assert_eq!(format!("{elf:?}"), "blaze_symbolize_src_elf { path: 0x0 }");
let kernel = blaze_symbolize_src_kernel {
kallsyms: ptr::null(),
kernel_image: ptr::null(),
};
assert_eq!(
format!("{kernel:?}"),
"blaze_symbolize_src_kernel { kallsyms: 0x0, kernel_image: 0x0 }"
);
let process = blaze_symbolize_src_process { pid: 1337 };
assert_eq!(
format!("{process:?}"),
"blaze_symbolize_src_process { pid: 1337 }"
);
let gsym_data = blaze_symbolize_src_gsym_data {
data: ptr::null(),
data_len: 0,
};
assert_eq!(
format!("{gsym_data:?}"),
"blaze_symbolize_src_gsym_data { data: 0x0, data_len: 0 }"
);
let gsym_file = blaze_symbolize_src_gsym_file { path: ptr::null() };
assert_eq!(
format!("{gsym_file:?}"),
"blaze_symbolize_src_gsym_file { path: 0x0 }"
);
let sym = blaze_sym {
symbol: ptr::null(),
addr: 0x1337,
path: ptr::null(),
line: 42,
column: 1,
};
assert_eq!(
format!("{sym:?}"),
"blaze_sym { symbol: 0x0, addr: 4919, path: 0x0, line: 42, column: 1 }"
);
let entry = blaze_entry {
size: 0,
syms: ptr::null(),
};
assert_eq!(format!("{entry:?}"), "blaze_entry { size: 0, syms: 0x0 }");
let result = blaze_result {
size: 0,
entries: [],
};
assert_eq!(
format!("{result:?}"),
"blaze_result { size: 0, entries: [] }"
);
let opts = blaze_symbolizer_opts {
debug_syms: true,
src_location: false,
};
assert_eq!(
format!("{opts:?}"),
"blaze_symbolizer_opts { debug_syms: true, src_location: false }"
);
}
/// Check that we can convert a [`blaze_symbolize_src_kernel`]
/// reference into a [`Kernel`].
#[test]
fn kernel_conversion() {
let kernel = blaze_symbolize_src_kernel {
kallsyms: ptr::null(),
kernel_image: ptr::null(),
};
let kernel = Kernel::from(&kernel);
assert_eq!(kernel.kallsyms, None);
assert_eq!(kernel.kernel_image, None);
let kernel = blaze_symbolize_src_kernel {
kallsyms: b"/proc/kallsyms\0" as *const _ as *const c_char,
kernel_image: b"/boot/image\0" as *const _ as *const c_char,
};
let kernel = Kernel::from(&kernel);
assert_eq!(kernel.kallsyms, Some(PathBuf::from("/proc/kallsyms")));
assert_eq!(kernel.kernel_image, Some(PathBuf::from("/boot/image")));
}
}