2015-12-30 11:07:16 -05:00
|
|
|
(* Copyright (C) 2015, Thomas Leonard <thomas.leonard@unikernel.com>
|
|
|
|
See the README file for details. *)
|
|
|
|
|
|
|
|
open Packet
|
2017-03-02 09:52:55 -05:00
|
|
|
open Lwt.Infix
|
2015-12-30 11:07:16 -05:00
|
|
|
|
|
|
|
let src = Logs.Src.create "firewall" ~doc:"Packet handler"
|
|
|
|
module Log = (val Logs.src_log src : Logs.LOG)
|
|
|
|
|
|
|
|
(* Transmission *)
|
|
|
|
|
2017-03-05 11:31:04 -05:00
|
|
|
let transmit_ipv4 packet iface =
|
2016-06-26 07:04:47 -04:00
|
|
|
Lwt.catch
|
2017-03-06 09:30:41 -05:00
|
|
|
(fun () ->
|
2020-01-13 05:05:38 -05:00
|
|
|
let fragments = ref [] in
|
|
|
|
iface#writev `IPv4 (fun b ->
|
|
|
|
match Nat_packet.into_cstruct packet b with
|
|
|
|
| Error e ->
|
2020-04-29 09:58:01 -04:00
|
|
|
Log.warn (fun f -> f "Failed to write packet to %a: %a"
|
2020-01-13 05:05:38 -05:00
|
|
|
Ipaddr.V4.pp iface#other_ip
|
|
|
|
Nat_packet.pp_error e);
|
|
|
|
0
|
|
|
|
| Ok (n, frags) -> fragments := frags ; n) >>= fun () ->
|
|
|
|
Lwt_list.iter_s (fun f ->
|
2021-11-05 14:59:00 -04:00
|
|
|
let size = Cstruct.length f in
|
2020-01-13 05:05:38 -05:00
|
|
|
iface#writev `IPv4 (fun b -> Cstruct.blit f 0 b 0 size ; size))
|
|
|
|
!fragments)
|
2016-06-26 07:04:47 -04:00
|
|
|
(fun ex ->
|
2020-01-13 05:05:38 -05:00
|
|
|
Log.warn (fun f -> f "Failed to write packet to %a: %s"
|
|
|
|
Ipaddr.V4.pp iface#other_ip
|
|
|
|
(Printexc.to_string ex));
|
2020-01-11 09:39:20 -05:00
|
|
|
Lwt.return_unit
|
2016-06-26 07:04:47 -04:00
|
|
|
)
|
2015-12-30 11:07:16 -05:00
|
|
|
|
2017-03-05 11:31:04 -05:00
|
|
|
let forward_ipv4 t packet =
|
|
|
|
let `IPv4 (ip, _) = packet in
|
2017-03-02 09:52:55 -05:00
|
|
|
match Router.target t ip with
|
2017-03-05 11:31:04 -05:00
|
|
|
| Some iface -> transmit_ipv4 packet iface
|
2019-03-17 17:32:17 -04:00
|
|
|
| None -> Lwt.return_unit
|
2015-12-30 11:07:16 -05:00
|
|
|
|
|
|
|
(* NAT *)
|
|
|
|
|
2017-03-02 09:52:55 -05:00
|
|
|
let translate t packet =
|
|
|
|
My_nat.translate t.Router.nat packet
|
2015-12-30 11:07:16 -05:00
|
|
|
|
|
|
|
(* Add a NAT rule for the endpoints in this frame, via a random port on the firewall. *)
|
2017-03-02 09:52:55 -05:00
|
|
|
let add_nat_and_forward_ipv4 t packet =
|
2020-04-29 10:06:48 -04:00
|
|
|
let open Router in
|
|
|
|
let xl_host = t.uplink#my_ip in
|
|
|
|
My_nat.add_nat_rule_and_translate t.nat t.ports ~xl_host `NAT packet >>= function
|
2017-03-02 09:52:55 -05:00
|
|
|
| Ok packet -> forward_ipv4 t packet
|
|
|
|
| Error e ->
|
2020-04-29 09:58:01 -04:00
|
|
|
Log.warn (fun f -> f "Failed to add NAT rewrite rule: %s (%a)" e Nat_packet.pp packet);
|
2020-01-11 09:39:20 -05:00
|
|
|
Lwt.return_unit
|
2015-12-30 11:07:16 -05:00
|
|
|
|
2016-01-01 06:32:57 -05:00
|
|
|
(* Add a NAT rule to redirect this conversation to [host:port] instead of us. *)
|
2017-03-02 09:52:55 -05:00
|
|
|
let nat_to t ~host ~port packet =
|
2020-04-29 10:06:48 -04:00
|
|
|
let open Router in
|
|
|
|
match resolve t host with
|
2020-01-11 09:39:20 -05:00
|
|
|
| Ipaddr.V6 _ -> Log.warn (fun f -> f "Cannot NAT with IPv6"); Lwt.return_unit
|
2017-03-10 11:09:36 -05:00
|
|
|
| Ipaddr.V4 target ->
|
2020-04-29 10:06:48 -04:00
|
|
|
let xl_host = t.uplink#my_ip in
|
|
|
|
My_nat.add_nat_rule_and_translate t.nat t.ports ~xl_host (`Redirect (target, port)) packet >>= function
|
2017-03-10 11:09:36 -05:00
|
|
|
| Ok packet -> forward_ipv4 t packet
|
|
|
|
| Error e ->
|
2020-04-29 09:58:01 -04:00
|
|
|
Log.warn (fun f -> f "Failed to add NAT redirect rule: %s (%a)" e Nat_packet.pp packet);
|
2020-01-11 09:39:20 -05:00
|
|
|
Lwt.return_unit
|
2015-12-30 11:07:16 -05:00
|
|
|
|
2020-04-29 09:58:01 -04:00
|
|
|
let apply_rules t (rules : ('a, 'b) Packet.t -> Packet.action Lwt.t) ~dst (annotated_packet : ('a, 'b) Packet.t) : unit Lwt.t =
|
|
|
|
let packet = to_mirage_nat_packet annotated_packet in
|
|
|
|
rules annotated_packet >>= fun action ->
|
|
|
|
match action, dst with
|
2017-03-05 11:31:04 -05:00
|
|
|
| `Accept, `Client client_link -> transmit_ipv4 packet client_link
|
|
|
|
| `Accept, (`External _ | `NetVM) -> transmit_ipv4 packet t.Router.uplink
|
2019-05-16 14:18:31 -04:00
|
|
|
| `Accept, `Firewall ->
|
2020-04-29 09:58:01 -04:00
|
|
|
Log.warn (fun f -> f "Bad rule: firewall can't accept packets %a" Nat_packet.pp packet);
|
2020-01-11 09:39:20 -05:00
|
|
|
Lwt.return_unit
|
2020-04-29 09:58:01 -04:00
|
|
|
| `NAT, _ ->
|
|
|
|
Log.debug (fun f -> f "adding NAT rule for %a" Nat_packet.pp packet);
|
|
|
|
add_nat_and_forward_ipv4 t packet
|
2017-03-02 09:52:55 -05:00
|
|
|
| `NAT_to (host, port), _ -> nat_to t packet ~host ~port
|
2016-01-01 07:54:44 -05:00
|
|
|
| `Drop reason, _ ->
|
2020-04-29 09:58:01 -04:00
|
|
|
Log.debug (fun f -> f "Dropped packet (%s) %a" reason Nat_packet.pp packet);
|
2020-01-11 09:39:20 -05:00
|
|
|
Lwt.return_unit
|
2016-01-01 07:54:44 -05:00
|
|
|
|
2016-01-02 10:50:05 -05:00
|
|
|
let handle_low_memory t =
|
2015-12-30 11:07:16 -05:00
|
|
|
match Memory_pressure.status () with
|
|
|
|
| `Memory_critical -> (* TODO: should happen before copying and async *)
|
2016-01-08 06:31:27 -05:00
|
|
|
Log.warn (fun f -> f "Memory low - dropping packet and resetting NAT table");
|
2020-04-29 10:06:48 -04:00
|
|
|
My_nat.reset t.Router.nat t.Router.ports >|= fun () ->
|
2016-01-02 10:50:05 -05:00
|
|
|
`Memory_critical
|
2017-03-02 09:52:55 -05:00
|
|
|
| `Ok -> Lwt.return `Ok
|
2016-01-02 10:50:05 -05:00
|
|
|
|
2020-04-29 10:06:48 -04:00
|
|
|
let ipv4_from_client resolver t ~src packet =
|
2017-03-02 09:52:55 -05:00
|
|
|
handle_low_memory t >>= function
|
2020-01-11 09:39:20 -05:00
|
|
|
| `Memory_critical -> Lwt.return_unit
|
2015-12-30 11:07:16 -05:00
|
|
|
| `Ok ->
|
|
|
|
(* Check for existing NAT entry for this packet *)
|
2017-03-05 11:31:04 -05:00
|
|
|
translate t packet >>= function
|
2015-12-30 11:07:16 -05:00
|
|
|
| Some frame -> forward_ipv4 t frame (* Some existing connection or redirect *)
|
|
|
|
| None ->
|
|
|
|
(* No existing NAT entry. Check the firewall rules. *)
|
2019-04-17 06:03:17 -04:00
|
|
|
let `IPv4 (ip, _transport) = packet in
|
|
|
|
let dst = Router.classify t (Ipaddr.V4 ip.Ipv4_packet.dst) in
|
2020-04-29 09:58:01 -04:00
|
|
|
match of_mirage_nat_packet ~src:(`Client src) ~dst packet with
|
2020-01-11 09:39:20 -05:00
|
|
|
| None -> Lwt.return_unit
|
2020-04-29 10:06:48 -04:00
|
|
|
| Some firewall_packet -> apply_rules t (Rules.from_client resolver) ~dst firewall_packet
|
2015-12-30 11:07:16 -05:00
|
|
|
|
2017-03-05 11:31:04 -05:00
|
|
|
let ipv4_from_netvm t packet =
|
2017-03-02 09:52:55 -05:00
|
|
|
handle_low_memory t >>= function
|
2020-01-11 09:39:20 -05:00
|
|
|
| `Memory_critical -> Lwt.return_unit
|
2015-12-30 11:07:16 -05:00
|
|
|
| `Ok ->
|
2019-04-17 06:03:17 -04:00
|
|
|
let `IPv4 (ip, _transport) = packet in
|
|
|
|
let src = Router.classify t (Ipaddr.V4 ip.Ipv4_packet.src) in
|
|
|
|
let dst = Router.classify t (Ipaddr.V4 ip.Ipv4_packet.dst) in
|
2020-04-29 09:58:01 -04:00
|
|
|
match Packet.of_mirage_nat_packet ~src ~dst packet with
|
2020-01-11 09:39:20 -05:00
|
|
|
| None -> Lwt.return_unit
|
2020-04-29 09:58:01 -04:00
|
|
|
| Some _ ->
|
2019-04-17 06:03:17 -04:00
|
|
|
match src with
|
2019-05-16 14:18:31 -04:00
|
|
|
| `Client _ | `Firewall ->
|
2020-04-29 09:58:01 -04:00
|
|
|
Log.warn (fun f -> f "Frame from NetVM has internal source IP address! %a" Nat_packet.pp packet);
|
2020-01-11 09:39:20 -05:00
|
|
|
Lwt.return_unit
|
2019-04-17 06:03:17 -04:00
|
|
|
| `External _ | `NetVM as src ->
|
2017-03-05 11:31:04 -05:00
|
|
|
translate t packet >>= function
|
2015-12-30 11:07:16 -05:00
|
|
|
| Some frame -> forward_ipv4 t frame
|
|
|
|
| None ->
|
2020-04-29 09:58:01 -04:00
|
|
|
match Packet.of_mirage_nat_packet ~src ~dst packet with
|
|
|
|
| None -> Lwt.return_unit
|
|
|
|
| Some packet -> apply_rules t Rules.from_netvm ~dst packet
|