I am trying to write a program that allows a binary to be run, substituting a certain file when requested with another. It is a library with simple replacements for the system call functions, that is used with LD_PRELOAD. The problem is that it catches opens for reading (the substitute file is read instead), but writes always go back to the actual, specified file. Are there any other "open" system calls I should know about?
Problem replacing Linux system calls using LD_PRELOAD
1.6k Views Asked by c4757p At
4
There are 4 best solutions below
0

I am not sure what the cause of your problem is, but using strace on your program might give some insight. It should be part of any sane Linux distribution.
0

substituting a certain file when requested with another
Sounds like you check only for the input file (do you check by filename?). You need to check and substitute the output file, too.
If you output goes to one of the standard outputs, then you need to close and reopen them with your output substitute) before you fork into the executable.
To find all system calls that your executable makes you can use strace.
To find all library calls that your executable makes you can use ltrace.
Nevermind -- stupid mistake.
Wasn't checking both absolute and relative paths...