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
|
|
|
|
|
2017-03-15 04:56:24 -04:00
|
|
|
let table_size =
|
|
|
|
let open Functoria_key in
|
|
|
|
let info = Arg.info
|
|
|
|
~doc:"The number of NAT entries to allocate."
|
|
|
|
~docv:"ENTRIES" ["nat-table-size"]
|
|
|
|
in
|
|
|
|
let key = Arg.opt ~stage:`Both Arg.int 5_000 info in
|
|
|
|
create "nat_table_size" key
|
|
|
|
|
2015-12-30 04:52:24 -05:00
|
|
|
let main =
|
|
|
|
foreign
|
2017-03-15 04:56:24 -04:00
|
|
|
~keys:[Functoria_key.abstract table_size]
|
2017-03-02 09:52:55 -05:00
|
|
|
~packages:[
|
|
|
|
package "vchan";
|
|
|
|
package "cstruct";
|
2017-03-18 06:20:26 -04:00
|
|
|
package "tcpip" ~sublibs:["stack-direct"; "xen"] ~min:"3.1.0";
|
2017-03-02 09:52:55 -05:00
|
|
|
package "mirage-net-xen";
|
|
|
|
package "mirage-qubes";
|
|
|
|
package "mirage-nat" ~sublibs:["hashtable"];
|
|
|
|
package "mirage-logs";
|
|
|
|
]
|
|
|
|
"Unikernel.Main" (mclock @-> job)
|
2015-12-30 04:52:24 -05:00
|
|
|
|
|
|
|
let () =
|
2017-03-02 09:52:55 -05:00
|
|
|
register "qubes-firewall" [main $ default_monotonic_clock]
|
2016-04-30 08:35:24 -04:00
|
|
|
~argv:no_argv
|