qubes-mirage-firewall/unikernel.ml

78 lines
2.8 KiB
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. *)
open Lwt
open Qubes
let src = Logs.Src.create "unikernel" ~doc:"Main unikernel code"
module Log = (val Logs.src_log src : Logs.LOG)
module Main (Clock : V1.CLOCK) = struct
2015-12-30 13:59:13 +00:00
module Uplink = Uplink.Make(Clock)
2015-12-30 09:52:24 +00:00
2015-12-30 13:59:13 +00:00
(* Set up networking and listen for incoming packets. *)
let network qubesDB =
(* Read configuration from QubesDB *)
let config = Dao.read_network_config qubesDB in
Logs.info (fun f -> f "Client (internal) network is %a"
Ipaddr.V4.Prefix.pp_hum config.Dao.clients_prefix);
2015-12-30 13:59:13 +00:00
(* Initialise connection to NetVM *)
Uplink.connect config >>= fun uplink ->
(* Report success *)
Dao.set_iptables_error qubesDB "" >>= fun () ->
(* Set up client-side networking *)
let client_eth = Client_eth.create
~client_gw:config.Dao.clients_our_ip
~prefix:config.Dao.clients_prefix in
(* Set up routing between networks and hosts *)
let router = Router.create
~client_eth
~uplink:(Uplink.interface uplink) in
2015-12-30 13:59:13 +00:00
(* Handle packets from both networks *)
Lwt.join [
Client_net.listen router;
Uplink.listen uplink router
]
(* We don't use the GUI, but it's interesting to keep an eye on it.
If the other end dies, don't let it take us with it (can happen on log out). *)
let watch_gui gui =
Lwt.async (fun () ->
Lwt.try_bind
(fun () -> GUI.listen gui)
(fun `Cant_happen -> assert false)
(fun ex ->
Log.warn (fun f -> f "GUI thread failed: %s" (Printexc.to_string ex));
return ()
)
)
2015-12-30 13:59:13 +00:00
(* Main unikernel entry point (called from auto-generated main.ml). *)
2015-12-30 09:52:24 +00:00
let start () =
let start_time = Clock.time () in
(* Start qrexec agent, GUI agent and QubesDB agent in parallel *)
let qrexec = RExec.connect ~domid:0 () in
let gui = GUI.connect ~domid:0 () in
let qubesDB = DB.connect ~domid:0 () in
(* Wait for clients to connect *)
qrexec >>= fun qrexec ->
let agent_listener = RExec.listen qrexec Command.handler in
gui >>= fun gui ->
watch_gui gui;
2015-12-30 09:52:24 +00:00
qubesDB >>= fun qubesDB ->
Log.info (fun f -> f "agents connected in %.3f s (CPU time used since boot: %.3f s)"
(Clock.time () -. start_time) (Sys.time ()));
2015-12-30 09:52:24 +00:00
(* Watch for shutdown requests from Qubes *)
let shutdown_rq =
OS.Lifecycle.await_shutdown_request () >>= fun (`Poweroff | `Reboot) ->
return () in
2015-12-30 09:52:24 +00:00
(* Set up networking *)
2015-12-30 13:59:13 +00:00
let net_listener = network qubesDB in
2016-01-02 15:59:59 +00:00
(* Report memory usage to XenStore *)
Memory_pressure.init ();
2015-12-30 09:52:24 +00:00
(* Run until something fails or we get a shutdown request. *)
2015-12-30 13:59:13 +00:00
Lwt.choose [agent_listener; net_listener; shutdown_rq] >>= fun () ->
2015-12-30 09:52:24 +00:00
(* Give the console daemon time to show any final log messages. *)
OS.Time.sleep 1.0
end