Tagged Questions
POSIX function to dynamically load a library or binary into memory
16
votes
3answers
501 views
building a .so that is also an executable
So everyone probably knows that glibc's /lib/libc.so.6 can be executed in the shell like a normal executable in which cases it prints its version information and exits. This is done via defining an ...
10
votes
1answer
602 views
dlclose does not call destructor
plugin1.cpp:
#include <iostream>
static class TestStatic {
public:
TestStatic() {
std::cout << "TestStatic create" << std::endl;
}
~TestStatic() {
std::cout ...
9
votes
5answers
759 views
Using dlopen, how can I cope with changes to the library file I have loaded?
I have a program written in C++ which uses dlopen to load a dynamic library (Linux, i386, .so). When the library file is subsequently modified, my program tends to crash. This is understandable, ...
8
votes
1answer
671 views
python c extension, problems with dlopen on mac os
I've taken a library that is distributed as a binary lib (.a) and header, written some c++ code against it, and want to wrap the results up in a python module.
I've done this here.
The problem is ...
7
votes
3answers
195 views
How to get the absolute library file name corresponding to a relative path given to dlopen?
In my program I have code like the following
/* libname may be a relative path */
void loadLib(char const *libname) {
void *handle = dlopen(libname);
/* ... */
dlclose(handle);
}
Within /* ...
7
votes
2answers
2k views
Finding dylib version using dlopen
Is there a way to find the version of a dylib using its path? I am looking for something that accepts the same arguments as dlopen. I have looked at NSVersionOfRunTimeLibrary, but from my reading of ...
6
votes
1answer
211 views
Why does this dynamic library loading code work with gcc?
Background:
I've found myself with the unenviable task of porting a C++ GNU/Linux application over to Windows. One of the things this application does is search for shared libraries on specific paths ...
6
votes
3answers
391 views
dlopen from memory?
I'm looking for a way to load generated object code directly from memory.
I understand that if I write it to a file, I can call dlopen to dynamically load its symbols and link them. However, this ...
5
votes
1answer
116 views
Undefined symbol when trying to load a library with dlopen
I'm trying to load a shared library (plugin) I was provided (closed source) with dlopen under a Linux ARM platform. I'm trying to load this way:
void* handle = ...
5
votes
2answers
160 views
How can a Solaris process read its own symbol table?
I have a Solaris process, which is a C++ application that is loaded by ld with a few .so libraries. This application has a function that gets a return address in the calling function and then tries to ...
5
votes
3answers
121 views
Catching a system call just before control enters a shared library
I have wrapped a number of system call function like write(), open() etc and LD-PRELOAD is used to override the original system calls. Moreover I have defined a few more functions and made this too a ...
5
votes
2answers
450 views
typeinfo, shared libraries and dlopen() without RTLD_GLOBAL
I'm having some trouble with exceptions not functioning correctly (or at least, as I would hope; I know there are issues with this) across shared libraries when loaded using dlopen. I include some ...
5
votes
3answers
390 views
dlopen and global variables in C/C++
Due to some restrictions I am being forced to load a library written in C at runtime. A third party provides two library to me as static archives which we turn into shared objects. The application ...
4
votes
3answers
71 views
How to link a plugin that plugs in to an application via dlopen()
I am writing a plugin for an application. The application will load the plugin using dlopen(). The platform is Fedora Linux 11. I have all the source code for the application.
I have successfully ...
4
votes
2answers
296 views
RTLD_LOCAL and dynamic_cast on Linux
We have a plugin that is constructed of a few shared libraries in our application that we need to update while the application is running. For performance reasons we load and start using the new ...
4
votes
4answers
1k views
dynamic_cast fails when used with dlopen/dlsym
Intro
Let me apologise upfront for the long question. It is as short as I could make it, which is, unfortunately, not very short.
Setup
I have defined two interfaces, A and B:
class A // An ...
4
votes
3answers
2k views
Memory leak reported by valgrind in dlopen?
I've been debugging some app lately with valgrind, and I'm getting very weird reports from dlopen.
==1987== 32 bytes in 1 blocks are still reachable in loss record 1 of 2
==1987== at 0x4C24477: ...
4
votes
3answers
4k views
dlopen() issue
I'm writing some code that uses dynamic shared libraries as plugins.
My command line for building the shared libraries looks like:
cc -shared -fPIC -o module.so -g -Wall module.c
Within the ...
3
votes
1answer
72 views
Detect duplicate symbols at dlopen
In my Linux application I am using a plugin architecture via dlopen. Shared objects are being opened with
dlopen(path, RTLD_GLOBAL | RTLD_LAZY)`
The option RTLD_GLOBAL is necessary since plugins ...
3
votes
2answers
156 views
Multiple instances of singleton across shared libraries on Linux
My question, as the title mentioned, is obvious, and I describe the scenario in details.
There is a class named singleton implemented by singleton pattern as following, in file singleton.h:
/*
* ...
3
votes
1answer
89 views
dlopen issue(OSX)
I have a main application which dynamically loads a dylib, from inside that dylib I would like to call exported functions from my main program. I'm using dlopen(NULL,flag) to retrieve my main ...
3
votes
2answers
132 views
Ld magically overrides statically linked symbols
For a few days we are dealing with very strange problem.
I can't understand how it even happens - when a third-party (MATLAB) program uses our shared library, it somehow overrides some of our symbols ...
3
votes
2answers
127 views
dlopen: Is it possible to trap unresolved symbols, “manually” resolving them as they happen?
Is it possible to trap unresolved symbol references when they happen, so that a function is called to try to resolve the symbol as needed? Or is it possible to add new symbols to the dynamic symbol ...
3
votes
2answers
111 views
How can I find libraries to load them dynamically with dlopen
In the project I am working on, we provide the possibility to dynamically load additional features. For that we use dlopen.
To find this libraries we have something we call module path. There we have ...
3
votes
1answer
89 views
determing calling object when working with dlopen() objects
I'm writing a (C) program which utilizes a plugin system via dlopen(). The stumbling block I'm running across is that the main program exports a few functions which really need to know the plugin that ...
3
votes
1answer
412 views
What happens to the global variables in shared library when dlclose is called on it?
If a shared library (or a DLL) is being used through dlopen and dlclose mechanism and if the shared library created has some global variables whose memory comes from the heap, then what will happen to ...
3
votes
3answers
211 views
C++ Sandboxing dynamic libraries
I'm wondering if its at all possible to sandbox a dynamically linked library via dlopen and friends. The aim is to recover from an error within the library without tearing down the hole application ...
3
votes
2answers
614 views
Dynamic loading of shared objects using dlopen()
I'm working on a plain X11 app. By default, my app only requires libX11.so and the standard gcc C and math libs. My app has also support for extensions like Xfixes and Xrender and the ALSA sound ...
3
votes
3answers
691 views
Returning a shared library symbol table
For instance:
void* sdl_library = dlopen("libSDL.so", RTLD_LAZY);
void* initializer = dlsym(sdl_library,"SDL_Init");
Assuming no errors, initializer will point to the function SD_Init in the shared ...
3
votes
1answer
1k views
Main Program and Shared Library initializes same static variable in __static_initialization_and_destruction_0
Does anyone know why a library initialized within dlopen() would initialize a static variable owned by the main program. Both the main program and shared library have a copy of the static variable, ...
3
votes
2answers
869 views
Static Class Variables in Dynamic Library and Main Program
I am working on a project that has a class 'A' that contains a static stl container class. This class is included in both my main program and a .so file. The class uses the default(implicit, not ...
3
votes
2answers
620 views
What can cause dlopen: no suitable image found (can't map)?
What can cause the following error when loading an additional bundle using dlopen:
dlopen($(OBJ_DIR)/Test-20091217211256.ob, 6): no suitable image found. Did find:
...
3
votes
3answers
887 views
linux dlopen: can a library be “notified” when it is loaded?
Is there a way for a shared library to be "notified" when it is loaded?
In other words, let's say I use dlopen on a shared library, is there a function that is automatically called (if present) on ...
3
votes
2answers
1k views
Python dlopen/dlfunc/dlsym wrappers
Anybody knows if actually exists a wrapper or ported library to access to Unix dynamic linker on Python?
2
votes
0answers
26 views
Python extension (Boost.Python & Py++) and dlopen confusion
I'm wrapping a C++ project with Py++/Boost.Python under Windows and Linux. Everything in Windows is working fine, but I'm a bit confused over the behavior in Linux. The C++ project is built into a ...
2
votes
1answer
82 views
C++: implementation of a class methods in a separated shared library
I figure out I can have the implementation of parts of a class in a shared lib, as far as the symbols are loaded when used.
myclass.h
---
class C {
void method();
}
main.cpp
---
#include ...
2
votes
2answers
84 views
Linux: Is it possible to make some plugin oriented programming using statically linked binaries?
Assume we have a very small embedded system consisting only of the linux kernel and a single statically linked binary run as init. We want the binary to be able to dynamically load external plugins in ...
2
votes
2answers
150 views
dlsym — get overridden symbol
I have an application dynamically loading libraries which dynamically load libraries which...
In Windows, I'm able to iterate over all loaded modules looking for the symbol I'm interested in. Don't ...
2
votes
2answers
189 views
How to view Linux memory map info in C?
I'm dynamically loading some Linux libraries in C.
I can get the start addresses of the libraries using the
dlinfo
(see 1).
I can't find any information to get the size of a library, however.
...
2
votes
2answers
62 views
Is there a way to find out the number of references to a dynamic library in a process?
Is there a way to find out the number of references to a dynamic library in a process? i.e. in an application many modules might have loaded the same library using dlopen and when a module does ...
2
votes
1answer
152 views
How to intercept file system access inside dlopen()?
I want to intercept all file system access that occurs inside of dlopen(). At first, it would seem like LD_PRELOAD or -Wl,-wrap, would be viable solutions, but I have had trouble making them work due ...
2
votes
1answer
143 views
Using dlopen to get handle of libc memory allocation functions
Can someone help me to know how can i use dlopen to get handle of libc memory allocation functions? Especially, something like searching the libc path and then taking the handle. What modes should be ...
2
votes
2answers
126 views
Problems with using setenv and then making the dlopen call
I am using setenv to set DYLD_LIBRARY_PATH so when I do a dlopen() it will have the correct paths to find my .dylib, but when I do the dlopen() it doesn't seem to search the paths that I added to ...
2
votes
1answer
94 views
How to find the coverage of a library opened using dlopen()?
I have a C++ library (.so) which is opened using dlopen() by another application. But I need to find the code coverage of this library while run within the application using gcov. Is it possible? If ...
2
votes
0answers
272 views
What is causing sprof to complain about “inconsistency detected by ld.so”?
I'm trying to use sprof to profile some software (ossim) where almost all the code is in a shared library. I've generated a profiling file, but when I run sprof, I get the following error:
> sprof ...
2
votes
2answers
341 views
overriding @executable_path in a DLL loaded with dlopen()
Operating system is MacOS X, specifically 10.5 (Leopard) on a PowerPC G4, but I have the same problem on an x86 running 10.6.
I am writing an application which dynamically loads a DLL. The DLL (let's ...
2
votes
2answers
442 views
Prevent name mangling in C (not C++) with MinGW for dynamic symbol search
I have a C program where I get function pointers "dynamically" by the function name (ie. I pass the function name as a string and get a pointer to the function). I already do this in Linux using ...
2
votes
1answer
313 views
dlopen()/dlsym() on the main executable: how portable is it?
I'm building a compiler and a virtual machine for executing my byte code. The language allows to bind external C functions, which may be defined in some external shared object, as well as the main ...
2
votes
1answer
303 views
shared object can't find symbols in main binary, C++
I'm experimenting with making a kind of plugin architecture for a program I wrote, and at my first attempt I'm having a problem. Is it possible to access symbols from the main executable from within ...
2
votes
1answer
540 views
dlopen with two shared libraries, exporting symbols
I have a linux shared library, foo.so, which is loaded from an executable using dlopen("foo.so", RTLD_NOW | RTLD_LOCAL). From foo.so I'd like to dlopen another library, bar.so, which references ...