libmwemu 0.24.5

x86 32/64bits and system internals emulator, for securely emulating malware and other stuff.
Documentation
use crate::emu;
use crate::windows::peb;
use crate::winapi::helper;

pub fn GetModuleHandleW(emu: &mut emu::Emu) {
    let mod_name_ptr = emu
        .maps
        .read_dword(emu.regs().get_esp())
        .expect("kernel32!GetModuleHandleW cannot read mod_name_ptr") as u64;

    let mod_name: String;
    let base;

    if mod_name_ptr == 0 {
        mod_name = emu.cfg.exe_name.clone();
        base = match peb::peb32::get_module_base(&mod_name, emu) {
            Some(b) => b,
            None => helper::handler_create(&mod_name),
        };
    } else {
        mod_name = emu.maps.read_wide_string(mod_name_ptr).to_lowercase();
        let mod_mem = match emu.maps.get_mem2(&mod_name) {
            Some(m) => m,
            None => {
                emu.regs_mut().rax = 0;
                return;
            }
        };
        base = mod_mem.get_base();
    }

    log_red!(emu, "kernel32!GetModuleHandleW '{}' 0x{:x}", mod_name, base);

    emu.regs_mut().rax = base;

    emu.stack_pop32(false);
}