5 releases

0.1.5 Dec 14, 2020
0.1.4 Nov 20, 2020
0.1.3 Oct 8, 2020
0.1.1 Sep 5, 2020
0.0.0 Sep 1, 2020

#16 in #memflow

Custom license

725KB
13K SLoC

memflow-win32-ffi

Crates.io build and test codecov MIT licensed Discord

The memflow win32 FFI crate provides an interface to the memflow-win32 API for C/C++. Currently a single memflow_win32.h file is generated aside from the dynamic library that can be used to interact with memflow.

This FFI library is intended to be used in combination with the memflow-ffi library.

A simple example that initializes the memflow-ffi and memflow-win32-ffi:

#include "memflow_win32.h"
#include <stdio.h>

int main(int argc, char *argv[]) {
	log_init(1);

	ConnectorInventory *inv = inventory_try_new();
	printf("inv: %p\n", inv);

	const char *conn_name = argc > 1? argv[1]: "kvm";
	const char *conn_arg = argc > 2? argv[2]: "";

	CloneablePhysicalMemoryObj *conn =
        inventory_create_connector(inv, conn_name, conn_arg);
	printf("conn: %p\n", conn);

	if (conn) {
		Kernel *kernel = kernel_build(conn);
		printf("Kernel: %p\n", kernel);
		Win32Version ver = kernel_winver(kernel);
		printf("major: %d\n", ver.nt_major_version);
		printf("minor: %d\n", ver.nt_minor_version);
		printf("build: %d\n", ver.nt_build_number);

		kernel_free(kernel);
	}

	inventory_free(inv);

	return 0;
}

Additional examples can be found in the examples folder as well as in the memflow-ffi crate.

Dependencies

~8.5MB
~154K SLoC