9e64cba6ec
- UC_ERR_READ_INVALID -> UC_ERR_READ_UNMAPPED - UC_ERR_WRITE_INVALID -> UC_ERR_WRITE_UNMAPPED - UC_ERR_FETCH_INVALID -> UC_ERR_FETCH_UNMAPPED - UC_MEM_READ_INVALID -> UC_MEM_READ_UNMAPPED - UC_MEM_WRITE_INVALID -> UC_MEM_WRITE_UNMAPPED - UC_MEM_FETCH_INVALID -> UC_MEM_FETCH_UNMAPPED - UC_HOOK_MEM_READ_INVALID -> UC_HOOK_MEM_READ_UNMAPPED - UC_HOOK_MEM_WRITE_INVALID -> UC_HOOK_MEM_WRITE_UNMAPPED - UC_HOOK_MEM_FETCH_INVALID -> UC_HOOK_MEM_FETCH_UNMAPPED - UC_HOOK_MEM_INVALID -> UC_HOOK_MEM_UNMAPPED This also renames some newly added macros to use _INVALID postfix: - UC_HOOK_MEM_READ_ERR -> UC_HOOK_MEM_READ_INVALID - UC_HOOK_MEM_WRITE_ERR -> UC_HOOK_MEM_WRITE_INVALID - UC_HOOK_MEM_FETCH_ERR -> UC_HOOK_MEM_FETCH_INVALID - UC_HOOK_MEM_ERR -> UC_HOOK_MEM_INVALID Fixed all the bindings Java, Go & Python.
40 lines
1.3 KiB
Python
Executable File
40 lines
1.3 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""See https://github.com/unicorn-engine/unicorn/issues/82"""
|
|
|
|
import unicorn
|
|
from unicorn import *
|
|
import regress
|
|
|
|
CODE_ADDR = 0x10101000
|
|
CODE = b'\xff\xe3' # jmp ebx
|
|
|
|
class JumEbxHang(regress.RegressTest):
|
|
|
|
def runTest(self):
|
|
mu = unicorn.Uc(unicorn.UC_ARCH_X86, unicorn.UC_MODE_32)
|
|
mu.mem_map(CODE_ADDR, 1024 * 4)
|
|
mu.mem_write(CODE_ADDR, CODE)
|
|
# If EBX is zero then an exception is raised, as expected
|
|
mu.reg_write(unicorn.x86_const.UC_X86_REG_EBX, 0x0)
|
|
|
|
print(">>> jmp ebx (ebx = 0)");
|
|
with self.assertRaises(UcError) as m:
|
|
mu.emu_start(CODE_ADDR, CODE_ADDR + 2, count=1)
|
|
|
|
self.assertEqual(m.exception.errno, unicorn.UC_ERR_FETCH_UNMAPPED)
|
|
|
|
print(">>> jmp ebx (ebx = 0xaa96a47f)");
|
|
mu = unicorn.Uc(unicorn.UC_ARCH_X86, unicorn.UC_MODE_32)
|
|
mu.mem_map(CODE_ADDR, 1024 * 4)
|
|
# If we write this address to EBX then the emulator hangs on emu_start
|
|
mu.reg_write(unicorn.x86_const.UC_X86_REG_EBX, 0xaa96a47f)
|
|
mu.mem_write(CODE_ADDR, CODE)
|
|
with self.assertRaises(UcError) as m:
|
|
mu.emu_start(CODE_ADDR, CODE_ADDR + 2, count=1)
|
|
|
|
self.assertEqual(m.exception.errno, unicorn.UC_ERR_FETCH_UNMAPPED)
|
|
|
|
if __name__ == '__main__':
|
|
regress.main()
|