gpt4 book ai didi

c++ - 在加载了 dlopen 的库中使用 std::thread 会导致 sigsegv

转载 作者:可可西里 更新时间:2023-11-01 17:49:11 24 4
gpt4 key购买 nike

我最近在使用 std::threaddlopen 时发现了一个奇怪的行为。

基本上,当我在使用 dlopen 加载的库中执行 std::thread 时,我会收到一个 sigsev。库本身链接到 pthread,调用 dlopen 的可执行文件不是。

一旦我将可执行文件链接到 pthread 或库本身,一切正常。然而,我们使用的是基于插件的基础架构,我们不知道应用程序本身是否链接到 pthread。因此,始终将可执行文件链接到 pthread 不是一个选项。

请找到附件中的一些代码来重现问题。目前我不确定是什么原因导致了这个问题。是 gcc、glibc、libstdc++ 还是 ld.so 的问题?有没有一种方便的方法来解决这个问题?我看起来像这样glibc bug是相关的,但我使用的是 glibc2.27(debian 测试)。

从库中调用 pthread_create 本身似乎可行。

你好.cpp

#include <thread>
#include <iostream>

void thread()
{
std::thread t ([](){std::cout << "hello world" << std::endl;});
t.join();
}

extern "C" {
void hello()
{
thread();
}
}

例子.cpp

#include <iostream>
#include <dlfcn.h>

/** code from https://www.tldp.org/HOWTO/html_single/C++-dlopen/
*/
int main() {

std::cout << "C++ dlopen demo\n\n";

// open the library
std::cout << "Opening hello.so...\n";
void* handle = dlopen("./libhello.so", RTLD_LAZY);

if (!handle) {
std::cerr << "Cannot open library: " << dlerror() << '\n';
return 1;
}

// load the symbol
std::cout << "Loading symbol hello...\n";
typedef void (*hello_t)();

// reset errors
dlerror();
hello_t hello = (hello_t) dlsym(handle, "hello");
const char *dlsym_error = dlerror();
if (dlsym_error) {
std::cerr << "Cannot load symbol 'hello': " << dlsym_error <<
'\n';
dlclose(handle);
return 1;
}

// use it to do the calculation
std::cout << "Calling hello...\n";
hello();

// close the library
std::cout << "Closing library...\n";
dlclose(handle);
}

build.sh(构建并执行上面的示例。示例 1 崩溃)

#!/bin/bash

echo "g++ -shared -fPIC -std=c++14 hello.cpp -o libhello.so -pthread"
g++ -shared -fPIC -std=c++14 hello.cpp -o libhello.so -pthread

echo "g++ example.cpp -o example1 -ldl"
g++ example.cpp -o example1 -ldl

echo "g++ example.cpp -o example2 -ldl -pthread"
g++ example.cpp -o example2 -ldl -pthread

echo "g++ example.cpp -o example3 -ldl -lhello -L ./"
g++ example.cpp -o example3 -ldl -lhello -L ./

export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:$(pwd)

echo "===== example1 ====="
./example1
echo "===== end ====="

echo "===== example2 ====="
./example2
echo "===== end ====="

echo "===== example3 ====="
./example3
echo "===== end ====="

编辑

我忘了提及:如果我使用 LD_DEBUG=all 运行错误示例(即示例 1),程序会在查找 pthread_create 期间崩溃。更有趣的是,之前对 pthread_create 的查找成功了:

  8111:     symbol=_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_;  lookup in file=/usr/lib/x86_64-linux-gnu/libstdc++.so.6 [0]
8111: binding file ./libhello.so [0] to /usr/lib/x86_64-linux-gnu/libstdc++.so.6 [0]: normal symbol `_ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_' [GLIBCXX_3.4]
8111: symbol=pthread_create; lookup in file=./example1 [0]
8111: symbol=pthread_create; lookup in file=/lib/x86_64-linux-gnu/libdl.so.2 [0]
8111: symbol=pthread_create; lookup in file=/usr/lib/x86_64-linux-gnu/libstdc++.so.6 [0]
8111: symbol=pthread_create; lookup in file=/lib/x86_64-linux-gnu/libm.so.6 [0]
8111: symbol=pthread_create; lookup in file=/lib/x86_64-linux-gnu/libgcc_s.so.1 [0]
8111: symbol=pthread_create; lookup in file=/lib/x86_64-linux-gnu/libc.so.6 [0]
8111: symbol=pthread_create; lookup in file=/lib64/ld-linux-x86-64.so.2 [0]
8111: symbol=pthread_create; lookup in file=./libhello.so [0]
8111: symbol=pthread_create; lookup in file=/usr/lib/x86_64-linux-gnu/libstdc++.so.6 [0]
8111: symbol=pthread_create; lookup in file=/lib/x86_64-linux-gnu/libm.so.6 [0]
8111: symbol=pthread_create; lookup in file=/lib/x86_64-linux-gnu/libgcc_s.so.1 [0]
8111: symbol=pthread_create; lookup in file=/lib/x86_64-linux-gnu/libpthread.so.0 [0]
8111: binding file ./libhello.so [0] to /lib/x86_64-linux-gnu/libpthread.so.0 [0]: normal symbol `pthread_create' [GLIBC_2.2.5]
8111: symbol=_ZTVNSt6thread6_StateE; lookup in file=./example1 [0]
8111: symbol=_ZTVNSt6thread6_StateE; lookup in file=/lib/x86_64-linux-gnu/libdl.so.2 [0]
8111: symbol=_ZTVNSt6thread6_StateE; lookup in file=/usr/lib/x86_64-linux-gnu/libstdc++.so.6 [0]
8111: binding file ./libhello.so [0] to /usr/lib/x86_64-linux-gnu/libstdc++.so.6 [0]: normal symbol `_ZTVNSt6thread6_StateE' [GLIBCXX_3.4.22]
...
8111: binding file ./libhello.so [0] to ./libhello.so [0]: normal symbol `_ZNSt10_Head_baseILm0EPNSt6thread6_StateELb0EE7_M_headERS3_'
8111: symbol=_ZNSt6thread15_M_start_threadESt10unique_ptrINS_6_StateESt14default_deleteIS1_EEPFvvE; lookup in file=./example1 [0]
8111: symbol=_ZNSt6thread15_M_start_threadESt10unique_ptrINS_6_StateESt14default_deleteIS1_EEPFvvE; lookup in file=/lib/x86_64-linux-gnu/libdl.so.2 [0]
8111: symbol=_ZNSt6thread15_M_start_threadESt10unique_ptrINS_6_StateESt14default_deleteIS1_EEPFvvE; lookup in file=/usr/lib/x86_64-linux-gnu/libstdc++.so.6 [0]
8111: binding file ./libhello.so [0] to /usr/lib/x86_64-linux-gnu/libstdc++.so.6 [0]: normal symbol `_ZNSt6thread15_M_start_threadESt10unique_ptrINS_6_StateESt14default_deleteIS1_EEPFvvE' [GLIBCXX_3.4.22]
8111: symbol=pthread_create; lookup in file=./example1 [0]
8111: symbol=pthread_create; lookup in file=/lib/x86_64-linux-gnu/libdl.so.2 [0]
8111: symbol=pthread_create; lookup in file=/usr/lib/x86_64-linux-gnu/libstdc++.so.6 [0]
8111: symbol=pthread_create; lookup in file=/lib/x86_64-linux-gnu/libm.so.6 [0]
8111: symbol=pthread_create; lookup in file=/lib/x86_64-linux-gnu/libgcc_s.so.1 [0]
8111: symbol=pthread_create; lookup in file=/lib/x86_64-linux-gnu/libc.so.6 [0]
8111: symbol=pthread_create; lookup in file=/lib64/ld-linux-x86-64.so.2 [0]
./build.sh: line 18: 8111 Segmentation fault (core dumped) LD_DEBUG=all ./example1
===== end =====

最佳答案

我可以提供一些关于为什么会出现段错误的背景,但遗憾的是没有解决方案。

这似乎是 libstdc++ 的问题:从技术上讲,这个巨大的单体库依赖于 libpthread,但出于充分的理由,它们不链接到 libpthread 。现在,为了能够从根本不使用线程的程序中加载 libstdc++,丢失的符号(例如 pthread_create)必须出现在某个地方。所以 libstdc++ 将它们定义为弱符号。

这些弱符号还用于在运行时检测 libpthread 是否实际加载。对于旧的 ABI,甚至有一个 check in _M_start_thread如果未加载 pthread 而不是调用弱定义的 nullptr ,这会导致有意义的异常 - 我不希望我最坏的敌人发生这种情况。

不幸的是,新 ABI 的运行时检查丢失了。相反,有一个 link-time check对于 pthread_create,通过在编译调用 _M_start_thread 的代码时创建依赖项,并将指向 pthread_create 的指针传递给此函数。不幸的是,该指针被丢弃了,仍然使用了仍然很弱的 nullptr 指针。

现在链接/加载过程中的某些事情导致弱定义的 pthread_create 在您的有问题的情况下不会被覆盖。我不确定适用于那里的确切解析规则 - 我假设它与 libstdc++ 在加载 libpthread 时已经完全加载有关。如果有任何其他答案可以澄清这一点,我将很高兴。不幸的是,除了将主应用程序与 -lpthreadLD_PRELOAD=libpthread.so 链接(我真的不推荐).

关于c++ - 在加载了 dlopen 的库中使用 std::thread 会导致 sigsegv,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51209268/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com