dlopen2

CI crates.io Documentation dependency status MIT

This is a fork of the original, now unmaintained dlopen with updated dependencies, bug fixes and some new features.

Overview

This library is my effort to make use of dynamic link libraries in Rust simple. Previously existing solutions were either unsafe, provided huge overhead of required writing too much code to achieve simple things. I hope that this library will help you to quickly get what you need and avoid errors.

Quick example

```rust use dlopen2::wrapper::{Container, WrapperApi};

[derive(WrapperApi)]

struct Api<'a> { examplerustfun: fn(arg: i32) -> u32, examplecfun: unsafe extern "C" fn(), example_reference: &'a mut i32, }

fn main(){ let mut cont: Container = unsafe { Container::load("libexample.so") }.expect("Could not open library or load symbols"); cont.examplerustfun(5); unsafe{cont.examplecfun()}; *cont.examplereferencemut() = 5; } ```

Features

Main features

Compare with other libraries

|Feature | dlopen2 | libloading | sharedlib | |------------------------------------|------------|---------------------------------------------------------|-------------------------------------------------| | Basic functionality | Yes | Yes | Yes | | Multiplatform | Yes | Yes | Yes | |Dangling symbol prevention | Yes | Yes | Yes | | Thread safety | Yes | Potential problem with thread-safety of dlerror() on some platforms like FreeBSD | No support for SetErrorMode (library may block the application on Windows)| | Loading of symbols into structures | Yes | No | No | Overhead | Minimal | Minimal | Some overhead | | Low-level, unsafe API | Yes | Yes | Yes | | Object-oriented friendly | Yes | No | Yes | | Load from the program itself | Yes | No | No | | Obtaining address information (dladdr) | Yes | Unix only | No|

Safety

Please note that while Rust aims at being 100% safe language, it does not yet provide mechanisms that would allow me to create a 100% safe library, so I had to settle on 99%. Also the nature of dynamic link libraries requires casting obtained pointers into types that are defined on the application side. And this cannot be safe. Having said that I still think that this library provides the best approach and greatest safety possible in Rust.

Usage

Cargo.toml:

toml [dependencies] dlopen2 = "0.4"

Documentation

Cargo documentation

License

This code is licensed under MIT license.

Changelog

GitHub changelog

Acknowledgement

Special thanks to Simonas Kazlauskas whose libloading became code base for my project.