dlopen-rs
English | δΈζ
A Rust library that implements a series of interfaces such as dlopen and dlsym, consistent with the behavior of libc, providing robust support for dynamic library loading and symbol resolution.
This library serves four purposes:
- Provides a dynamic linker written purely in
Rust. - Provide loading ELF dynamic libraries support for
#![no_std]targets. - Easily swap out symbols in shared libraries with your own custom symbols at runtime
- Faster than
ld.soin most cases (loading dynamic libraries and getting symbols)
Currently, it supports x86_64, RV64, and AArch64 architectures.
Feature
| Feature | Default | Description |
|---|---|---|
| std | Yes | Enable std |
| debug | No | Enable this to use gdb/lldb for debugging loaded dynamic libraries. Note that only dynamic libraries loaded using dlopen-rs can be debugged with gdb. |
| mmap | Yes | Enable default implementation on platforms with mmap |
| version | No | Activate specific versions of symbols for dynamic library loading |
| tls | Yes | Enable this to use thread local storage. |
| unwinding | No | Enable this to use the exception handling mechanism provided by dlopen-rs. |
| libgcc | Yes | Enable this if the program uses libgcc to handle exceptions. |
| libunwind | No | Enable this if the program uses libunwind to handle exceptions. |
Examples
Example 1
The dlopen interface is used to load dynamic libraries. The dlopen in dlopen-rs behaves consistently with the dlopen in libc. Additionally, this library uses the log crate, and you can use your preferred logging library to output logs to observe the working process of dlopen-rs. In the examples of this library, the env_logger crate is used for logging.
use ELFLibrary;
use Path;
Example 2
Use LD_PRELOAD to replace the dlopen and other functions in libc with the implementations provided by this library.
# Compile the library into a dynamic library format
cargo build -r -p cdylib
# Compile the test case
cargo build -r -p dlopen-rs --example preload
# Use the implementation from this library to replace the implementation in libc
RUST_LOG=trace LD_PRELOAD=./target/release/libdlopen.so ./target/release/examples/preload
Example 3
Fine-grained control of the load flow of the dynamic library, you can replace certain functions in the dynamic library that need to be relocated with your own implementation. In the following example, we replace malloc with mymalloc in the dynamic library and turn on lazy binding.
use ELFLibrary;
use size_t;
use ;
extern "C"
TODO
- dladdr and 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.
- It is unclear whether there is a way to support more relocation types.
- There is a lack of correctness and performance testing under high-concurrency multithreading scenarios.
- More tests.
Supplement
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. π