-
Notifications
You must be signed in to change notification settings - Fork 28
/
fw_utils.ml
33 lines (27 loc) · 1.03 KB
/
fw_utils.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
(* Copyright (C) 2015, Thomas Leonard <[email protected]>
See the README file for details. *)
(** General utility functions. *)
(** An Ethernet interface. *)
class type interface = object
method my_mac : Macaddr.t
method writev : Ethernet.Packet.proto -> (Cstruct.t -> int) -> unit Lwt.t
method my_ip : Ipaddr.V4.t
method other_ip : Ipaddr.V4.t
end
(** An Ethernet interface connected to a clientVM. *)
class type client_link = object
inherit interface
method other_mac : Macaddr.t
method log_header : string (* For log messages *)
method get_rules: Pf_qubes.Parse_qubes.rule list
method set_rules: string Qubes.DB.KeyMap.t -> unit
end
(** An Ethernet header from [src]'s MAC address to [dst]'s with an IPv4 payload. *)
let eth_header ethertype ~src ~dst =
Ethernet.Packet.make_cstruct { Ethernet.Packet.source = src; destination = dst; ethertype }
let error fmt =
let err s = Failure s in
Printf.ksprintf err fmt
let or_raise msg pp = function
| Ok x -> x
| Error e -> failwith (Fmt.str "%s: %a" msg pp e)