blob: 7473fe188591f9d5b958bc1c5dc998421830b5e4 [file] [log] [blame]
// Copyright 2023, The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//! Utility functions.
use crate::err::get_error_reason_code;
use bssl_avf_error::{ApiName, Error, Result};
use ciborium::Value;
use coset::{CoseKey, Label};
use log::error;
pub(crate) fn check_int_result(ret: i32, api_name: ApiName) -> Result<()> {
match ret {
1 => Ok(()),
0 => Err(Error::CallFailed(api_name, get_error_reason_code())),
_ => {
error!(
"Received a return value ({}) other than 0 or 1 from the BoringSSL API: {:?}",
ret, api_name
);
Err(Error::InternalError)
}
}
}
pub(crate) fn to_call_failed_error(api_name: ApiName) -> Error {
Error::CallFailed(api_name, get_error_reason_code())
}
pub(crate) fn get_label_value_as_bytes(key: &CoseKey, label: Label) -> Result<&[u8]> {
Ok(get_label_value(key, label)?.as_bytes().ok_or_else(|| {
error!("Value not a bstr.");
Error::CoseKeyDecodingFailed
})?)
}
pub(crate) fn get_label_value(key: &CoseKey, label: Label) -> Result<&Value> {
Ok(&key.params.iter().find(|(k, _)| k == &label).ok_or(Error::CoseKeyDecodingFailed)?.1)
}