1

我需要检查我的应用程序是否通过在 OpenOnload 下运行来加速。限制是不能使用特定于 Onload 的 API - 应用程序未与 Onload 扩展库链接。

如何做到这一点?

4

2 回答 2

2

OpenOnload 可以通过预加载的共享库的存在来检测libonload.so

在这种情况下,您的应用程序环境将包含LD_PRELOAD=libonload.so字符串。

或者您可以枚举所有加载的共享库并检查libonload.so.

#include <string>
#include <fstream>
#include <iostream>

// Checks is specific SO loaded in current process.
bool is_so_loaded(const std::string& so_name)
{
    const std::string proc_path = "/proc/self/maps";
    std::ifstream proc(proc_path);

    std::string str;
    while (std::getline(proc, str))
    {
        if (str.find(so_name) != std::string::npos) return true;
    }

    return false;
}

int main()
{
    std::cout
        << "Running with OpenOnload: "
        << (is_so_loaded("/libonload.so") ? "Yes" : "No")
        << std::endl;
    return 0;
}
于 2017-01-14T15:51:40.167 回答
0

只需使用默认的共享对象搜索顺序搜索符号“onload_is_present”,如果预加载了 onload,它将返回一个有效地址。

bool IsOnloadPresent()
{
   void* pIsOnloadPresent = dlsym(RTLD_DEFAULT, "onload_is_present");
   if(pIsOnloadPresent == NULL)
       return false;
   return true;
}
于 2020-08-04T10:12:19.970 回答