qubes-mirage-firewall/config.ml

38 lines
1.3 KiB
OCaml
Raw Normal View History

2024-04-23 12:09:53 -04:00
(* mirage >= 4.5.0 & < 5.0.0 *)
2017-03-18 06:20:26 -04:00
(* Copyright (C) 2017, Thomas Leonard <thomas.leonard@unikernel.com>
2015-12-30 04:52:24 -05:00
See the README file for details. *)
(** Configuration for the "mirage" tool. *)
open Mirage
2024-04-23 11:21:51 -04:00
let nat_table_size = runtime_arg ~pos:__POS__ "Unikernel.nat_table_size"
let ipv4 = runtime_arg ~pos:__POS__ "Unikernel.ipv4"
let ipv4_gw = runtime_arg ~pos:__POS__ "Unikernel.ipv4_gw"
let ipv4_dns = runtime_arg ~pos:__POS__ "Unikernel.ipv4_dns"
let ipv4_dns2 = runtime_arg ~pos:__POS__ "Unikernel.ipv4_dns2"
2023-06-30 10:58:08 -04:00
2015-12-30 04:52:24 -05:00
let main =
2024-04-23 11:21:51 -04:00
main
2024-04-23 12:09:53 -04:00
~runtime_args:[ nat_table_size; ipv4; ipv4_gw; ipv4_dns; ipv4_dns2; ]
2017-03-02 09:52:55 -05:00
~packages:[
package "vchan" ~min:"4.0.2";
2017-03-02 09:52:55 -05:00
package "cstruct";
package "tcpip" ~min:"3.7.0";
2024-04-23 12:09:53 -04:00
package ~min:"2.3.0" ~sublibs:["mirage"] "arp";
package ~min:"3.0.0" "ethernet";
2017-11-14 07:35:33 -05:00
package "shared-memory-ring" ~min:"3.0.0";
2024-05-06 10:13:17 -04:00
package "mirage-net-xen" ~min:"2.1.4";
package "ipaddr" ~min:"5.2.0";
package "mirage-qubes" ~min:"0.9.1";
2024-04-23 12:09:53 -04:00
package ~min:"3.0.1" "mirage-nat";
2017-03-02 09:52:55 -05:00
package "mirage-logs";
package "mirage-xen" ~min:"8.0.0";
2024-04-23 12:09:53 -04:00
package ~min:"6.4.0" "dns-client";
package "pf-qubes";
2017-03-02 09:52:55 -05:00
]
"Unikernel.Main" (random @-> mclock @-> time @-> job)
2015-12-30 04:52:24 -05:00
let () =
register "qubes-firewall" [main $ default_random $ default_monotonic_clock $ default_time]