I've intercepted(interposed) dlopen function under MacOS X and some other functions. I see how my applications calls dlopen in the log, but don't find anything related to open/read functions after dynamic library was dlopened. How does the system accesses and reads the dynamic library file? I've looked at the source code of dyld, and it does call open/read on dlopen. Can anybody let me know what I'm missing? intercepted functions: dlopen, open, read, write, access, all stat functions, close, etc.

thanks, any help is highly appreciated.

link|improve this question
How are you intercepting? strace? – Aryabhatta Feb 9 '10 at 8:08
no, using dyld interposing, through DYLD_INSERT_LIBRARIES environment variable. – zbencik Feb 9 '10 at 9:50
feedback

2 Answers

After dlopen() succeeds then dlsym() would typically be called to look up functions etc in the library.

link|improve this answer
yeah, I understand that part. The question is how the system reads out the library from the file system. I need to load application libraries from special storage container. I see the dlopen calls on my libraries, but no open/read functions – zbencik Feb 9 '10 at 9:52
In that case you can probably just pull the Darwin source and look at that, no ? opensource.apple.com – Paul R Feb 9 '10 at 10:08
feedback

Would you be kind enough to post he code by which you have made the interposition to work and how to compile it an load it into the target application? I am having a hard time working around it :=

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.