Fixed circular refs preventing Uc instances from being GC'd. Added a test case, requires `objgraph` module.

This commit is contained in:
hedger 2017-01-11 18:22:48 +03:00
parent 6378db99dc
commit d2b7d13443
2 changed files with 88 additions and 5 deletions

View File

@ -7,6 +7,7 @@ import pkg_resources
import inspect import inspect
import os.path import os.path
import sys import sys
import weakref
from . import x86_const, unicorn_const as uc from . import x86_const, unicorn_const as uc
@ -211,8 +212,27 @@ class uc_x86_xmm(ctypes.Structure):
("high_qword", ctypes.c_uint64), ("high_qword", ctypes.c_uint64),
] ]
# Subclassing ref to allow property assignment.
class UcRef(weakref.ref):
pass
# This class tracks Uc instance destruction and releases handles.
class UcCleanupManager(object):
def __init__(self):
self._refs = {}
def register(self, uc):
ref = UcRef(uc, self._finalizer)
ref._uch = uc._uch
self._refs[id(ref)] = ref
def _finalizer(self, ref):
del self._refs[id(ref)]
Uc.release_handle(ref._uch)
class Uc(object): class Uc(object):
_cleanup = UcCleanupManager()
def __init__(self, arch, mode): def __init__(self, arch, mode):
# verify version compatibility with the core before doing anything # verify version compatibility with the core before doing anything
(major, minor, _combined) = uc_version() (major, minor, _combined) = uc_version()
@ -231,13 +251,13 @@ class Uc(object):
self._callbacks = {} self._callbacks = {}
self._ctype_cbs = {} self._ctype_cbs = {}
self._callback_count = 0 self._callback_count = 0
self._cleanup.register(self)
# destructor to be called automatically when object is destroyed. @staticmethod
def __del__(self): def release_handle(uch):
if self._uch: if uch:
try: try:
status = _uc.uc_close(self._uch) status = _uc.uc_close(uch)
self._uch = None
if status != uc.UC_ERR_OK: if status != uc.UC_ERR_OK:
raise UcError(status) raise UcError(status)
except: # _uc might be pulled from under our feet except: # _uc might be pulled from under our feet

View File

@ -0,0 +1,63 @@
#!/usr/bin/python
from __future__ import print_function
import time
from unicorn import *
from unicorn.x86_const import *
import objgraph
import regress
ADDRESS = 0x8048000
STACK_ADDRESS = 0xffff000
STACK_SIZE = 4096
'''
31 DB xor ebx, ebx
53 push ebx
43 inc ebx
53 push ebx
6A 02 push 2
6A 66 push 66h
58 pop eax
89 E1 mov ecx, esp
CD 80 int 80h
'''
CODE = "\x31\xDB\x53\x43\x53\x6A\x02\x6A\x66\x58\x89\xE1\xCD\x80"
EP = ADDRESS + 0x54
def hook_code(mu, address, size, user_data):
print(">>> Tracing instruction at 0x%x, instruction size = %u" %(address, size))
def emu_loop():
emu = Uc(UC_ARCH_X86, UC_MODE_32)
emu.mem_map(ADDRESS, 0x1000)
emu.mem_write(EP, CODE)
emu.mem_map(STACK_ADDRESS, STACK_SIZE)
emu.reg_write(UC_X86_REG_ESP, STACK_ADDRESS + STACK_SIZE)
i = emu.hook_add(UC_HOOK_CODE, hook_code, None)
emu.hook_del(i)
emu.emu_start(EP, EP + len(CODE), count = 3)
print("EIP: 0x%x" % emu.reg_read(UC_X86_REG_EIP))
def debugMem():
import gc
gc.collect() # don't care about stuff that would be garbage collected properly
#print("Orphaned objects in gc.garbage:", gc.garbage)
assert(len(objgraph.by_type("Uc")) == 0)
#assert(len(objgraph.get_leaking_objects()) == 0)
class EmuLoopReferenceTest(regress.RegressTest):
def runTest(self):
for i in range(5):
emu_loop()
debugMem()
if __name__ == '__main__':
regress.main()