use crate::boot_logger::LoggerType;
use underhill_confidentiality::OPENHCL_CONFIDENTIAL_DEBUG_ENV_VAR_NAME;
const BOOT_LOG: &str = "OPENHCL_BOOT_LOG=";
const SERIAL_LOGGER: &str = "com3";
const ENABLE_VTL2_GPA_POOL: &str = "OPENHCL_ENABLE_VTL2_GPA_POOL=";
#[derive(Debug, PartialEq)]
pub struct BootCommandLineOptions {
pub logger: Option<LoggerType>,
pub confidential_debug: bool,
pub enable_vtl2_gpa_pool: Option<u64>,
}
pub fn parse_boot_command_line(cmdline: &str) -> BootCommandLineOptions {
let mut result = BootCommandLineOptions {
logger: None,
confidential_debug: false,
enable_vtl2_gpa_pool: None,
};
for arg in cmdline.split_whitespace() {
if arg.starts_with(BOOT_LOG) {
let arg = arg.split_once('=').map(|(_, arg)| arg);
if let Some(SERIAL_LOGGER) = arg {
result.logger = Some(LoggerType::Serial)
}
} else if arg.starts_with(OPENHCL_CONFIDENTIAL_DEBUG_ENV_VAR_NAME) {
let arg = arg.split_once('=').map(|(_, arg)| arg);
if arg.is_some_and(|a| a != "0") {
result.confidential_debug = true;
if result.logger.is_none() {
result.logger = Some(LoggerType::Serial);
}
}
} else if arg.starts_with(ENABLE_VTL2_GPA_POOL) {
result.enable_vtl2_gpa_pool = arg.split_once('=').and_then(|(_, arg)| {
let num = arg.parse::<u64>().unwrap_or(0);
if num == 0 { None } else { Some(num) }
});
}
}
result
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_console_parsing() {
assert_eq!(
parse_boot_command_line("OPENHCL_BOOT_LOG=com3"),
BootCommandLineOptions {
logger: Some(LoggerType::Serial),
confidential_debug: false,
enable_vtl2_gpa_pool: None
}
);
assert_eq!(
parse_boot_command_line("OPENHCL_BOOT_LOG=1"),
BootCommandLineOptions {
logger: None,
confidential_debug: false,
enable_vtl2_gpa_pool: None
}
);
assert_eq!(
parse_boot_command_line("OPENHCL_BOOT_LOG=random"),
BootCommandLineOptions {
logger: None,
confidential_debug: false,
enable_vtl2_gpa_pool: None
}
);
assert_eq!(
parse_boot_command_line("OPENHCL_BOOT_LOG==com3"),
BootCommandLineOptions {
logger: None,
confidential_debug: false,
enable_vtl2_gpa_pool: None
}
);
assert_eq!(
parse_boot_command_line("OPENHCL_BOOT_LOGserial"),
BootCommandLineOptions {
logger: None,
confidential_debug: false,
enable_vtl2_gpa_pool: None
}
);
let cmdline = format!("{OPENHCL_CONFIDENTIAL_DEBUG_ENV_VAR_NAME}=1");
assert_eq!(
parse_boot_command_line(&cmdline),
BootCommandLineOptions {
logger: Some(LoggerType::Serial),
confidential_debug: true,
enable_vtl2_gpa_pool: None
}
);
}
#[test]
fn test_vtl2_gpa_pool_parsing() {
assert_eq!(
parse_boot_command_line("OPENHCL_ENABLE_VTL2_GPA_POOL=1"),
BootCommandLineOptions {
logger: None,
confidential_debug: false,
enable_vtl2_gpa_pool: Some(1),
}
);
assert_eq!(
parse_boot_command_line("OPENHCL_ENABLE_VTL2_GPA_POOL=0"),
BootCommandLineOptions {
logger: None,
confidential_debug: false,
enable_vtl2_gpa_pool: None,
}
);
assert_eq!(
parse_boot_command_line("OPENHCL_ENABLE_VTL2_GPA_POOL=asdf"),
BootCommandLineOptions {
logger: None,
confidential_debug: false,
enable_vtl2_gpa_pool: None,
}
);
assert_eq!(
parse_boot_command_line("OPENHCL_ENABLE_VTL2_GPA_POOL=512"),
BootCommandLineOptions {
logger: None,
confidential_debug: false,
enable_vtl2_gpa_pool: Some(512),
}
);
}
}