qubes-mirage-firewall/router.ml

35 lines
971 B
OCaml
Raw Normal View History

2015-12-30 09:52:24 +00:00
(* Copyright (C) 2015, Thomas Leonard <thomas.leonard@unikernel.com>
See the README file for details. *)
2017-03-02 14:52:55 +00:00
open Fw_utils
2015-12-30 09:52:24 +00:00
(* The routing table *)
2015-12-30 09:52:24 +00:00
type t = {
client_eth : Client_eth.t;
2017-03-02 14:52:55 +00:00
nat : My_nat.t;
uplink : interface;
2015-12-30 09:52:24 +00:00
}
2017-03-02 14:52:55 +00:00
let create ~client_eth ~uplink ~nat =
{ client_eth; nat; uplink }
2015-12-30 09:52:24 +00:00
let target t buf =
2017-03-02 14:52:55 +00:00
let dst_ip = buf.Ipv4_packet.dst in
match Client_eth.lookup t.client_eth dst_ip with
| Some client_link -> Some (client_link :> interface)
| None -> Some t.uplink
2015-12-30 09:52:24 +00:00
let add_client t = Client_eth.add_client t.client_eth
let remove_client t = Client_eth.remove_client t.client_eth
let classify t ip =
if ip = Ipaddr.V4 t.uplink#my_ip then `Firewall
else if ip = Ipaddr.V4 t.uplink#other_ip then `NetVM
else (Client_eth.classify t.client_eth ip :> Packet.host)
let resolve t = function
| `Firewall -> Ipaddr.V4 t.uplink#my_ip
| `NetVM -> Ipaddr.V4 t.uplink#other_ip
| #Client_eth.host as host -> Client_eth.resolve t.client_eth host