Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access pointer from shared library in C

I built a shared library which exposes an array of function pointers. The function definitions are also in this library, but they are not exported.

Is it possible, from another program, to load this library and call those functions using the exported pointers directly?

This is what I'm trying to do.

My library:

#include <stdio.h>
void myfun(){
    printf("myfun\n");
}
extern void (*myptr)() = myfun;

I'm trying to use it like this:

#include <dlfcn.h>
int main(){
    void * lib = dlopen("libt1.so", RTLD_NOW);
    if(!lib) { printf("%s\n", dlerror()); return 0; }
    void (*myptr)() = (void (*)()) dlsym(lib, "myptr");
    if(!myptr){ printf("%s\n", dlerror()); return 0; }
    printf("%p\n", myptr);
    myptr();
}

This gives a segm fault.

like image 478
user16367 Avatar asked Mar 19 '26 18:03

user16367


1 Answers

It was a silly mistake it seems.

void (*myptr)() = (void (*)()) dlsym(lib, "myptr");

Should be something like this:

void ** myptr = (void**)dlsym(lib, "myptr");
void (*fcn)() = (void (*)()) (*myptr);

It is working as expected now.

like image 95
user16367 Avatar answered Mar 21 '26 08:03

user16367



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!