#bindings #driver #ffi #windivert

sys windivert-sys

Raw FFI bindings for WinDivert user mode library

9 releases (5 breaking)

0.10.0 May 26, 2023
0.9.2 Mar 23, 2023
0.9.0 Dec 21, 2022
0.8.0 Jan 29, 2022
0.5.2 Feb 7, 2021

#303 in #driver

Download history 60/week @ 2023-12-17 15/week @ 2023-12-31 2/week @ 2024-01-07 3/week @ 2024-01-14 4/week @ 2024-01-21 21/week @ 2024-01-28 2/week @ 2024-02-04 45/week @ 2024-02-25 11/week @ 2024-03-03 9/week @ 2024-03-10 3/week @ 2024-03-17 260/week @ 2024-03-31

274 downloads per month
Used in windivert

LGPL-3.0-or-later

785KB
18K SLoC

C 16K SLoC // 0.1% comments Rust 1.5K SLoC // 0.1% comments Visual Studio Project 449 SLoC // 0.5% comments Shell 216 SLoC // 0.3% comments Batch 99 SLoC // 0.4% comments Bitbake 9 SLoC

WinDivert 2 Rust Wrapper

GitHub

Note: This is a work in process, so the crates won't follow semantic versioning until 1.0.0 release, so any version change below 1.0.0 might introduce breaking changes in the API or the crate usage in general.

This projects allows you to use WinDivert from rust. It consists of two crates:

  • windivert-sys crates.io docs dependency status: Crate providing raw bindings to the WinDivert user mode library.
  • windivert crates.io docs dependency status: (WIP) Built on top of windivert-sys and providing a friendlier Rust API and some abstractions.

Build

To be able to build windivert-sys you require WinDivert library files:

  • It's recommended to specify the path of the folder containing downloaded dll, lib & sys files using the WINDIVERT_PATH environment variable.
  • As a fallback windivert dll & lib files can be compiled from source if the vendored feature is enabled. To avoid multiple compilations set WINDIVERT_DLL_OUTPUT environment variable to save the generated build.
  • It's possible to compile for statically linking to the windivert library by enabling the static feature. Static linking can also be enabled if the WINDIVERT_STATIC is set and it takes priority over the crate features.
  • Any vendoring method will only compile the library. Sys files must always be provided.

Usage

  • windivert-sys shares the same API the native library uses. Read official documentation for more details.
  • windivert WIP

Note: WinDivert dll expects the corresponding driver sys file to be located on the same folder. Since the dll lib & sys files come in the same folder when downloading from official web windivert-sys will search for it on the path provided with WINDIVERT_PATH.

Dependencies

~151MB
~2.5M SLoC