Tagged Questions
looking symbols in dynamically loaded libraries ...
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
4answers
1k views
Function interposition in Linux without dlsym
I'm currently working on a project where I need to track the usage of several system calls and low-level functions like mmap, brk, sbrk. So far, I've been doing this using function interposition: I ...
5
votes
3answers
2k views
Alternatives to dlsym() and dlopen() in C++
I have an application a part of which uses shared libraries. These libraries are linked at compile time.
At Runtime the loader expects the shared object to be in the LD_LIBRARY_PATH , if not found ...
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 ...
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
4answers
298 views
How to detect at runtime whether symbols are stripped?
In my C++ program, how can I detect programmatically at runtime whether symbols have been stripped via the 'strip' gnu development tool on Linux?
I'd like a function definition which returns true if ...
2
votes
2answers
147 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
3answers
267 views
How to manipulate/return data with dynamically loaded functions (dlopen)?
I've spent days reading and re-reading every tutorials I've found on the subject, and spent hours (and even days) browsing related questions here at SO, but I still can't get the following to work. ...
2
votes
3answers
393 views
Ansi C patch using dlsym compiles OK under linux but fails on Mac Os X
I have build a little patch to append to a certain application and trace the invocations of some functions. Among them, malloc() and open(). I am using dlsym to store the pointer to the original ...
2
votes
4answers
342 views
C/C++ Dynamic loading of functions with unknown prototype
I'm in the process of writing a kind of runtime system/interpreter, and one of things that I need to be able to do is call c/c++ functions located in external libraries.
On linux I'm using the ...
2
votes
3answers
511 views
library interposition with dlsym
I'm writing an interposition library to track the usage of some library functions in libc, such as open(), close(), connect(), etc. It works generally well on most of the applications. However, when I ...
1
vote
2answers
80 views
can't intercept PyDict_New with LD_PRELOAD
I'm trying to use LD_PRELOAD to intercept the PyDict_New function. I've verified that this recipe workd with getpid in the python interpreter, and I've adapted it to use PyDict_New instead, but it ...
1
vote
0answers
40 views
Overriding FSGetCatalogInfo via dlsym
I'm trying to get override the FSGetCatalogInfo function under OS X Lion 10.7 using DYLD_INSERT_LIBRARIES, and everything works correctly up to the point that I actually call the original ...
1
vote
0answers
22 views
using dlsym for tracking mmap
I am trying to measure how much memory does some program mmaps.
I am using the following code:
void * mmap (void * addr, size_t len, int prot, int flags, int fildes, off_t off) {
printf("in ...
1
vote
1answer
103 views
Combine C and TCL using Swig
I have been following a tutorial to combine C with TCL using Swig. The tutorial seemed to be properly working but at the end I ran into an error that I cannot solve. The situation is as follows:
The ...
1
vote
2answers
129 views
How can dlsym successfully import function from stripped binary library?
It's weird that dlsym can import functions from stripped binaries.
Can anyone tell me why/how?
=== FILE: a.c ===
int a1() { return 1; }
int a2() { return 2; }
=== end of a.c ===
=== FILE: b.c ===
...
1
vote
3answers
247 views
How do I get this simple C test program for loading modules to work?
I was going to use dlopen, and dlsym on linux to make these two source files work:
#include <dlfcn.h>
#include <stdio.h>
int main()
{
int *(func)(void);
func=dlsym( ...
1
vote
0answers
599 views
Calling function by name using dlsym in iOS
Can't I call a function by name in iOS? I have a C function called getstring. I am calling it as follows:
void* handle = dlopen(NULL, RTLD_NOW);
if (handle)
{
fp func = dlsym(handle, "getstring");
if ...
0
votes
1answer
44 views
error: void value not ignored as it ought to be
I am trying to get function symbol from a dynamic library and then I need to replace my function with the library funciton using the new function pointer.The code is to be written in c++ file.
I used ...
0
votes
1answer
66 views
Populate global function pointers in shared library (Solaris, Sun Studio)
I am creating a small C++ wrapper shared library around a Fortran 95 library. Since the Fortran symbols contain . in the symbol name, I have to use dlsym to load the Fortran function into a C++ ...
0
votes
0answers
142 views
override dynamic library functions using DYLD_INSERT_LIBRARIES (OSX)
I'm trying to override a dynamically loaded function using DYLD_INSER_LIBRARIES. Overriding a normal library function line fopen works fine like the example from here.
My code for loading a dynamic ...
0
votes
1answer
83 views
Dlsym: cast to pointer from integer of different size
I really hate having to ask questions on here. But I've been looking at some of the other posts, and solutions such as this one don't seem to work. Its probably my misunderstanding of the syntax.
I ...
0
votes
2answers
188 views
Factory Pattern in C++: generating explicit createInstance()-Method automatically
i have the problem in writing a C++ framework, that users should have less overhead than possible to use it. Users can publish their work to the frameworks by creating a shared library that contains a ...
0
votes
1answer
85 views
Load named unexported symbols with dlsym?
Is it possible to load a named unexported symbol from a framework using dlsym?
The symbol I'm trying to import has a name by which it is referred to within the framework. It is a function I need to ...
0
votes
2answers
248 views
C --> malloc --> dlsym
I have used dlsym() to invoke my version of malloc, instead of the default library malloc:
lt_malloc = (void*(*)(size_t))dlsym(RTLD_NEXT, "malloc");
TRACE((stderr, "initialize: lt_malloc=%p\n", ...
0
votes
1answer
282 views
Setting my lib for LD_PRELOAD makes some processes produce loader errors
I get the following error when I try to run a script I have only execution access for:
uname: symbol lookup error: /home/dumindara/random/sotest/a.out: undefined symbol: dlsym
This is after I have ...
0
votes
3answers
289 views
Problem in using C dynamic loading routines
Hi all
I have an application consisting of different modules written in C++.
One of the modules is meant for handling distributed tasks on SunGrid Engine. It uses the DRMAA API for
submitting and ...