From 82b6c3929ff476d522ff7036e871e78791af3a8a Mon Sep 17 00:00:00 2001 From: Philip Tricca Date: Thu, 30 Nov 2023 13:07:09 -0800 Subject: [PATCH] verifier: Refactor calls to length functions into a common function. --- verifier/src/main.rs | 52 +++++++++++++++----------------------------- 1 file changed, 18 insertions(+), 34 deletions(-) diff --git a/verifier/src/main.rs b/verifier/src/main.rs index 75e998b..9163b9d 100644 --- a/verifier/src/main.rs +++ b/verifier/src/main.rs @@ -139,36 +139,36 @@ impl AttestHiffy { } } - /// Get length of the certificate chain from the Attest task. This cert - /// chain may be self signed or will terminate at the intermediate before - /// the root. - fn cert_chain_len(&self) -> Result { + /// This convenience function encapsulates a pattern common to + /// the hiffy command line for the `Attest` operations that get the + /// lengths of the data returned in leases. + fn get_len_cmd(&self, op: &str, args: Option) -> Result { // rely on environment for target & archive? // check that they are set before continuing let mut cmd = Command::new("humility"); cmd.arg("hiffy"); cmd.arg("--call"); - cmd.arg(format!("{}.cert_chain_len", self.interface)); + cmd.arg(format!("{}.{}", self.interface, op)); + if let Some(a) = args { + cmd.arg(format!("--arguments={}", a)); + } debug!("executing command: {:?}", cmd); let output = cmd.output()?; Self::u32_from_cmd_output(output) } + /// Get length of the certificate chain from the Attest task. This cert + /// chain may be self signed or will terminate at the intermediate before + /// the root. + fn cert_chain_len(&self) -> Result { + self.get_len_cmd("cert_chain_len", None) + } + /// Get length of the certificate at the provided index in bytes. fn cert_len(&self, index: u32) -> Result { - let mut cmd = Command::new("humility"); - - cmd.arg("hiffy"); - cmd.arg("--call"); - cmd.arg(format!("{}.cert_len", self.interface)); - cmd.arg("--arguments"); - cmd.arg(format!("index={}", index)); - debug!("executing command: {:?}", cmd); - - let output = cmd.output()?; - Self::u32_from_cmd_output(output) + self.get_len_cmd("cert_len", Some(format!("index={}", index))) } /// Get a chunk of the measurement log defined by `offset` and `length`. @@ -227,28 +227,12 @@ impl AttestHiffy { /// Get length of the measurement log in bytes. fn log_len(&self) -> Result { - let mut cmd = Command::new("humility"); - - cmd.arg("hiffy"); - cmd.arg("--call"); - cmd.arg(format!("{}.log_len", self.interface)); - debug!("executing command: {:?}", cmd); - - let output = cmd.output()?; - Self::u32_from_cmd_output(output) + self.get_len_cmd("log_len", None) } /// Get length of the measurement log in bytes. fn quote_len(&self) -> Result { - let mut cmd = Command::new("humility"); - - cmd.arg("hiffy"); - cmd.arg("--call"); - cmd.arg(format!("{}.quote_len", self.interface)); - debug!("executing command: {:?}", cmd); - - let output = cmd.output()?; - Self::u32_from_cmd_output(output) + self.get_len_cmd("quote_len", None) } }