diff options
| author | Camille Mougey <commial@gmail.com> | 2015-01-29 12:17:28 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2015-01-29 12:17:28 +0100 |
| commit | a222d2a117898eaa91dd85758d4ef47a7af6ef52 (patch) | |
| tree | 1e333564f0e9dc71f155d3cb1e645b82e0e3423d /miasm2/jitter/jitload.py | |
| parent | a3900fe1a46b585771a576478ce47bc94e35537f (diff) | |
| parent | 2129672c245b886a420b3b4ac9f802d104cd1f98 (diff) | |
| download | miasm-a222d2a117898eaa91dd85758d4ef47a7af6ef52.tar.gz miasm-a222d2a117898eaa91dd85758d4ef47a7af6ef52.zip | |
Merge pull request #50 from serpilliere/api_lib_handler
Api lib handler
Diffstat (limited to '')
| -rw-r--r-- | miasm2/jitter/jitload.py | 39 |
1 files changed, 37 insertions, 2 deletions
diff --git a/miasm2/jitter/jitload.py b/miasm2/jitter/jitload.py index c297ba50..0405b46d 100644 --- a/miasm2/jitter/jitload.py +++ b/miasm2/jitter/jitload.py @@ -40,8 +40,10 @@ class CallbackHandler(object): self.callbacks = {} # Key -> [callback list] def add_callback(self, name, callback): - "Add a callback to the key 'name'" - self.callbacks[name] = self.callbacks.get(name, []) + [callback] + """Add a callback to the key @name, iff the @callback isn't already + assigned to it""" + if callback not in self.callbacks.get(name, []): + self.callbacks[name] = self.callbacks.get(name, []) + [callback] def set_callback(self, name, *args): "Set the list of callback for key 'name'" @@ -351,3 +353,36 @@ class jitter: """Set an unicode string in memory""" s = "\x00".join(list(s)) + '\x00' * 3 self.vm.set_mem(addr, s) + + @staticmethod + def handle_lib(jitter): + """Resolve the name of the function which cause the handler call. Then + call the corresponding handler from users callback. + """ + fname = jitter.libs.fad2cname[jitter.pc] + if fname in jitter.user_globals: + func = jitter.user_globals[fname] + else: + log.debug('%s' % repr(fname)) + raise ValueError('unknown api', hex(jitter.pc), repr(fname)) + func(jitter) + jitter.pc = getattr(jitter.cpu, jitter.ir_arch.pc.name) + return True + + def handle_function(self, f_addr): + """Add a brakpoint which will trigger the function handler""" + self.add_breakpoint(f_addr, self.handle_lib) + + def add_lib_handler(self, libs, user_globals=None): + """Add a function to handle libs call with breakpoints + @libs: libimp instance + @user_globals: dictionnary for defined user function + """ + if user_globals is None: + user_globals = {} + + self.libs = libs + self.user_globals = user_globals + + for f_addr in libs.fad2cname: + self.handle_function(f_addr) |