Affix - A Foreign Function Interface eXtension
use Affix;
# bind to exported function
affix 'm', 'floor', [Double], Double;
warn floor(3.14159); # 3
# wrap an exported function in a code reference
my $getpid = wrap 'c', 'getpid', [], Int;
warn $getpid->(); # $$
# bind an exported value to a Perl value
pin( my $ver, 'libfoo', 'VERSION', Int );
Affix is an FFI to wrap libraries developed in other languages (C, C++, Rust, etc.) without having to write or maintain XS.
Affix supports the following features right out of the box:
- Works on Windows, macOS, Linux, BSD, and more
- Callbacks
- Pointers
- Typedefs
- Global/Exported variables
- Libraries developed in C, C++, and Rust (and more to come!) even those with mangled symbol names
- Aggregates such as structs, unions, and arrays
- Passing aggregates by value
- Nested aggregates
- 'Smart' enums
- Tested to work all the way down to Perl 5.026 (which is ancient in my book)
Affix's basic API is rather simple but not lacking in power. Let's start at the beginning with the eponymous affix( ... )
function.
Attach a given symbol to a named perl sub.
affix 'C:\Windows\System32\user32.dll', 'pow', [Double, Double] => Double;
warn pow( 3, 5 );
affix 'c', 'puts', [Str], Int;
puts( 'Hello' );
affix 'c', ['puts', 'write'], [Str], Int; # renamed function
write( 'Hello' );
affix undef, [ 'rint', 'round' ], [Double], Double; # use current process
warn round(3.14);
affix [ 'xxhash', '0.8.2' ], [ 'XXH_versionNumber', 'xxHash::version' ], [], UInt;
warn xxHash::version();
Expected parameters include:
-
lib
File path or name of the library to load symbols from. Pass an explicit
undef
to pull functions from the main executable.Optionally, you may provide an array reference with the library and a version number if the library was built with such a value as part of its filename.
-
symbol_name
Name of the symbol to wrap.
Optionally, you may provide an array reference with the symbol's name and the name of the wrapping subroutine.
-
parameters
Provide the argument types in an array reference.
-
return
A single return type for the function.
On success, affix( ... )
returns the generated code reference which may be called directly but you'll likely use the
name you provided.
Creates a wrapper around a given symbol in a given library.
my $pow = wrap( 'C:\Windows\System32\user32.dll', 'pow', [Double, Double] => Double );
warn $pow->(5, 10); # 5**10
Parameters include:
-
lib
File path or name of the library to load symbols from. Pass an explicit
undef
to pull functions from the main executable.Optionally, you may provide an array reference with the library and a version number if the library was built with such a value as part of its filename.
-
symbol_name
Name of the symbol to wrap.
-
parameters
Provide the argument types in an array reference.
-
return
A single return type for the function.
wrap( ... )
behaves exactly like affix( ... )
but returns an anonymous subroutine and does not pollute the
namespace.
my $errno;
pin $errno, 'libc', 'errno', Int;
print $errno;
$errno = 0;
Variables exported by a library - also referred to as "global" or "extern" variables - can be accessed using pin( ... )
. The above example code applies magic to $error
that binds it to the integer variable named "errno" as exported
by the libc library.
Expected parameters include:
-
var
Perl scalar that will be bound to the exported variable.
-
lib
File path or name of the library to load symbols from. Pass an explicit
undef
to pull functions from the main executable.Optionally, you may provide an array reference with the library and a version number if the library was built with such a value as part of its filename.
-
symbol_name
Name of the exported variable to wrap.
-
$type
Indicate to Affix what type of data the variable contains.
This is likely broken on BSD but patches are welcome.
To help toss raw data around, some standard memory related functions are exposed here. You may import them by name or
with the :memory
or :all
tags.
my $ptr = malloc( $size );
Allocates $size
bytes of uninitialized storage.
my $ptr = calloc( $num, $size );
Allocates memory for an array of $num
objects of $size
and initializes all bytes in the allocated storage to
zero.
$ptr = realloc( $ptr, $new_size );
Reallocates the given area of memory. It must be previously allocated by malloc( ... )
, calloc( ... )
, or
realloc( ... )
and not yet freed with a call to free( ... )
or realloc( ... )
. Otherwise, the results are
undefined.
free( $ptr );
Deallocates the space previously allocated by malloc( ... )
, calloc( ... )
, or realloc( ... )
.
memchr( $ptr, $ch, $count );
Finds the first occurrence of $ch
in the initial $count
bytes (each interpreted as unsigned char) of the object
pointed to by $ptr
.
my $cmp = memcmp( $lhs, $rhs, $count );
Compares the first $count
bytes of the objects pointed to by $lhs
and $rhs
. The comparison is done
lexicographically.
memset( $dest, $ch, $count );
Copies the value $ch
into each of the first $count
characters of the object pointed to by $dest
.
memcpy( $dest, $src, $count );
Copies $count
characters from the object pointed to by $src
to the object pointed to by $dest
.
memmove( $dest, $src, $count );
Copies $count
characters from the object pointed to by $src
to the object pointed to by $dest
.
my $size = sizeof( Int );
my $size1 = sizeof( Struct[ name => Str, age => Int ] );
Returns the size, in bytes, of the type passed to it.
my $struct = Struct[ name => Str, age => Int ];
my $offset = offsetof( $struct, 'age' );
Returns the offset, in bytes, from the beginning of a structure including padding, if any.
Here's some thin cushions for the rougher edges of wrapping libraries.
They may be imported by name for now but might be renamed, removed, or changed in the future.
DumpHex( $ptr, $length );
Dumps $length
bytes of raw data from a given point in memory.
This is a debugging function that probably shouldn't find its way into your code and might not be public in the future.
You must provide Affix with a signature which may include types and calling conventions. Let's start with an example in C:
bool report( const char * name, int grades[5] );
The signature telling Affix how to call this function would look like this:
affix 'libschool', 'report', [ Str, Array[Int, 5] ] => Bool;
Incoming arguments are defined in a list: [ Str, Array[Int, 5] ]
The return value follows: Bool
To call the function, your Perl would look like this:
my $promote = report( 'Alex Smithe', [ 90, 82, 70, 76, 98 ] );
See the subsections entitled Types for more on the possible types and "Calling Conventions" in Calling Conventions for advanced flags that may also be defined as part of your signature.
Affix supports the fundamental types (void, int, etc.) as well as aggregates (struct, array, union). Please note that types given are advisory only! No type checking is done at compile or runtime.
Affix | C99 | Rust | C# | pack() | Raku |
---|---|---|---|---|---|
Void | void | ->() | void/NULL | - | |
Bool | _Bool | bool | bool | - | bool |
Char | int8_t | i8 | sbyte | c | int8 |
UChar | uint8_t | u8 | byte | C | byte, uint8 |
Short | int16_t | i16 | short | s | int16 |
UShort | uint16_t | u16 | ushort | S | uint16 |
Int | int32_t | i32 | int | i | int32 |
UInt | uint32_t | u32 | uint | I | uint32 |
Long | int64_t | i64 | long | l | int64, long |
ULong | uint64_t | u64 | ulong | L | uint64, ulong |
LongLong | -/long long | i128 | q | longlong | |
ULongLong | -/unsigned long long | u128 | Q | ulonglong | |
Float | float | f32 | f | num32 | |
Double | double | f64 | d | num64 | |
SSize_t | SSize_t | SSize_t | |||
Size_t | size_t | size_t | |||
Str | char * | ||||
WStr | wchar_t |
Given sizes are minimums measured in bits
Other types are also defined according to the system's platform. See Affix::Type.
Handle with care! Using these without understanding them can break your code!
Refer to the dyncall manual, http://www.angelcode.com/dev/callconv/callconv.html, https://en.wikipedia.org/wiki/Calling_convention, and your local university's Comp Sci department for a deeper explanation.
After than, feel free to use or misuse any of the current options:
-
This
Platform native C++ this calls
-
Ellipsis
-
Varargs
-
CDecl
x86 specific
-
STDCall
x86 specific
-
MSFastcall
x86 specific
-
GNUFastcall
x86 specific
-
MSThis
x86 specific, MS C++ this calls
-
GNUThis
x86 specific, GNU C++
this
calls arecdecl
, but this is defined for clarity -
Arm
-
Thumb
-
Syscall
When used in "Signatures" in signatures, most of these cause the internal argument stack to be reset. The exceptions are
Ellipsis
and Varargs
.
If you want to call a function that's already loaded, either from the standard library or from your own program, you
can omit the library value or pass and explicit undef
.
For example, on Unix, you could use the following code to gather the home directory and other info about the current user:
use Affix;
use Data::Printer;
typedef PwStruct => Struct [
name => Str, # username
pass => Str, # hashed pass if shadow db isn't in use
uuid => UInt, # user
guid => UInt, # group
gecos => Str, # real name
dir => Str, # ~/
shell => Str # bash, etc.
];
affix undef, 'getuid', [] => Int;
affix undef, 'getpwuid', [Int] => Pointer [ PwStruct() ];
p( ( Pointer [ PwStruct() ] )->unmarshal( main::getpwuid( getuid() ) ) );
If you ask Affix to load symbols from 'foo', we'll will look for libfoo.so
under Unix, (libfoo.dynlib
on macOS,
and foo.dll
on Windows.
Most modern system require you or the user of your module to install the development package because it's recommended
to always provide an API/ABI version to a shared library, so libfoo.so
ends often being a symbolic link provided
only by a development package.
To avoid that, the Affix allows you to specify the API/ABI version. It can be a full version or just a part of it. (Try to stick to Major version, some BSD code does not care for Minor.)
use Affix;
affix ['foo', v1], ...; # Will try to load libfoo.so.1 on Unix
affix ['foo', v1.2.3], ...; # Will try to load libfoo.so.1.2.3 on Unix
You may control the max size of the internal stack that will be allocated and used to bind the arguments to by setting
the $VMSize
variable before using Affix.
BEGIN{ $Affix::VMSize = 2 ** 16; }
This value is 4096
by default and probably should not be changed.
Very short examples might find their way into the Affix::Cookbook. The best example of use might be LibUI. Brief
examples will be found in eg/
.
All the heavy lifting is done by dyncall.
Check out FFI::Platypus for a more robust and mature FFI
LibUI for a larger demo project based on Affix
Types::Standard for the inspiration of the advisory types system
Copyright (C) Sanko Robinson.
This library is free software; you can redistribute it and/or modify it under the terms found in the Artistic License 2. Other copyrights, terms, and conditions may apply to data transmitted through this module.
Sanko Robinson [email protected]