Rust FFI Safe Wrappers
Use this skill to wrap foreign interfaces in Rust APIs that make ownership, lifetimes, errors, and cleanup explicit. FFI code should be unsafe at the raw boundary and safe for normal Rust callers.
Core Workflow
- Separate raw declarations from safe wrappers. Put raw
unsafe externbindings in a small private module. - Verify ABI, type layout, calling convention, ownership, nullability, threading, and error conventions against the foreign header or docs.
- Use
unsafe extern "C"blocks for modern Rust, especially Rust 2024 edition code. Leave safety-conditional items unqualified or explicitlyunsafe, and mark individual extern itemssafeonly when calling them is safe for all Rust inputs. - Use
#[repr(C)]for structs and enums that cross the ABI boundary. Do not expose Rust-only layout types across C. - Use
CStringfor owned nul-terminated strings sent to C andCStrfor borrowed C strings. Never treat arbitrary C memory as Rust-owned. - Wrap raw handles in Rust types with private fields and
Dropcleanup using the matching foreign deallocator. - Prevent Rust panics from crossing
extern "C"boundaries. Catch panics or expose an ABI that permits unwinding only when deliberately using"C-unwind".
Wrapper Rules
Read references/ffi-boundary-patterns.md before adding or reviewing FFI
bindings.
- Prefer
core::ffiorstd::ffiC types over guessing integer sizes. - Convert foreign error codes into Rust
Resultat the wrapper boundary. - Represent nullable handles as
Option<NonNull<T>>internally when useful, but expose safe Rust types to callers. - Tie borrowed values to owner lifetimes with normal references or
PhantomDatawhen the compiler cannot see the relationship. - Make initialization and shutdown idempotent with
OnceLock,LazyLock, orOncewhen the foreign library requires process-wide setup. - Use
bindgenfor large or changing C headers andcbindgenwhen exporting a Rust API to C, but still review generated unsafe signatures.
Rust 2024 Syntax Checks
unsafe extern "C" {
pub fn library_open(path: *const core::ffi::c_char) -> *mut RawHandle;
pub fn library_close(handle: *mut RawHandle);
// Mark an item `safe` only when calling it is valid for all Rust inputs:
// pub safe fn library_version() -> core::ffi::c_int;
}
// SAFETY: This exported symbol name is unique for this library.
#[unsafe(no_mangle)]
pub extern "C" fn plugin_version() -> core::ffi::c_int {
1
}
Unsafe attributes such as no_mangle, export_name, and link_section need
the unsafe(...) form in Rust 2024 edition code. Include a SAFETY comment
where symbol uniqueness or linker behavior is part of the contract.
Review Checklist
- Raw bindings are private or clearly separated from safe wrappers.
- Every pointer parameter has a documented nullability and ownership rule.
- Every allocation is freed by the same side or an explicitly matching deallocator.
- Strings and buffers preserve length, encoding, and nul-byte requirements.
- Panics, callbacks, and threads crossing the boundary have explicit behavior.
Source: hashgraph-online/awesome-codex-plugins → plugins/LVTD-LLC/skills/skills/rust-ffi-safe-wrappers/SKILL.md