rust-dlopen

Travis CI Appveyor CI

A long time ago in a dirty basement far, far away a programmer was trying to dynamically load a library using standard C API (because he didnt know Rust yet):

```c /* Open a dynamic library, get function, use it and then close the library ... */ //Problem: this is Unix API, won't work on Windows

include

include

void main() { //Problem: no type safety void *mylib; int eret; //Problem: dlopen() accepts int as a second argument, so you can accidentally pass here almost anything mylib = dlopen("libm.so", RTLDLOCAL | RTLDLAZY); //Problem: forgot to check returned value

void (*cos)(double);

//Problem: no way to actually check symbol type
//Second problem: no error checking
//Third problme: NULL is a legal value of a pointer exported by the library.
//You always need to check it before converting into a function.
*(void**)(&my_function) = dlsym(handle,"something");

printf("cos(1.0)=%f", cos(1.0));

//Problem: returned value not checked
dlclose(mylib);

//Problem: now the library is closed, but the function cos still exists.
//This is a dangling symbol problem and may result in crashes

} ```

Basically use of dynamic link libraries is extremely prone to errors and requires a lot of coding to perform even the simplest operations.

This library aims to simplify the process of developing APIs for dynamically loaded libraries in Rust language and to reduce number of mistakes (please note that you can't create any library that is 100% safe because loading libraries requires transmutation of obtained pointers).

Main features

Usage:

Cargo.toml: toml [dependencies] dlopen = "0.1"

License

This code is licensed under MIT license.