我找到了一个可行的解决方案......我创建了一个 shim 库,它将调用重定向到第三方库,允许库外的代码看到 protbuf v2.4 符号,而第三方库内的代码看到 protobuf v2.3 符号。此解决方法基于此处发布的想法:http ://www.linuxjournal.com/article/7795
我不得不修改 dlopen 标志以包含 RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND。RTLD_LOCAL 标志可防止第三方库中的符号在 shim 库之外被看到(防止符号泄漏)。RTLD_DEEPBIND 强制来自 3rd 方库内部的调用仅查看符号的内部版本(防止符号泄漏)。
具体来说,这是我的 shim 库中的一个示例摘录。
#include <stdio.h>
#include <stdint.h>
#include <dlfcn.h>
#include "libhdfs/hdfs.h"
//#define PRINT_DEBUG_STUFF
// Helper function to retrieve a function pointer to a function from libMapRClient
// while isolating the symbols used internally from those already linked externaly
// to workaround symbol collision problem with the current version of libMapRClient.
void* GetFunc(const char* name){
#ifdef PRINT_DEBUG_STUFF
printf("redirecting %s\n", name);
#endif
void *handle;
char *error;
handle = dlopen("/opt/mapr/lib/libMapRClient.so", RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
if (!handle) {
fputs(dlerror(), stderr);
exit(1);
}
void* fp = dlsym(handle, name);
if ((error = dlerror()) != 0) {
fprintf(stderr, "%s\n", error);
exit(1);
}
return fp;
}
hdfsFS hdfsConnect(const char* host, tPort port) {
typedef hdfsFS (*FP) (const char* host, tPort port);
static FP ext = 0;
if (!ext) {
ext = (FP)GetFunc("hdfsConnect");
}
return ext(host, port);
}
int hdfsCloseFile(hdfsFS fs, hdfsFile file) {
typedef int (*FP) (hdfsFS fs, hdfsFile file);
static FP ext = 0;
if (!ext) {
ext = (FP)GetFunc("hdfsCloseFile");
}
return ext(fs, file);
}
...对于其他公共 API 函数,依此类推