rawlinkversion
A platform-independent library to read and write raw packets.
Rawlink is an ocaml library for sending and receiving raw packets at the link layer level. Sometimes you need to have full control of the packet, including building the full ethernet frame.
The API is platform independent, it uses BPF on real UNIXes and AF_SOCKET on linux. Some functionality is sacrificed so that the API is portable enough.
Currently BPF and AF_PACKET are implemented, including filtering capabilities.
Writing a BPF program is a pain in the ass, so no facilities are provided for
it. If you need a BPF filter, I suggest you write a small .c file with a
function that returns the BPF program as a string, check rawlink_stubs.c
for
an example.
Both normal blocking functions as well as Lwt
monadic variants are provided.
A typical code for receiving all packets and just sending them back on a specified interface are detailed below:
let link = Rawlink.open_link "eth0" in
let buf = Rawlink.read_packet link in
Printf.printf "got a packet with %d bytes.\n%!" (Cstruct.len buf);
Rawlink.send_packet link buf
Check the mli interface for more options.
Author | Christiano F. Haesbaert <haesbaert@haesbaert.org> |
---|---|
License | ISC |
Published | |
Homepage | https://github.com/haesbaert/rawlink |
Issue Tracker | https://github.com/haesbaert/rawlink/issues |
Maintainer | Christiano F. Haesbaert <haesbaert@haesbaert.org> |
Dependencies |
|
Source [http] | https://github.com/haesbaert/rawlink/archive/v0.4.tar.gz sha256=8a9e523741d02426250917f4e2643a10ae65c980f916e27163c4532b2c23eb4c md5=d10b3beffe14e45c4b3b6eec0f925d22 |
Edit | https://github.com/ocaml/opam-repository/tree/master/packages/rawlink/rawlink.0.4/opam |
- charrua-unix<0.11.2