2015-12-30 04:52:24 -05: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)
|
|
|
|
|
2022-03-30 03:12:01 -04:00
|
|
|
module Main (R : Mirage_random.S)(Clock : Mirage_clock.MCLOCK)(Time : Mirage_time.S) = struct
|
|
|
|
module Uplink = Uplink.Make(R)(Clock)(Time)
|
|
|
|
module Dns_transport = My_dns.Transport(R)(Clock)(Time)
|
2020-04-29 10:06:48 -04:00
|
|
|
module Dns_client = Dns_client.Make(Dns_transport)
|
2020-04-29 09:58:01 -04:00
|
|
|
|
2015-12-30 08:59:13 -05:00
|
|
|
(* Set up networking and listen for incoming packets. *)
|
2022-09-07 10:53:45 -04:00
|
|
|
let network dns_client dns_responses dns_servers uplink qubesDB router =
|
2015-12-30 08:59:13 -05:00
|
|
|
(* Report success *)
|
|
|
|
Dao.set_iptables_error qubesDB "" >>= fun () ->
|
|
|
|
(* Handle packets from both networks *)
|
2016-10-01 05:47:19 -04:00
|
|
|
Lwt.choose [
|
2022-09-07 10:53:45 -04:00
|
|
|
Client_net.listen Clock.elapsed_ns dns_client dns_servers qubesDB router;
|
2020-04-29 10:06:48 -04:00
|
|
|
Uplink.listen uplink Clock.elapsed_ns dns_responses router
|
2015-12-30 08:59:13 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
(* Main unikernel entry point (called from auto-generated main.ml). *)
|
2022-03-30 03:12:01 -04:00
|
|
|
let start _random _clock _time =
|
2020-01-11 09:36:02 -05:00
|
|
|
let start_time = Clock.elapsed_ns () in
|
2022-09-02 08:27:43 -04:00
|
|
|
(* Start qrexec agent and QubesDB agent in parallel *)
|
2015-12-30 04:52:24 -05:00
|
|
|
let qrexec = RExec.connect ~domid:0 () in
|
|
|
|
let qubesDB = DB.connect ~domid:0 () in
|
2020-04-29 09:58:01 -04:00
|
|
|
|
2015-12-30 04:52:24 -05:00
|
|
|
(* Wait for clients to connect *)
|
|
|
|
qrexec >>= fun qrexec ->
|
|
|
|
let agent_listener = RExec.listen qrexec Command.handler in
|
|
|
|
qubesDB >>= fun qubesDB ->
|
2020-04-29 09:58:01 -04:00
|
|
|
let startup_time =
|
2017-03-02 09:52:55 -05:00
|
|
|
let (-) = Int64.sub in
|
2020-01-11 09:36:02 -05:00
|
|
|
let time_in_ns = Clock.elapsed_ns () - start_time in
|
2017-03-02 09:52:55 -05:00
|
|
|
Int64.to_float time_in_ns /. 1e9
|
|
|
|
in
|
2019-01-10 07:39:39 -05:00
|
|
|
Log.info (fun f -> f "QubesDB and qrexec agents connected in %.3f s" startup_time);
|
2015-12-30 04:52:24 -05:00
|
|
|
(* Watch for shutdown requests from Qubes *)
|
2016-01-08 06:31:27 -05:00
|
|
|
let shutdown_rq =
|
2022-03-30 03:12:01 -04:00
|
|
|
Xen_os.Lifecycle.await_shutdown_request () >>= fun (`Poweroff | `Reboot) ->
|
2020-01-11 09:39:20 -05:00
|
|
|
Lwt.return_unit in
|
2015-12-30 04:52:24 -05:00
|
|
|
(* Set up networking *)
|
2017-03-15 04:56:24 -04:00
|
|
|
let max_entries = Key_gen.nat_table_size () in
|
2022-10-07 12:49:03 -04:00
|
|
|
let nat = My_nat.create ~max_entries in
|
2020-04-29 09:58:01 -04:00
|
|
|
|
|
|
|
(* Read network configuration from QubesDB *)
|
|
|
|
Dao.read_network_config qubesDB >>= fun config ->
|
|
|
|
|
|
|
|
Uplink.connect config >>= fun uplink ->
|
|
|
|
(* Set up client-side networking *)
|
2023-06-30 07:59:03 -04:00
|
|
|
Client_eth.create config >>= fun clients ->
|
2020-04-29 09:58:01 -04:00
|
|
|
(* Set up routing between networks and hosts *)
|
|
|
|
let router = Router.create
|
2023-06-30 07:59:03 -04:00
|
|
|
~clients
|
2020-04-29 09:58:01 -04:00
|
|
|
~uplink:(Uplink.interface uplink)
|
|
|
|
~nat
|
|
|
|
in
|
|
|
|
|
2020-04-29 10:06:48 -04:00
|
|
|
let send_dns_query = Uplink.send_dns_client_query uplink in
|
|
|
|
let dns_mvar = Lwt_mvar.create_empty () in
|
2022-09-07 10:53:45 -04:00
|
|
|
let nameservers = `Udp, [ config.Dao.dns, 53 ; config.Dao.dns2, 53 ] in
|
2021-11-05 14:53:39 -04:00
|
|
|
let dns_client = Dns_client.create ~nameservers (router, send_dns_query, dns_mvar) in
|
2020-04-29 10:06:48 -04:00
|
|
|
|
2022-09-07 10:53:45 -04:00
|
|
|
let dns_servers = [ config.Dao.dns ; config.Dao.dns2 ] in
|
|
|
|
let net_listener = network (Dns_client.getaddrinfo dns_client Dns.Rr_map.A) dns_mvar dns_servers uplink qubesDB router in
|
2020-04-29 09:58:01 -04:00
|
|
|
|
2016-01-02 10:59:59 -05:00
|
|
|
(* Report memory usage to XenStore *)
|
|
|
|
Memory_pressure.init ();
|
2015-12-30 04:52:24 -05:00
|
|
|
(* Run until something fails or we get a shutdown request. *)
|
2015-12-30 08:59:13 -05:00
|
|
|
Lwt.choose [agent_listener; net_listener; shutdown_rq] >>= fun () ->
|
2015-12-30 04:52:24 -05:00
|
|
|
(* Give the console daemon time to show any final log messages. *)
|
2022-03-30 03:12:01 -04:00
|
|
|
Time.sleep_ns (1.0 *. 1e9 |> Int64.of_float)
|
2015-12-30 04:52:24 -05:00
|
|
|
end
|