我想替换我的程序使用 LD_PRELOAD 对 system() 函数的调用。
所以我在一个共享库中创建了以下包装函数进行测试。
// syshook.c
int system(const char * command)
{
printf("system() called for %s ************************************\n", command);
return 55;
}
char * getenv (const char* name)
{
printf("my getenv() *********************");
return 0;
}
并使用 gcc 编译并链接到共享对象 libsyshook.so。
gcc -Wall -fPIC -c *.c
gcc -shared -Wl,-soname,libsyshook.so -o libsyshook.so.1.0
ln -s libsyshook.so libsyshook.so.1.0
但是,当我使用 LD_PRELOAD 运行程序时,如下所示,我的 system() 包装函数没有被调用,而是 getenv() 的包装被调用。
LD_PRELOAD="libsyshook.so" myprog
当我附加调试器时,我可以看到 system() 调用,调用 libpthread.so 中的实现。那么为什么重定向 system() 不起作用。我认为这没有任何限制??
编辑:我上面编译到 myprog 的测试程序看起来像这样。评论表明了我的观察。
void TestClass::testMethod()
{
string cmdLine = "date";
if (!mainWin) cmdLine = "time";
int retFromSys = system(cmdLine.c_str()); // goes into libpthread when stepped in.
cout << "return from system " << retFromSys << endl; // prints 0, not 55
getenv("DEBUG_SYS"); // Wrapper function called for this. Prints "my getenv ****** ..."