#proc-macro #run-time #dynamic #external #resolver #lookup #obfuscation

lazy_link

lazy_link is a Rust proc macro for dynamic runtime lookup of external functions, supporting custom resolvers, caching and no_std environments

2 releases

0.1.1 Sep 27, 2024
0.1.0 Sep 27, 2024

#550 in Rust patterns

Download history 174/week @ 2024-09-22 76/week @ 2024-09-29 10/week @ 2024-10-06 14/week @ 2024-10-13 1/week @ 2024-10-20

143 downloads per month

Custom license

19KB
120 lines

lazy_link

lazy_link is a Rust procedural macro crate that allows you to dynamically look up external functions at runtime without any additional boilerplate code. This crate is designed to simplify the process of dynamically linking to external functions as runtime, inclusing support for function name obfuscation and no_std environments.

Features

  • Dynamic Function Lookup: Use the lazy_link attribute to dynamically link external functions at runtime.
  • No Boilerplate Required: No need for additional setup or boilerplate code—just annotate your external blocks.
  • Function Name Obfuscation: Function names can be obfuscated using the obfstr crate, enhancing security by making the function identifiers less readable in binary form.
  • Platform and ABI Agnostic: Works across different platforms and ABIs.
  • no_std Compatible: Full support for no_std environments.

Usage

To use lazy_link, simply add the attribute to your external block declarations:

use lazy_link::lazy_link;

#[lazy_link(resolver = "resolve_externals")]
extern "C" {
    fn external_add(v1: u8, v2: u8) -> u8;
}

Additionally, you have to implement the resolve function, which dynamically resolves the function at runtime. This function takes the function's name (and an optional module) and returns a non-null pointer to the function:

fn resolve_externals(module: Option<&str>, name: &str) -> NonNull<()> {
    // Your resolution logic here, typically using some form of dynamic lookup.
    unimplemented!("Function lookup logic for {}", name)
}

Examples

Examples can be found within the examples directory of this repository. These examples demonstrate how to use lazy_link in various contexts, including platform-specific scenarios.

To run the examples, clone the repository and use the following command:

cargo run --bin <example_name>

Dependencies

~1.5MB
~38K SLoC