English | 中文
dlopen-rs is a dynamic linker fully implemented in Rust, providing a set of Rust-friendly interfaces for manipulating dynamic libraries, as well as C-compatible interfaces consistent with libc behavior.
You can use dlopen-rs as a replacement for libloading to load dynamic libraries. It also allows replacing libc's dlopen, dlsym, dl_iterate_phdr and other functions with implementations from dlopen-rs using LD_PRELOAD without code modifications.
# Compile the library as a dynamic library
$ cargo build -r -p cdylib
# Compile test cases
$ cargo build -r -p dlopen-rs --example preload
# Replace libc implementations with ours
$ RUST_LOG=trace LD_PRELOAD=./target/release/libdlopen.so ./target/release/examples/preload- Provides support for loading ELF dynamic libraries to #![no_std] targets.
- Enables easy runtime replacement of symbols in shared libraries with custom implementations.
- Typically faster than ld.sofor dynamic library loading and symbol resolution.
- Offers Rust-friendly interfaces with ergonomic design.
- Allows repeated loading of the same dynamic library into memory. Using the CUSTOM_NOT_REGISTERflag in OpenFlags enables multiple coexisting copies of a library (identical or modified) in memory, facilitating runtime dynamic libraryhot-swapping.
| Feature | Default | Description | 
|---|---|---|
| debug | Yes | Enable this to use gdb/lldb for debugging loaded dynamic libraries | 
| fs | Yes | Enable this to use the file system. | 
| version | No | Activate specific versions of symbols for dynamic library loading | 
| tls | Yes | Enable this to use thread local storage. | 
| use-ldso | No | Enable this to work with the libc ld.so. | 
| Arch | Support | Lazy Binding | Test | 
|---|---|---|---|
| x86_64 | ✅ | ✅ | ✅(CI) | 
| aarch64 | ✅ | ✅ | ✅(Manual) | 
| riscv64 | ✅ | ✅ | ✅(Manual) | 
| loongarch64 | ✅ | ❌ | ❌ | 
The dlopen interface is used to load dynamic libraries, and the dl_iterate_phdr interface is used to iterate through the already loaded dynamic libraries. Additionally, this library uses the log crate, and you can use your preferred library to output log information to view the workflow of dlopen-rs. In the examples of this library, the env_logger crate is used.
use dlopen_rs::ELFLibrary;
use std::path::Path;
fn main() {
    std::env::set_var("RUST_LOG", "trace");
    env_logger::init();
    dlopen_rs::init();
    let path = Path::new("./target/release/libexample.so");
    let libexample =
        ElfLibrary::dlopen(path, OpenFlags::RTLD_LOCAL | OpenFlags::RTLD_LAZY).unwrap();
    let add = unsafe { libexample.get::<fn(i32, i32) -> i32>("add").unwrap() };
    println!("{}", add(1, 1));
    let print = unsafe { libexample.get::<fn(&str)>("print").unwrap() };
    print("dlopen-rs: hello world");
	
    let dl_info = ElfLibrary::dladdr(print.into_raw() as usize).unwrap();
    println!("{:?}", dl_info);
    ElfLibrary::dl_iterate_phdr(|info| {
        println!(
            "iterate dynamic library: {}",
            unsafe { CStr::from_ptr(info.dlpi_name).to_str().unwrap() }
        );
        Ok(())
    })
    .unwrap();
}Rust 1.88 or higher.
- dlinfo have not been implemented yet. dlerror currently only returns NULL.
- RTLD_NEXT for dlsym has not been implemented.
- When dlopen fails, the newly loaded dynamic library is destroyed, but the functions in .fini are not called.
- Fix multi-threading bugs.
If you encounter any issues during use, feel free to raise them on GitHub. We warmly welcome everyone to contribute code to help improve the functionality of dlopen-rs. 😊