2017-05-26 14:30:34 +00:00
|
|
|
(* (c) 2017 Hannes Mehnert, all rights reserved *)
|
|
|
|
|
|
|
|
open Vmm_core
|
|
|
|
|
|
|
|
open Rresult
|
|
|
|
open Astring
|
|
|
|
|
|
|
|
module Oid = struct
|
|
|
|
open Asn.OID
|
|
|
|
|
|
|
|
let m = base 1 3 <| 6 <| 1 <| 4 <| 1 <| 49836 <| 42
|
|
|
|
|
|
|
|
let version = m <| 0
|
|
|
|
|
|
|
|
(* used only in CA certs *)
|
|
|
|
let vms = m <| 1
|
|
|
|
let bridges = m <| 2
|
|
|
|
let block = m <| 3
|
|
|
|
let cpuids = m <| 4
|
|
|
|
(* TODO: embed host URL (well, or use common name / SubjectAlternativeName with IP, and static port?) *)
|
|
|
|
|
|
|
|
(* used in both CA and VM certs *)
|
|
|
|
let memory = m <| 5
|
|
|
|
|
|
|
|
(* used only in VM certs *)
|
|
|
|
let cpuid = m <| 6
|
|
|
|
let network = m <| 7
|
|
|
|
let block_device = m <| 8
|
|
|
|
let vmimage = m <| 9
|
|
|
|
let argv = m <| 10
|
|
|
|
|
|
|
|
(* used in VM certs and other leaf certs *)
|
|
|
|
let permissions = m <| 42
|
|
|
|
|
|
|
|
(* used in CRL certs *)
|
|
|
|
let crl = m <| 43
|
|
|
|
end
|
|
|
|
|
|
|
|
let perms : permission list Asn.t =
|
2017-12-20 22:06:51 +00:00
|
|
|
Asn.S.bit_string_flags [
|
2018-09-09 18:52:04 +00:00
|
|
|
0, `All ; (* no *)
|
2017-05-26 14:30:34 +00:00
|
|
|
1, `Info ;
|
2018-01-16 00:10:22 +00:00
|
|
|
2, `Create ;
|
2018-09-09 18:52:04 +00:00
|
|
|
3, `Block ; (* create [name] [size] ; destroy [name] *)
|
2017-05-26 14:30:34 +00:00
|
|
|
4, `Statistics ;
|
|
|
|
5, `Console ;
|
|
|
|
6, `Log ;
|
|
|
|
7, `Crl ;
|
2018-01-16 00:10:22 +00:00
|
|
|
9, `Force_create ;
|
2018-09-09 18:52:04 +00:00
|
|
|
(* 10, `Destroy ; (* [name] *) *)
|
2017-05-26 14:30:34 +00:00
|
|
|
]
|
|
|
|
|
2017-12-20 22:06:51 +00:00
|
|
|
open Rresult.R.Infix
|
|
|
|
|
|
|
|
let guard p err = if p then Ok () else Error err
|
|
|
|
|
2017-05-26 14:30:34 +00:00
|
|
|
let decode_strict codec cs =
|
2017-12-20 22:06:51 +00:00
|
|
|
match Asn.decode codec cs with
|
|
|
|
| Ok (a, cs) ->
|
|
|
|
guard (Cstruct.len cs = 0) (`Msg "trailing bytes") >>= fun () ->
|
|
|
|
Ok a
|
|
|
|
| Error (`Parse msg) -> Error (`Msg msg)
|
2017-05-26 14:30:34 +00:00
|
|
|
|
|
|
|
let projections_of asn =
|
|
|
|
let c = Asn.codec Asn.der asn in
|
|
|
|
(decode_strict c, Asn.encode c)
|
|
|
|
|
2017-12-20 22:06:51 +00:00
|
|
|
let int_of_cstruct, int_to_cstruct = projections_of Asn.S.int
|
|
|
|
let ints_of_cstruct, ints_to_cstruct = projections_of Asn.S.(sequence_of int)
|
2017-05-26 14:30:34 +00:00
|
|
|
|
|
|
|
let ipv4 =
|
|
|
|
let f cs = Ipaddr.V4.of_bytes_exn (Cstruct.to_string cs)
|
|
|
|
and g ip = Cstruct.of_string (Ipaddr.V4.to_bytes ip)
|
|
|
|
in
|
2017-12-20 22:06:51 +00:00
|
|
|
Asn.S.map f g Asn.S.octet_string
|
2017-05-26 14:30:34 +00:00
|
|
|
|
|
|
|
let bridge =
|
|
|
|
let f = function
|
|
|
|
| `C1 nam -> `Internal nam
|
|
|
|
| `C2 (nam, s, e, r, n) -> `External (nam, s, e, r, n)
|
|
|
|
and g = function
|
|
|
|
| `Internal nam -> `C1 nam
|
|
|
|
| `External (nam, s, e, r, n) -> `C2 (nam, s, e, r, n)
|
|
|
|
in
|
2017-12-20 22:06:51 +00:00
|
|
|
Asn.S.map f g @@
|
|
|
|
Asn.S.(choice2
|
|
|
|
(explicit 0 utf8_string)
|
|
|
|
(explicit 1 (sequence5
|
|
|
|
(required ~label:"name" utf8_string)
|
|
|
|
(required ~label:"start" ipv4)
|
|
|
|
(required ~label:"end" ipv4)
|
|
|
|
(required ~label:"router" ipv4)
|
|
|
|
(required ~label:"netmask" int))))
|
2017-05-26 14:30:34 +00:00
|
|
|
|
|
|
|
let bridges_of_cstruct, bridges_to_cstruct =
|
2017-12-20 22:06:51 +00:00
|
|
|
projections_of (Asn.S.sequence_of bridge)
|
2017-05-26 14:30:34 +00:00
|
|
|
|
|
|
|
let strings_of_cstruct, strings_to_cstruct =
|
2017-12-20 22:06:51 +00:00
|
|
|
projections_of Asn.S.(sequence_of utf8_string)
|
2017-05-26 14:30:34 +00:00
|
|
|
|
2017-12-20 22:06:51 +00:00
|
|
|
let string_of_cstruct, string_to_cstruct = projections_of Asn.S.utf8_string
|
2017-05-26 14:30:34 +00:00
|
|
|
|
|
|
|
let image =
|
|
|
|
let f = function
|
|
|
|
| `C1 x -> `Ukvm_amd64, x
|
|
|
|
| `C2 x -> `Ukvm_arm64, x
|
2018-03-18 18:07:14 +00:00
|
|
|
| `C3 x -> `Ukvm_amd64_compressed, x
|
2017-05-26 14:30:34 +00:00
|
|
|
and g = function
|
|
|
|
| `Ukvm_amd64, x -> `C1 x
|
|
|
|
| `Ukvm_arm64, x -> `C2 x
|
2018-03-18 18:07:14 +00:00
|
|
|
| `Ukvm_amd64_compressed, x -> `C3 x
|
2017-05-26 14:30:34 +00:00
|
|
|
in
|
2017-12-20 22:06:51 +00:00
|
|
|
Asn.S.map f g @@
|
2018-03-18 18:07:14 +00:00
|
|
|
Asn.S.(choice3
|
2017-12-20 22:06:51 +00:00
|
|
|
(explicit 0 octet_string)
|
2018-03-18 18:07:14 +00:00
|
|
|
(explicit 1 octet_string)
|
|
|
|
(explicit 2 octet_string))
|
2017-05-26 14:30:34 +00:00
|
|
|
|
|
|
|
let image_of_cstruct, image_to_cstruct = projections_of image
|
|
|
|
|
|
|
|
let permissions_of_cstruct, permissions_to_cstruct = projections_of perms
|
|
|
|
|
|
|
|
let req label cert oid f =
|
|
|
|
match X509.Extension.unsupported cert oid with
|
2017-12-20 22:06:51 +00:00
|
|
|
| None -> R.error_msgf "OID %s not present (%a)" label Asn.OID.pp oid
|
2017-05-26 14:30:34 +00:00
|
|
|
| Some (_, data) -> f data
|
|
|
|
|
|
|
|
let opt cert oid f =
|
|
|
|
match X509.Extension.unsupported cert oid with
|
|
|
|
| None -> Ok None
|
|
|
|
| Some (_, data) -> f data >>| fun s -> Some s
|
|
|
|
|
|
|
|
type version = [ `AV0 ]
|
|
|
|
|
|
|
|
let version_of_int = function
|
|
|
|
| 0 -> Ok `AV0
|
|
|
|
| _ -> Error (`Msg "couldn't parse version")
|
|
|
|
|
|
|
|
let version_to_int = function
|
|
|
|
| `AV0 -> 0
|
|
|
|
|
|
|
|
let pp_version ppf v =
|
|
|
|
Fmt.int ppf
|
|
|
|
(match v with
|
|
|
|
| `AV0 -> 0)
|
|
|
|
|
|
|
|
let version_eq a b =
|
|
|
|
match a, b with
|
|
|
|
| `AV0, `AV0 -> true
|
|
|
|
|
|
|
|
let version_to_cstruct v = int_to_cstruct (version_to_int v)
|
|
|
|
|
|
|
|
let version_of_cstruct cs =
|
|
|
|
int_of_cstruct cs >>= fun v ->
|
|
|
|
version_of_int v
|
|
|
|
|
|
|
|
let version_of_cert version cert =
|
|
|
|
req "version" cert Oid.version version_of_cstruct >>= fun version' ->
|
|
|
|
if version_eq version version' then
|
|
|
|
Ok ()
|
|
|
|
else
|
|
|
|
R.error_msgf "unsupported asn version %a (expected %a)"
|
|
|
|
pp_version version' pp_version version
|
|
|
|
|
|
|
|
let delegation_of_cert version cert =
|
|
|
|
version_of_cert version cert >>= fun () ->
|
|
|
|
req "cpuids" cert Oid.cpuids ints_of_cstruct >>= fun cpuids ->
|
|
|
|
req "memory" cert Oid.memory int_of_cstruct >>= fun memory ->
|
|
|
|
opt cert Oid.block int_of_cstruct >>= fun block ->
|
|
|
|
req "vms" cert Oid.vms int_of_cstruct >>= fun vms ->
|
|
|
|
opt cert Oid.bridges bridges_of_cstruct >>= fun bridges ->
|
|
|
|
let bridges = match bridges with
|
|
|
|
| None -> String.Map.empty
|
|
|
|
| Some xs ->
|
|
|
|
let add m v =
|
|
|
|
let n = match v with `Internal n -> n | `External (n, _, _, _, _) -> n in
|
|
|
|
String.Map.add n v m
|
|
|
|
in
|
|
|
|
List.fold_left add String.Map.empty xs
|
|
|
|
and cpuids = IS.of_list cpuids
|
|
|
|
in
|
|
|
|
Ok { vms ; cpuids ; memory ; block ; bridges }
|
|
|
|
|
|
|
|
let contains_vm cert =
|
|
|
|
match X509.Extension.unsupported cert Oid.vmimage with
|
|
|
|
| None -> false
|
|
|
|
| Some _ -> true
|
|
|
|
|
|
|
|
let contains_crl cert =
|
|
|
|
match X509.Extension.unsupported cert Oid.crl with
|
|
|
|
| None -> false
|
|
|
|
| Some _ -> true
|
|
|
|
|
|
|
|
let crl_of_cert cert =
|
|
|
|
let crl cs = match X509.Encoding.crl_of_cstruct cs with
|
|
|
|
| None -> Error (`Msg "couldn't parse revocation list")
|
|
|
|
| Some x -> Ok x
|
|
|
|
in
|
|
|
|
req "crl" cert Oid.crl crl
|
|
|
|
|
|
|
|
let vm_of_cert prefix cert =
|
|
|
|
req "cpuid" cert Oid.cpuid int_of_cstruct >>= fun cpuid ->
|
2018-04-03 20:58:31 +00:00
|
|
|
req "memory" cert Oid.memory int_of_cstruct >>= fun requested_memory ->
|
2017-05-26 14:30:34 +00:00
|
|
|
opt cert Oid.block_device string_of_cstruct >>= fun block_device ->
|
|
|
|
opt cert Oid.network strings_of_cstruct >>= fun network ->
|
|
|
|
req "vmimage" cert Oid.vmimage image_of_cstruct >>= fun vmimage ->
|
|
|
|
opt cert Oid.argv strings_of_cstruct >>= fun argv ->
|
|
|
|
let vname = id cert in
|
|
|
|
let network = match network with None -> [] | Some x -> x in
|
2018-04-03 20:58:31 +00:00
|
|
|
Ok { prefix ; vname ; cpuid ; requested_memory ; block_device ; network ; vmimage ; argv }
|
2017-05-26 14:30:34 +00:00
|
|
|
|
|
|
|
let permissions_of_cert version cert =
|
|
|
|
version_of_cert version cert >>= fun () ->
|
|
|
|
req "permissions" cert Oid.permissions permissions_of_cstruct
|