Data types#

Primitive types#

Standard types#

While the C standard allows for variation in the size of most integer types, Koffi enforces the same definition for most primitive types, listed below:

JS type

C type

Bytes

Signedness

Note

Undefined

void

0

Only valid as a return type

Number (integer)

int8, int8_t

1

Signed

Number (integer)

uint8, uint8_t

1

Unsigned

Number (integer)

char

1

Signed

Number (integer)

uchar, unsigned char

1

Unsigned

Number (integer)

char16, char16_t

2

Signed

Number (integer)

int16, int16_t

2

Signed

Number (integer)

uint16, uint16_t

2

Unsigned

Number (integer)

short

2

Signed

Number (integer)

ushort, unsigned short

2

Unsigned

Number (integer)

int32, int32_t

4

Signed

Number (integer)

uint32, uint32_t

4

Unsigned

Number (integer)

int

4

Signed

Number (integer)

uint, unsigned int

4

Unsigned

Number (integer)

int64, int64_t

8

Signed

Number (integer)

uint64, uint64_t

8

Unsigned

Number (integer)

longlong, long long

8

Signed

Number (integer)

ulonglong, unsigned long long

8

Unsigned

Number (float)

float32

4

Number (float)

float64

8

Number (float)

float

4

Number (float)

double

8

Koffi also accepts BigInt values when converting from JS to C integers. If the value exceeds the range of the C type, Koffi will convert the number to an undefined value. In the reverse direction, BigInt values are automatically used when needed for big 64-bit integers.

Koffi defines a few more types that can change size depending on the OS and the architecture:

JS type

C type

Signedness

Note

Boolean

bool

Usually one byte

Number (integer)

long

Signed

4 or 8 bytes depending on platform (LP64, LLP64)

Number (integer)

ulong

Unsigned

4 or 8 bytes depending on platform (LP64, LLP64)

Number (integer)

unsigned long

Unsigned

4 or 8 bytes depending on platform (LP64, LLP64)

Number (integer)

intptr

Signed

4 or 8 bytes depending on register width

Number (integer)

intptr_t

Signed

4 or 8 bytes depending on register width

Number (integer)

uintptr

Unsigned

4 or 8 bytes depending on register width

Number (integer)

uintptr_t

Unsigned

4 or 8 bytes depending on register width

String

str, string

JS strings are converted to and from UTF-8

String

str16, string16

JS strings are converted to and from UTF-16 (LE)

Primitive types can be specified by name (in a string) or through koffi.types:

1// These two lines do the same:
2let struct1 = koffi.struct({ dummy: 'long' });
3let struct2 = koffi.struct({ dummy: koffi.types.long });

Endian-sensitive types#

New in Koffi 2.1

Koffi defines a bunch of endian-sensitive types, which can be used when dealing with binary data (network payloads, binary file formats, etc.).

JS type

C type

Bytes

Signedness

Endianness

Number (integer)

int16_le, int16_le_t

2

Signed

Little Endian

Number (integer)

int16_be, int16_be_t

2

Signed

Big Endian

Number (integer)

uint16_le, uint16_le_t

2

Unsigned

Little Endian

Number (integer)

uint16_be, uint16_be_t

2

Unsigned

Big Endian

Number (integer)

int32_le, int32_le_t

4

Signed

Little Endian

Number (integer)

int32_be, int32_be_t

4

Signed

Big Endian

Number (integer)

uint32_le, uint32_le_t

4

Unsigned

Little Endian

Number (integer)

uint32_be, uint32_be_t

4

Unsigned

Big Endian

Number (integer)

int64_le, int64_le_t

8

Signed

Little Endian

Number (integer)

int64_be, int64_be_t

8

Signed

Big Endian

Number (integer)

uint64_le, uint64_le_t

8

Unsigned

Little Endian

Number (integer)

uint64_be, uint64_be_t

8

Unsigned

Big Endian

Struct types#

Struct definition#

Koffi converts JS objects to C structs, and vice-versa.

Unlike function declarations, as of now there is only one way to create a struct type, with the koffi.struct() function. This function takes two arguments: the first one is the name of the type, and the second one is an object containing the struct member names and types. You can omit the first argument to declare an anonymous struct.

The following example illustrates how to declare the same struct in C and in JS with Koffi:

1typedef struct A {
2    int a;
3    char b;
4    const char *c;
5    struct {
6        double d1;
7        double d2;
8    } d;
9} A;
1const A = koffi.struct('A', {
2    a: 'int',
3    b: 'char',
4    c: 'const char *', // Koffi does not care about const, it is ignored
5    d: koffi.struct({
6        d1: 'double',
7        d2: 'double'
8    })
9});

Koffi automatically follows the platform C ABI regarding alignment and padding. However, you can override these rules if needed with:

  • Pack all members without padding with koffi.pack() (instead of koffi.struct())

  • Change alignment of a specific member as shown below

 1// This struct is 3 bytes long
 2const PackedStruct = koffi.pack('PackedStruct', {
 3    a: 'int8_t',
 4    b: 'int16_t'
 5});
 6
 7// This one is 10 bytes long, the second member has an alignment requirement of 8 bytes
 8const BigStruct = koffi.struct('BigStruct', {
 9    a: 'int8_t',
10    b: [8, 'int16_t']
11})

Once a struct is declared, you can use it by name (with a string, like you can do for primitive types) or through the value returned by the call to koffi.struct(). Only the latter is possible when declaring an anonymous struct.

1// The following two function declarations are equivalent, and declare a function taking an A value and returning A
2const Function1 = lib.func('A Function(A value)');
3const Function2 = lib.func('Function', A, [A]);

Opaque types#

Many C libraries use some kind of object-oriented API, with a pair of functions dedicated to create and delete objects. An obvious example of this can be found in stdio.h, with the opaque FILE * pointer. You can open and close files with fopen() and fclose(), and manipule the opaque pointer with other functions such as fread() or ftell().

In Koffi, you can manage this with opaque types. Declare the opaque type with koffi.opaque(name), and use a pointer to this type either as a return type or some kind of output parameter (with a double pointer).

Note

Opaque types have changed in version 2.0, and again in version 2.1.

In Koffi 1.x, opaque handles were defined in a way that made them usable directly as parameter and return types, obscuring the underlying pointer.

Now, you must use them through a pointer, and use an array for output parameters. This is shown in the example below (look for the call to ConcatNewOut in the JS part), and is described in the section on output parameters.

In addition to this, you should use koffi.opaque() (introduced in Koffi 2.1) instead of koffi.handle() which is deprecated, and will be removed eventually in Koffi 3.0.

Consult the migration guide for more information.

The full example below implements an iterative string builder (concatenator) in C, and uses it from Javascript to output a mix of Hello World and FizzBuzz. The builder is hidden behind an opaque type, and is created and destroyed using a pair of C functions: ConcatNew (or ConcatNewOut) and ConcatFree.

  1// Build with: clang -fPIC -o handles.so -shared handles.c -Wall -O2
  2
  3#include <stdlib.h>
  4#include <stdbool.h>
  5#include <stdio.h>
  6#include <errno.h>
  7#include <string.h>
  8
  9typedef struct Fragment {
 10    struct Fragment *next;
 11
 12    size_t len;
 13    char str[];
 14} Fragment;
 15
 16typedef struct Concat {
 17    Fragment *first;
 18    Fragment *last;
 19
 20    size_t total;
 21} Concat;
 22
 23bool ConcatNewOut(Concat **out)
 24{
 25    Concat *c = malloc(sizeof(*c));
 26    if (!c) {
 27        fprintf(stderr, "Failed to allocate memory: %s\n", strerror(errno));
 28        return false;
 29    }
 30
 31    c->first = NULL;
 32    c->last = NULL;
 33    c->total = 0;
 34
 35    *out = c;
 36    return true;
 37}
 38
 39Concat *ConcatNew()
 40{
 41    Concat *c = NULL;
 42    ConcatNewOut(&c);
 43    return c;
 44}
 45
 46void ConcatFree(Concat *c)
 47{
 48    if (!c)
 49        return;
 50
 51    Fragment *f = c->first;
 52
 53    while (f) {
 54        Fragment *next = f->next;
 55        free(f);
 56        f = next;
 57    }
 58
 59    free(c);
 60}
 61
 62bool ConcatAppend(Concat *c, const char *frag)
 63{
 64    size_t len = strlen(frag);
 65
 66    Fragment *f = malloc(sizeof(*f) + len + 1);
 67    if (!f) {
 68        fprintf(stderr, "Failed to allocate memory: %s\n", strerror(errno));
 69        return false;
 70    }
 71
 72    f->next = NULL;
 73    if (c->last) {
 74        c->last->next = f;
 75    } else {
 76        c->first = f;
 77    }
 78    c->last = f;
 79    c->total += len;
 80
 81    f->len = len;
 82    memcpy(f->str, frag, len);
 83    f->str[len] = 0;
 84
 85    return true;
 86}
 87
 88const char *ConcatBuild(Concat *c)
 89{
 90    Fragment *r = malloc(sizeof(*r) + c->total + 1);
 91    if (!r) {
 92        fprintf(stderr, "Failed to allocate memory: %s\n", strerror(errno));
 93        return NULL;
 94    }
 95
 96    r->next = NULL;
 97    r->len = 0;
 98
 99    Fragment *f = c->first;
100
101    while (f) {
102        Fragment *next = f->next;
103
104        memcpy(r->str + r->len, f->str, f->len);
105        r->len += f->len;
106
107        free(f);
108        f = next;
109    }
110    r->str[r->len] = 0;
111
112    c->first = r;
113    c->last = r;
114
115    return r->str;
116}
 1const koffi = require('koffi');
 2const lib = koffi.load('./handles.so');
 3
 4const Concat = koffi.opaque('Concat');
 5const ConcatNewOut = lib.func('bool ConcatNewOut(_Out_ Concat **out)');
 6const ConcatNew = lib.func('Concat *ConcatNew()');
 7const ConcatFree = lib.func('void ConcatFree(Concat *c)');
 8const ConcatAppend = lib.func('bool ConcatAppend(Concat *c, const char *frag)');
 9const ConcatBuild = lib.func('const char *ConcatBuild(Concat *c)');
10
11let c = ConcatNew();
12if (!c) {
13    // This is stupid, it does the same, but try both versions (return value, output parameter)
14    let ptr = [null];
15    if (!ConcatNewOut(ptr))
16        throw new Error('Allocation failure');
17    c = ptr[0];
18}
19
20try {
21    if (!ConcatAppend(c, 'Hello... '))
22        throw new Error('Allocation failure');
23    if (!ConcatAppend(c, 'World!\n'))
24        throw new Error('Allocation failure');
25
26    for (let i = 1; i <= 30; i++) {
27        let frag;
28        if (i % 15 == 0) {
29            frag = 'FizzBuzz';
30        } else if (i % 5 == 0) {
31            frag = 'Buzz';
32        } else if (i % 3 == 0) {
33            frag = 'Fizz';
34        } else {
35            frag = String(i);
36        }
37
38        if (!ConcatAppend(c, frag))
39            throw new Error('Allocation failure');
40        if (!ConcatAppend(c, ' '))
41            throw new Error('Allocation failure');
42    }
43
44    let str = ConcatBuild(c);
45    if (str == null)
46        throw new Error('Allocation failure');
47    console.log(str);
48} finally {
49    ConcatFree(c);
50}

Array types#

Fixed-size C arrays#

Fixed-size arrays are declared with koffi.array(type, length). Just like in C, they cannot be passed as functions parameters (they degenerate to pointers), or returned by value. You can however embed them in struct types.

Koffi applies the following conversion rules when passing arrays to/from C:

  • JS to C: Koffi can take a normal Array (e.g. [1, 2]) or a TypedArray of the correct type (e.g. Uint8Array for an array of uint8_t numbers)

  • C to JS (return value, output parameters, callbacks): Koffi will use a TypedArray if possible. But you can change this behavior when you create the array type with the optional hint argument: koffi.array('uint8_t', 64, 'Array'). For non-number types, such as arrays of strings or structs, Koffi creates normal arrays.

See the example below:

 1const koffi = require('koffi');
 2
 3// Those two structs are exactly the same, only the array conversion hint is different
 4const Foo1 = koffi.struct('Foo', {
 5    i: 'int',
 6    a16: koffi.array('int16_t', 8)
 7});
 8const Foo2 = koffi.struct('Foo', {
 9    i: 'int',
10    a16: koffi.array('int16_t', 8, 'Array')
11});
12
13// Uses an hypothetical C function that just returns the struct passed as a parameter
14const ReturnFoo1 = lib.func('Foo1 ReturnFoo(Foo1 p)');
15const ReturnFoo2 = lib.func('Foo2 ReturnFoo(Foo2 p)');
16
17console.log(ReturnFoo1({ i: 5, a16: [6, 8] })) // Prints { i: 5, a16: Int16Array(2) [6, 8] }
18console.log(ReturnFoo2({ i: 5, a16: [6, 8] })) // Prints { i: 5, a16: [6, 8] }

Fixed-size string buffers#

Koffi can also convert JS strings to fixed-sized arrays in the following cases:

  • char arrays are filled with the UTF-8 encoded string, truncated if needed. The buffer is always NUL-terminated.

  • char16 (or char16_t) arrays are filled with the UTF-16 encoded string, truncated if needed. The buffer is always NUL-terminated.

The reverse case is also true, Koffi can convert a C fixed-size buffer to a JS string. This happens by default for char, char16 and char16_t arrays, but you can also explicitly ask for this with the String array hint (e.g. koffi.array('char', 8, 'String')).

Array pointers (dynamic arrays)#

In C, dynamically-sized arrays are usually passed around as pointers. Read more about array pointers in the relevant section.