diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-11-13 07:28:12 -0800 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2012-11-13 07:28:12 -0800 |
commit | 59749d048d9e452f049f9151735b5256756919c3 (patch) | |
tree | 9b0935c93a3b028fd1dd35a2c632510743e7826f /TODO | |
download | ltrace-59749d048d9e452f049f9151735b5256756919c3.tar.gz ltrace-59749d048d9e452f049f9151735b5256756919c3.tar.bz2 ltrace-59749d048d9e452f049f9151735b5256756919c3.zip |
Imported Upstream version 0.5.3upstream/0.5.3
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -0,0 +1,36 @@ +* BFD: + + New executable formats + + Read list of libraries needed + + Read list of undefined symbols in executables + + Read list of exported symbols in libraries + + Read debugging info from executables/libraries +* Automatically update list of syscalls? +* Improve documentation +* Improve -e/-x options (regexp?) +* Improve -l option +* Improve C++ name demangling +* Display different argument types +* Update /etc/ltrace.conf +* More architectures, cleaner way to port +* More operating systems (solaris?) +* Option -I (inter-library calls) +* Modify ARGTYPE_STRING[0-5] types so that they don't stop displaying chars when '\0' is seen +* Get rid of EVENT_ARCH_SYSCALL and EVENT_ARCH_SYSRET +* Cleaner way to use breakpoints: + + BP is placed in the PLT + + When control hits there: + - write down return address + - change return address with another one (handled by ltrace) + - get arguments... + - change the process' PC to be in the correct place, + without removing breakpoint + + When control hits one of our return addresses: + - get return value... + - change PC to the right place +* To be able to work with processes sharing memory, we must: + + ptrace() every single thread + + place breakpoints only in places where the process control can continue + without having to remove it +* List source dependencies in Makefile +* Create different ltrace processes to trace different children +* After a clone(), syscalls may be seen as sysrets in s390 (see trace.c:syscall_p()) |