resolve broader

This commit is contained in:
🪞👃🪞 2025-02-23 00:15:54 +02:00
parent 1d24f6e71f
commit 88ee260cde
2 changed files with 55 additions and 86 deletions

View file

@ -91,10 +91,8 @@ impl Vestal {
Ok(None)
}
fn resolve_calls (&self, dll: &Dll, recurse: bool, verbose: bool) -> Usually<()> {
println!("--------------------------------");
for (addr, call) in dll.calls_by_source.iter() {
println!();
println!("{:11}{BOLD}{}{RESET}", "", dll.name);
for (addr, call) in dll.calls_by_source.iter() {
self.resolve_call(dll, *addr, call, recurse, verbose)?;
}
Ok(())
@ -108,7 +106,7 @@ impl Vestal {
verbose: bool,
) -> Usually<()> {
let addr = (addr - dll.code_base) as usize;
Show::call_site(&dll, addr, call.length, 1);
dll.show_call_site(addr, call.length, 1);
Show::call_module_method(Some(call));
if let Some(method) = dll.parse_call(call) {
let module_name = call.module.as_ref().unwrap();
@ -137,40 +135,17 @@ impl Vestal {
fn resolve_call_recurse (
&self,
dll: &Dll,
addr: usize,
address: usize,
module_name: &Arc<str>,
method_name: &Arc<str>,
) -> Usually<()> {
println!("\n {RESET} {BOLD}{} ({method_name}){RESET}", &dll.name);
//dll.collect_call(
//&dll.name,
//&dll.pe,
//&dll.text_section_start,
//&dll.text_section,
//);
let mut decoder = Decoder::with_ip(64, &dll.text_section[addr..], 0, DecoderOptions::NONE);
let mut decoder = Decoder::with_ip(64, &dll.text_section[address..], 0, DecoderOptions::NONE);
while decoder.can_decode() {
let position = decoder.position();
let instruction = decoder.decode();
let opcodes = &dll.text_section[position..position+instruction.len()];
if Call::matches(&instruction) && !Call::skip(opcodes) {
let addr = addr + position;
let start = dll.text_section_start;
let offset = (position + start) as u32;
let offset_rva = dll.pe.offset_to_rva(Offset(offset))?.0 as u32;
println!("{opcodes:?} {addr:x} {position:x} {start:x} {offset:x} {offset_rva:x}");
let target = Call::target(opcodes, offset_rva);
Show::call_site(&dll, addr, instruction.len(), 1);
println!("{target:?}");
if let Some(target) = target {
println!("{target:x} {:?}", dll.deps_by_address.get(&(target as u32)));
println!("{target:x} {:?}", dll.calls_by_source.get(&(target as u32)))
} else {
println!("???");
};
Show::call_module_method(dll.calls_by_source.get(&(addr as u32)));
if let Some(call) = dll.collect_call(&mut decoder, true)? {
println!("(call {call:#?}");
}
if dll.text_section[addr + position] == 0xc3 {
if dll.text_section[address + position] == 0xc3 {
break
}
}
@ -236,9 +211,9 @@ impl Dll {
let size = code.size_of_raw_data as usize;
let text = &data[start..start+size];
let mut dll = Self {
bang,
name: name.clone(),
path: path.clone(),
bang,
exports: Default::default(),
deps_by_library: Default::default(),
deps_by_address: Default::default(),

View file

@ -7,52 +7,19 @@ pub fn fmt_bytes (bytes: &[u8]) -> Arc<str> {
pub struct Show;
impl Show {
pub fn num (n: usize) -> Arc<str> {
format!("0x{n:>08x}").into()
}
pub fn call (dll: &Dll, addr: usize, call: Option<&Arc<Call>>) {
let mut decoder = Decoder::with_ip(64, &dll.text_section[addr..], 0x1000, DecoderOptions::NONE);
impl Dll {
pub fn show_instruction (&self, addr: usize) {
let mut decoder = Decoder::with_ip(64, &self.text_section[addr..], 0x1000, DecoderOptions::NONE);
let instruction = decoder.decode();
let is_stack = instruction.is_stack_instruction();
let is_link = Call::matches(&instruction);
let style = if is_stack || is_link { BOLD } else { DIM };
print!("{style}{} {:20}{RESET}", Show::num(addr), &dll.name);
print!(" {style}{:26}{RESET}", fmt_bytes(&dll.text_section[addr..addr+instruction.len()]));
print!("{style}{} {:20}{RESET}", Show::num(addr), &self.name);
print!(" {style}{:26}{RESET}", fmt_bytes(&self.text_section[addr..addr+instruction.len()]));
println!(" {style}{instruction}{RESET}");
}
pub fn call_target_addrs (
call: Option<&Arc<Call>>
) {
println!(" {}{}{}",
call.map(|call|format!(" (offset {})", Show::num(call.offset as usize)))
.unwrap_or(String::new()),
call.map(|call|format!(" (source {})", Show::num(call.source as usize)))
.unwrap_or(String::new()),
call.map(|call|format!(" (target {})", Show::num(call.target as usize)))
.unwrap_or(String::new()));
}
pub fn call_module_method (
call: Option<&Arc<Call>>
) {
let module = call.map(|call|call.module.as_ref()).flatten();
let method = call.map(|call|call.method.as_ref()).flatten();
if module.is_some() || method.is_some() {
println!(" ╰-------> {GREEN}{}{}{}{RESET}",
module.map(|x|x.as_ref()).unwrap_or(&""),
if module.is_some() && method.is_some() { "::" } else { "" },
method.map(|x|x.as_ref()).unwrap_or(&""));
} else {
println!(" ╰-------> {RED}(unresolved){RESET} {call:?}");
}
}
pub fn call_site (
dll: &Dll,
addr: usize,
length: usize,
context: usize,
) {
let base = dll.code_base as usize;
pub fn show_call_site (&self, addr: usize, length: usize, context: usize) {
let base = self.code_base as usize;
let line = 16;
let group = 2;
let snap = |x|(x/line)*line;
@ -63,7 +30,7 @@ impl Show {
write!(&mut output, "{DIM}");
if byte % line == 0 {
if (byte >= snap(addr)) && (byte < snap(addr) + line) {
write!(&mut output, "{RESET} ");
write!(&mut output, "{RESET}");
} else if byte >= snap(addr) + line {
write!(&mut output, "");
} else {
@ -84,11 +51,11 @@ impl Show {
write!(&mut output, "{}", " ");
}
}
write!(&mut output, "{:02x}", dll.text_section[byte]);
write!(&mut output, "{:02x}", self.text_section[byte]);
write!(&mut output, "{RESET}");
if byte % line == line - 1 {
if snap(byte) == snap(addr) {
let dasm = Self::call_dasm(&dll.text_section[addr..], addr);
let dasm = Show::call_dasm(&self.text_section[addr..], addr);
write!(&mut output, " -> {dasm}");
}
write!(&mut output, " \n");
@ -96,6 +63,33 @@ impl Show {
}
print!("{output}");
}
}
impl Show {
pub fn num (n: usize) -> Arc<str> {
format!("0x{n:>08x}").into()
}
pub fn call_target_addrs (call: Option<&Arc<Call>>) {
println!(" {}{}{}",
call.map(|call|format!(" (offset {})", Show::num(call.offset as usize)))
.unwrap_or(String::new()),
call.map(|call|format!(" (source {})", Show::num(call.source as usize)))
.unwrap_or(String::new()),
call.map(|call|format!(" (target {})", Show::num(call.target as usize)))
.unwrap_or(String::new()));
}
pub fn call_module_method (call: Option<&Arc<Call>>) {
let module = call.map(|call|call.module.as_ref()).flatten();
let method = call.map(|call|call.method.as_ref()).flatten();
if module.is_some() || method.is_some() {
println!("╰--------> {GREEN}{}{}{}{RESET}",
module.map(|x|x.as_ref()).unwrap_or(&""),
if module.is_some() && method.is_some() { "::" } else { "" },
method.map(|x|x.as_ref()).unwrap_or(&""));
} else {
println!("╰--------> {RED}(unresolved){RESET} {call:?}");
}
}
pub fn call_dasm (bytes: &[u8], rip: usize) -> Arc<str> {
let mut decoder = Decoder::with_ip(64, bytes, 0x1000 + rip as u64, DecoderOptions::NONE);
while decoder.can_decode() {