2016-09-25 09:38:17 -04:00
|
|
|
(* Copyright (C) 2016, Thomas Leonard <thomas.leonard@unikernel.com>
|
2015-12-30 08:48:13 -05:00
|
|
|
See the README file for details. *)
|
|
|
|
|
2017-03-02 09:52:55 -05:00
|
|
|
open Fw_utils
|
2016-09-25 10:14:16 -04:00
|
|
|
open Lwt.Infix
|
2015-12-30 08:48:13 -05:00
|
|
|
|
2016-09-25 09:38:17 -04:00
|
|
|
let src = Logs.Src.create "client_eth" ~doc:"Ethernet networks for NetVM clients"
|
2015-12-30 08:48:13 -05:00
|
|
|
module Log = (val Logs.src_log src : Logs.LOG)
|
|
|
|
|
|
|
|
type t = {
|
|
|
|
mutable iface_of_ip : client_link IpMap.t;
|
2016-09-25 10:14:16 -04:00
|
|
|
changed : unit Lwt_condition.t; (* Fires when [iface_of_ip] changes. *)
|
2015-12-30 08:48:13 -05:00
|
|
|
client_gw : Ipaddr.V4.t; (* The IP that clients are given as their default gateway. *)
|
|
|
|
}
|
|
|
|
|
2016-01-01 06:32:57 -05:00
|
|
|
type host =
|
|
|
|
[ `Client of client_link
|
|
|
|
| `Client_gateway
|
|
|
|
| `External of Ipaddr.t ]
|
|
|
|
|
2016-09-25 09:38:17 -04:00
|
|
|
let create ~client_gw =
|
2016-09-25 10:14:16 -04:00
|
|
|
let changed = Lwt_condition.create () in
|
|
|
|
{ iface_of_ip = IpMap.empty; client_gw; changed }
|
2015-12-30 08:48:13 -05:00
|
|
|
|
2016-01-01 06:32:57 -05:00
|
|
|
let client_gw t = t.client_gw
|
2015-12-30 08:48:13 -05:00
|
|
|
|
|
|
|
let add_client t iface =
|
2015-12-30 11:07:16 -05:00
|
|
|
let ip = iface#other_ip in
|
2016-09-25 10:14:16 -04:00
|
|
|
let rec aux () =
|
|
|
|
if IpMap.mem ip t.iface_of_ip then (
|
|
|
|
(* Wait for old client to disappear before adding one with the same IP address.
|
|
|
|
Otherwise, its [remove_client] call will remove the new client instead. *)
|
|
|
|
Log.info (fun f -> f "Waiting for old client %a to go away before accepting new one" Ipaddr.V4.pp_hum ip);
|
|
|
|
Lwt_condition.wait t.changed >>= aux
|
|
|
|
) else (
|
|
|
|
t.iface_of_ip <- t.iface_of_ip |> IpMap.add ip iface;
|
|
|
|
Lwt_condition.broadcast t.changed ();
|
|
|
|
Lwt.return_unit
|
|
|
|
)
|
|
|
|
in
|
|
|
|
aux ()
|
2015-12-30 08:48:13 -05:00
|
|
|
|
|
|
|
let remove_client t iface =
|
2015-12-30 11:07:16 -05:00
|
|
|
let ip = iface#other_ip in
|
2015-12-30 08:48:13 -05:00
|
|
|
assert (IpMap.mem ip t.iface_of_ip);
|
2016-09-25 10:14:16 -04:00
|
|
|
t.iface_of_ip <- t.iface_of_ip |> IpMap.remove ip;
|
|
|
|
Lwt_condition.broadcast t.changed ()
|
2015-12-30 08:48:13 -05:00
|
|
|
|
|
|
|
let lookup t ip = IpMap.find ip t.iface_of_ip
|
|
|
|
|
2015-12-31 04:56:58 -05:00
|
|
|
let classify t ip =
|
|
|
|
match ip with
|
|
|
|
| Ipaddr.V6 _ -> `External ip
|
|
|
|
| Ipaddr.V4 ip4 ->
|
2017-03-02 09:52:55 -05:00
|
|
|
if ip4 = t.client_gw then `Client_gateway
|
|
|
|
else match lookup t ip4 with
|
|
|
|
| Some client_link -> `Client client_link
|
|
|
|
| None -> `External ip
|
2015-12-30 11:07:16 -05:00
|
|
|
|
2016-01-01 06:32:57 -05:00
|
|
|
let resolve t : host -> Ipaddr.t = function
|
|
|
|
| `Client client_link -> Ipaddr.V4 client_link#other_ip
|
|
|
|
| `Client_gateway -> Ipaddr.V4 t.client_gw
|
|
|
|
| `External addr -> addr
|
|
|
|
|
2015-12-30 08:48:13 -05:00
|
|
|
module ARP = struct
|
|
|
|
type arp = {
|
|
|
|
net : t;
|
|
|
|
client_link : client_link;
|
|
|
|
}
|
|
|
|
|
|
|
|
let lookup t ip =
|
2016-01-01 05:55:34 -05:00
|
|
|
if ip = t.net.client_gw then Some t.client_link#my_mac
|
2016-09-25 09:38:17 -04:00
|
|
|
else None
|
2017-03-02 09:52:55 -05:00
|
|
|
(* We're now treating client networks as point-to-point links,
|
|
|
|
so we no longer respond on behalf of other clients. *)
|
2016-09-25 09:38:17 -04:00
|
|
|
(*
|
2015-12-30 08:48:13 -05:00
|
|
|
else match IpMap.find ip t.net.iface_of_ip with
|
2015-12-30 11:07:16 -05:00
|
|
|
| Some client_iface -> Some client_iface#other_mac
|
2015-12-30 08:48:13 -05:00
|
|
|
| None -> None
|
2016-09-25 09:38:17 -04:00
|
|
|
*)
|
2015-12-30 08:48:13 -05:00
|
|
|
|
|
|
|
let create ~net client_link = {net; client_link}
|
|
|
|
|
2017-03-02 09:52:55 -05:00
|
|
|
let input_query t arp =
|
|
|
|
let req_ipv4 = arp.Arpv4_packet.tpa in
|
2016-01-08 06:31:27 -05:00
|
|
|
Log.info (fun f -> f "who-has %s?" (Ipaddr.V4.to_string req_ipv4));
|
2016-01-01 05:55:34 -05:00
|
|
|
if req_ipv4 = t.client_link#other_ip then (
|
2016-01-08 06:31:27 -05:00
|
|
|
Log.info (fun f -> f "ignoring request for client's own IP");
|
2015-12-30 08:48:13 -05:00
|
|
|
None
|
|
|
|
) else match lookup t req_ipv4 with
|
2017-03-02 09:52:55 -05:00
|
|
|
| None ->
|
2016-01-08 06:31:27 -05:00
|
|
|
Log.info (fun f -> f "unknown address; not responding");
|
2015-12-30 08:48:13 -05:00
|
|
|
None
|
2017-03-02 09:52:55 -05:00
|
|
|
| Some req_mac ->
|
2016-01-08 06:31:27 -05:00
|
|
|
Log.info (fun f -> f "responding to: who-has %s?" (Ipaddr.V4.to_string req_ipv4));
|
2017-03-02 09:52:55 -05:00
|
|
|
let req_spa = arp.Arpv4_packet.spa in
|
|
|
|
let req_sha = arp.Arpv4_packet.sha in
|
|
|
|
Some { Arpv4_packet.
|
|
|
|
op = Arpv4_wire.Reply;
|
|
|
|
(* The Target Hardware Address and IP are copied from the request *)
|
|
|
|
tha = req_sha;
|
|
|
|
tpa = req_spa;
|
|
|
|
sha = req_mac;
|
|
|
|
spa = req_ipv4;
|
|
|
|
}
|
|
|
|
|
|
|
|
let input_gratuitous t arp =
|
|
|
|
let spa = arp.Arpv4_packet.spa in
|
|
|
|
let sha = arp.Arpv4_packet.sha in
|
2015-12-30 08:48:13 -05:00
|
|
|
match lookup t spa with
|
|
|
|
| Some real_mac when Macaddr.compare sha real_mac = 0 ->
|
2017-03-02 09:52:55 -05:00
|
|
|
Log.info (fun f -> f "client suggests updating %s -> %s (as expected)"
|
|
|
|
(Ipaddr.V4.to_string spa) (Macaddr.to_string sha));
|
2015-12-30 08:48:13 -05:00
|
|
|
| Some other_mac ->
|
2017-03-02 09:52:55 -05:00
|
|
|
Log.warn (fun f -> f "client suggests incorrect update %s -> %s (should be %s)"
|
|
|
|
(Ipaddr.V4.to_string spa) (Macaddr.to_string sha) (Macaddr.to_string other_mac));
|
2015-12-30 08:48:13 -05:00
|
|
|
| None ->
|
2017-03-02 09:52:55 -05:00
|
|
|
Log.warn (fun f -> f "client suggests incorrect update %s -> %s (unexpected IP)"
|
|
|
|
(Ipaddr.V4.to_string spa) (Macaddr.to_string sha))
|
|
|
|
|
|
|
|
let input t arp =
|
|
|
|
let op = arp.Arpv4_packet.op in
|
|
|
|
match op with
|
|
|
|
| Arpv4_wire.Request -> input_query t arp
|
|
|
|
| Arpv4_wire.Reply -> input_gratuitous t arp; None
|
2015-12-30 08:48:13 -05:00
|
|
|
end
|