hyperv_secure_boot_templates/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#![expect(missing_docs)]
#![forbid(unsafe_code)]
//! A basic "resource" crate which contains hard-coded Hyper-V Secure Boot
//! Template JSON files which can be embedded directly into a final binary.
//!
//! This crate should not include any `cfg(target_arch)` or `cfg(guest_arch)`
//! gates! Unused templates should be stripped from the final binary by the
//! linker.
macro_rules! include_templates {
(
$(($fn_name:ident, $path:literal),)*
) => {
$(
pub fn $fn_name() -> firmware_uefi_custom_vars::CustomVars {
// DEVNOTE: in the future, it may be interesting to explore
// parsing the JSON at compile time, and then "baking" the
// parsed templates into the binary as a `const` value, instead
// of baking in the JSON and doing this extra "useless" parsing
// + validation at runtime.
//
// While it's unlikely this would save all that much code space
// in the final bin (given that much of the parsing + validation
// code is shared between both templates and user custom uefi
// JSON files), it may result in a nice .rodata size decrease.
hyperv_uefi_custom_vars_json::load_template_from_json(include_bytes!(concat!(env!("OUT_DIR"), "/", $path))).unwrap()
}
)*
#[cfg(test)]
mod test {
$(
#[test]
fn $fn_name() {
super::$fn_name();
}
)*
}
};
}
pub mod aarch64 {
include_templates! {
(microsoft_windows, "aarch64/MicrosoftWindows_Template.json"),
(microsoft_uefi_ca, "aarch64/MicrosoftUEFICertificateAuthority_Template.json"),
}
}
pub mod x64 {
include_templates! {
(microsoft_windows, "x64/MicrosoftWindows_Template.json"),
(microsoft_uefi_ca, "x64/MicrosoftUEFICertificateAuthority_Template.json"),
}
}