dlopen崩溃(接收SIGBUS)

时间:2015-07-21 16:24:00

标签: c linux dbus dlopen

我的一个应用程序因SIGBUS信号而崩溃。 以下是来自gdb的堆栈跟踪。基本上,dlopen调用失败了。我正在运行CentOS 6.3 64位。

Program received signal SIGBUS, Bus error.
0x0000003cfc6175de in strcpy () from /lib64/ld-linux-x86-64.so.2
Missing separate debuginfos, use: debuginfo-install glibc-2.12-1.149.el6_6.9.x86_64 libgcc-4.4.7-11.el6.x86_64 libstdc++-4.4.7-11.el6.x86_64
(gdb) bt
#0  0x0000003cfc6175de in strcpy () from /lib64/ld-linux-x86-64.so.2
#1  0x0000003cfc6090b2 in _dl_load_cache_lookup () from /lib64/ld-linux-x86-64.so.2
#2  0x0000003cfc608612 in _dl_map_object () from /lib64/ld-linux-x86-64.so.2
#3  0x0000003cfc612b05 in dl_open_worker () from /lib64/ld-linux-x86-64.so.2
#4  0x0000003cfc60e266 in _dl_catch_error () from /lib64/ld-linux-x86-64.so.2
#5  0x0000003cfc6125aa in _dl_open () from /lib64/ld-linux-x86-64.so.2
#6  0x0000003cfca00f66 in dlopen_doit () from /lib64/libdl.so.2
#7  0x0000003cfc60e266 in _dl_catch_error () from /lib64/ld-linux-x86-64.so.2
#8  0x0000003cfca0129c in _dlerror_run () from /lib64/libdl.so.2
#9  0x0000003cfca00ee1 in dlopen@@GLIBC_2.2.5 () from /lib64/libdl.so.2
#10 0x00000000004b4425 in my_open_dbus_func (f_name=0x558f2d "libdbus-glib-1.so.2")

我尝试用这两行编写一个简单的程序,效果很好:

void * h = dlopen( "libdbus-glib-1.so.2", RTLD_LAZY );
dlclose( h );

我也尝试在valgrind下运行我的原始应用程序,它没有任何问题。

非常感谢任何帮助/指示。

2 个答案:

答案 0 :(得分:1)

看来其中一个静态库(来自第三方的vedor)正在进行阴暗的内存管理,它以某种方式导致我的dlopen调用崩溃。编写代码是为了选择虚拟环境。在valgrind上可以很容易地检测到这个问题,但如果应用程序在valgrind下运行,第三方库将采用不同的代码路径(考虑到valgrind是物理机器)

不幸的是,我不知道他们在静态库中修复了什么,但似乎有效。我正在写这个答案(并接受它)以避免进一步混淆。

答案 1 :(得分:0)

尝试在h之后检查dlopen是否不为空。我可能认为dlclose可能会因为作为参数给出的NULL指针而崩溃。