Skip to content
Advertisement

Segmentation fault appears when I use shared memory only from statically build program

When I built a program with –static option and it calls shm_open() function I get Segmentation fault. Without -static option all works like a charm.

Does anybody know why?

Below I have cited a debug info and a part of truncated source code from a big project.

You can comment/uncomment

JavaScript

string from Makefile to reproduce the bug.

$ gdb –args ./debug/example sample017

JavaScript

Strace for statically linked

$strace ./debug/example sample017

JavaScript

Strace for dynamically linked:

$ strace ./debug/example sample017

JavaScript

Compiler:

JavaScript

Linux:

JavaScript

$cat main.c

JavaScript

$cat Makefile

JavaScript

By the way, is is works well on the older platform:

Linux:

JavaScript

Compiler:

JavaScript

Advertisement

Answer

You’ve uncovered a bug in how the static librt.a and libpthread.a interact. (librt.a:shm_open() calls it, and it is defined in libpthread.a. Their dynamic versions link it just fine.)

Specifically, libpthread.a does implement const char *__shm_directory(size_t *len);, but for whatever reason, it gets mislinked somehow, causing a segfault. I suspect some kind of weak symbol shadowing, but haven’t investigated it much further.

The fix is to implement the function yourself. It is a simple function, that returns the path to the directory, including a final slash, where the shared memory files are to be created in. On Linux systems, this should always be a tmpfs mount at /dev/shm/.

I would suggest creating a new C source file, maybe shm_open_fix.c:

JavaScript

and compile and link it into your final binary. This should take care of the segfault. Also, the resulting binary no longer depends on libpthread.a at all, unless you use the pthread functions elsewhere in your code.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement