blob: 65d9b693764b7c2895ba0e67f6b2931b313b0672 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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.
#![allow(clippy::nonstandard_macro_braces)]
use std::fmt;
use serde::{Deserialize, Serialize};
use thiserror::Error;
pub use sgx_types::error::SgxStatus;
pub const ES_OK: u32 = 0;
pub const ES_ERR_GENERAL: u32 = 0x0000_0001;
pub const ES_ERR_INVALID_PARAMETER: u32 = 0x0000_0002;
pub const ES_ERR_FFI_INSUFFICIENT_OUTBUF_SIZE: u32 = 0x0000_000c;
/// Status for Ecall
#[repr(C)]
#[derive(Debug, Serialize, Deserialize, Default)]
pub struct ECallStatus(pub u32);
impl ECallStatus {
pub fn is_err(&self) -> bool {
self.0 != ES_OK
}
pub fn is_ok(&self) -> bool {
self.0 == ES_OK
}
pub fn is_err_ffi_outbuf(&self) -> bool {
self.0 == ES_ERR_FFI_INSUFFICIENT_OUTBUF_SIZE
}
}
impl fmt::Display for ECallStatus {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.0)
}
}
#[derive(Error, Debug, Serialize, Deserialize)]
pub enum TeeServiceError {
#[error("SgxError")]
SgxError,
#[error("ServiceError")]
ServiceError,
#[error("CommandNotRegistered")]
CommandNotRegistered,
#[error("EnclaveForceTermination")]
EnclaveForceTermination,
}
pub type TeeServiceResult<T> = std::result::Result<T, TeeServiceError>;
pub type TeaclaveServiceResponseResult<T> = std::result::Result<tonic::Response<T>, tonic::Status>;
pub fn tonic_error<T: std::fmt::Debug>(err: T) -> tonic::Status {
tonic::Status::internal(format!("{:?}", err))
}