I am trying to LD_PRELOAD functions such as mmap, read, open, clone etc..., but while some function do get LD_PRELOADed successfully, others don't. For example mmap, read and open are perfectly being preloaded but clone is not, while I know for sure clone is being called from my program as reported by strace, since I'm using pthreads. What is the reason for clone not being LD_PRELOADed here?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
Indeed,
Instead you should LD_PRELOAD-override |
||||
|
cloneis not being preloaded? How did you determine the others are being preloaded? – Thomas M. DuBuisson Jun 25 '12 at 15:46straceshows system calls -- which afaik is different from a call to the C wrapper which you are trying to replace. One thing you may want to check is the address ofclone()and compare against/proc/<pid>/mapsto see for sure which library is being used. It's possible the system call is not being made via theclone()wrapper function. – FatalError Jun 25 '12 at 16:03