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
|
use object::{
Object, ObjectSection, ObjectSymbol, SectionIndex, SectionKind, Symbol, SymbolKind,
SymbolSection,
};
use std::collections::HashMap;
use std::{env, fs, process};
fn main() {
let arg_len = env::args().len();
if arg_len <= 1 {
eprintln!("Usage: {} <file> ...", env::args().next().unwrap());
process::exit(1);
}
for file_path in env::args().skip(1) {
if arg_len > 2 {
println!();
println!("{}:", file_path);
}
let file = match fs::File::open(&file_path) {
Ok(file) => file,
Err(err) => {
println!("Failed to open file '{}': {}", file_path, err,);
continue;
}
};
let file = match unsafe { memmap2::Mmap::map(&file) } {
Ok(mmap) => mmap,
Err(err) => {
println!("Failed to map file '{}': {}", file_path, err,);
continue;
}
};
let file = match object::File::parse(&*file) {
Ok(file) => file,
Err(err) => {
println!("Failed to parse file '{}': {}", file_path, err);
continue;
}
};
let section_kinds = file.sections().map(|s| (s.index(), s.kind())).collect();
println!("Debugging symbols:");
for symbol in file.symbols() {
print_symbol(&symbol, §ion_kinds);
}
println!();
println!("Dynamic symbols:");
for symbol in file.dynamic_symbols() {
print_symbol(&symbol, §ion_kinds);
}
}
}
fn print_symbol(symbol: &Symbol<'_, '_>, section_kinds: &HashMap<SectionIndex, SectionKind>) {
if let SymbolKind::Section | SymbolKind::File = symbol.kind() {
return;
}
let mut kind = match symbol.section() {
SymbolSection::Undefined => 'U',
SymbolSection::Absolute => 'A',
SymbolSection::Common => 'C',
SymbolSection::Section(index) => match section_kinds.get(&index) {
Some(SectionKind::Text) => 't',
Some(SectionKind::Data) | Some(SectionKind::Tls) | Some(SectionKind::TlsVariables) => {
'd'
}
Some(SectionKind::ReadOnlyData) | Some(SectionKind::ReadOnlyString) => 'r',
Some(SectionKind::UninitializedData) | Some(SectionKind::UninitializedTls) => 'b',
Some(SectionKind::Common) => 'C',
_ => '?',
},
_ => '?',
};
if symbol.is_global() {
kind = kind.to_ascii_uppercase();
}
if symbol.is_undefined() {
print!("{:16} ", "");
} else {
print!("{:016x} ", symbol.address());
}
println!(
"{:016x} {} {}",
symbol.size(),
kind,
symbol.name().unwrap_or("<unknown>"),
);
}
|