POSIX function to dynamically load a library or binary into memory

learn more… | top users | synonyms

0
votes
0answers
4 views

why the DSO was loaded at address 0

There is a simple test program,it dlopen()s a DSO "/lib/libc.so.6" and then print the address of symbol "printf". #include <dlfcn.h> #include <stdio.h> int main() { void* handle; ...
0
votes
0answers
16 views

Hiding symbols from binary

Good day! I have binary, in which lib foo is statically compiled. Then, in runtime I dlopen bar.so, which dependencies include foo.so. Can I somehow "hide" symbols from statically compiled foo and ...
0
votes
2answers
19 views

can`t find symbol “dlopen” in libc.so

I can`t find symbol "dlopen" in libc.so There is only symbol "_dlfcn_hooks" in libc.so,but how can ld find "dlopen"? What is the relationship between "dlopen" and "_dlfcn_hooks"?
1
vote
0answers
46 views

How to dynamic load the library with same name but in different directory in Linux?

I have to dynamic load .so in Linux, but I find it is difficult to deal with the same name libraries. I have 2 libtest.so in different directories and they are depend on other different libraries. My ...
1
vote
0answers
49 views

How can I check a running process to see what shared libraries it is using?

On Linux, I have a C++ application that is using dlopen() to load some shared libraries, but I'm suspicious that the version of the shared library being loaded is not the one I expect because my ...
0
votes
1answer
31 views

Checking type of variables in dynamically loaded shared libraries in C/C++

I'm working on a test environment of a C library. The library extensively use global variables, what I want to check in the test codes. Unfortunately I have to load the library dynamically (using ...
0
votes
1answer
51 views

How to export specific symbol from executables in GNU/Linux

While loading dynamic libraries by ::dlopen(), exporting symbols from executables can be done by -rdynamic option, but it exports all the symbols of the executable, which results in bigger binary ...
0
votes
2answers
80 views

IOKit using dlopen

In my app I'm getting battery infos using this way (via IOKit). static void print_raw_battery_state(io_registry_entry_t b_reg) { CFBooleanRef boo; CFNumberRef n; int ...
1
vote
1answer
64 views

C Shared Object, With C++ Archive, Static Ctors/Dtors, and dlopen

I have a C shared object I'm loading with dlopen. The C shared object includes another library as a static archive (fully specified path /usr/local/.../libsomelib.a). libsomelib.a is a C++ library and ...
0
votes
1answer
45 views

Call dlopen with file descriptor?

I want to open a shared object as a data file and perform a verification check on it. The verification is a signature check, and I sign the shared object. If the verification is successful, I would ...
0
votes
0answers
40 views

Strange error returned by dlopen

My program is built statically(boost_system, boost_filesystem, boost_thread), and later, it will load some dynamic shared library, containing new functions. Such dynamic shared libraries will be ...
1
vote
1answer
25 views

access symbols inside application from within shared object Windows/MinGW

This is my first post and I am trying to adhere to the forum rules. I know this question has been asked a number of times before, but the provided solutions do not work for me. I am not quite sure why ...
1
vote
1answer
64 views

Loading Linux libraries at runtime

I think a major design flaw in Linux is the shared object hell when it comes to distributing programs in binary instead of source code form. Here is my specific problem: I want to publish a Linux ...
1
vote
1answer
89 views

static variable destructor invoked before library destructor

consider the following code for a dynamic loaded library built with g++-4.7 on linux, -fPIC and linked with -rdynamic option: struct Wrapper { libraryUnregisterCbMap_t instance; ...
0
votes
0answers
52 views

dlopen load library correct,but run the program,the result is incorrect

I use dlopen, dlsym load library function. When I run the program, I met this problem: use dlopen load function, call the function correct but the result is incorrect don't use dlopen and call the ...
0
votes
1answer
46 views

How to make dlerror() report *all* unresolved symbols from dlopen() failure to load shared library?

I'm trying to report all unresolved symbols from a failed call to dlopen() on a shared library. I've tried both RTLD_LAZY and RTLD_NOW as flags to the dlopen call. I know the shared library has 10 ...
1
vote
1answer
19 views

code segment referenced again with second plugin crashes

I'd like to understand the dynamic-linker/loader behaviour on Linux box in the problematic case I work upon. Our code that crashes is loaded as a plugin (dlopen(libwrapper.so, RTLD_GLOBAL)). ...
0
votes
1answer
31 views

undefined symbol: PyOS_InputHook, from shared library

I wrote a C++ "python plugin" for an a non-python C++ application. At some point, this plugin, which is a .so, initializes the python interpreter and opens a python console. For convenience the ...
4
votes
2answers
128 views

c/c++ Linux equivalent of “bool DllMain()” - but I need to return failure to dlopen()

I am porting a DLL from Windows to Linux (OS X actually). I used this StackOverflow article to do that change. i.e. I've ported the Windows "bool DllMain()" to the Linux way: ...
1
vote
2answers
86 views

What is diiference between shared library (.so) loading using dlopen() and including the shared library in executable?

What is difference between: Loading an Shared library using dlopen() available in dlfcn.h Including the shared library in Android.mk file while building the executable. Code example: Android.mk ...
2
votes
2answers
110 views

How can I get more information about symbol by it's address in memory

I'm trying to get the symbol name by its address in memory. I use int dladdr(void *addr, Dl_info *info) function from dlfcn.h to get the information: typedef struct { const char *dli_fname; /* ...
0
votes
1answer
49 views

Make local c library function accessable globally

I'm using a C library called GLC to record my OpenGL buffer programmatically. GLC listens to key presses, which is not really a nice solution to trigger programmatically. Therefore I want to execute ...
1
vote
2answers
68 views

cannot load a shared library at runtime

foo.h #ifndef foo_h__ #define foo_h__ extern void foo(void); #endif foo.c #include <stdio.h> #include "foo.h" void foo(void) { puts("Hello, I'm a shared library"); } compiled ...
0
votes
1answer
28 views

undefined reference to dlopen using djgpp

When I tried to compiled sqlite3 uding djgpp, it gives error undefined reference to dlopen, undefined reference to dlclose, undefined reference to dlsym etc. On Linux if we use -ldl the problem is ...
1
vote
1answer
180 views

Cannot load any more object with static TLS

I have an application that use dlopen() to load additional modules. The application and modules are built on Ubuntu 12.04 x86_64 using gcc 4.6 but for i386 arch. The binaries are then copied to ...
0
votes
1answer
69 views

dylib or executable export list

I am writing a plugins subsystem and one of the ideas is to iterate through a dylib (or at least current global scope) exported functions. I know there are other ways, just really want to give this ...
4
votes
1answer
98 views

Lua: C++ modules can't reference eachother, undefined symbol

I've created two modules (shared objects) CPU and SaveState as part of an emulator. Both are independently compiled into .so separate files, and loaded at runtime by a Lua script using require(); ...
0
votes
0answers
70 views

Certain GLX calls in one dynamic library segfault unless first called in another library

I'm trying to create an application which uses OpenGL but dynamically chooses the window system, window system binding, and OpenGL profile (i.e. Xlib+GLX+OpenGL, Xlib+EGL+OpenGL, Xlib+EGL+OpenGLES, ...
0
votes
1answer
108 views

Reloading a library using dynamic loading in C++

If I open a library using dynamic loading in C++, can I later reload an updated version of that same library? I would test this myself, but I am curious about it's feasibility before I start looking ...
1
vote
1answer
97 views

Are shared libraries loaded with dlopen automatically closed?

If I open a dynamic library using dlopen and my program terminates without a corresponding dlclose, will the reference count be decremented? If not, what happens? Will the library remain loaded until ...
0
votes
0answers
109 views

failed to map segment from shared object

I am facing problems to load a so file. the issue is that the file is there and is having for the second share file. The first *.so is load succesfully but the second one is giving me this error: ...
1
vote
1answer
103 views

Use dlsym on a static binary

Is there any hope of running dlopen(NULL, ...) and getting symbols for a statically compiled binary? For example, with the following code I can get symbols if the program is compiled dynamically and ...
0
votes
1answer
160 views

APK with two shared objects inside

According to docs/PREBUILTS.html it is allowed to use prebuilt shared objects in NDK apps. So I tried to have my NDK app import a function from a second shared object but as soon as I use a second ...
0
votes
1answer
88 views

Error with dlopen

i'm loading dynamic lib (in python via ctypes) and get such error: OSError: dlopen(mlib.dylib, 6): Symbol not found: _NSLocalizedDescriptionKey Referenced from: /Users/abc/work/as/mlib.dylib ...
0
votes
2answers
92 views

Force mapping between symbols and shared libraries

I have an executable with four shared libraries and the dependency tree look like this: Executable app does a dlopen of foo.so and bar.so. foo.so in turn links to fooHelper.so and bar.so links to ...
0
votes
2answers
104 views

C - parsing text and calling functions

i have followind problem. I have text parser located in parser.o library. I would like to parse some text(find functions) and call them. Functions are implemented in functions.o file. I am able to ...
1
vote
3answers
97 views

Check compatibility of dynamic library at runtime

I am developing a C++ application which is required to load a dynamic library at runtime using dlopen. This library generally won't be written by me. What method do people recommend to ensure future ...
3
votes
1answer
192 views

dlopen: cannot load any more object with static TLS

I have a large mixed java/c++ application that loads multiple shared libs into java. It works fine on my Ubuntu 12.04 32-bit machine, but I'm having problems getting things to work on a Fedora 17 ...
0
votes
1answer
131 views

OSX: Unable to resolve dependency using dlopen()

I have a library libni on OSX I'm trying to open using dlopen(), and it can't seem to resolve the dependencies to another dlopen()'d library. Lets not get into why you shouldn't use dlopen(); suffice ...
3
votes
0answers
163 views

How to use RTLD_DEEPBIND when invoke implicitly?

Now i have 3 shared objects,A.so,B.so,C.so A.c void libA() { common(); } B.c void common() { printf("COME HERE B\n"); } C.c ...
1
vote
0answers
114 views

dlopen and global variables visiblity in C [closed]

I got some source code with an exe and a lib, it's been working for a while on Linux and Windows. Now I've tried to compile it with GNU C Compiler 4.4.5 and a strange problem has appeared. I use a ...
2
votes
2answers
1k views

dlopen - Undefined symbol error

I'm using dlopen to load a shared library at run time dlopen("SharedLibarary1.so", RTLD_NOW | RTLD_GLOBAL); In that shared object I refer to a const char* defined in another shared library ...
0
votes
1answer
920 views

C++: Undefined symbols when loading shared library with dlopen()

I have an issue when I try to use dlopen() to load a shared library into another shared library. I checked all tutorials on how to use dlopen() correctly. So here is the simplified code: The main ...
0
votes
1answer
177 views

How do I symbolicate from a list of libraries and addresses in them?

I'm trying to symbolicate a crash log on my device. I have the stack frames, the instruction pointer addresses for each frame, the module that the IP was in, and the offset into that module. My plan ...
2
votes
1answer
364 views

Is there a way for dlopen to reload a dylib file on iOS?

As the title says... I'm interested in dlopen(). I understand this isn't allowed by the app store but I'm curious about this on iOS. The issue I have is that I can create a .dylib file and I can load ...
0
votes
0answers
80 views

RPy2 in Embedded Python: dlopen: cannot load any more object with static TLS

In short: I am running an embedded python interpreter and simply want to import rpy2. However the python interpreter crashes with the following error message: tempScript.py:(1): import rpy2.robjects ...
1
vote
2answers
169 views

Address range of a dynamically loaded library under Linux

I have a working program that loads plugins with dlopen. New requirement: at some point in the code, I'm given a pointer, and I need to test whether this pointer points into the code or static data ...
0
votes
0answers
64 views

dlopen() terminates without any error codes or messages. Process Exit status 99

I have a section of code that does this printf("Starting here ......"); hndl0 = dlopen("/usr/lib/libcffitest.so",RTLD_NOW | RTLD_GLOBAL); if ( hndl0 == NULL ){ fprintf(stderr,"%s dlopen failure: ...
1
vote
2answers
236 views

Weak dependency on shared library on Linux

I want to make my executable to be "optionally dependent" on other shared object. Thus it will be able to run without some symbols if DSO is absent. I can achieve this with dlopen/dlsym calls but I ...
3
votes
1answer
297 views

dlopen malloc deadlock

We have some unit tests that often deadlock. Closer inspection with GDB reveals the following: Thread 1: (gdb) bt #0 0x00110424 in __kernel_vsyscall () #1 0x00c681a3 in __lll_lock_wait_private () ...

1 2 3 4