I've been asked to implement a tool ( for linux ) which helps with the memory management of C/C++ programs. Main objective is to track down memory leaks but I am also checking for overlapping arguments to memcpy among other things.

I actually need my versions to intercept all calls to these functions ( from other libraries for example ) so I actually need to override them. So I can't use the #define trick suggested in all the posts. My question is how I am going to find the original source file name , function where the call was made and the line number.

My only idea so far is to compile the program with debugging info and start digging in on the object file ( ELF as I am using linux ). I've never played with object files and I only know the basics of assembly language so this seems a pretty hefty task.

Is there any other easier way to achieve this? If not anyone who has worked on something similar can help me get it started :)?.

Thank you

link|improve this question

4  
So, you want to write something like valgrind? It is open-source, so you could check out how they did it. Or just use it. – R. Martinho Fernandes Feb 7 '11 at 14:50
3  
May I ask why not use Valgrind? Unless this is a university assignment or something similar, I don't see why you should implement something that's already been done and is tried and tested. – darioo Feb 7 '11 at 14:50
Yes this is a university assignment ^^. But thank you , I am gonna check Valgrinds source and see how far I get :). If anyone has any more useful pointers I would still appreciate your help. Thanks – SpotsWood Feb 7 '11 at 15:06
For memcpy checking, you could use the GNU linker's --wrap option to wrap memcpy with a function that checks its arguments. There is no portable way to wrap or redefine standard functions, and this is less ugly than other approaches. You might also need -fno-builtin to prevent gcc from generating inline code for some memcpy calls. – R.. Feb 7 '11 at 18:30
feedback

1 Answer

up vote 2 down vote accepted

Since you're on Linux, you can use glibc's malloc hook support. A working example is also provided on that page.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.